-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
Currently the app will crash if the WSDL is too big. This should be easy to fix by defining a binding in the web.config and setting a maxReceivedMessageSize
Example:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="default" maxReceivedMessageSize="2147483647" />
</basicHttpBinding>
</bindings>
</system.serviceModel>
All you need to do then is giving the binding name when creating a new instance of the WCF client object.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels