Re: Declaring a namespace of an XPath expression with Savan/C

2008-09-15 Thread Suguru HAMAZAKI
Hi, Thanks for responding, Damitha. On Mon, 15 Sep 2008 17:46:05 +0530, Damitha Kumarage [EMAIL PROTECTED] wrote Savan/C currently support XPath filtering. In order for server side to support to support XPath filtering you need to build Savan/C module with filtering enabled. Also make sure

RE: Simplifying code generated by adb

2008-09-15 Thread Raghu Udupa
Thanks Dimuthu. At this point, I am proceeding with Samisa's suggestion to modify generated code by hand. I will take a look at the new wsdl2c at a later time. Regards, Raghu From: Dimuthu Gamage [mailto:[EMAIL PROTECTED] Sent: Mon 9/15/2008 11:26 AM To:

Re: Axis2 Eclipse Code Generation

2008-09-15 Thread Grzegorz SÅ‚owikowski
Hi Ibrahim and all I tried this plugin and had this exception too. Today I have debugged it and found that it does not have all libraries needed by Axis. Internal error is ClassNotFoundException. The two libraries I had to add to the plugin are: - geronimo-stax-api_1.0_spec-1.0.1,jar - you

RE: axis2 rampart and ws-trust

2008-09-15 Thread Soyer, Muhammed A.
Hi Ruchith, Thanks for your answer. In that sample they are using some policy files [1] , I don't have a policy file, I am not sure whether I need one. I need to pass the application user name and password to the Authentication service in able to get back the token. I couldn't understand how

howto avoid service isolation

2008-09-15 Thread Stefan Lischke
Hi, I have two Services, that needs to share a cache. How can i avoid service isolation so that both service are using the same object? thx in advance Stefan signature.asc Description: OpenPGP digital signature

Re: howto avoid service isolation

2008-09-15 Thread Deepal jayasinghe
You can make them to a service group and then from the serviced group context you can share. Or you can put what you want to share into configuration context. -Deepal Hi, I have two Services, that needs to share a cache. How can i avoid service isolation so that both service are using the

RE: howto avoid service isolation

2008-09-15 Thread Grange, John
JNDI would be one way to go. -Original Message- From: Stefan Lischke [mailto:[EMAIL PROTECTED] Sent: 15 September 2008 15:31 To: axis-user@ws.apache.org Subject: howto avoid service isolation Hi, I have two Services, that needs to share a cache. How can i avoid service isolation so

RE: howto avoid service isolation

2008-09-15 Thread Subhro Moitra (smoitra)
I too have the same use case. I tried it with the get/set attributes, but could not make it work. Any advice on this will be very helpful. Thanks, Subhro. -Original Message- From: Stefan Lischke [mailto:[EMAIL PROTECTED] Sent: Monday, September 15, 2008 8:01 PM To:

RE: howto avoid service isolation

2008-09-15 Thread Martin Gainty
how is your code structured? are you implementing 2 different axis2 servlets? or 2 different aars? Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sender. This

axis2 tomcat problem

2008-09-15 Thread Shehan Simen
Hi, I got a strange problem in an axis2 v1.4 web service deployed in tomcat. I called the web service in a loop in my client program. After about 10 iterations, the web service does not respond. But I can hit the url of the wsdl in a web browser and it is up and running. Then if I restart the

RE: wsdl2java and wsdl problem

2008-09-15 Thread Shehan Simen
Hi Anne, What you said is true. I believe that maxOccures=unbounded should be a syntax error for a choice. Can anybody think a use of this in choice? Regards, Shehan -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Friday, 12 September 2008 9:57 PM To:

Re: wsdl exploder

2008-09-15 Thread Jon Seymour
Lawrence, Thanks for that. I tried a simplistic: WSDLFactory factory = WSDLFactory.newInstance(); WSDLReader reader = factory.newWSDLReader(); Definition def = reader.readWSDL(http://myserver/mywsdl.wsdl;); WSDLWriter writer = factory.newWSDLWriter();