client.endpoint.config 592 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <system.serviceModel>
  4. <client>
  5. <endpoint address="http://igorxp:8080/" binding="basicHttpBinding"
  6. contract="WCFClient.IHelloWorldService" name="BasicHttpBinding_IHelloWorldService">
  7. <identity>
  8. <userPrincipalName value="[email protected]" />
  9. </identity>
  10. <headers>
  11. <Header1>Header1-Value</Header1>
  12. <myns:Header2 xmlns:myns="uri:my.custom.manespace">Header2-Value</myns:Header2>
  13. </headers>
  14. </endpoint>
  15. </client>
  16. </system.serviceModel>
  17. </configuration>