Skip to content

Support for longer WSDLs #10

@tiavision

Description

@tiavision

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions