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