Re: LNK2005 axutil_error_messages

2007-05-11 Thread mark . nuessler
hello users,

when I compile the echo service with '/FORCE:MULTIPLE',
deploy the echo.dll, start axis2_http_server.exe
(debug command in project-settings) and go to a
commandline to start the echo client, the server crashed.
When i compile the dll as RELEASE the axis2_http_server.exe
crash, with DEBUG the Error is (transl. ger-en):

unknown exception at 0x00633ad8 (axis2_engine.dll) in axis2_http_server.exe:
0xC005: access violation when reading
at position 0x.

the debugger stops in 'msg_recv.c' in the function
'axis2_msg_recv_make_new_svc_obj' when it tries to
init with AXIS2_SVC_SKELETON_INIT((axis2_svc_skeleton_t *)impl_class, env);

the output is :

exception (1st try) at 0x00633ad8 (axis2_engine.dll) in axis2_http_server.exe:
0xC005: access violation when reading
at position 0x.
unhandled exception bei 0x00633ad8 (axis2_engine.dll) in axis2_http_server.exe:
0xC005: access violation when reading
at position 0x.

'impl_class' is 0x (seems to be the problem here)
'env' seems to be correct

2 line above in 'msg_recv.c' :
impl_class = axutil_class_loader_create_dll(env, impl_info_param);
axis2_svc_set_impl_class(svc, env, impl_class);

'svc' and 'impl_info_param' seems to be ok.

ok, this happened, when i used '/TP' and '/FORCE:MULTIPLE'.
when i only used '/TC' everthing works fine.

what happens, when you use '/TP' ? did you get the LNK2005
_axutil_error_messages already defined in echo.obj or not?
what happens when you use '/TP' and '/FORCE:MULTIPLE', no crash ?

mh, i am at a loss with this prob, seems that i am stumped,
i am grateful for any advice what else could lead to this
problem.

thx derMark


[EMAIL PROTECTED] schrieb:
 Hello Mark,

 What you mean with server crash (what is the error)? Yes of course my Server
is running.

 Regards Lars

 -Original Message-
 From: Mark Nüßler [mailto:[EMAIL PROTECTED]
 Sent: Donnerstag, 10. Mai 2007 17:08
 To: Apache AXIS C User List
 Subject: Re: LNK2005 axutil_error_messages

 hello users, hello lars,

 if have used '/FORCE:MULTIPLE' or '/FORCE' and
 can build the dll, but this dll's crashes the
 axis2_http_server.exe, so this is no good solution ;-)
 When you compile with /FORCE:MULTIPLE didn't your
 server crash ?

 thx + mfg derMark


 [EMAIL PROTECTED] schrieb:
 I have solved the problem with /FORCE:MULTIPLE

 Regards Lars

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Donnerstag, 10. Mai 2007 14:24
 To: axis-c-user@ws.apache.org
 Subject: Re: LNK2005 axutil_error_messages

 Hello users, hello Samisa,

 i took the echo-sample, with /TC there is no prob, i can compile, deploy, run
-
 but with /TP not. Both times I use /MDd.

 the error is :

 'echo_skeleton.obj : error LNK2005: _axutil_error_messages already defined in
 echo.obj'

 Here is the begin of the build process, i've used '/VERBOSE' to see more
 information.

 1-- Erstellen gestartet: Projekt: echo, Konfiguration: Debug Win32
--
 1Kompilieren...
 1echo.c
 1echo_skeleton.c
 1Code wird generiert...
 1Verknüpfen...
 1Durchlauf 1 gestartet
 1/DEFAULTLIB:MSVCRTD wurde verarbeitet.
 1/DEFAULTLIB:OLDNAMES wurde verarbeitet.
 1echo_skeleton.obj : error LNK2005: _axutil_error_messages ist bereits in
 echo.obj definiert.
 1Bibliotheken werden durchsucht.
 1Durchsuchen von ../../../lib/axiom.lib:
 1  [EMAIL PROTECTED] gefunden.
 1In echo.obj referenziert
 1axiom.lib(axiom.dll) geladen


 thx 4 your time

 mfg derMark




 hello users,

 same issue again, i've downloaded the current svn-version (Revision 536815),
 compiled it, set the enviroment vars, etc.

 my system(s) : WinXP, vs2003 + vs2005

 The problem with 'error LNK2005: _axutil_error_messages already defined'
 appears, when i compile any sample as C++ (/TP), not as C (/TC).

 Does it say where it was already defined? Please send the full error.

 Samisa...


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


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




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


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





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



Re: LNK2005 axutil_error_messages

2007-05-11 Thread Samisa Abeysinghe

The problem seems to be in the creation of the service object.
This can happen due to couple of reasons:
   - the service DLL cannot be located
   - the service DLL is there, but is corrupted
  
In case the service DLL is currupted, can you please ensure that you 
re-compile and link to the new libs that you created with the new 
compiler options.


Samisa...
[EMAIL PROTECTED] wrote:

hello users,

when I compile the echo service with '/FORCE:MULTIPLE',
deploy the echo.dll, start axis2_http_server.exe
(debug command in project-settings) and go to a
commandline to start the echo client, the server crashed.
When i compile the dll as RELEASE the axis2_http_server.exe
crash, with DEBUG the Error is (transl. ger-en):

unknown exception at 0x00633ad8 (axis2_engine.dll) in axis2_http_server.exe:
0xC005: access violation when reading
at position 0x.

the debugger stops in 'msg_recv.c' in the function
'axis2_msg_recv_make_new_svc_obj' when it tries to
init with AXIS2_SVC_SKELETON_INIT((axis2_svc_skeleton_t *)impl_class, env);

the output is :

exception (1st try) at 0x00633ad8 (axis2_engine.dll) in axis2_http_server.exe:
0xC005: access violation when reading
at position 0x.
unhandled exception bei 0x00633ad8 (axis2_engine.dll) in axis2_http_server.exe:
0xC005: access violation when reading
at position 0x.

'impl_class' is 0x (seems to be the problem here)
'env' seems to be correct

2 line above in 'msg_recv.c' :
impl_class = axutil_class_loader_create_dll(env, impl_info_param);
axis2_svc_set_impl_class(svc, env, impl_class);

'svc' and 'impl_info_param' seems to be ok.

ok, this happened, when i used '/TP' and '/FORCE:MULTIPLE'.
when i only used '/TC' everthing works fine.

what happens, when you use '/TP' ? did you get the LNK2005
_axutil_error_messages already defined in echo.obj or not?
what happens when you use '/TP' and '/FORCE:MULTIPLE', no crash ?

mh, i am at a loss with this prob, seems that i am stumped,
i am grateful for any advice what else could lead to this
problem.

thx derMark


[EMAIL PROTECTED] schrieb:
  

Hello Mark,

What you mean with server crash (what is the error)? Yes of course my Server


is running.
  

Regards Lars

-Original Message-
From: Mark Nüßler [mailto:[EMAIL PROTECTED]
Sent: Donnerstag, 10. Mai 2007 17:08
To: Apache AXIS C User List
Subject: Re: LNK2005 axutil_error_messages

hello users, hello lars,

if have used '/FORCE:MULTIPLE' or '/FORCE' and
can build the dll, but this dll's crashes the
axis2_http_server.exe, so this is no good solution ;-)
When you compile with /FORCE:MULTIPLE didn't your
server crash ?

thx + mfg derMark


[EMAIL PROTECTED] schrieb:


I have solved the problem with /FORCE:MULTIPLE

Regards Lars

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Donnerstag, 10. Mai 2007 14:24
To: axis-c-user@ws.apache.org
Subject: Re: LNK2005 axutil_error_messages

Hello users, hello Samisa,

i took the echo-sample, with /TC there is no prob, i can compile, deploy, run
  

-
  

but with /TP not. Both times I use /MDd.

the error is :

'echo_skeleton.obj : error LNK2005: _axutil_error_messages already defined in
echo.obj'

Here is the begin of the build process, i've used '/VERBOSE' to see more
information.

1-- Erstellen gestartet: Projekt: echo, Konfiguration: Debug Win32
  

--
  

1Kompilieren...
1echo.c
1echo_skeleton.c
1Code wird generiert...
1Verknüpfen...
1Durchlauf 1 gestartet
1/DEFAULTLIB:MSVCRTD wurde verarbeitet.
1/DEFAULTLIB:OLDNAMES wurde verarbeitet.
1echo_skeleton.obj : error LNK2005: _axutil_error_messages ist bereits in
echo.obj definiert.
1Bibliotheken werden durchsucht.
1Durchsuchen von ../../../lib/axiom.lib:
1  [EMAIL PROTECTED] gefunden.
1In echo.obj referenziert
1axiom.lib(axiom.dll) geladen


thx 4 your time

mfg derMark




  

hello users,

same issue again, i've downloaded the current svn-version (Revision 536815),
compiled it, set the enviroment vars, etc.

my system(s) : WinXP, vs2003 + vs2005

The problem with 'error LNK2005: _axutil_error_messages already defined'
appears, when i compile any sample as C++ (/TP), not as C (/TC).



Does it say where it was already defined? Please send the full error.

Samisa...


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


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



  

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


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

RE: LNK2005 axutil_error_messages

2007-05-11 Thread lars.schumacher
Hello Mark,

When i only use '/tp', yes i get  error LNK2005 _axutil_error_messages already 
defined in  and i can't not compile my application. When i use '/TP' and 
'/FORCE:MULTIPLE' i get only warning LNK4006: _axutil_error_messages already 
defined in axis2_skel_ttwebservices.obj; second definition ignored and my 
server is run. But i don't compile the echo service. I compile only my own 
service. The echo service is by me compiled by the makefile and since today he 
works correct, but it was a failure in my configuration ( the libxml.dll was to 
old) .

Sorry for my bad english. When you don't understand me and understand German 
you can write me directly.

Regards Lars
 
-Original Message-
From: Samisa Abeysinghe [mailto:[EMAIL PROTECTED] 
Sent: Freitag, 11. Mai 2007 11:58
To: Apache AXIS C User List
Subject: Re: LNK2005 axutil_error_messages

The problem seems to be in the creation of the service object.
This can happen due to couple of reasons:
- the service DLL cannot be located
- the service DLL is there, but is corrupted
   
In case the service DLL is currupted, can you please ensure that you 
re-compile and link to the new libs that you created with the new 
compiler options.

Samisa...
[EMAIL PROTECTED] wrote:
 hello users,

 when I compile the echo service with '/FORCE:MULTIPLE',
 deploy the echo.dll, start axis2_http_server.exe
 (debug command in project-settings) and go to a
 commandline to start the echo client, the server crashed.
 When i compile the dll as RELEASE the axis2_http_server.exe
 crash, with DEBUG the Error is (transl. ger-en):

 unknown exception at 0x00633ad8 (axis2_engine.dll) in axis2_http_server.exe:
 0xC005: access violation when reading
 at position 0x.

 the debugger stops in 'msg_recv.c' in the function
 'axis2_msg_recv_make_new_svc_obj' when it tries to
 init with AXIS2_SVC_SKELETON_INIT((axis2_svc_skeleton_t *)impl_class, env);

 the output is :

 exception (1st try) at 0x00633ad8 (axis2_engine.dll) in axis2_http_server.exe:
 0xC005: access violation when reading
 at position 0x.
 unhandled exception bei 0x00633ad8 (axis2_engine.dll) in 
 axis2_http_server.exe:
 0xC005: access violation when reading
 at position 0x.

 'impl_class' is 0x (seems to be the problem here)
 'env' seems to be correct

 2 line above in 'msg_recv.c' :
 impl_class = axutil_class_loader_create_dll(env, impl_info_param);
 axis2_svc_set_impl_class(svc, env, impl_class);

 'svc' and 'impl_info_param' seems to be ok.

 ok, this happened, when i used '/TP' and '/FORCE:MULTIPLE'.
 when i only used '/TC' everthing works fine.

 what happens, when you use '/TP' ? did you get the LNK2005
 _axutil_error_messages already defined in echo.obj or not?
 what happens when you use '/TP' and '/FORCE:MULTIPLE', no crash ?

 mh, i am at a loss with this prob, seems that i am stumped,
 i am grateful for any advice what else could lead to this
 problem.

 thx derMark


 [EMAIL PROTECTED] schrieb:
   
 Hello Mark,

 What you mean with server crash (what is the error)? Yes of course my Server
 
 is running.
   
 Regards Lars

 -Original Message-
 From: Mark Nüßler [mailto:[EMAIL PROTECTED]
 Sent: Donnerstag, 10. Mai 2007 17:08
 To: Apache AXIS C User List
 Subject: Re: LNK2005 axutil_error_messages

 hello users, hello lars,

 if have used '/FORCE:MULTIPLE' or '/FORCE' and
 can build the dll, but this dll's crashes the
 axis2_http_server.exe, so this is no good solution ;-)
 When you compile with /FORCE:MULTIPLE didn't your
 server crash ?

 thx + mfg derMark


 [EMAIL PROTECTED] schrieb:
 
 I have solved the problem with /FORCE:MULTIPLE

 Regards Lars

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Donnerstag, 10. Mai 2007 14:24
 To: axis-c-user@ws.apache.org
 Subject: Re: LNK2005 axutil_error_messages

 Hello users, hello Samisa,

 i took the echo-sample, with /TC there is no prob, i can compile, deploy, 
 run
   
 -
   
 but with /TP not. Both times I use /MDd.

 the error is :

 'echo_skeleton.obj : error LNK2005: _axutil_error_messages already defined 
 in
 echo.obj'

 Here is the begin of the build process, i've used '/VERBOSE' to see more
 information.

 1-- Erstellen gestartet: Projekt: echo, Konfiguration: Debug Win32
   
 --
   
 1Kompilieren...
 1echo.c
 1echo_skeleton.c
 1Code wird generiert...
 1Verknüpfen...
 1Durchlauf 1 gestartet
 1/DEFAULTLIB:MSVCRTD wurde verarbeitet.
 1/DEFAULTLIB:OLDNAMES wurde verarbeitet.
 1echo_skeleton.obj : error LNK2005: _axutil_error_messages ist bereits in
 echo.obj definiert.
 1Bibliotheken werden durchsucht.
 1Durchsuchen von ../../../lib/axiom.lib:
 1  [EMAIL PROTECTED] gefunden.
 1In echo.obj referenziert
 1axiom.lib(axiom.dll) geladen


 thx 4 your time

 mfg derMark




   
 hello users,

 same issue again, i've downloaded the current svn-version (Revision 
 536815),
 compiled it, set the enviroment vars, etc

Re: LNK2005 axutil_error_messages

2007-05-10 Thread mark . nuessler
hello users,

same issue again, i've downloaded the current svn-version (Revision 536815),
compiled it, set the enviroment vars, etc.

my system(s) : WinXP, vs2003 + vs2005

The problem with 'error LNK2005: _axutil_error_messages already defined'
appears, when i compile any sample as C++ (/TP), not as C (/TC).

Question, isn't it possible to use /TP or only /TC ?

thx derMark



 hello users of axis2c,

 when i compile the 'math-service-sample' with vs2005 (vc 7.1) there is no
prob,
 but when i do the same with vs2003 (vc 7.0) i got an error from the linker.

 error LNK2005: _axutil_error_messages already defined in math_skeleton.obj


This was a bug. The same variable had been defined twice in the same header.
Thanks to Jim, we solved this in 1.0 release.
Either you could get this from svn or wait couple of days and download 1.0 form
the web site.

Samisa...


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



Re: LNK2005 axutil_error_messages

2007-05-10 Thread Samisa Abeysinghe

[EMAIL PROTECTED] wrote:

hello users,

same issue again, i've downloaded the current svn-version (Revision 536815),
compiled it, set the enviroment vars, etc.

my system(s) : WinXP, vs2003 + vs2005

The problem with 'error LNK2005: _axutil_error_messages already defined'
appears, when i compile any sample as C++ (/TP), not as C (/TC).
  

Does it say where it was already defined? Please send the full error.

Samisa...

--
Samisa Abeysinghe : http://www.wso2.org/ (WSO2 Oxygen Tank - Web Services 
Developers' Portal)


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



Re: LNK2005 axutil_error_messages

2007-05-10 Thread mark . nuessler
Hello users, hello Samisa,

i took the echo-sample, with /TC there is no prob, i can compile, deploy, run -
but with /TP not. Both times I use /MDd.

the error is :

'echo_skeleton.obj : error LNK2005: _axutil_error_messages already defined in
echo.obj'

Here is the begin of the build process, i've used '/VERBOSE' to see more
information.

1-- Erstellen gestartet: Projekt: echo, Konfiguration: Debug Win32 --
1Kompilieren...
1echo.c
1echo_skeleton.c
1Code wird generiert...
1Verknüpfen...
1Durchlauf 1 gestartet
1/DEFAULTLIB:MSVCRTD wurde verarbeitet.
1/DEFAULTLIB:OLDNAMES wurde verarbeitet.
1echo_skeleton.obj : error LNK2005: _axutil_error_messages ist bereits in
echo.obj definiert.
1Bibliotheken werden durchsucht.
1Durchsuchen von ../../../lib/axiom.lib:
1  [EMAIL PROTECTED] gefunden.
1In echo.obj referenziert
1axiom.lib(axiom.dll) geladen


thx 4 your time

mfg derMark




 hello users,

 same issue again, i've downloaded the current svn-version (Revision 536815),
 compiled it, set the enviroment vars, etc.

 my system(s) : WinXP, vs2003 + vs2005

 The problem with 'error LNK2005: _axutil_error_messages already defined'
 appears, when i compile any sample as C++ (/TP), not as C (/TC).

Does it say where it was already defined? Please send the full error.

Samisa...


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



Re: LNK2005 axutil_error_messages

2007-05-10 Thread Mark Nüßler

hello users, hello lars,

if have used '/FORCE:MULTIPLE' or '/FORCE' and
can build the dll, but this dll's crashes the
axis2_http_server.exe, so this is no good solution ;-)
When you compile with /FORCE:MULTIPLE didn't your
server crash ?

thx + mfg derMark


[EMAIL PROTECTED] schrieb:

I have solved the problem with /FORCE:MULTIPLE

Regards Lars 


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Donnerstag, 10. Mai 2007 14:24

To: axis-c-user@ws.apache.org
Subject: Re: LNK2005 axutil_error_messages

Hello users, hello Samisa,

i took the echo-sample, with /TC there is no prob, i can compile, deploy, run -
but with /TP not. Both times I use /MDd.

the error is :

'echo_skeleton.obj : error LNK2005: _axutil_error_messages already defined in
echo.obj'

Here is the begin of the build process, i've used '/VERBOSE' to see more
information.

1-- Erstellen gestartet: Projekt: echo, Konfiguration: Debug Win32 --
1Kompilieren...
1echo.c
1echo_skeleton.c
1Code wird generiert...
1Verknüpfen...
1Durchlauf 1 gestartet
1/DEFAULTLIB:MSVCRTD wurde verarbeitet.
1/DEFAULTLIB:OLDNAMES wurde verarbeitet.
1echo_skeleton.obj : error LNK2005: _axutil_error_messages ist bereits in
echo.obj definiert.
1Bibliotheken werden durchsucht.
1Durchsuchen von ../../../lib/axiom.lib:
1  [EMAIL PROTECTED] gefunden.
1In echo.obj referenziert
1axiom.lib(axiom.dll) geladen


thx 4 your time

mfg derMark





hello users,

same issue again, i've downloaded the current svn-version (Revision 536815),
compiled it, set the enviroment vars, etc.

my system(s) : WinXP, vs2003 + vs2005

The problem with 'error LNK2005: _axutil_error_messages already defined'
appears, when i compile any sample as C++ (/TP), not as C (/TC).


Does it say where it was already defined? Please send the full error.

Samisa...


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


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





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



RE: LNK2005 axutil_error_messages

2007-05-10 Thread lars.schumacher
Hello Mark,

What you mean with server crash (what is the error)? Yes of course my Server is 
running.

Regards Lars  

-Original Message-
From: Mark Nüßler [mailto:[EMAIL PROTECTED] 
Sent: Donnerstag, 10. Mai 2007 17:08
To: Apache AXIS C User List
Subject: Re: LNK2005 axutil_error_messages

hello users, hello lars,

if have used '/FORCE:MULTIPLE' or '/FORCE' and
can build the dll, but this dll's crashes the
axis2_http_server.exe, so this is no good solution ;-)
When you compile with /FORCE:MULTIPLE didn't your
server crash ?

thx + mfg derMark


[EMAIL PROTECTED] schrieb:
 I have solved the problem with /FORCE:MULTIPLE
 
 Regards Lars 
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
 Sent: Donnerstag, 10. Mai 2007 14:24
 To: axis-c-user@ws.apache.org
 Subject: Re: LNK2005 axutil_error_messages
 
 Hello users, hello Samisa,
 
 i took the echo-sample, with /TC there is no prob, i can compile, deploy, run 
 -
 but with /TP not. Both times I use /MDd.
 
 the error is :
 
 'echo_skeleton.obj : error LNK2005: _axutil_error_messages already defined in
 echo.obj'
 
 Here is the begin of the build process, i've used '/VERBOSE' to see more
 information.
 
 1-- Erstellen gestartet: Projekt: echo, Konfiguration: Debug Win32 --
 1Kompilieren...
 1echo.c
 1echo_skeleton.c
 1Code wird generiert...
 1Verknüpfen...
 1Durchlauf 1 gestartet
 1/DEFAULTLIB:MSVCRTD wurde verarbeitet.
 1/DEFAULTLIB:OLDNAMES wurde verarbeitet.
 1echo_skeleton.obj : error LNK2005: _axutil_error_messages ist bereits in
 echo.obj definiert.
 1Bibliotheken werden durchsucht.
 1Durchsuchen von ../../../lib/axiom.lib:
 1  [EMAIL PROTECTED] gefunden.
 1In echo.obj referenziert
 1axiom.lib(axiom.dll) geladen
 
 
 thx 4 your time
 
 mfg derMark
 
 
 
 
 hello users,

 same issue again, i've downloaded the current svn-version (Revision 536815),
 compiled it, set the enviroment vars, etc.

 my system(s) : WinXP, vs2003 + vs2005

 The problem with 'error LNK2005: _axutil_error_messages already defined'
 appears, when i compile any sample as C++ (/TP), not as C (/TC).

 Does it say where it was already defined? Please send the full error.
 
 Samisa...
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

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


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



LNK2005 axutil_error_messages

2007-05-04 Thread mark . nuessler
hello users of axis2c,

when i compile the 'math-service-sample' with vs2005 (vc 7.1) there is no prob,
but when i do the same with vs2003 (vc 7.0) i got an error from the linker.

error LNK2005: _axutil_error_messages already defined in math_skeleton.obj

does anybody have an advice for me ?

mfg derMark


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