User login

missing libaxis2.so

Forums :

Hi ,

I am new to WSO2 ,i just installed the WSO2 WSF/C-1.1.0 package on Fedora6 from source ,

The install went well however it did not create a 'libaxis2.so' (which i think is needed )

Can Someone help me on this

 

Also how does one create a client for an end location which points to a wsdl

Thanks

 

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

missing libaxis2.so

Hi,

  Could you please provide us more information on this? What are the commands you used.

Are there any libraries , build with WSF/C. Did you able to start up the server? and etc...

thanks,

Dinesh

 

Hi, All i installed was the

Hi,

All i installed was the standard wsf/c-1.1.0 package from source , no other libraries .

The commands used where ./configure ,make and make install for installing wsfc

and then

gcc -o client_test  -I$WSFC_HOME/include/axis2-1.1 -L$WSFC_HOME/lib -laxis2 client_test.c

for compiling the client

I did not give the server a try ,cause that was not needed for the developement work at hand  for me .

I gave the client a try .If you see the axis2/c documentation on the Apache website ,there they say that one needs to have libaxis.so (specified as -laxis2 in the section for compiling client and server ),however that appears to be missing from the libraries that are created on installing wsf/c 1.1.0

 

Is there some documentation missing somewhere ?

 

Thanks

Amit

 

 

 

 

Mistake in Documentation.

-laxis2 is a mistake in documentation. Please look at the Makefile.am of the echo client sample. (samples/client/echo), to find out required libraries. Basically you need to link following libraries.

  •                     axutil
  •                     axis2_axiom
  •                     axis2_engine
  •                     axis2_parser
  •                     pthread
  •                     axis2_http_sender
  •                     axis2_http_receiver

 

 

thanks,

Dinesh

 

 

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.