12345678910111213141516171819 |
- <?xml version="1.0" encoding="utf-8" ?>
- <configuration>
- <system.serviceModel>
- <bindings>
- <basicHttpBinding>
- <binding name="ConsentSvcSoap" />
- <binding name="HospitalSvcSoap" />
- </basicHttpBinding>
- </bindings>
- <client>
- <endpoint address="http://localhost:49885/ConsentSvc.asmx" binding="basicHttpBinding"
- bindingConfiguration="ConsentSvcSoap" contract="ConsentSvcRef.ConsentSvcSoap"
- name="ConsentSvcSoap" />
- <endpoint address="http://localhost:49885/HospitalSvc.asmx" binding="basicHttpBinding"
- bindingConfiguration="HospitalSvcSoap" contract="HospitalSvcRef.HospitalSvcSoap"
- name="HospitalSvcSoap" />
- </client>
- </system.serviceModel>
- </configuration>
|