Von: Stettler, Robert [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 23. Dezember 2005 02:59
An: Apache AXIS C User List
Cc: [EMAIL PROTECTED]
Betreff: RE: axis_c++ client for a java web service for "dummies"

 

Not sure if the other guys have already responded….

 

Axiscpp_client is a shared library in axis.  In my installation it actually exists in <Axis instatl>/lib/axis and not in the <Axisinstall>/lib.   Maybe I am non-standard for some reason but I did not think so.

 

The –L portion of the g++ command tells the linker where to find the library.  The file it is looking for is actually named libaxis_client.so.  The lib prefix and the .so suffix are assumed by the linker so you leave them off in the g++ command just as the doc stated.  Locate the libaxis_client.so library under axis, use that directory in the –L option.  If you are not UNIX savvy you can use  find <axis install dir> -name libaxis_client.so –print to locate the library.

 

 

 

-----Original Message-----
From: Ruth del Campo [mailto:[EMAIL PROTECTED]
Sent: Thursday, December 22, 2005 12:31 PM
To: 'Apache AXIS C User List'
Cc: [EMAIL PROTECTED]
Subject: AW: axis_c++ client for a java web service for "dummies"

 

Hi John, all

 

Thanks again for your guide. I have tried it to develop a client for the calculator example today. However, I’m currently having a problem in the step of building the client.  It is writtenin the guide that the command to execute is:

g++ *.cpp -I<Axis installation directory>/include -L<Axis installationdirectory>/lib -ldl -laxiscpp_client –ocalculator  

 

but I cannot build it because I do not know what is “axiscpp_client”.  It is not specified at the document what this is, and as I said, I am new to c++. I know it should be a library…but, which library? Sorry if this is too obvious….

By the way, the rest was quite straight forward with the user guide…

Thank you very much

Best regards,

Ruth

 


Von: John Hawkins [mailto:[EMAIL PROTECTED]
Gesendet: Dienstag, 20. Dezember 2005 16:05
An:
Apache AXIS C User List
Betreff: Re: axis_c++ client for a java web service for "dummies"

 


Hi,

I've written a different version of the docs for users (which unfortunately is not on the website, yet) that hopefully gives you a better idea of what to do when you have the service.


Please ty this out and see how you get on.


cheers,
John.


"Ruth del Campo" <[EMAIL PROTECTED]>

20/12/2005 14:21

Please respond to
"Apache AXIS C User List"

To

<[email protected]>

cc

 

Subject

axis_c++ client for a java web service for "dummies"

 

 

 




Hi all
 
I have developed a java web service with the help of the axis library.
Now, I want to develop a c++ client for that web service.  
Since I haven’t programmed before in c++ but only in Java, I find it quite difficult to start doing it. Sorry if my questions seem very stupid or dummy.
I would like to know, what parts of the axis c++ library I need for developing a c++ client..and if there is some tutorial about it more than the one I found in apache (the one with the calculator example) since for that I need to develop a c++ web service (which I would not like it, since I already have mine in Java)
 
Thank you very much in advantage.
Kind regards and merry Christmas!
Ruth
 
 

 
 
 
 
 
 
 
The information contained in this e-mail is confidential and/or proprietary
 
to Capital One and/or its affiliates. The information transmitted herewith
 
is intended only for use by the individual or entity to which it is 
 
addressed.  If the reader of this message is not the intended recipient, 
 
you are hereby notified that any review, retransmission, dissemination, 
 
distribution, copying or other use of, or taking of any action in reliance 
 
upon this information is strictly prohibited. If you have received this 
 
communication in error, please contact the sender and delete the material 
 
from your computer.
 
 
 




Reply via email to