Troubleshoot: Difference between revisions

From MobileX for SageCRM
No edit summary
No edit summary
Line 23: Line 23:


----
----
Loading metadata issue
The system loads some local metadats for each lookup returned from the following sql
  select distinct lower(colp_colname) as colp_colname
                    from custom_edits
                    where
                    colp_entrytype in (21,28)
                    and colp_entity in (select distinct bord_name from custom_tables);
We have seen sites that have loaded (inadvertently) massive lookups/choices and so we put in an optional limiter
  <add key="MXLookupLimiter" value="top 20 * " />

Revision as of 22:55, 7 December 2018

iOS error: "quoteEceededError: DOM Execption:22"

OR

Loading of app hanging.

Check are you in Private Browsing mode. This mode is not supported by this app.


Mix of SSL and http

You need to set the setting

  GatewayCRMPath
 EG  
  <add key="GatewayCRMPath" value="http://yourserver/crm/"/>

A typical error that we see that require this are

 -Could not create SSL/TLS secure channel

Loading metadata issue

The system loads some local metadats for each lookup returned from the following sql

 select distinct lower(colp_colname) as colp_colname
                   from custom_edits
                   where 
                   colp_entrytype in (21,28)
                   and colp_entity in (select distinct bord_name from custom_tables);

We have seen sites that have loaded (inadvertently) massive lookups/choices and so we put in an optional limiter

 <add key="MXLookupLimiter" value="top 20 * " />