如何在 Spring MVC 应用程序中从 Apache Axis Web 服务调用方法?
我有一个 Apache Axis Web 服务,用于处理文件上传以及从 Oracle 数据库输入和检索信息。它具有我的 Spring MVC 应用程序所需的所有功能。我想知道的是,我将如何从应用程序中的 Web 服务调用方法并为它们提供工作所需的参数?
I have an Apache Axis web service that handles file uploads and enters and retrieves information from an Oracle database. It has all the functions my Spring MVC app needs. What I want to know is, how would I go about calling the methods from the web service in my application and giving them the parameters they need to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 wsdl2java 构建客户端存根,这些存根是您需要的 Java 类称呼。
Use wsdl2java to build your client stubs which are Java classes that you call.