Excel 2013 Addin Limits
2 Questions regarding running a map from Excel 2013 Add in. Is there a row amount limit of how many records can be imported and is there I timeout setting that will disconnect a connection.
Answers
Best Answer
There isn't a row limit but there is a timeout limit for the wcf service.
You can modify that limit by opening the Web.Config file located in the Program Files (x86)eOne Solutionswcf folder and making sure the following bindings are set.
You can modify that limit by opening the Web.Config file located in the Program Files (x86)eOne Solutionswcf folder and making sure the following bindings are set.
<bindings>
<webHttpBinding>
<binding>
<readerQuotas maxStringContentLength="2147483647"/>
</binding>
</webHttpBinding>
<customBinding>
<binding name="HttpStreamedRest">
<httpTransport maxReceivedMessageSize="209715200" manualAddressing="true"/>
</binding>
<binding name="HttpsStreamedRest">
<httpsTransport maxReceivedMessageSize="209715200" manualAddressing="true"/>
</binding>
</customBinding>
</bindings>
Lorren
Lorren