如何使用 Java-WS 缓存 WSDL
我创建了一个使用 java WS 与 SOAP 服务交互的应用程序。 我使用内置的 netbeans 函数生成类并管理 WSDL。
每次运行应用程序时,它都必须下载 WSDL 并再次解析它。 WSDL 在每个版本中都被冻结,因此我认为这是没有必要的。 我尝试将其作为本地文件引用,但随后我的应用程序抱怨当它安装在另一台计算机上时找不到该文件。
有谁知道如何阻止 Java WS 需要重新解析 WSDL,或者至少在本地缓存它?
I've created an app that interacts with a SOAP service using java WS. I generate classes and manage the WSDL using the built in netbeans functions.
Every time I run the application, it has to download the WSDL and parse it again. The WSDL is frozen at each version so I don't think this is necessary. I've tried to reference it as a local file, but then my app complains it can't find the file when it's installed on another machine.
Does anyone know how I can stop Java WS needing to re-parse the WSDL, or at least cache it locally?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经弄清楚了...
此页面包含信息
使用本地打包的 WSDL 开发客户端应用程序
I've figured it out...
This page has the info
Developing client application with locally packaged WSDL