Localname of attribute value

2010-01-06 Thread Thomas Baier
Hi, when using anyType as a parameter, type information about the value passed is included as an attribute, e.g. in the soap message pData xsi:type=xsd:double3.1415/pData I can get the type attribute using axiom_element_get_attribute(), but the attribute's value is xsd:double. How can I

Re: Standalone Web Service

2010-01-06 Thread Samisa Abeysinghe
On Wed, Jan 6, 2010 at 12:55 PM, Thomas Baier thomas.ba...@gmx.net wrote: Samisa, any ideas or hints on how to do this? If the default binary pack like solution is acceptable, then the build scripts does that for you. Samisa... Best, Thomas Samisa Abeysinghe schrieb: I think this

Re: Standalone Web Service

2010-01-06 Thread Thomas Baier
Samisa Abeysinghe schrieb: On Wed, Jan 6, 2010 at 12:55 PM, Thomas Baier thomas.ba...@gmx.net mailto:thomas.ba...@gmx.net wrote: Samisa, any ideas or hints on how to do this? If the default binary pack like solution is acceptable, then the build scripts does that for you.

how to build axis2_tcp_receiver.dll and axis2_tcp_sender.dll

2010-01-06 Thread Sam Carleton
I am thinking that the issue might be a linker issue, so I am trying to recompile Axis2/C 1.6 from source on my Windows 7 dev machine and running into some issues, such as how to build axis2_tcp_receiver.dll and axis2_tcp_sender.dll. Withing the axis2c\build\win32 directory, I run all the build

RE : how to build axis2_tcp_receiver.dll and axis2_tcp_sender.dll

2010-01-06 Thread Lefrancois, Carl
Sam you need all these DLLs. The client needs axis2_tcp_receiver.dll to receive the response from the server. There are the dependencies to worry about. Have you tried using the workspace files included in ides\vc\axis2c or ides\vc6\axis2c? The dependencies (at least in the vc6 version) take

Re: Standalone Web Service

2010-01-06 Thread Nandika Jayawardana
Currently, this is not supported. When loading modules and services, axis2 uses the same function axis2_get_instance which is implemented by all modules and services. Therefore an static linking will fail for the moment. However, we have it on the project road map to implement static linking

Re: Cannot get Axis2/C Client to run in clean system

2010-01-06 Thread Nandika Jayawardana
Do you have any debug dlls linked to your application or has any of the dependency versions have changed from your development environment to the new clean environment ? Regards Nandika On Wed, Jan 6, 2010 at 10:46 AM, Sam Carleton scarle...@miltonstreet.comwrote: I am working on getting my

Re: Cannot get Axis2/C Client to run in clean system

2010-01-06 Thread Sam Carleton
I figured it out this evening, sort of... I got it working, none the less... I believe the issue was that Axis2/C was compiled with /MD and my code was /MT, which I changed Axis2/C flag and recompiled everything, it works like a charm! Now to get the Apache server w/ Axis2/C to install! I

Re: Localname of attribute value

2010-01-06 Thread Damitha Kumarage
Thomas Baier wrote: Hi, when using anyType as a parameter, type information about the value passed is included as an attribute, e.g. in the soap message pData xsi:type=xsd:double3.1415/pData I can get the type attribute using axiom_element_get_attribute(), but the attribute's value is

Re: Localname of attribute value

2010-01-06 Thread Thomas Baier
Damitha Kumarage schrieb: Thomas Baier wrote: Hi, when using anyType as a parameter, type information about the value passed is included as an attribute, e.g. in the soap message pData xsi:type=xsd:double3.1415/pData I can get the type attribute using axiom_element_get_attribute(),

Re: Localname of attribute value

2010-01-06 Thread Damitha Kumarage
Thomas Baier wrote: Damitha Kumarage schrieb: Thomas Baier wrote: Hi, when using anyType as a parameter, type information about the value passed is included as an attribute, e.g. in the soap message pData xsi:type=xsd:double3.1415/pData I can get the type attribute using