Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create on the fly web service, Dynamic web service invoker [closed]

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

like image 951
Milan Avatar asked Mar 22 '10 10:03

Milan


3 Answers

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.

like image 69
systempuntoout Avatar answered Nov 08 '22 06:11

systempuntoout


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

like image 26
Orhan Cinar Avatar answered Nov 08 '22 06:11

Orhan Cinar


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

Generates clients on the fly.

like image 21
Kannan Ekanath Avatar answered Nov 08 '22 08:11

Kannan Ekanath