9

我有一个简单的 WCF 服务,它从服务器返回时间。我已通过与 Fiddler 核对确认正在发送数据。这是我的服务发送的结果对象 xml。

    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
     <s:Body>
        <GetTimeResponse xmlns="http://tempuri.org/">
            <GetTimeResult xmlns:a="http://schemas.datacontract.org/2004/07/TestService.DataObjects" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
                <a:theTime>2010-03-26T09:14:38.066372-06:00</a:theTime>
            </GetTimeResult>
        </GetTimeResponse>
     </s:Body>
   </s:Envelope>

因此,据我所知,服务器端没有任何问题。它正在接收请求并返回结果。

但在我的 silverlight 客户端上,返回对象的所有成员要么为空,要么为空白或默认值。如您所见,服务器返回当前日期和时间。但在 silverlight 中,我的对象的 Time 属性设置为 1/1/0001 12:00 AM(默认值)。

Sooo 我认为服务器和 silverlight 客户端之间的 DataContracts 不匹配。这是服务器的 DataContract

    [DataContract]
 public class Time
 {
  [DataMember]
  public DateTime theTime { get; set; }
 }

难以置信的简单。这是我的 silverlight 客户端上的数据合同。

    [DataContract]
 public class Time
 {
  [DataMember]
  public DateTime theTime { get; set; }
 }

从字面上看,唯一的区别是应用程序中的命名空间。但返回的值仍然是 null、空或 .NET 默认值。

谢谢你的帮助!

更新

这是我的所有服务都运行的 ClientBase。我在这里阅读了一篇出色的文章来构建它。

public class ClientBase<T> where T :class 
{
    private T Channel { get; set; }

    private Type ContractType { get; set; }

    private ClientBase()
    {
        ContractType = typeof( T );
    }

    public ClientBase(string endPointConfiguration) :this()
    {
        Channel = new ChannelFactory<T>( endPointConfiguration ).CreateChannel();
    }

    public ClientBase( EndpointAddress address, Binding binding ):this()
    {
        Channel = new ChannelFactory<T>( binding, address ).CreateChannel();
    }

    public void Begin(string methodName, object state, params object[] parameterArray)
    {
        Begin( methodName, null, state, parameterArray );
    }

    public void Begin(string methodName, EventHandler<ClientEventArgs> callBack, object state, params object[] parameterArray)
    {
        if(parameterArray != null)
        {
            Array.Resize(ref parameterArray, parameterArray.Length + 2);
        }
        else
        {
            parameterArray = new object[2];
        }

        parameterArray[ parameterArray.Length - 1 ] = new ObjectClientState {CallBack = callBack, MethodName = methodName, UserState = state};
        parameterArray[ parameterArray.Length - 2 ] = new AsyncCallback( OnCallBack );
        ContractType.InvokeMember( "Begin" + methodName,
                                   System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.InvokeMethod |
                                   System.Reflection.BindingFlags.Public, null, Channel, parameterArray );

    }

    private void OnCallBack(IAsyncResult result)
    {
        ObjectClientState state = result.AsyncState as ObjectClientState;
        if(state == null)
            return;
        Object obj = ContractType.InvokeMember( "End" + state.MethodName,
                                                System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.InvokeMethod |
                                                System.Reflection.BindingFlags.Public, null, Channel, new object[] {result} );
        if(state.CallBack != null)
        {
            state.CallBack( this, new ClientEventArgs {Object = obj, UserState = state.UserState} );
        }
    }

    public class ClientEventArgs : EventArgs
    {
        public object Object { get; set; }
        public object UserState { get; set; }

        public T LoadResult<T>()
        {
            if( Object is T )
                return ( T ) Object;
            return default( T );
        }
    }

    private class ObjectClientState
    {
        public EventHandler<ClientEventArgs> CallBack { get; set; }
        public string MethodName { get; set; }
        public object UserState { get; set; }
    }
}

这是我的界面

 [ServiceContract]      

    public interface ITestService
            {

                [OperationContract( AsyncPattern = true )]
                IAsyncResult BeginGetTime( AsyncCallback callback, object state );

                Time EndGetTime( IAsyncResult result );

            }

现在我有了我的服务类,它使用这个接口通过我的 BaseService 类进行调用。

public class TestSiteService : ClientBase<ITestService>
{
    public TestSiteService (string endPointConfiguration):base(endPointConfiguration) { }

    public TestSiteService ( EndpointAddress address, Binding binding ) : base( address, binding ) { }

    public void GetTime( EventHandler<ClientEventArgs> callBack )
    {
        Begin( "GetTime", callBack, null, null );
    }
}

最后,这里是实际调用所有内容并完成工作的代码。

    TestSiteService client = new TestSiteService ( new EndpointAddress( "http://localhost:3483/wcf/Service.svc" ), new BasicHttpBinding() );

client.GetTime( delegate( object res, ClientBase<ITestService>.ClientEventArgs e )
            {

                Dispatcher.BeginInvoke( () => lblDisplay.Text = "Welcome " + e.LoadResult<Time>().theTime );

            } );

唷....我希望没有人会因为我发布的所有这些代码而迷失:P

4

2 回答 2

19

因为您没有在 DataContractAttribute 上设置Namespace 属性,所以将从 .NET 类/命名空间中合成命名空间。您可以在您发布的 SOAP 消息示例中看到这一点:

http://schemas.datacontract.org/2004/07/TestService.DataObjects _

为了使合同被视为相等,您必须将 DataContract 上的 Namespace 属性设置为双方的相同值。这可能看起来有点像这样:

[DataContract(Namespace="urn:my-test-namespace")]
于 2010-03-26T18:12:48.957 回答
0

扩展 Drew Marsh 的正确答案 (+1 - thx) 我生成了一个正在工作的服务参考,但是当我尝试使用 Wcf 客户端工厂实现正确的接口(但命名空间不同)时,我遇到了问题描述。

我没有简单的方法来确定“正确的”命名空间应该是什么,但只需将以下属性从服务引用的 DataContract 实体复制到 Wcf 客户端工厂实现中的实体即可解决问题;

[System.Runtime.Serialization.DataContractAttribute(Name = "BOSPrice", Namespace = "http://schemas.datacontract.org/2004/07/BOSDataService")]
  [System.SerializableAttribute()]
于 2013-09-30T08:57:11.187 回答