在 ASMX 服务中如何更改 ResponseHeader ElementName

本文关键字:何更改 ResponseHeader ElementName ASMX 服务 | 更新日期: 2023-09-27 18:37:24

我正在为javaclient在.Net中创建ASMX Web服务。提供的肥皂看起来像这样

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pus="http://www.example.org/pusheventservice/">
<soapenv:Header>
<ServiceHeader>
<TransactionID>258350</TransactionID>
<TransactionDate>2014/12/21</TransactionDate>.......

和 javaclient 期望响应 SOAP

喜欢这个

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pus="http://www.example.org/pusheventservice/">
<soapenv:Header>
<ResponseServiceHeader>
<TransactionID>258350</TransactionID>
<TransactionDate>2014/12/21</TransactionDate>....

表示requestElement是'ServiceHeader',ResponseElement必须是'ResponseServiceHeader'

Web方法我实现了这个,但无法在标题中。

可能吗??如果是,如何??我也不能使用WCF。

编辑

namespace PushWS
{
[WebService(Namespace = "http://localhost:60463/PushEvent.asmx")]
[WebServiceBinding(ConformsTo = WsiProfiles.None)]
[SoapDocumentService(SoapBindingUse.Literal, SoapParameterStyle.Bare, RoutingStyle = SoapServiceRoutingStyle.SoapAction)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
// [System.Web.Script.Services.ScriptService]
public class PushEvent : System.Web.Services.WebService
{
    public ServiceHeader serviceHeader = null;
    public SoapUnknownHeader[] userCredentials;
    [WebMethod(Description = "updateEvent receives XML from Client")]
    [SoapHeader("serviceHeader", Direction = SoapHeaderDirection.InOut)]
    [SoapHeader("userCredentials", Required = true)]
    [return: XmlElement("EventResponse")]
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://localhost:60463/PushEvent.asmx/updateEvent",
    RequestElementName = "updateEventRequest",
    ResponseElementName = "updateEventResponse")]
    public XmlElement updateEvent([XmlAnyElement]XmlElement MyPushEvent)
    {
           //Logic here
    }
    public class ServiceHeader : SoapHeader
    {
         public string TransactionID{get;set;}
         public string TransactionDate{get;set;}
    }
 }

在 ASMX 服务中如何更改 ResponseHeader ElementName

为响应标头创建一个派生类:

public class ResponseServiceHeader : ServiceHeader
{
}
public ServiceHeader serviceHeader = null;
public ResponseServiceHeader responseServiceHeader = null;
[SoapHeader("serviceHeader", Direction = SoapHeaderDirection.Int)]
[SoapHeader("responseServiceHeader", Direction = SoapHeaderDirection.Out)]