R: Re: Using given WSDLs for service in Axis2

2011-10-26 Thread simonemale...@alice.it
Hi Sagara, thanks for your reply. I try to create a jar file having the following structure: myjar.jar com [class folder] META-INF Check.wsdl Start.wsdl Finish.wsdl I put it into $AXIS2_HOME/WEB-INF/servicejars Starting the server I have

Re: Modify node in WS response ?

2011-10-26 Thread Rudy Commenge
Ok, thanks for this information. So currently, if I want to modify the "result" node, how to create my WS ? Is there a tutorial or example ? 2011/10/26 Sagara Gunathunga > On Wed, Oct 26, 2011 at 8:13 PM, Rudy Commenge > wrote: > > Hi, > > > > I have exposed Java POJO as Web Service in Tomcat

Re: Using given WSDLs for service in Axis2

2011-10-26 Thread Sagara Gunathunga
Can you try for 2nd option listed here [1] , that mean use .jar instead of .aar and let us know you results ? [1] - http://axis.apache.org/axis2/java/core/docs/jaxws-guide.html#DeployService Thanks ! On Wed, Oct 26, 2011 at 3:53 PM, simonemale...@alice.it wrote: >   Hi all, >    I have a great

Re: Modify node in WS response ?

2011-10-26 Thread Sagara Gunathunga
On Wed, Oct 26, 2011 at 8:13 PM, Rudy Commenge wrote: > Hi, > > I have exposed Java POJO as Web Service in Tomcat with Axis2 v1.6.1. > The WS works and return something like : > > http://ws/myservice/org/xsd";> >    >   . >    > > > But I want a response like : > > http://ws/myservice/o

Modify node in WS response ?

2011-10-26 Thread Rudy Commenge
Hi, I have exposed Java POJO as Web Service in Tomcat with Axis2 v1.6.1. The WS works and return something like : http://ws/myservice/org/xsd";> . But I want a response like : http://ws/myservice/org/xsd";> . So, I want to modify the name of "return" node

AxisFault when returning nulls

2011-10-26 Thread Anthony Webster
Hi, I have a simple Axis2 POJO service which returns strings. Whenever I return a null I get the following exception on the server-side (however the server does send the client an axis fault). Any ideas? Thanks Anthony java.lang.UnsupportedOperationException at org.apache.axis2.databinding.util

How to validate SAML2.0 with axis2

2011-10-26 Thread pymz
Hi, In my project i have to validate a saml2.0 assertion included in the soap header. This assertion comes from a client, so I just some example of the structure. After lot time passed on google/forums etc, I don't really find a good doc/exemple to validate an assertion. I just find some informa

Accessing a service via http when the original WSDL had https?

2011-10-26 Thread Lyall Pearce
Using AXIS2, I have a WSDL which specifies a service port address using https. Using wsdl2java.sh (linux), I have created both server and client code, such that my service receives requests using this WSDL definition and calls an identical service using the same WSDL but with a different end-point

Using given WSDLs for service in Axis2

2011-10-26 Thread simonemale...@alice.it
Hi all, I have a great problem deploying a JAX-WS WS on Axis2. I'm working on WS refactor. I generated Java classes using wsimport tool starting from a given WSDL. I obtained PortType Interface that I realize using my own class. Now I'm trying to deploy the system on Axis2 using the AAR system