Re: handling multiple service ports

2011-09-01 Thread Amila Suriarachchi
On Thu, Sep 1, 2011 at 5:04 AM, Francisco Suarez Sola wrote: > Thanks Amila, > > That's a good point however what happens when the load balancer is also > down. I'm surprised there is nothing on the client side. E.g. if port A > fails, try port B if fails, try port C > > If there isn't anything e

Re: Schemas of nested classes

2011-09-01 Thread Amila Suriarachchi
Do you use Axis1.x or Axis2. if you use Axis2 you can add the package namespace mapping at the services.xml file. thanks, Amila. On Tue, Aug 30, 2011 at 2:54 AM, Evan Patton wrote: > Hello all, > > I'm generating a web service from a POJO, and in some cases return a nested > class. In the XML

Re: [Axis2] NPE during load in DeploymentFileData.getName

2011-09-01 Thread Amila Suriarachchi
On Thu, Aug 25, 2011 at 8:55 PM, Neil Aggarwal wrote: > Hello: > > I am setting up an Axis2 web service on Tomcat. > > When I run Tomcat, I get this error: > > SEVERE: Servlet /myservlet threw load() exception > java.lang.NullPointerException >at > > org.apache.axis2.deployment.repository.

AXIOM 1.2.8: Issue with character ">"

2011-09-01 Thread Ajit Bhingarkar
Hi, We are seeing that when an OMElement is created from a String based XML fragment; > are decided back to ">" while < in the fragment remain. This is causing inconsistency; we would like either > to remain as they are or also < to get decoded as "<". Can you pls share any solution or a worka

rampart and sandesha2

2011-09-01 Thread firewire007
Hello list, I have setting up a Axis2-Webservice on Tomcat, which support ws-secureconversation(rampart) and ws-reliablemessaging (sandesha2). I changed in the following sections of the sandesha2 modul.xml to (http://wso2.org/library/1027) org.apache.sandesha2.security.rampart.RampartBase

RE: rampart and sandesha2

2011-09-01 Thread Peter P. Geremia
All, Does anyone know when Axis 1.6.1 will be released? Thank You, -Pete -Original Message- From: firewire007 [mailto:firewire...@freenet.de] Sent: Thursday, September 01, 2011 6:15 AM To: java-user@axis.apache.org Subject: rampart and sandesha2 Hello list, I have setting up a Axis2-

Re: rampart and sandesha2

2011-09-01 Thread Sagara Gunathunga
FYI Andreas Veithen commented on AXIS2-5034: @Peter: release 1.6.1 is in progress. If you want, you can follow this on the developer mailing list. BTW I'm not sure write your own mail is that much difficult than hijacking others threads or comment on unrelated JIRAs :) Thanks ! On Thu, Sep 1

Re: Schemas of nested classes

2011-09-01 Thread Evan Patton
Thanks Amila, I am using Axis2 and my services.xml file currently specifies a targetNamespace on the tag as well as a nested schemaNamespace attribute tag. However, these only seem to apply for the class named in field. How would I specify that there is a mapping for the entire package? I've

Re: Schemas of nested classes

2011-09-01 Thread Amila Suriarachchi
you can do something like this, This is my first service, which says hello http://www.w3.org/ns/wsdl/in-out"; class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/> org.apache.axis2.sample.pojo.service.POJOService you can