Troubleshoot: Difference between revisions

From MobileX for SageCRM
No edit summary
No edit summary
Line 36: Line 36:
We have seen sites that have loaded (inadvertently) massive lookups/choices and so we put in an optional limiter
We have seen sites that have loaded (inadvertently) massive lookups/choices and so we put in an optional limiter


EG
   <add key="MXLookupLimiter" value="top 20 * " />
   <add key="MXLookupLimiter" value="top 20 * " />
This key is not in the web.config file and must be added in. The above is an example setting were we limit the returns to 20 items.

Revision as of 22:56, 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

EG

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

This key is not in the web.config file and must be added in. The above is an example setting were we limit the returns to 20 items.