WsdlUI
WsdlUI copied to clipboard
Support for longer WSDLs
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.