Advertisement
Guest User

app.config

a guest
Jan 14th, 2019
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.71 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3.   <system.serviceModel>
  4.         <bindings>
  5.             <customBinding>
  6.                 <binding name="DistributorServiceBinding">
  7.                     <textMessageEncoding messageVersion="Soap12" />
  8.                     <httpsTransport />
  9.                 </binding>
  10.             </customBinding>
  11.         </bindings>
  12.         <client>
  13.             <endpoint address="https://example.com:8443/test/ws/DistributorsService"
  14.                binding="customBinding" bindingConfiguration="DistributorServiceBinding"
  15.                contract="Service.DistributorServiceType" name="DistributorServicePort" />
  16.         </client>
  17.     </system.serviceModel>
  18. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement