Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Last active December 10, 2017 12:47
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 justinyoo/5e4a2fac0a59bb93ce85312798a81675 to your computer and use it in GitHub Desktop.
Save justinyoo/5e4a2fac0a59bb93ce85312798a81675 to your computer and use it in GitHub Desktop.
SOAP over Azure API Management, Logic Apps and Functions
<configuration>
...
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IService1"/>
</basicHttpBinding>
</bindings>
<client>
<endpoint name="BasicHttpBinding_IService1"
address="http://localhost:10679/Service1.svc"
binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IService1"
contract="ServiceReference1.IService1"
/>
</client>
</system.serviceModel>
...
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment