How to enable the JAX-RPC Web Services plugin in NetBeans 8.0

I am trying to create a WS client from an RPC (presumably) WSDL encoded service in

https://www.fbo.gov/ws/fbo_api.php?wsdl 

I use the right click on the web service project, create a new web service client.

WSDL is RPC encoded. In order to process this WSDL install the "JAX-RPC Web Services" plugin.

I tried to manually install the following plugins

 modules/org-netbeans-modules-websvc-jaxrpc16.nbm modules/org-netbeans-modules-websvc-jaxrpckit.nbm modules/org-netbeans-modules-websvc-jaxrpc.nbm modules/org-netbeans-modules-websvc-registry.nbm 

But still no dice.

+6
source share
3 answers

Actually, JAX-RPC is an old version of SOAP and is overtaken by JAX-WS. This is why netbeans does not provide this plugin in the default version.

You can install the plugin by adding another directory of plugins.

Go to Tools → Plugins → Settings → Add and Set URL as http://deadlock.netbeans.org/hudson/job/nbms-and-javadoc/lastStableBuild/artifact/nbbuild/nbms/updates.xml.gz

After adding this URL, you can see the JAX-RPC plugin in the plugin section and install it.

+8
source

By the way, another way to install plugins is to do it manually (mentioned in the original poster as something that has already been taken). at the time of this writing, NetBeans plug-in / module files (* .nbm) could be downloaded from this location .

this also applies to Apache NetBeans 9. (I actually tried this on NetBeans 9 and hope this works on 8.1 / 8.2 as well). the necessary modules are mentioned in the original poster, and in this message from stackoverflow here (the location of the netbeans repository seems to be constantly changing) - I myself downloaded all the org-netbeans-modules-websvc - * .nbm files, just to be safe.

Netbeans 9 boots correctly. one more thing - I was dealing with a project done with NetBeans 6.8 - I had to change the line in project.properties (wscompile.classpath) as mentioned in this Thanx post .

0
source

For everyone who had problems with JAX RPC plugins on any version of netbeans (in my case netbeans 11) and JAx-RPC, one of the good employees prepared an excellent maven project to create the necessary classes and packages for RPC WSDL

https://github.com/anomen-s/maven-jaxrpc-plugin

0
source

All Articles