“不是符合 ABAP XML 格式的有效日期”调用 SAP PI Web 服务时出错
我收到此 System.ServiceModel.FaultException
通过 WCF 从我的 .NET 应用程序调用 SAP XI/PI Web 服务:
CX_SY_CONVERSION_NO_DATE_TIME:XSLT 异常。在简单转换程序 /1BCDWB/WSSB430AA018B4EA689BF0 中反序列化时发生错误。根据 ABAP 的 XML 格式,值 7/12/2010 不是有效日期
有问题的日期是一个字符串字段,我正在使用 . NET DateTime.ToShortDateString()
方法。
谁能告诉我日期的有效“ABAP XML 格式”是什么?
I'm getting this System.ServiceModel.FaultException
calling an SAP XI/PI web service from my .NET application via WCF:
CX_SY_CONVERSION_NO_DATE_TIME:XSLT exception. An error occurred when deserializing in the simple transformation program /1BCDWB/WSSB430AA018B4EA689BF0.Value 7/12/2010 is not a valid date in accord with the XML format for ABAP
The date in question is a string field that I'm formatting with the .NET DateTime.ToShortDateString()
method.
Can anyone tell me what the valid "XML format for ABAP" is for dates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 YYYY-MM-DD 否则您可以浏览服务 wsdl 并查看如何定义日期类型。
try YYYY-MM-DD otherwise you could browse the services wsdl and see how the date type is defined.