views:

451

answers:

3

I need to prototype a very simple system which sends a request to a remote web service, which will then callback on my own web service once it's finished processing. Unfortunately, I have to implement their WSDL for the callback.

Is there a nice simple way of generating a JBoss application which will correctly implement the WSDL, and run some trivial java code?

I tried wsdl2java from Apache CXF, but that only gave me a standalone server, not a deployable one.

+1  A: 

Does this tutorial help?

djna
Thanks - that got me most of the way. Should be simpler though...
Robert Wilson
A: 

Have a look at Axis2.

Martin OConnor
A: 

wsimport would generate the code from an existing wsdl for you