如何在基于SOAP的Web服务中使用/实现Custom SOAP Header

时间:2013-05-07 12:37:10

标签: .net web-services soap

我想创建和使用基于soap的自定义Web服务

我指的是这个链接

http://www.rameshjalla.com/2012/08/aspnet-web-service-custom-soap-header.html

最后要求使用Custom soap header

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    
        xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
        xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <CustomSOAPHeader xmlns="http://tempuri.org/">
      <UserName>string</UserName>
      <Password>string</Password>
    </CustomSOAPHeader>
  </soap:Header>
  <soap:Body>
    <GetSomething xmlns="http://tempuri.org/" />
  </soap:Body>
</soap:Envelope>

我的问题是它实际使用的地方?因为我不能在web.config中实现,因为它给出了错误。请建议

0 个答案:

没有答案