Linux 上使用 SOAP 的 Web 服务服务器
我需要 Linux 上的 SOAP Web 服务可以与 Windows Web 服务客户端(例如 ASP.NET)通信。最好的方法是什么?需要帮助!
有人可以给我一些示例或一些有效示例的链接吗?
编辑: 那么c++呢?我想要一个 C++ Web 服务服务器。 如何做到这一点以及如何从 Windows 测试它(C#?)?请帮忙。 我确实成功地使用 gsoap 和 wsdl 编写了一个 Web 服务,但在 Windows Web 服务客户端上出现错误:“响应消息的内容类型 text/plain 与绑定的内容类型不匹配 (text/xml; charset=utf-8)。如果使用自定义编码,请确保正确实现 IsContentTypeSupport。”
我不知道出了什么问题。 Web 服务是一个 wsdl url。有人可以点亮我吗?
Web 服务服务器将位于 ubuntu 服务器上!!
I need SOAP web service on Linux that can communicate with a windows web service client (ASP.NET for example). What is the best way to do this? need help!
Can someone give me some examples or some links to some examples that work?
EDIT:
what about c++? I would like to have a c++ web service server.
how to do it and how to test it from windows (C#?)? please help.
i did succedded to write a web service with gsoap and wsdl but on windows web service client i have the error :"the content type text/plain of the response message does not match the content typeof the binding (text/xml; charset=utf-8). if using a custom encoding be sure that the IsContentTypeSupport is implemented properly."
I don't know what's wrong. The web service is a wsdl url. Can someone light me up?
The webservice server will be on an ubuntu server!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以用任何您想要的语言编写肥皂服务器,或多或少:
最好的方法是选择您已经了解的技术。
You can write a soap server in any language you want, more or less:
The best way is to pick a technology you already know.
我会推荐 Glassfish 上的 Java EE 6。根据我的经验,部署非常简单。检查 Java EE 6 教程/Web 服务
I would recommend Java EE 6 on Glassfish. It's quite simple to deploy from my experience. Check Java EE 6 Tutorial/Web Services