XElement over WCF - 奇怪的错误
我的 WCF 服务之一正在返回一个 XElement 对象。客户端 Web 应用程序 Visual Studio 不断显示此消息
无法将源类型 'System.Xml.Linq.XElement[Service.Contracts, Version=1.0.0.0, Culture=neutral]' 转换为目标类型 'System. Xml.Linq.XElemnet[System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]'
这段代码上方的
XElement xml = xmlService.Get();
这两个应用程序位于同一台计算机上。该项目编译得很好,没有显示错误,但很烦人。可能是什么问题?
顺便说一句,我应该返回一个字符串并解析它吗?
One of my WCF service is returning a XElement object. Visual Studio, the client web app, is keeping showing this message
Cannot convert source type 'System.Xml.Linq.XElement[Service.Contracts, Version=1.0.0.0, Culture=neutral]' to target type 'System.Xml.Linq.XElemnet[System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]'
above this piece of code
XElement xml = xmlService.Get();
Both apps are on the same computer. The project compiles just fine,no error is shown,but it's anoying. What could be the problem ?
BTW Should I rather return a string and the parse it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
电脑重新启动后,又可以正常使用了。
After computer restart, it works fine again.