Troubleshoot: Difference between revisions
Crmtogether (talk | contribs) No edit summary |
Crmtogether (talk | contribs) No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
iOS error: "quoteEceededError: DOM Execption:22" | 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. | Check are you in Private Browsing mode. This mode is not supported by this app. | ||
Line 19: | 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 | |||
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. | |||
---- | |||
Timeout when loading metadata | |||
When seen this has been caused by the SSL cert slowing the system dow (the issue is usually visible in full CRM also). | |||
To work around this set the CRMCodedPath and GatewayCRMPath to use the http://localhost/crm....setting or some local non-ssl setting |
Latest revision as of 16:20, 10 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.
Timeout when loading metadata
When seen this has been caused by the SSL cert slowing the system dow (the issue is usually visible in full CRM also).
To work around this set the CRMCodedPath and GatewayCRMPath to use the http://localhost/crm....setting or some local non-ssl setting