Skip to content

Instantly share code, notes, and snippets.

@shevtiawan
Created May 27, 2013 09:46
Show Gist options
  • Save shevtiawan/5656175 to your computer and use it in GitHub Desktop.
Save shevtiawan/5656175 to your computer and use it in GitHub Desktop.
Konfigurasi wcf client
<system.serviceModel>
<services>
<service name="Service">
<endpoint
address=""
binding="webHttpBinding" bindingConfiguration="FileTransferServicesBinding"
contract="IService"/>
</service>
</services>
<bindings>
<webHttpBinding >
<binding name="FileTransferServicesBinding" maxBufferSize="10242880" maxReceivedMessageSize="10242880">
<readerQuotas maxStringContentLength="10242880" maxArrayLength="10242880" />
</binding>
</webHttpBinding>
</bindings>
</system.serviceModel>
<system.web>
<httpRuntime maxRequestLength="65536" executionTimeout="36000"/>
</System.Web>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment