检索单个操作的 WSDL

发布于 2024-11-23 16:36:33 字数 162 浏览 0 评论 0原文

我是 wsdl 解析方面的新手,我关于 WSDL 的信息非常有限。 我有一个场景,其中有一个包含多个操作的 wsdl 文件,我想从中获取特定操作的 wsdl。 java或JS中有没有库可以完成这样的任务。或者我错过了什么。

如果问题有什么不对的地方请指正,

先谢谢了 比杰什

Im a Newbie in wsdl parsing and my information about WSDL is very limited.
I have a scenario in which there is a wsdl file with multiple operations and i want to get the wsdl for a specific operation from that. Is there any libs in java or JS to accomplish such a task . Or am i missing something.

Please correct me if there is anything wrong in the question ,

Thanks in Advance
Bijesh

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飞烟轻若梦 2024-11-30 16:36:33

WSDL 代表具有特定操作的单个服务。那些属于服务的操作不能脱离服务本身。为了简单地调用一种方法,您必须绑定整个服务(以及所有其他操作和定义的类型)。如果要发布操作,则必须绑定并发布服务中定义的所有操作和类型。确实没有办法解决这个问题。

现在,在您的情况下,如果您使用 java 并且充当客户端,则可以执行 Alfredo O 提到的操作,并使用 SOAP 框架的工具为您生成所有 java 客户端代码。从那里开始,只需使用实际的服务类并调用该类上与您要调用的方法相对应的方法即可。您必须使用整个 wsdl,但从代码的角度来看,您不必担心调用除您感兴趣的方法之外的任何其他方法。

为 SOAP 服务生成 Java 客户端的常用选择是:

WSDLs represent a single service with specific operations. Those operations belong to the service can't be separated from the service itself. In order to simply invoke one method you'll have to bind against the entire service (and all other operations and defined types). If you are publishing the operation, you'll have to bind and publish all operations and types defined in the service. There isn't really a way around that.

Now, in your case if you are using java and if you are acting as a client, you can do what Alfredo O alluded to and use a SOAP framework's tooling to generate all of the java client code for you. From there it's just a matter of using the actual service class and invoking the method on that class that corresponds to the method you want to call. You'll have to use the entire wsdl, but from the perspective of your code you won't have to worry about calling any other methods than the one that interests you.

Popular choices for generating a java client for a SOAP service are:

鲜血染红嫁衣 2024-11-30 16:36:33

您可以使用 Axis 2 自动生成调用这些操作所需的 java 代码。使用 Axis 2 提供的 wsdl2java 工具。

You can use Axis 2 to auto-generate the java code needed to invoke those operations. Use the wsdl2java tool provided by Axis 2.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文