我从.wsdl文件生成C#类并且它可以工作。但我有以下问题。响应中的服务格式xsd:date
类型不正确。例如:
<date xsi:type="xsd:date">2016-01-27 14:20:30</date>
但它应该是其中之一:
<date xsi:type="xsd:date">2016-01-27</date>
<date xsi:type="xsd:dateTime">2016-01-27T14:20:30</date>
因此,我得到了异常
未处理的异常:System.ServiceModel.CommunicationException:错误 反序列化回复消息的主体以便进行操作&#39; createVacature&#39;。 ---&GT; System.InvalidOperationException:XML文档中存在错误(2,664)。 ---&GT; System.FormatException:String不是 被认为是有效的DateTime。
如何覆盖日期解析?或任何其他方式来解决它?在没有svcutil.exe的情况下手动实现所有这些操作将是过度的。
答案 0 :(得分:2)
这是我的解决方案。我在解析之前拦截服务响应并手动编辑它。
以下是日期修复功能:
public class MessageDateFixer : IClientMessageInspector
{
public object BeforeSendRequest(ref Message request, IClientChannel channel)
{
return null;
}
public void AfterReceiveReply(ref Message reply, object correlationState)
{
XmlDocument document = new XmlDocument();
MemoryStream memoryStream = new MemoryStream();
XmlWriter xmlWriter = XmlWriter.Create(memoryStream);
reply.WriteMessage(xmlWriter);
xmlWriter.Flush();
memoryStream.Position = 0;
document.Load(memoryStream);
FixMessage(document);
memoryStream.SetLength(0);
xmlWriter = XmlWriter.Create(memoryStream);
document.WriteTo(xmlWriter);
xmlWriter.Flush();
memoryStream.Position = 0;
XmlReader xmlReader = XmlReader.Create(memoryStream);
reply = Message.CreateMessage(xmlReader, int.MaxValue, reply.Version);
}
private static void FixMessage(XmlDocument document)
{
FixAllNodes(document.ChildNodes);
}
private static void FixAllNodes(XmlNodeList list)
{
foreach (XmlNode node in list)
{
FixNode(node);
}
}
private static void FixNode(XmlNode node)
{
if (node.Attributes != null &&
node.Attributes["xsi:type"] != null)
{
if (node.Attributes["xsi:type"].Value == "xsd:date")
{
node.Attributes["xsi:type"].Value = "xsd:dateTime";
node.InnerXml = node.InnerXml.Replace(" ", "T");
}
}
FixAllNodes(node.ChildNodes);
}
}
这是辅助类:
public class DateFixerBehavior : IEndpointBehavior
{
public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
{
clientRuntime.MessageInspectors.Add(new MessageDateFixer());
}
public void Validate(ServiceEndpoint endpoint)
{
}
public void AddBindingParameters(ServiceEndpoint endpoint, BindingParameterCollection bindingParameters)
{
}
public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
{
}
}
以下是用法:
PosterToolClient poster = new PosterToolClient();
poster.Endpoint.Behaviors.Add(new DateFixerBehavior());