You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-user@axis.apache.org by Paul Fremantle <pz...@hursley.ibm.com> on 2004/11/18 09:46:30 UTC

Re: How to dynamically invoke external web service methods using Axis C++

David Song wrote:

>I posted a question last week asking if there is an equivalent to the
>Axis Java DynamicInvoker in Axis C++, someone replied saying no such
>thing exists for Axis C++ so far.  So how do I dynamically invoke
>external web services using Axis C++?  I appreciate anyone pointing me
>to docs or APIs, many thanks!
>
>-David
>
>
>
>  
>
David

The Call api allows you to put together the message. The only thing is 
you have to do all the hard work yourself.
The best way to learn this is to look at the generated code for a stub 
and emulate the same code in your app.

Paul