Men kan eventueel de Adsolut Webservice aanpassen zodat deze grotere PDF-bestanden aanvaardt.
Verhogen van maxRequestLength voor webservices Adsolut op server:
<httpRuntime executionTimeout="240" maxRequestLength="2000000000" requestValidationMode="2.0" />
In addition to the httpRuntime/maxRequestLength mentioned in the question, it looks like there is an additional item that can be added to the web service's web.config file to permit large file transfers.
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2000000000" />
</requestFiltering>
</security>
</system.webServer>
This appears to enable larger files to be uploaded via web services.
Dit verhoogt de maximum PDF formaat naar 20MB.
Deze aanpassingen kunnen doorgevoerd worden
door de IT-partner op de volgende locatie:
[root]\inetpub\wwwroot\clientservices\Web.config