app.config 893 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <system.serviceModel>
  4. <bindings>
  5. <basicHttpBinding>
  6. <binding name="HospitalSvcSoap" />
  7. <binding name="ConsentSvcSoap" />
  8. </basicHttpBinding>
  9. </bindings>
  10. <client>
  11. <endpoint address="http://localhost:8088/ConsentSvc.asmx" binding="basicHttpBinding"
  12. bindingConfiguration="ConsentSvcSoap" contract="ConsentSvcRef.ConsentSvcSoap"
  13. name="ConsentSvcSoap" />
  14. <endpoint address="http://localhost:8088/HospitalSvc.asmx" binding="basicHttpBinding"
  15. bindingConfiguration="HospitalSvcSoap" contract="HospitalSvcRef.HospitalSvcSoap"
  16. name="HospitalSvcSoap" />
  17. </client>
  18. </system.serviceModel>
  19. <startup><supportedRuntime version="v2.0.50727"/></startup></configuration>