Eclipse WSDL 生成器(来自 java 类)?
我想生成与 Java 类兼容的 WSDL。在这个阶段,我不想将其放在网上,只需拥有 wsdl(以便与其他人讨论)并验证生成的文件。
我正在使用 Eclipse,因此我更喜欢任何已与其集成的解决方案。
I want to generate WSDL compliant with Java classes. At this phase I don't want to put it online, just have the wsdl (in order to discuss it with someone else) and validate the generated file.
I'm using Eclipse, so I would prefer any solution that's already integrated with it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 java 角度的 eclipse 中:
这将为您生成一个 WSDL 文件。
From eclipse in the java perspective:
This will generate a WSDL file for you.
您还可以使用任何服务器(例如 Tomcat)在 localhost 发布服务,然后使用浏览器在地址栏中写入
如果服务配置正确,您应该会看到生成的 wsdl。然后,您可以在任何文本编辑器中复制/粘贴并将其另存为
myService.wsdl
。希望有帮助
Also you can publish the service at localhost with any server (Tomcat, for instance) and then with your browser in the address bar write
If the service is correctly configured, you should see the generated wsdl. Then you can copy/paste in any text editor and save it as
myService.wsdl
.Hope that helps