Advertisement
Guest User

App.config

a guest
May 24th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.66 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3.     <startup>
  4.         <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
  5.     </startup>
  6.     <system.serviceModel>
  7.         <bindings>
  8.             <basicHttpBinding>
  9.                 <binding name="CalculatorSoap" />
  10.             </basicHttpBinding>
  11.         </bindings>
  12.         <client>
  13.             <endpoint address="http://www.dneonline.com/calculator.asmx"
  14.                binding="basicHttpBinding" bindingConfiguration="CalculatorSoap"
  15.                contract="SoapCalculator.CalculatorSoap" name="CalculatorSoap" />
  16.         </client>
  17.     </system.serviceModel>
  18. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement