Re: Rampart Axis2C segfaults at rampart_context_free operation

2009-01-09 Thread Manjula Peiris
Raju, Ideally with TransportBinding Rampart should send the message in a secure transport. This is a bug I guess. Please put a JIRA. BTW, If you want to send UserNameToken in a non secure transport like http then you can use AsymmetricBinding. Please see scenario2 in Rampart/C samples. -Manjula.

Re: link axis2c libraries as static libraries

2009-01-09 Thread Samisa Abeysinghe
I do not think you would be able to statically link and get Axis2/C to work, because it assumes dynamic loading for some of the behavior in the engine. Someone worked on static linking sometime back, but it was not completed. Samisa... Fan, Jan-fon wrote: Hi, I am trying to link the

Re: Setting HTTP headers

2009-01-09 Thread Subra Aswathanarayanan
I just wanted to clarify my question. In a axis2c webservice, when responding to the client with a soap response, is there a way one can set a standard http header too? I searched in the archive but wasn't able to find any definitive answer. On Thu, Jan 8, 2009 at 5:16 PM, Subra Aswathanarayanan

Re: Setting HTTP headers

2009-01-09 Thread Dinesh Premalal
Hi, Subra, Subra Aswathanarayanan aswat...@gmail.com writes: I just wanted to clarify my question. In a axis2c webservice, when responding to the client with a soap response, is there a way one can set a standard http header too? AFAIK, there is no decent method for doing this. I think, in

Re: Setting HTTP headers

2009-01-09 Thread Subra Aswathanarayanan
Thanks Dinesh. I will try ur suggestion and let you know the result. On Fri, Jan 9, 2009 at 1:32 PM, Dinesh Premalal xydin...@gmail.com wrote: Hi, Subra, Subra Aswathanarayanan aswat...@gmail.com writes: I just wanted to clarify my question. In a axis2c webservice, when responding to

Re: Next release of Axis2 (1.4.2 ?)

2009-01-09 Thread keith chapman
We did an RC late last year, I guess Glen is already working on the release. Should be out soon. Thanks, Keith. On Fri, Jan 9, 2009 at 10:55 AM, Saurabh Garg garg.saur...@gmail.comwrote: Hi Keith, Any updates on the release? Any idea when the new version will be released. Thanks Saurabh

Getting JSON Objects out of the request

2009-01-09 Thread Jan Freitag
Hi, I'm trying to write a Web Service that gets aJSON Request and Responses in JSON as well. The Reuqest comes from the Google Gears Geolocation function getCurrentPosition. I can set a Paraameter in this function to use not Googles LocatioN proivder but my own, that is a web service The

Packaging axis2 with a web application

2009-01-09 Thread Wishing Carebear
Hello:I have a war created for my enterprise application. Need to embed axis2 with that. Could someone point me to the instructions need to be followed to achieve this if possible. Thanks for your time and help, Regards, Ravi

Re: Packaging axis2 with a web application

2009-01-09 Thread Sagara Gunathunga
If you want to integrate Axis2 web service as a part of your web application you can follow these steps. 1.) Within the WEB-INF directory create directory called services , you can place web service's meta information files there (services.xml) . as a example for MyService web serivce can have

Re: Packaging axis2 with a web application

2009-01-09 Thread Wishing Carebear
Thanks Sagara. I will try it out.Regards, Ravi On Fri, Jan 9, 2009 at 9:10 AM, Sagara Gunathunga sagara.gunathu...@gmail.com wrote: If you want to integrate Axis2 web service as a part of your web application you can follow these steps. 1.) Within the WEB-INF directory create directory

RPCServiceClient

2009-01-09 Thread Wishing Carebear
Hello:In addition to Service and Operation client, found from one of the examples that there is RPCServiceClient. Have couple of questions regarding the same: 1) Is there any examples using RPCServiceClient where the service takes a java bean say Class A. Class A has other java beans like Class B

[Axis2] Changing SSL provider when using axis

2009-01-09 Thread mohammad jouni
Hello Everyone , I was wondering if it is possible to change the SSL provider when using Axis ( Need to use Jessie instead of JSSE ) . Since axis uses http-client , is there a way to change the http-client's SSL provider ? Thank you

Re: How to get rid of Unexpected SubElement Exception

2009-01-09 Thread don t
Hi, to make an element optional you can set minOccurs=0 in the WSDL. However elements in the SOAP body must appear in the same order specified in the WSDL. ibrahim demir wrote: Hi All; I have already said about my problem but want to repeat. I am using Axis2 and Axis2 Code Generator for

Re: How to get rid of Unexpected SubElement Exception

2009-01-09 Thread ibrahim demir
Hi; Thanks for the reply. But the order is changeable also. But today contract-first approach is hard to obey.So by the time the response changes. So will it make sense if I change my binding? Which binding methodology can easily work when the order of the elements change.? Yours Ibrahim

Re: How to get rid of Unexpected SubElement Exception

2009-01-09 Thread don t
You can try XMLBeans or working with the AXIOM model. ibrahim demir wrote: Hi; Thanks for the reply. But the order is changeable also. But today contract-first approach is hard to obey.So by the time the response changes. So will it make sense if I change my binding? Which binding

Re: Parameter name as Param0

2009-01-09 Thread Wishing Carebear
Thanks Keith. Adding the debug flag to the ant script for Java compilation took care of the issue. On Thu, Jan 8, 2009 at 10:18 PM, Wishing Carebear wishing.careb...@gmail.com wrote: Thanks Keith, I will enable the debug option and try it out. Regards, Ravi On Thu, Jan 8, 2009 at 5:48

Re: Packaging axis2 with a web application

2009-01-09 Thread keith chapman
Hi, This http://www.keith-chapman.org/2008/10/how-to-embed-axis2-into-existing-web.htmlshould help you. Thanks, Keith. On Fri, Jan 9, 2009 at 10:46 PM, Wishing Carebear wishing.careb...@gmail.com wrote: Thanks Sagara. I will try it out.Regards, Ravi On Fri, Jan 9, 2009 at 9:10 AM, Sagara

Re: How to get rid of Unexpected SubElement Exception

2009-01-09 Thread Amila Suriarachchi
On Sat, Jan 10, 2009 at 2:37 AM, ibrahim demir ibrahimdem...@yahoo.comwrote: Hi; Thanks for the reply. But the order is changeable also. But today contract-first approach is hard to obey. you may try with Xmlbeans data binding or jaxbri data binding. But if your actuall response changes so