I need to create dynamic invoker of webservices based on their WSDL. any idea? thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I think you are looking for this Dynamic Web service invocation from WSDL |
|||||
|
|
have you read this pages ? Update |
|||||||
|
|
http://cxf.apache.org/docs/dynamic-clients.html Generates clients on the fly. |
|||||||||
|
|
See JAX-RPC; what you need is Dynamic proxies or Dynamic Invocation Interface (DII) if client doesn't know the remote method name or its signature. Here a good example of what you can do with JAX-RPC having just a WSDL as input. As said in the comment, JAX-RPC is evolved to JAX-WS. |
|||||||||||
|
