0

我正在尝试创建一个 WCF SOAP 服务,该服务具有一个接受正文中的裸参数的服务方法,但我无法实现。目前,方法名称元素正在主体下创建。我正在尝试使用 ws-addressing,以便方法名称是标头的一部分,而参数是正文的直接子代。

这是我的服务实现:

[SoapDocumentService(Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Bare)]
public class Service1 : IService1
{        
    [SoapDocumentMethod(Use=SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Bare)]
    public void DoWork([XmlElement(Namespace = "http://www.contoso.com",
                IsNullable = true)] MyClass wrapper)
    {
    }
}

[XmlRoot(Namespace = "http://www.contoso.com")]
public class MyClass
{
    public int Value { get; set; }
    public string MyProperty { get; set; }
}

[ServiceContract]
public interface IService1
{
    [OperationContract]
    void DoWork(MyClass wrapper);
}

上面的实现生成了下面的soap客户端。但我试图将包装元素作为身体上的直接子元素(试图删除 DoWork)。根据我的阅读,装饰 svc 方法以使用裸参数应该删除服务方法名称(DoWork)并使用 ws-addressing。

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/" xmlns:web="http://schemas.datacontract.org/2004/07/WebApplication2">
   <soap:Header/>
   <soap:Body>
      <tem:DoWork> <!-- I want to remove this svc method name element  -- >
         <tem:wrapper>  <!-- I want this to be under the body -->
            <!--Optional:-->
            <web:MyProperty>?</web:MyProperty>
            <!--Optional:-->
            <web:Value>?</web:Value>
         </tem:wrapper>
      </tem:DoWork>
   </soap:Body>
</soap:Envelope>

我已经按照 msdn 的指南来装饰服务方法。MSDN 链接

4

2 回答 2

0

我必须为 MyClass 创建消息合同包装器并指定消息正文。

[MessageContract]
    public class MyWrapper
    {
        [MessageBodyMember]
        public int Value { get; set; }
        [MessageBodyMember]
        public string MyProperty { get; set; }
    }
于 2012-07-05T19:34:22.243 回答
0

我认为你应该放弃包装。在 .net 2 中这会起作用,wcf 应该是类似的:

[WebMethod]
[SoapDocumentMethod(ParameterStyle=SoapParameterStyle.Bare)]
public String EchoString(String s, String s1) 
{
    return s;
}
于 2012-06-27T10:01:41.857 回答