Skip to content
+1-888-319-3663

COMMUNITY FORUM

Excel 2013 Addin Limits

klewis10367 asked 10 years ago
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
Lorren answered 10 years ago
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.

    <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

If you would like to submit an answer or comment, please sign in to the eOne portal.