我想创建和使用基于肥皂的自定义 Web 服务
我指的是这个链接
http://www.rameshjalla.com/2012/08/aspnet-web-service-custom-soap-header.html
最后它要求使用自定义肥皂标题
<?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 中实现,因为它给出了错误。请建议