【发布时间】:2010-06-05 15:43:18
【问题描述】:
即使我指定了 Datacontract 和 Datamember,我仍然收到以下异常。你能帮我理解一下问题是什么吗?
“类型 'MyServiceLibrary.CompanyLogo' 无法序列化。考虑使用 DataContractAttribute 属性对其进行标记,并使用 DataMemberAttribute 属性标记您想要序列化的所有成员。”
注意:当我运行服务主机时发生异常。我什至没有创建客户端。
using System.ServiceModel;
using System.ServiceModel.Dispatcher;
using System.ServiceModel.Channels;
using System.ServiceModel.Description;
using System.Runtime.Serialization;
using MyServiceLibrary;
namespace MySelfHostConsoleApp
{
class Program
{
static void Main(string[] args)
{
System.ServiceModel.ServiceHost myHost = new ServiceHost(typeof(NameDecorator));
myHost.Open();
Console.ReadLine();
}
}
}
//The Service is
using System.ServiceModel;
using System.Runtime.Serialization;
namespace MyServiceLibrary
{
[ServiceContract(Namespace = "http://Lijo.Samples")]
public interface IElementaryService
{
[OperationContract]
CompanyLogo GetLogo();
}
public class NameDecorator : IElementaryService
{
public CompanyLogo GetLogo()
{
Shape cirlce = new Shape();
CompanyLogo logo = new CompanyLogo(cirlce);
return logo;
}
}
[DataContract]
public class Shape
{
public string SelfExplain()
{
return "sample";
}
}
[DataContract]
public class CompanyLogo
{
private Shape m_shapeOfLogo;
[DataMember]
public Shape ShapeOfLogo
{
get
{
return m_shapeOfLogo;
}
set
{
m_shapeOfLogo = value;
}
}
public CompanyLogo(Shape shape)
{
m_shapeOfLogo = shape;
}
public CompanyLogo()
{
}
}
}
//主机配置是
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<services>
<service name="MyServiceLibrary.NameDecorator"
behaviorConfiguration="WeatherServiceBehavior">
<host>
<baseAddresses>
<add baseAddress="http://localhost:8017/ServiceModelSamples/FreeServiceWorld"/>
</baseAddresses>
</host>
<endpoint address=""
binding="basicHttpBinding"
contract="MyServiceLibrary.IElementaryService" />
<endpoint address="mex"
binding="mexHttpBinding"
contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="WeatherServiceBehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="False"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
谢谢
李乔
【问题讨论】:
标签: wcf