如何为我的 JSP 页面创建 WSDL
我有一个工作 JSP 页面(带有一个参数)。现在有人想使用我的 JSP 作为 Web 服务。
如何为 JSP 创建 WSDL,以及如何传递参数
我能够创建 WSDL 并测试它,但无法读取我的参数 request.getParameter
JSP。
I have a working JSP page (with one parameter). Now somebody wants to use my JSP as a webservice.
How can I create a WSDL for my JSP, and how do I passthrough parameters
I'm able to to create a WSDL and test it, but I'm unable to read my parameter request.getParameter
in the JSP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议研究一些现有的框架,例如 axis2 或 jax-ws,用于创建 Web 服务。手动执行 SOAP 往往会变得……混乱。
I would suggest looking into some existing framework, like axis2 or jax-ws, for creating web services. Doing SOAP manually tend to get...messy.