Skip to content

Instantly share code, notes, and snippets.

/App.config Secret

Created April 15, 2014 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/e5a311bd0e779f592ac0 to your computer and use it in GitHub Desktop.
Save anonymous/e5a311bd0e779f592ac0 to your computer and use it in GitHub Desktop.
TestWebService app.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<system.serviceModel>
<bindings>
<customBinding>
<binding name="TestWebServiceServiceSoapBinding">
<textMessageEncoding messageVersion="Soap12" />
<httpTransport />
</binding>
</customBinding>
</bindings>
<client>
<endpoint address="http://192.168.1.159:8080/app/TestWebService"
binding="customBinding" bindingConfiguration="TestWebServiceServiceSoapBinding"
contract="ServiceReference.TestWebService" name="TestWebServicePort" />
</client>
</system.serviceModel>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment