虽然我已经指定了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>
由于
Lijo
答案 0 :(得分:1)
您的CompanyLogo
类必须具有默认的无参数构造函数,否则无法反序列化。
编辑:创建一个新项目,复制粘贴您的代码,一切似乎都运行正常。确保正确引用了服务库,而没有使用没有该属性的旧版本。
答案 1 :(得分:1)
似乎无法确认这些问题 - 就像我机器上的魅力一样。我可以启动并运行服务主机,没问题。我可以从WCF服务测试客户端连接到它,请求如下所示:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://Lijo.Samples/IElementaryService/GetLogo</Action>
</s:Header>
<s:Body>
<GetLogo xmlns="http://Lijo.Samples" />
</s:Body>
</s:Envelope>
并且回应是:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header />
<s:Body>
<GetLogoResponse xmlns="http://Lijo.Samples">
<GetLogoResult xmlns:a="http://schemas.datacontract.org/2004/07/SerializeLogo" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<a:ShapeOfLogo>
<a:ShapeName i:nil="true" />
</a:ShapeOfLogo>
</GetLogoResult>
</GetLogoResponse>
</s:Body>
</s:Envelope>
从我的角度来看:这项服务有效(做得不多 - 但是有效)。
对所有参数进行双重和三重检查 - 必须以某种方式关闭......