tags:

views:

27

answers:

2

Hi,

Is it possible to generate a proxy class from WSDL and use the proxy class for other communication protocol?

For example, my application generate the new proxy class and then use this class as a standard for sending request and receiving response messages on TCP, JMS, etc.

Thanks

+1  A: 

Use WSDL to Proxy Class Tool to generate proxy from WSDL.

KMan
A: 

WSDL to Proxy Class Tool only support TCP and HTTP transport binding but I need to support for other transport binding such as Tibco:// or urn:// or some other transport binding.

So basically what I'm trying to achieve is: Application uses WSDL -> HTTP server or Application uses WSDL -> Tibco Server using different communication channel but same message format.

Thanks

Chen