Re: compiling with gcc

2008-08-21 Thread Supun Kamburugamuva
Hi Martina,

Glad to here that you finally got it working.

Supun..

On Thu, Aug 21, 2008 at 6:51 PM, Martina08 <[EMAIL PROTECTED]> wrote:

>
> jeah, i can create the math executable file now too. You must just add the
> second source file to the command;)
> Thanks for the great help!!!
> --
> View this message in context:
> http://www.nabble.com/compiling-with-gcc-tp19066875p19089202.html
> Sent from the Axis - C++ - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
Software Engineer, WSO2 Inc


Re: compiling with gcc

2008-08-21 Thread Martina08

jeah, i can create the math executable file now too. You must just add the
second source file to the command;)
Thanks for the great help!!!
-- 
View this message in context: 
http://www.nabble.com/compiling-with-gcc-tp19066875p19089202.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: compiling with gcc

2008-08-21 Thread Martina08

hi, i can create the executable file hello now =) with the command:

gcc -m32 -o hello -Ihome/lxuser//include/axis2-1.5.0/
-L/home/lxuser/../lib -laxutil -laxis2_axiom -laxis2_parser
-laxis2_engine -lpthread -laxis2_http_sender -laxis2_http_receiver hello.c
-ldl -Wl,--rpath -Wl,/home/lxuser/./lib

so i cant use the $AXIS2C_HOME variable. I don´t know why? I have set it to
my accordant folder. Also there must be the -m32 statement in the gcc
command. So i am at least a little bit happy..
Now i try the math example
-- 
View this message in context: 
http://www.nabble.com/compiling-with-gcc-tp19066875p19088656.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: compiling with gcc

2008-08-21 Thread Martina08

So now I have test to compile the simple hello-example in the manual. I have
set all pathes (AXIS2C_HOME, LD_LIBRARY_PATH,..) like the manual. My Command
is like in the manual:

gcc -o hello -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib -laxutil
-laxis2_axiom -laxis2_parser -laxis2_engine -lpthread -laxis2_http_sender
-laxis2_http_receiver hello.c -ldl -Wl,--rpath -Wl,$AXIS2C_HOME/lib

The first errors are:
error: axiom.h: Datei oder Verzeichnis nicht gefunden
error: axis2_util.h: Datei oder Verzeichnis nicht gefunden
error: axiom_soap.h: Datei oder Verzeichnis nicht gefunden
error: axi2_client.h: Datei oder Verzeichnis nicht gefunden

He don´t find the Header-Files, which are declared in the hello.c-File:
#include 
#include 
#include 
#include 
Why?? I still include the the Files with
-I$AXIS2C_HOME/include/axis2-1.5.0/!!!
:( :( :(
-- 
View this message in context: 
http://www.nabble.com/compiling-with-gcc-tp19066875p19086902.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: compiling with gcc

2008-08-21 Thread Martina08

hi, i already have set this Path!! I think the problem resolves from the gcc
compiler. Perhaps it will be concerned with the usage of a 32 or 64 bit
Processor, I had read that there is a -m32 option for the gcc compiler. By
using this feature the "skipping incompatible...cannot found -laxutil"-error
doesnt occurs, but there are two new errors:
In function main:
math_client.c: undefined reference to
´axis2_math_stub_create_with_endpoint_uri_and_client_home´
math_client.c: undefined reference to ´axis2_math_stub_add´
My goal is at long last to compile and link one example...Why it doesnt work
by me
-- 
View this message in context: 
http://www.nabble.com/compiling-with-gcc-tp19066875p19085749.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: compiling with gcc

2008-08-21 Thread Martina08
t;>
>>>>>>> thanks for the answers...
>>>>>>> salute
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Martina08 wrote:
>>>>>>> 
>>>>>>>> I want to build the math-example. My command is like the manual:
>>>>>>>> gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
>>>>>>>>   
>>>>>>> -L$AXIS2C_HOME/lib
>>>>>>> 
>>>>>>>> -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
>>>>>>>> -laxis2_http_sender -laxis2_http_receiver math_client.c ldl
>>>>>>>>   
>>>>>>> -Wl,--rpath
>>>>>>> 
>>>>>>>> -Wl,$AXIS2C_HOME/lib
>>>>>>>>
>>>>>>>> There is the error "Cannot find -laxutil ". I know the Libraries
>>>>>>>>   
>>>> exist
>>>>   
>>>>>>> and
>>>>>>> 
>>>>>>>> I set the $AXIS2C_HOME/lib to the LD_LIBRARY_PATH but this dont
>>>>>>>>   
>>>> solve
>>>>   
>>>>>>> the
>>>>>>> 
>>>>>>>> problem. In which folder I must execute this command?
>>>>>>>> Have i forget something?
>>>>>>>> When i use the complete Path to the libs like:
>>>>>>>> gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
>>>>>>>>   
>>>>>>> -L$AXIS2C_HOME/lib
>>>>>>> 
>>>>>>>> -L$AXIS2C_HOME/lib/libaxutil.so
>>>>>>>>   
>>>> -L$AXIS2C_HOME/lib/libaxis2_axiom.so
>>>>   
>>>>>>>> ...
>>>>>>>> then the compiler find the libraries(there is no error) but then i
>>>>>>>>   
>>>> get
>>>>   
>>>>>>>> much more "undefined reference to"-errors in function main like:
>>>>>>>> undefined reference to axutil_env_create_all
>>>>>>>> undefined reference to axutil_strcmp
>>>>>>>> .
>>>>>>>> .
>>>>>>>> .
>>>>>>>> Does somebody know where is my mistake?
>>>>>>>>
>>>>>>>>   
>>>>>>> --
>>>>>>> View this message in context:
>>>>>>> http://www.nabble.com/compiling-with-gcc-tp19066875p19067851.html
>>>>>>> Sent from the Axis - C++ - User mailing list archive at Nabble.com.
>>>>>>>
>>>>>>>
>>>>>>> -
>>>>>>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>>>>>>> For additional commands, e-mail: [EMAIL PROTECTED]
>>>>>>>
>>>>>>>
>>>>>>> 
>>>>>> --
>>>>>> http://wso2.org/
>>>>>> http://llvm.org/
>>>>>> http://osdev.org/
>>>>>>
>>>>>>
>>>>>>   
>>>>> 
>>>> --
>>>> View this message in context:
>>>> http://www.nabble.com/compiling-with-gcc-tp19066875p19069660.html
>>>> Sent from the Axis - C++ - User mailing list archive at Nabble.com.
>>>>
>>>>
>>>> -
>>>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>>>> For additional commands, e-mail: [EMAIL PROTECTED]
>>>>
>>>>
>>>>   
>>> -- 
>>> http://wso2.org/
>>> http://llvm.org/
>>> http://osdev.org/
>>>
>>>
>>> 
>>
>>   
> 
> 
> -- 
> Sanjaya Ratnaweera
> Senior Software Engineer; WSO2 Inc.
> "Oxygenating the Web Service Platform; " http://www.wso2.com/
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/compiling-with-gcc-tp19066875p19084835.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: compiling with gcc

2008-08-21 Thread Sanjaya Ratnaweera

Hi Martina,

   Try setting LD_LIBRARY_PATH to your $AXIS2C_HOME\lib

   export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$AXIS2C_HOME/lib

   ~sanjaya


Martina08 wrote:

hey Rajika yes this command i have already tried, but it doesnt find the
librariesRegardless of which library of
-laxutil
-laxis2_http_sender
-laxis2_http_receiver
.ans so on

errror message is:
/usr/lib64/gcc/x86_64-suse-linux/4.2.1/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible
/home/lxuser/Axis2CNew/axis2c-bin-1.5.0-linux/lib/libaxis2_http_sender.so
when searching for -laxis2_http_sender
/usr/lib64/gcc/x86_64-suse-linux/4.2.1/../../../../x86_64-suse-linux/bin/ld:
cannot find -laxis2_http_sender
collecct2: ld returned 1 exit status
I dont know what is the reason for this problem, have somebody had the same
problems? 
Meantime I despair of this error :(




jakh wrote:
  

On Wed, Aug 20, 2008 at 7:09 PM, Martina08 <[EMAIL PROTECTED]>
wrote:
gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
-laxis2_http_sender -laxis2_http_receiver *.c  -Wl,--rpath
-Wl,$AXIS2C_HOME/lib

-Rajika




Hi,
anyway i have problems to link Libraries i think. I dont know how to
compile
und link the math Example.
I change the command to:
gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
-laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
-laxis2_http_sender -laxis2_http_receiver math_client.c axis2_math_stub.c
axis2_math_stub.h -ldl -Wl,--rpath -Wl,$AXIS2C_HOME/lib
but there are still the undefined reference errors:( Can somebody give me
a
right gcc command to compile and link the math-example with generated
stubs?



Martina08 wrote:
  

ok i try it. In the manual the example includes only the hello.c file,
there is no additional header file for this example, that why it


suffices
  

only compile and link the hello.c File. So i hope i solve my problem
otherwise i report my new problem again ;) Thanks for the fast help!!



jakh wrote:


On Wed, Aug 20, 2008 at 5:22 PM, Martina08 <[EMAIL PROTECTED]>
wrote:

  

hi,
yes i have set my $AXIS2C_HOME variable. I go over the manuals from
where i
have the gcc-command.
But i tried to compile the math example and not the hello example. I


go
  

to
folder $AXIS2C_HOME/samples/client/math.  There are the 3 Files,


which
i
  

want to compile and link. The files are:
axis2_math_stub.c
axis2_math_stub.h
math_client.c
Must i include the stub files (.c and .h) into the command?


Yes you do, seems like you have missed what is at the end of the
  

command
  

from the manual.

-Rajika


  

I want to have
an executable File, which i can then use with the axis2 server...

thanks for the answers...
salute



Martina08 wrote:


I want to build the math-example. My command is like the manual:
gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
  

-L$AXIS2C_HOME/lib


-laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
-laxis2_http_sender -laxis2_http_receiver math_client.c ldl
  

-Wl,--rpath


-Wl,$AXIS2C_HOME/lib

There is the error "Cannot find -laxutil ". I know the Libraries
  

exist
  

and


I set the $AXIS2C_HOME/lib to the LD_LIBRARY_PATH but this dont
  

solve
  

the


problem. In which folder I must execute this command?
Have i forget something?
When i use the complete Path to the libs like:
gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
  

-L$AXIS2C_HOME/lib


-L$AXIS2C_HOME/lib/libaxutil.so
  

-L$AXIS2C_HOME/lib/libaxis2_axiom.so
  

...
then the compiler find the libraries(there is no error) but then i
  

get
  

much more "undefined reference to"-errors in function main like:
undefined reference to axutil_env_create_all
undefined reference to axutil_strcmp
.
.
.
Does somebody know where is my mistake?

  

--
View this message in context:
http://www.nabble.com/compiling-with-gcc-tp19066875p19067851.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




--
http://wso2.org/
http://llvm.org/
http://osdev.org/


  


--
View this message in context:
http://www.nabble.com/compiling-with-gcc-tp19066875p19069660.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


  

--
http://wso2.org/
http://llvm.org/
http://osdev.org/





  



--
Sanjaya Ratnaweera
Senior Software Engineer; WSO2 Inc.
"

Re: compiling with gcc

2008-08-21 Thread Martina08

hey Rajika yes this command i have already tried, but it doesnt find the
librariesRegardless of which library of
-laxutil
-laxis2_http_sender
-laxis2_http_receiver
.ans so on

errror message is:
/usr/lib64/gcc/x86_64-suse-linux/4.2.1/../../../../x86_64-suse-linux/bin/ld:
skipping incompatible
/home/lxuser/Axis2CNew/axis2c-bin-1.5.0-linux/lib/libaxis2_http_sender.so
when searching for -laxis2_http_sender
/usr/lib64/gcc/x86_64-suse-linux/4.2.1/../../../../x86_64-suse-linux/bin/ld:
cannot find -laxis2_http_sender
collecct2: ld returned 1 exit status
I dont know what is the reason for this problem, have somebody had the same
problems? 
Meantime I despair of this error :(



jakh wrote:
> 
> On Wed, Aug 20, 2008 at 7:09 PM, Martina08 <[EMAIL PROTECTED]>
> wrote:
> gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
> -laxis2_http_sender -laxis2_http_receiver *.c  -Wl,--rpath
> -Wl,$AXIS2C_HOME/lib
> 
> -Rajika
> 
> 
>> Hi,
>> anyway i have problems to link Libraries i think. I dont know how to
>> compile
>> und link the math Example.
>> I change the command to:
>> gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
>> -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
>> -laxis2_http_sender -laxis2_http_receiver math_client.c axis2_math_stub.c
>> axis2_math_stub.h -ldl -Wl,--rpath -Wl,$AXIS2C_HOME/lib
>> but there are still the undefined reference errors:( Can somebody give me
>> a
>> right gcc command to compile and link the math-example with generated
>> stubs?
>>
>>
>>
>> Martina08 wrote:
>> >
>> > ok i try it. In the manual the example includes only the hello.c file,
>> > there is no additional header file for this example, that why it
>> suffices
>> > only compile and link the hello.c File. So i hope i solve my problem
>> > otherwise i report my new problem again ;) Thanks for the fast help!!
>> >
>> >
>> >
>> > jakh wrote:
>> >>
>> >> On Wed, Aug 20, 2008 at 5:22 PM, Martina08 <[EMAIL PROTECTED]>
>> >> wrote:
>> >>
>> >>>
>> >>> hi,
>> >>> yes i have set my $AXIS2C_HOME variable. I go over the manuals from
>> >>> where i
>> >>> have the gcc-command.
>> >>> But i tried to compile the math example and not the hello example. I
>> go
>> >>> to
>> >>> folder $AXIS2C_HOME/samples/client/math.  There are the 3 Files,
>> which
>> i
>> >>> want to compile and link. The files are:
>> >>> axis2_math_stub.c
>> >>> axis2_math_stub.h
>> >>> math_client.c
>> >>> Must i include the stub files (.c and .h) into the command?
>> >>
>> >>
>> >> Yes you do, seems like you have missed what is at the end of the
>> command
>> >> from the manual.
>> >>
>> >> -Rajika
>> >>
>> >>
>> >>> I want to have
>> >>> an executable File, which i can then use with the axis2 server...
>> >>>
>> >>> thanks for the answers...
>> >>> salute
>> >>>
>> >>>
>> >>>
>> >>> Martina08 wrote:
>> >>> >
>> >>> > I want to build the math-example. My command is like the manual:
>> >>> > gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
>> >>> -L$AXIS2C_HOME/lib
>> >>> > -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
>> >>> > -laxis2_http_sender -laxis2_http_receiver math_client.c ldl
>> >>> -Wl,--rpath
>> >>> > -Wl,$AXIS2C_HOME/lib
>> >>> >
>> >>> > There is the error "Cannot find -laxutil ". I know the Libraries
>> exist
>> >>> and
>> >>> > I set the $AXIS2C_HOME/lib to the LD_LIBRARY_PATH but this dont
>> solve
>> >>> the
>> >>> > problem. In which folder I must execute this command?
>> >>> > Have i forget something?
>> >>> > When i use the complete Path to the libs like:
>> >>> > gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
>> >>> -L$AXIS2C_HOME/lib
>> >>> > -L$AXIS2C_HOME/lib/libaxutil.so
>> -L$AXIS2C_HOME/lib/libaxis2_axiom.so
>> >>> > ...
>> >>> > then the compiler find the libraries(there is no error) but then i
>> get
>> >>> &g

Re: compiling with gcc

2008-08-20 Thread Rajika Kumarasiri
On Wed, Aug 20, 2008 at 7:09 PM, Martina08 <[EMAIL PROTECTED]> wrote:
gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
-laxis2_http_sender -laxis2_http_receiver *.c  -Wl,--rpath
-Wl,$AXIS2C_HOME/lib

-Rajika


> Hi,
> anyway i have problems to link Libraries i think. I dont know how to
> compile
> und link the math Example.
> I change the command to:
> gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
> -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
> -laxis2_http_sender -laxis2_http_receiver math_client.c axis2_math_stub.c
> axis2_math_stub.h -ldl -Wl,--rpath -Wl,$AXIS2C_HOME/lib
> but there are still the undefined reference errors:( Can somebody give me a
> right gcc command to compile and link the math-example with generated
> stubs?
>
>
>
> Martina08 wrote:
> >
> > ok i try it. In the manual the example includes only the hello.c file,
> > there is no additional header file for this example, that why it suffices
> > only compile and link the hello.c File. So i hope i solve my problem
> > otherwise i report my new problem again ;) Thanks for the fast help!!
> >
> >
> >
> > jakh wrote:
> >>
> >> On Wed, Aug 20, 2008 at 5:22 PM, Martina08 <[EMAIL PROTECTED]>
> >> wrote:
> >>
> >>>
> >>> hi,
> >>> yes i have set my $AXIS2C_HOME variable. I go over the manuals from
> >>> where i
> >>> have the gcc-command.
> >>> But i tried to compile the math example and not the hello example. I go
> >>> to
> >>> folder $AXIS2C_HOME/samples/client/math.  There are the 3 Files, which
> i
> >>> want to compile and link. The files are:
> >>> axis2_math_stub.c
> >>> axis2_math_stub.h
> >>> math_client.c
> >>> Must i include the stub files (.c and .h) into the command?
> >>
> >>
> >> Yes you do, seems like you have missed what is at the end of the command
> >> from the manual.
> >>
> >> -Rajika
> >>
> >>
> >>> I want to have
> >>> an executable File, which i can then use with the axis2 server...
> >>>
> >>> thanks for the answers...
> >>> salute
> >>>
> >>>
> >>>
> >>> Martina08 wrote:
> >>> >
> >>> > I want to build the math-example. My command is like the manual:
> >>> > gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
> >>> -L$AXIS2C_HOME/lib
> >>> > -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
> >>> > -laxis2_http_sender -laxis2_http_receiver math_client.c ldl
> >>> -Wl,--rpath
> >>> > -Wl,$AXIS2C_HOME/lib
> >>> >
> >>> > There is the error "Cannot find -laxutil ". I know the Libraries
> exist
> >>> and
> >>> > I set the $AXIS2C_HOME/lib to the LD_LIBRARY_PATH but this dont solve
> >>> the
> >>> > problem. In which folder I must execute this command?
> >>> > Have i forget something?
> >>> > When i use the complete Path to the libs like:
> >>> > gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
> >>> -L$AXIS2C_HOME/lib
> >>> > -L$AXIS2C_HOME/lib/libaxutil.so -L$AXIS2C_HOME/lib/libaxis2_axiom.so
> >>> > ...
> >>> > then the compiler find the libraries(there is no error) but then i
> get
> >>> > much more "undefined reference to"-errors in function main like:
> >>> > undefined reference to axutil_env_create_all
> >>> > undefined reference to axutil_strcmp
> >>> > .
> >>> > .
> >>> > .
> >>> > Does somebody know where is my mistake?
> >>> >
> >>>
> >>> --
> >>> View this message in context:
> >>> http://www.nabble.com/compiling-with-gcc-tp19066875p19067851.html
> >>> Sent from the Axis - C++ - User mailing list archive at Nabble.com.
> >>>
> >>>
> >>> -
> >>> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >>> For additional commands, e-mail: [EMAIL PROTECTED]
> >>>
> >>>
> >>
> >>
> >> --
> >> http://wso2.org/
> >> http://llvm.org/
> >> http://osdev.org/
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/compiling-with-gcc-tp19066875p19069660.html
> Sent from the Axis - C++ - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
http://wso2.org/
http://llvm.org/
http://osdev.org/


Re: compiling with gcc

2008-08-20 Thread Martina08

Hi, 
anyway i have problems to link Libraries i think. I dont know how to compile
und link the math Example.
I change the command to:
gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
-laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
-laxis2_http_sender -laxis2_http_receiver math_client.c axis2_math_stub.c
axis2_math_stub.h -ldl -Wl,--rpath -Wl,$AXIS2C_HOME/lib 
but there are still the undefined reference errors:( Can somebody give me a
right gcc command to compile and link the math-example with generated stubs?



Martina08 wrote:
> 
> ok i try it. In the manual the example includes only the hello.c file,
> there is no additional header file for this example, that why it suffices
> only compile and link the hello.c File. So i hope i solve my problem
> otherwise i report my new problem again ;) Thanks for the fast help!!
> 
> 
> 
> jakh wrote:
>> 
>> On Wed, Aug 20, 2008 at 5:22 PM, Martina08 <[EMAIL PROTECTED]>
>> wrote:
>> 
>>>
>>> hi,
>>> yes i have set my $AXIS2C_HOME variable. I go over the manuals from
>>> where i
>>> have the gcc-command.
>>> But i tried to compile the math example and not the hello example. I go
>>> to
>>> folder $AXIS2C_HOME/samples/client/math.  There are the 3 Files, which i
>>> want to compile and link. The files are:
>>> axis2_math_stub.c
>>> axis2_math_stub.h
>>> math_client.c
>>> Must i include the stub files (.c and .h) into the command?
>> 
>> 
>> Yes you do, seems like you have missed what is at the end of the command
>> from the manual.
>> 
>> -Rajika
>> 
>> 
>>> I want to have
>>> an executable File, which i can then use with the axis2 server...
>>>
>>> thanks for the answers...
>>> salute
>>>
>>>
>>>
>>> Martina08 wrote:
>>> >
>>> > I want to build the math-example. My command is like the manual:
>>> > gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
>>> -L$AXIS2C_HOME/lib
>>> > -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
>>> > -laxis2_http_sender -laxis2_http_receiver math_client.c ldl
>>> -Wl,--rpath
>>> > -Wl,$AXIS2C_HOME/lib
>>> >
>>> > There is the error "Cannot find -laxutil ". I know the Libraries exist
>>> and
>>> > I set the $AXIS2C_HOME/lib to the LD_LIBRARY_PATH but this dont solve
>>> the
>>> > problem. In which folder I must execute this command?
>>> > Have i forget something?
>>> > When i use the complete Path to the libs like:
>>> > gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
>>> -L$AXIS2C_HOME/lib
>>> > -L$AXIS2C_HOME/lib/libaxutil.so -L$AXIS2C_HOME/lib/libaxis2_axiom.so
>>> > ...
>>> > then the compiler find the libraries(there is no error) but then i get
>>> > much more "undefined reference to"-errors in function main like:
>>> > undefined reference to axutil_env_create_all
>>> > undefined reference to axutil_strcmp
>>> > .
>>> > .
>>> > .
>>> > Does somebody know where is my mistake?
>>> >
>>>
>>> --
>>> View this message in context:
>>> http://www.nabble.com/compiling-with-gcc-tp19066875p19067851.html
>>> Sent from the Axis - C++ - User mailing list archive at Nabble.com.
>>>
>>>
>>> -
>>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>>> For additional commands, e-mail: [EMAIL PROTECTED]
>>>
>>>
>> 
>> 
>> -- 
>> http://wso2.org/
>> http://llvm.org/
>> http://osdev.org/
>> 
>> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/compiling-with-gcc-tp19066875p19069660.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: compiling with gcc

2008-08-20 Thread Martina08

ok i try it. In the manual the example includes only the hello.c file, there
is no additional header file for this example, that why it suffices only
compile and link the hello.c File. So i hope i solve my problem otherwise i
report my new problem again ;) Thanks for the fast help!!



jakh wrote:
> 
> On Wed, Aug 20, 2008 at 5:22 PM, Martina08 <[EMAIL PROTECTED]>
> wrote:
> 
>>
>> hi,
>> yes i have set my $AXIS2C_HOME variable. I go over the manuals from where
>> i
>> have the gcc-command.
>> But i tried to compile the math example and not the hello example. I go
>> to
>> folder $AXIS2C_HOME/samples/client/math.  There are the 3 Files, which i
>> want to compile and link. The files are:
>> axis2_math_stub.c
>> axis2_math_stub.h
>> math_client.c
>> Must i include the stub files (.c and .h) into the command?
> 
> 
> Yes you do, seems like you have missed what is at the end of the command
> from the manual.
> 
> -Rajika
> 
> 
>> I want to have
>> an executable File, which i can then use with the axis2 server...
>>
>> thanks for the answers...
>> salute
>>
>>
>>
>> Martina08 wrote:
>> >
>> > I want to build the math-example. My command is like the manual:
>> > gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
>> -L$AXIS2C_HOME/lib
>> > -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
>> > -laxis2_http_sender -laxis2_http_receiver math_client.c ldl -Wl,--rpath
>> > -Wl,$AXIS2C_HOME/lib
>> >
>> > There is the error "Cannot find -laxutil ". I know the Libraries exist
>> and
>> > I set the $AXIS2C_HOME/lib to the LD_LIBRARY_PATH but this dont solve
>> the
>> > problem. In which folder I must execute this command?
>> > Have i forget something?
>> > When i use the complete Path to the libs like:
>> > gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/
>> -L$AXIS2C_HOME/lib
>> > -L$AXIS2C_HOME/lib/libaxutil.so -L$AXIS2C_HOME/lib/libaxis2_axiom.so
>> > ...
>> > then the compiler find the libraries(there is no error) but then i get
>> > much more "undefined reference to"-errors in function main like:
>> > undefined reference to axutil_env_create_all
>> > undefined reference to axutil_strcmp
>> > .
>> > .
>> > .
>> > Does somebody know where is my mistake?
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/compiling-with-gcc-tp19066875p19067851.html
>> Sent from the Axis - C++ - User mailing list archive at Nabble.com.
>>
>>
>> -
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
> 
> 
> -- 
> http://wso2.org/
> http://llvm.org/
> http://osdev.org/
> 
> 

-- 
View this message in context: 
http://www.nabble.com/compiling-with-gcc-tp19066875p19068424.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: compiling with gcc

2008-08-20 Thread Rajika Kumarasiri
On Wed, Aug 20, 2008 at 5:22 PM, Martina08 <[EMAIL PROTECTED]> wrote:

>
> hi,
> yes i have set my $AXIS2C_HOME variable. I go over the manuals from where i
> have the gcc-command.
> But i tried to compile the math example and not the hello example. I go to
> folder $AXIS2C_HOME/samples/client/math.  There are the 3 Files, which i
> want to compile and link. The files are:
> axis2_math_stub.c
> axis2_math_stub.h
> math_client.c
> Must i include the stub files (.c and .h) into the command?


Yes you do, seems like you have missed what is at the end of the command
from the manual.

-Rajika


> I want to have
> an executable File, which i can then use with the axis2 server...
>
> thanks for the answers...
> salute
>
>
>
> Martina08 wrote:
> >
> > I want to build the math-example. My command is like the manual:
> > gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
> > -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
> > -laxis2_http_sender -laxis2_http_receiver math_client.c ldl -Wl,--rpath
> > -Wl,$AXIS2C_HOME/lib
> >
> > There is the error "Cannot find -laxutil ". I know the Libraries exist
> and
> > I set the $AXIS2C_HOME/lib to the LD_LIBRARY_PATH but this dont solve the
> > problem. In which folder I must execute this command?
> > Have i forget something?
> > When i use the complete Path to the libs like:
> > gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
> > -L$AXIS2C_HOME/lib/libaxutil.so -L$AXIS2C_HOME/lib/libaxis2_axiom.so
> > ...
> > then the compiler find the libraries(there is no error) but then i get
> > much more "undefined reference to"-errors in function main like:
> > undefined reference to axutil_env_create_all
> > undefined reference to axutil_strcmp
> > .
> > .
> > .
> > Does somebody know where is my mistake?
> >
>
> --
> View this message in context:
> http://www.nabble.com/compiling-with-gcc-tp19066875p19067851.html
> Sent from the Axis - C++ - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
http://wso2.org/
http://llvm.org/
http://osdev.org/


Re: compiling with gcc

2008-08-20 Thread Martina08

hi,
yes i have set my $AXIS2C_HOME variable. I go over the manuals from where i
have the gcc-command.
But i tried to compile the math example and not the hello example. I go to
folder $AXIS2C_HOME/samples/client/math.  There are the 3 Files, which i
want to compile and link. The files are:
axis2_math_stub.c
axis2_math_stub.h
math_client.c
Must i include the stub files (.c and .h) into the command? I want to have
an executable File, which i can then use with the axis2 server...

thanks for the answers...
salute



Martina08 wrote:
> 
> I want to build the math-example. My command is like the manual:
> gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
> -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
> -laxis2_http_sender -laxis2_http_receiver math_client.c ldl -Wl,--rpath
> -Wl,$AXIS2C_HOME/lib
> 
> There is the error "Cannot find -laxutil ". I know the Libraries exist and
> I set the $AXIS2C_HOME/lib to the LD_LIBRARY_PATH but this dont solve the
> problem. In which folder I must execute this command?
> Have i forget something?
> When i use the complete Path to the libs like:
> gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
> -L$AXIS2C_HOME/lib/libaxutil.so -L$AXIS2C_HOME/lib/libaxis2_axiom.so
> ...
> then the compiler find the libraries(there is no error) but then i get
> much more "undefined reference to"-errors in function main like:
> undefined reference to axutil_env_create_all
> undefined reference to axutil_strcmp
> .
> .
> .
> Does somebody know where is my mistake?
> 

-- 
View this message in context: 
http://www.nabble.com/compiling-with-gcc-tp19066875p19067851.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: compiling with gcc

2008-08-20 Thread lahiru gunathilake
Hi Martin,

Please have a look in to this
http://ws.apache.org/axis2/c/docs/axis2c_manual.html


Cheers
Lahiru

On Wed, Aug 20, 2008 at 4:13 PM, Martina08 <[EMAIL PROTECTED]> wrote:

>
> I want to build the math-example. My command is like the manual:
> gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
> -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
> -laxis2_http_sender -laxis2_http_receiver math_client.c ldl -Wl,--rpath
> -Wl,$AXIS2C_HOME/lib
>
> There is the error "Cannot find -laxutil ". I know the Libraries exist and
> I
> set the $AXIS2C_HOME/lib to the LD_LIBRARY_PATH but this dont solve the
> problem. In which folder I must execute this command?
> Have i forget something?
> When i use the complete Path to the libs like:
> gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
> -L$AXIS2C_HOME/lib/libaxutil.so -L$AXIS2C_HOME/lib/libaxis2_axiom.so
> ...
> then the compiler find the libraries(there is no error) but then i get much
> more "undefined reference to"-errors in function main like:
> undefined reference to axutil_env_create_all
> undefined reference to axutil_strcmp
> .
> .
> .
> Does somebody know where is my mistake?
> --
> View this message in context:
> http://www.nabble.com/compiling-with-gcc-tp19066875p19066875.html
> Sent from the Axis - C++ - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: compiling with gcc

2008-08-20 Thread Rajika Kumarasiri
On Wed, Aug 20, 2008 at 4:13 PM, Martina08 <[EMAIL PROTECTED]> wrote:
Did you set the AXIS2C_HOME variable?
Try echo $AXIS2C_HOME from where you issue the compilation option for math
client

-Rajika

>
> I want to build the math-example. My command is like the manual:
> gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
> -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
> -laxis2_http_sender -laxis2_http_receiver math_client.c ldl -Wl,--rpath
> -Wl,$AXIS2C_HOME/lib
>
> There is the error "Cannot find -laxutil ". I know the Libraries exist and
> I
> set the $AXIS2C_HOME/lib to the LD_LIBRARY_PATH but this dont solve the
> problem. In which folder I must execute this command?
> Have i forget something?
> When i use the complete Path to the libs like:
> gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
> -L$AXIS2C_HOME/lib/libaxutil.so -L$AXIS2C_HOME/lib/libaxis2_axiom.so
> ...
> then the compiler find the libraries(there is no error) but then i get much
> more "undefined reference to"-errors in function main like:
> undefined reference to axutil_env_create_all
> undefined reference to axutil_strcmp
> .
> .
> .
> Does somebody know where is my mistake?
> --
> View this message in context:
> http://www.nabble.com/compiling-with-gcc-tp19066875p19066875.html
> Sent from the Axis - C++ - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
http://wso2.org/
http://llvm.org/
http://osdev.org/


compiling with gcc

2008-08-20 Thread Martina08

I want to build the math-example. My command is like the manual:
gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
-laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread
-laxis2_http_sender -laxis2_http_receiver math_client.c ldl -Wl,--rpath
-Wl,$AXIS2C_HOME/lib

There is the error "Cannot find -laxutil ". I know the Libraries exist and I
set the $AXIS2C_HOME/lib to the LD_LIBRARY_PATH but this dont solve the
problem. In which folder I must execute this command?
Have i forget something?
When i use the complete Path to the libs like:
gcc -o mathexecute -I$AXIS2C_HOME/include/axis2-1.5.0/ -L$AXIS2C_HOME/lib
-L$AXIS2C_HOME/lib/libaxutil.so -L$AXIS2C_HOME/lib/libaxis2_axiom.so
...
then the compiler find the libraries(there is no error) but then i get much
more "undefined reference to"-errors in function main like:
undefined reference to axutil_env_create_all
undefined reference to axutil_strcmp
.
.
.
Does somebody know where is my mistake?
-- 
View this message in context: 
http://www.nabble.com/compiling-with-gcc-tp19066875p19066875.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]