Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to create dynamic invoker of webservices based on their WSDL. any idea? thanks

share|improve this question
did you had any luck with this? – Panagiotis Korros May 26 '10 at 14:28

4 Answers

I think you are looking for this

Dynamic Web service invocation from WSDL

http://www.computing.dcu.ie/~mwang/DI/di.html

share|improve this answer
1  
Link only answers are not welcome to Stack Overflow. – hims056 Dec 11 '12 at 6:59

have you read this pages ?

Dynamic Discovery and Invocation of Web services

Dynamically Invoking a Web Service

Update

C# – Dynamically Invoke Web Service At Runtime

Creating a dynamic Web service to simplify code From 2006

share|improve this answer
Second link refers to .NET – systempuntoout Mar 22 '10 at 16:37
"Dynamic Discovery and Invocation of Web services", Date: 01 Aug 2001. Isnt little bit complicated, doesnt exist easier way? – Milan Mar 22 '10 at 16:43
Actualy I need to write the invoker in Java, Eclipse + JSF. – Milan Mar 22 '10 at 16:58

http://cxf.apache.org/docs/dynamic-clients.html

Generates clients on the fly.

share|improve this answer
yes, but anyway before I invoke the webservice I should know the operation and the message? – Milan Mar 22 '10 at 11:31
1  
Ok, If you dont know what operation/message you are calling, how are you plannign to invoke a webservice? This CXF thingy generates clients on the fly in that if the wsdl grammar has changed it gets regenerated. You still need to know an operation name :) – Calm Storm Mar 22 '10 at 11:32
You are right :) I need to know the operation name:) But what about the messages sent and recieved? If I should make dynamic client invoker, it means that I should write wsdl parser anyway? – Milan Mar 22 '10 at 11:36

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.

share|improve this answer
no - JAX-RPC is outdated. JAX-WS is "fresh" – Bozho Mar 22 '10 at 11:21
Does it mean that anyway I should parse the wsdl to get the required information like: servicename, portTypes, operations,...? – Milan Mar 22 '10 at 11:29
@Bozho Ok for the freshness :); but help me to find an example with JAX-WS that uses DII. – systempuntoout Mar 22 '10 at 15:52
1  
JAX-WS's DII is the Dispatch object (javax.xml.ws.Dispatch). – Pascal Thivent Mar 22 '10 at 16:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.