Re: Configuring from Axis2.xml

2008-07-03 Thread Samisa Abeysinghe
vamsi krishna wrote: Hi Friends, In the src/core/engine/conf.c file we have the function by name axis2_conf_create, in which the phases are created and the respective handlers/dispatchers are being added. Here, I noticed that the phase names are being hardcoded

Re: Why must the AXIS2C_HOME / client_home be set when using a client?

2008-07-03 Thread Samisa Abeysinghe
Supun Kamburugamuva wrote: Hi, AFAIK you don't need to specify the AXIS2C_HOME as an environment variable. Correct. All that is required is to provide the repo location. Using AXIS2C_HOME is only one way of doing that. Samisa... If you know where it is you can specify it when you create

SSL Client Authentication Failure

2008-07-03 Thread Andy Karseras
Hi, I am having trouble using an SSL Client with AXIS2C - basically, authentication appears to fail. I executed the following to obtain the server certificate... echo |\ openssl s_client -connect localhost:7547 21 |\ sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' cert.pem ..and got the

Axis2/C inside Eclipse

2008-07-03 Thread Mauricio Porto
Hi, I am trying to learn about Axis2/C and I would like to use the Eclipse IDE since I am used to working with it in Java projects. Is there some documents regarding how to set an Eclipse project to work with Axis2/C inside Eclipse? I would like to try Axis2/C and its related projects (like

Re: SSL Client Authentication Failure

2008-07-03 Thread Dumindu Pallewela
Hi Andy, snip I am having trouble using an SSL Client with AXIS2C - basically, authentication appears to fail. [Thu Jul 3 13:12:57 2008] [debug] http_transport_sender.c(246) ctx_epr: https://localhost:7547/services/ConfigurationServer [Thu Jul 3 13:12:57 2008] [debug]

Re: Axis2/C inside Eclipse

2008-07-03 Thread Rajika Kumarasiri
On Fri, Jul 4, 2008 at 12:18 AM, Mauricio Porto [EMAIL PROTECTED] wrote: Hi, I am trying to learn about Axis2/C and I would like to use the Eclipse IDE since I am used to working with it in Java projects. Is there some documents regarding how to set an Eclipse project to work with Axis2/C

Failed to load mod_rampart.dll

2008-07-03 Thread yuanhuhu
Hi, I am trying to add in authentication to my Axis2/c client. I downloaded the latest rampart C 1.2 and deployed to my axis2/c 1.4. I followed the samples from rampart C and added the following lines to my Axis2/C client. The client_home points to my Axis2/C installation:

Unable building Axis2C++ in VC6

2008-07-03 Thread Tung.Nguyen
Dear, I use the flowing direction to build Axis2c-1.4.0 client in VC6++ http://mail-archives.apache.org/mod_mbox/ws-axis-cvs/200803.mbox/[EMAIL PROTECTED] http://mail-archives.apache.org/mod_mbox/ws-axis-cvs/200803.mbox/[EMAIL PROTECTED]

Re: Failed to load mod_rampart.dll

2008-07-03 Thread Manjula Peiris
Yuan, Please check the following. -Whether you have engaged Rampart either pragmatically from your client code or in your axis2.xml -Whether the Security phase is there in your axis2.xml -Manjula. On Thu, 2008-07-03 at 15:52 -0700, yuanhuhu wrote: Hi, I am trying to add in authentication

Re: Axis2/C inside Eclipse

2008-07-03 Thread Manjula Peiris
On Fri, 2008-07-04 at 03:33 +0530, Rajika Kumarasiri wrote: On Fri, Jul 4, 2008 at 12:18 AM, Mauricio Porto [EMAIL PROTECTED] wrote: Hi, I am trying to learn about Axis2/C and I would like to use the Eclipse IDE since I am used to working with it in Java

Re: Failed to load mod_rampart.dll

2008-07-03 Thread Uthaiyashankar
Hi Yuan, This could also be a problem with openssl library. What is the version of openssl you are using? Are you using rampart binary version or source version? If it is binary version, it was compiled with openssl 0.9.8d. So you have to have either that version or version higher than that.

Re: Unable building Axis2C++ in VC6

2008-07-03 Thread Supun Kamburugamuva
Hi, The unresolved symbols are from the file http_accept_record.c. It seems that the VC6 project doesn't include this file. So please add this file to the axis2_engine project. The file can be found at src\core\transport\http\common folder. Supun.. On Fri, Jul 4, 2008 at 7:37 AM, Tung.Nguyen

Re: Unable building Axis2C++ in VC6

2008-07-03 Thread Tung.Nguyen
Hi, I just added ..\..\..\..\src\core\transport\http\common into include path, but it did not solve this issue. I think that axis2_engine project needs reference to a *.lib which contains http_accept_record.c implementation. But i don't know which one :-((!!! Any advice for this issue? Supun