weblogic服务器Web服务的测试页与wsdl不同
我的 weblogic 服务器测试页面有问题,它的 Web 服务与 wsdl 不同。如果我从 Jdeveloper 运行,那么我会得到可以输入的文本文件,然后在 Web 上按调用,只有 xml 是错误的。为什么Weblogic创建wring WS测试?
I have problem with weblogic server Test page for web service which is different from wsdl. If i run from Jdeveloper then i get textfileds which i can enter and press invoke at web there is just xml which is wrong. Why Weblogic create wring WS test?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将 JDeveloper IDE 的功能与基本 Web 服务定义混淆了。
WSDL 是一个 XML 文件,因此当您在目标服务器上部署 WSDL 时,它将打开并向您显示 XML 内容。这与直接在浏览器中打开 WSDL 文件相同。
JDeveloper 作为 IDE 具有允许对 Web 服务进行嵌入式测试的附加工具,允许您传递参数并查看输出。
要在不使用 JDeveloper 的情况下测试 WSDL,您需要编写一个客户端来调用 Web 服务并获取结果。
You are mistaking the capabilities of the JDeveloper IDE with basic web service definitions.
WSDL is an XML file, so when you deploy your WSDL on a target server, it will open up and show you the XML content. This is the same as opening the WSDL file in a browser directly.
JDeveloper as an IDE has additional tools that allow embedded testing of the web service, allowing you to pass parameters and see the output.
For testing your WSDL without JDeveloper, you need to write a client that will call the web service and get the results.