5

这与我之前提出的问题有关:

我有一个定义事务类的 DLL。它被 WCF 服务库和客户端应用程序引用。我收到错误消息,指出无法托管服务库,因为它无法序列化 DLL 类。

这是服务代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
using ServerLibrary.MarketService;
using SharedLibrary; // This is the DLL in question

namespace ServerLibrary
{
    [ServiceContract]
    public interface IService
    {
        [OperationContract]
        string GetData(int value);

        [OperationContract]
        CompositeType GetDataUsingDataContract(CompositeType composite);

        [OperationContract]
        bool ProcessTransaction(SharedLibrary.Transaction transaction);
    }

    [DataContract]
    public class CompositeType
    {
        bool boolValue = true;
        string stringValue = "Hello ";

        [DataMember]
        public bool BoolValue
        {
            get { return boolValue; }
            set { boolValue = value; }
        }

        [DataMember]
        public string StringValue
        {
            get { return stringValue; }
            set { stringValue = value; }
        }
    }
}

我是否必须在此处使用 [attribute] 标头标记 Transaction 类?

[更新]

这是我尝试托管此服务时收到的错误消息:

System.Runtime.Serialization.InvalidDataContractException:无法序列化类型“SharedLibrary.Transaction”。考虑使用 DataContractAttribute 属性对其进行标记,并使用 DataMemberAttribute 属性标记您想要序列化的所有成员。如果该类型是一个集合,请考虑使用 CollectionDataContractAttribute 对其进行标记。有关其他支持的类型,请参阅 Microsoft .NET Framework 文档。在 System.Runtime.Serialization.DataContract.DataContractCriticalHelper.ThrowInvalidDataContractException(字符串消息,类型类型)在 System.Runtime.Serialization.DataContract.DataContractCriticalHelper.CreateDataContract(Int32 id,RuntimeTypeHandle typeHandle,类型类型)在 System.Runtime.Serialization.DataContract。 DataContractCriticalHelper。

这里要求的是包含事务的 DLL:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace SharedLibrary
{
    // Transaction class to encapsulate products and checkout data
    public class Transaction
    {
            public int checkoutID;
            public DateTime time;
            public List<object> products; // Using object to avoid MarketService reference, remember to cast back!
            public double totalPrice;
            public bool complete;

            public Transaction(int ID)
            {
                checkoutID = ID;
            }

            public void Start()
            {
                products = new List<object>();
                complete = false;
            }

            public void Complete()
            {
                time = DateTime.Now;
                complete = true;
            }
        }
}

谢谢。

4

2 回答 2

1

您可能希望如下定义您的事务类

[DataContract]
[KnownType(typeof(MarketService.XXX))]
public class Transaction
{
}

我希望这有帮助。

于 2012-04-29T21:12:25.477 回答
1

我是否必须在此处使用 [attribute] 标头标记 Transaction 类?

不,您不应该这样做,但建议这样做。请参阅使用数据协定


问题是您将派生对象传递给List<object>.

您必须使用ServiceKnownType属性告诉服务要处理什么类型的对象:

[OperationContract]
[ServiceKnownType( typeof( MarketService.XXX ) )]
bool ProcessTransaction(SharedLibrary.Transaction transaction);
于 2012-04-29T19:52:31.620 回答