System.ServiceModel_test_net_3_5.dll.config 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="utf-8"?><configuration>
  2. <appSettings>
  3. <add key="onlyClients" value="false" />
  4. <add key="endpointBase" value="http://localhost:9999" />
  5. </appSettings>
  6. <system.serviceModel>
  7. <behaviors>
  8. <serviceBehaviors>
  9. <behavior name="MetadataBehavior">
  10. <serviceMetadata httpGetEnabled="true" />
  11. </behavior>
  12. </serviceBehaviors>
  13. <endpointBehaviors>
  14. <behavior name="behavior1">
  15. <callbackDebug includeExceptionDetailInFaults="true" />
  16. </behavior>
  17. <behavior name="behavior2">
  18. <callbackDebug includeExceptionDetailInFaults="false" />
  19. </behavior>
  20. </endpointBehaviors>
  21. </behaviors>
  22. <bindings>
  23. <basicHttpBinding>
  24. <binding name="basicHttp">
  25. <security mode="None">
  26. </security>
  27. </binding>
  28. </basicHttpBinding>
  29. </bindings>
  30. <client>
  31. <endpoint address="http://test1_1" binding="basicHttpBinding" contract="MonoTests.System.ServiceModel.ICtorUseCase1" name="CtorUseCase1_1" />
  32. <endpoint address="http://test2_1" binding="basicHttpBinding" contract="CtorUseCase2" name="CtorUseCase2_1" />
  33. <endpoint address="http://test2_2" binding="basicHttpBinding" contract="CtorUseCase2" name="CtorUseCase2_2" behaviorConfiguration="behavior1" />
  34. <endpoint address="http://test2_2" binding="basicHttpBinding" contract="CtorUseCase2" name="CtorUseCase2_3" behaviorConfiguration="behavior2" />
  35. <endpoint name="" binding="basicHttpBinding" contract="test" />
  36. </client>
  37. <services>
  38. </services>
  39. </system.serviceModel>
  40. </configuration>