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

ラッパーをドロップする必要があると思います。.net 2 ではこれが機能し、wcf も同様のはずです。

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

MyClass のメッセージ コントラクト ラッパーを作成し、メッセージ本文を指定する必要がありました。

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