WsdlUI icon indicating copy to clipboard operation
WsdlUI copied to clipboard

Support for longer WSDLs

Open tiavision opened this issue 10 years ago • 0 comments

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.

tiavision avatar Jun 29 '15 11:06 tiavision