Re: Loading mod_axis2.so module into Apache

2008-07-16 Thread Supun Kamburugamuva
Hi Samisa, I think some of the instructions like setting the LD_LIBRARY_PATH is missing. Also I think we should add a faq saying what are the things that can go wrong when we deploy in Apache and possible solutions to that. Supun.. On Thu, Jul 17, 2008 at 11:57 AM, Samisa Abeysinghe <[EMAIL PROT

Re: Redirecting Web Services

2008-07-16 Thread Samisa Abeysinghe
Axis2/C client cannot handle redirection. Samisa... Brian S Bates (bribates) wrote: Hi, I am working on a project using REST with Axis2C, and have encountered a problem. I would like to take the URI of the REST request and redirect it somewhere else. For example, if the user enters: http

Re: Loading mod_axis2.so module into Apache

2008-07-16 Thread Samisa Abeysinghe
Supun, Arn't these steps on the manual? Samisa... Supun Kamburugamuva wrote: Hi Alex, Nice description of the problem. Couldn't think of a better way to do it. This is what you need to do. You have the axis2/c distribution in /home/alex/axis2c-dist right? You should have the lib, modules

Re: Loading mod_axis2.so module into Apache

2008-07-16 Thread Samisa Abeysinghe
1. Compile Axis2/C on a machine with identical settings to that of the server machine. 2. Install that on server machine, following the guidelines given in binary install That should work. Samisa... Alex Bolgarov wrote: Well, our server machine is not supposed to have development tools at al

Re: Loading mod_axis2.so module into Apache

2008-07-16 Thread Supun Kamburugamuva
Hi Alex, Nice description of the problem. Couldn't think of a better way to do it. This is what you need to do. You have the axis2/c distribution in /home/alex/axis2c-dist right? You should have the lib, modules and services directories under that directory. Also you need to have the axis2.xml f

Re: Redirecting Web Services

2008-07-16 Thread Supun Kamburugamuva
Hi brian, Can you please send us the redirected message for the Axis2/C client. It seems that their is something wrong in the XML. You can capture the message using a tool like tcpmon http://ws.apache.org/commons/tcpmon/. Supun.. On Wed, Jul 16, 2008 at 7:58 PM, Brian S Bates (bribates) < [EMAIL

Re: Many errors in Axis2c.sln (Windows) for release mode

2008-07-16 Thread Supun Kamburugamuva
Hi, I think you are referring to Windows VC 8 project. We don't support the release build yet. If you look at the project properties, you can see that nothing is configured for release build. For now the only option available is the nmake. Please create a jira so we won't forget this. Supun.. On

Re: echo.wsdl file for Axis echo sample

2008-07-16 Thread Manjula Peiris
On Thu, 2008-07-17 at 08:16 +0530, Rajika Kumarasiri wrote: > > > On Wed, Jul 16, 2008 at 6:37 PM, Mauney <[EMAIL PROTECTED]> > wrote: > > Hi all, > I've just downloaded Axis2c and tried to build echo service > and echo client > on MS VC. Everything looks

Re: echo.wsdl file for Axis echo sample

2008-07-16 Thread Rajika Kumarasiri
On Wed, Jul 16, 2008 at 6:37 PM, Mauney <[EMAIL PROTECTED]> wrote: > > Hi all, > I've just downloaded Axis2c and tried to build echo service and echo client > on MS VC. Everything looks OK. I try to access to echo service from browser > by using webservice.htc but it requires echo.wsdl. Do you ha

Re: SSL related memory leak ?

2008-07-16 Thread Rajika Kumarasiri
On Wed, Jul 16, 2008 at 6:52 PM, Rafal Metkowski <[EMAIL PROTECTED]> wrote: > > Hi, > > I've written small client using Axis2C and I've noticed memory leaks > when connecting to service with https. > > I've checked with the valgrind and got following results: > valgrind --leak-check=full > ==8057=

Re: Loading mod_axis2.so module into Apache

2008-07-16 Thread Rajika Kumarasiri
On Thu, Jul 17, 2008 at 2:25 AM, Alex Bolgarov <[EMAIL PROTECTED]> wrote: > Well, our server machine is not supposed to have development tools at > all. So I can't compile the Axis2/C on it. > > Then, how it is supposed to work if I use the Axis2C binary distribution? 1. Unzip the binary to a loc

Re: Loading mod_axis2.so module into Apache

2008-07-16 Thread Rajika Kumarasiri
On Thu, Jul 17, 2008 at 12:03 AM, Alex Bolgarov <[EMAIL PROTECTED]> wrote: > Hi, > > How do you load a mod_axis2.so module into the Apache when you copy > the Axis2/C libraries to some directory Apache load mod_axis2 using the path in Axis2/c Loadmodule directives.( LoadModule axis2_module MOD_

Re: Loading mod_axis2.so module into Apache

2008-07-16 Thread Alex Bolgarov
Well, our server machine is not supposed to have development tools at all. So I can't compile the Axis2/C on it. Then, how it is supposed to work if I use the Axis2C binary distribution? And it should have nothing to do with environment variables settings (other then possible LD_LIBRARY_PATH) bec

Re: Loading mod_axis2.so module into Apache

2008-07-16 Thread lahiru gunathilake
On Thu, Jul 17, 2008 at 12:58 AM, lahiru gunathilake <[EMAIL PROTECTED]> wrote: > Hi Alex, > > I think you have to set AXIS2C_HOME environment variable on your server > machine. > You don't need to set the environment variable but you are suppose to change the Axis2RepoPath in the Apache config fi

Re: Loading mod_axis2.so module into Apache

2008-07-16 Thread lahiru gunathilake
Hi Alex, I think you have to set AXIS2C_HOME environment variable on your server machine. And why are you copying libraries from one machine to another why don't you compile Axis2C on you server machine.AFAIK if your first machine and the second machine are different,different in the sense first m

Loading mod_axis2.so module into Apache

2008-07-16 Thread Alex Bolgarov
Hi, How do you load a mod_axis2.so module into the Apache when you copy the Axis2/C libraries to some directory - for example, when you are using the binary Axis2/C distribution, or just build Axis2/C from source on one machine (and installed itto some directory) and then copy Axis2/C module and l

Many errors in Axis2c.sln (Windows) for release mode

2008-07-16 Thread Mike McKee
Building for Debug seems to be ok, but not for release. There are many errors, and things left off in the project properties for the 1.4 release.

RE : RE : RE : WSDL2C deserialisation problem

2008-07-16 Thread Lefrancois, Carl
Hi Dimuthu, More information on this interesting problem... I decided to start by modifying the definition of my schema to try and get around the current_node initialisation problem. I changed the definition of the base type to this: I ignore

Redirecting Web Services

2008-07-16 Thread Brian S Bates (bribates)
Hi, I am working on a project using REST with Axis2C, and have encountered a problem. I would like to take the URI of the REST request and redirect it somewhere else. For example, if the user enters: http://server:port/loc1/service?param1=value1, I want this to be directed to http://server:por

SSL related memory leak ?

2008-07-16 Thread Rafal Metkowski
Hi, I've written small client using Axis2C and I've noticed memory leaks when connecting to service with https. I've checked with the valgrind and got following results: valgrind --leak-check=full ==8057== 58,000 (292 direct, 57,708 indirect) bytes in 1 blocks are definitely lost in loss record

echo.wsdl file for Axis echo sample

2008-07-16 Thread Mauney
Hi all, I've just downloaded Axis2c and tried to build echo service and echo client on MS VC. Everything looks OK. I try to access to echo service from browser by using webservice.htc but it requires echo.wsdl. Do you have echo.wsdl file available? Where I can get it? Or how I can make it? Best r

Re: Axis C++ Calculator (Sample) - Error Code 126

2008-07-16 Thread Avdic Vedrana
Yes, I have. thanks Vedrana --- Samisa Abeysinghe <[EMAIL PROTECTED]> schrieb am Mi, 16.7.2008: Von: Samisa Abeysinghe <[EMAIL PROTECTED]> Betreff: Re: Axis C++ Calculator (Sample) - Error Code 126 An: "Apache AXIS C User List" Datum: Mittwoch, 16. Juli 2008, 13:19 Avdic Vedrana wrote: > Hi! >

Re: Axis C++ Calculator (Sample) - Error Code 126

2008-07-16 Thread Samisa Abeysinghe
Avdic Vedrana wrote: Hi! I'm using Axis C++ with Apache 2.0 (on Windows XP). The Installation happen with the Axis C++ installation guide (http://ws.apache.org/axis/cpp/install-guide.html). For the calculator sample I used the Tutorial (http://ws.apache.org/axis/cpp/arch/End-2-End-Sample.html

Re: Cannot retrieve http headers in 1.4

2008-07-16 Thread Supun Kamburugamuva
Hi Hatim, First sorry for the late reply. The way that you try to acquire the headers is not supported now. Instead there is a direct method in message context that give the list of headers. Your code up to getting the message context is correct. Then you need to call the method list = axis2_msg

Axis C++ Calculator (Sample) - Error Code 126

2008-07-16 Thread Avdic Vedrana
Hi! I'm using Axis C++ with Apache 2.0 (on Windows XP). The Installation happen with the Axis C++ installation guide (http://ws.apache.org/axis/cpp/install-guide.html). For the calculator sample I used the Tutorial (http://ws.apache.org/axis/cpp/arch/End-2-End-Sample.html). I'm a relative