Re: axis2: generate header using java2wsdl

2010-09-29 Thread haipeng du
I want to know how to generate head definition with java2wsdl. Thanks a lot. On Wed, Sep 29, 2010 at 3:12 PM, VANEKEM, Olivier wrote: > Check https://issues.apache.org/jira/browse/AXIS2-3948, it might be what > you want to do. > > > > Rgds > > > > Olivier > > Wavre, Belgium > > > > *From:* haipe

multiple soap Headers in axis2/axiom

2010-09-29 Thread Raymond Zhou
Hi All,   I am moving from axis/java to axis2/java. I am encountering a few issues. One of them has to do with soap headers in soap envelope.   In axis/java, I used to do like this:      Vector headers = soapenvelope.getHeaders();   This is to get all the soap headers (soap:header) from a soap en

[Axis2-1.5] wsdl2java Abstract Classes / Inheritance

2010-09-29 Thread Michael Matczynski
Hello! I'm having trouble generating a hierarchy of Java classes from a wsdl with complexContent elements. The following WSDL:

RE: axis2: generate header using java2wsdl

2010-09-29 Thread VANEKEM, Olivier
Check https://issues.apache.org/jira/browse/AXIS2-3948 , it might be what you want to do. Rgds Olivier Wavre, Belgium From: haipeng du [mailto:haipen...@gmail.com] Sent: mercredi 29 septembre 2010 22:58 To: axis-u...@ws.apache.org Sub

axis2: generate header using java2wsdl

2010-09-29 Thread haipeng du
How could I generate wsdl with header information. By now it just specify body message. Thanks. -- Haipeng Du Salt Lake City

Castor Marshalling within axis2 web service silently fails

2010-09-29 Thread Larry Gilliam
Hello, I'm using Castor to marshal an object to XML which I then give to AxiomUtils.stringToOM( String xml ) to return from my axis2 web service. But when I call marshal on the object, the resulting XML is an empty string. There are no errors to indicate something went wrong. When I run my class o

Re: Webservice Enumeration classcastexception in AXIS2 WS

2010-09-29 Thread Kanchana Welagedara
hi Error itself says what you got to do next ava.lang.ClassCastException: com.netreachasia.webservices. > > WorkRetrievalServiceStub$Enumeration cannot be > cast to java.util.Enumeration WorkRetrievalServiceStub$Enumeration class can not be casted to with java.util.Enumeration /BR Kanchana On

WSDL2.0 --> Axis2 generated Java-code ---> WSDL 1.1

2010-09-29 Thread ope
Hi all. I've a WSDL2.0 file from which Axis2's WSDL2Java has generated Java-code that works perfectly with a WSD2.0 compatible client. The problem here is that we need to somehow get a WSDL1.1 description of our service because one of our clients don't understand WSDL2.0. In services.xml there is

AW: Eclipse Remote Debugging with multiple instance of Axis2 in same Tomcat container ?

2010-09-29 Thread Stadelmann Josef
Hi, I try to answer this as well because I am itself interested in the subject and did it many times. And well, are ready to learn things I don't know or which can be done with less pain. But first I have to ask you a few things: If you refer to an instance of tomcat then you refer to the r

Re: axis and CXF

2010-09-29 Thread Prabath Siriwardana
On Wed, Sep 29, 2010 at 3:03 AM, Daniel Kulp wrote: > CXF can pass much more of the MS InteropPlugFest tests related to the > ws-security > things than Rampart can, mostly due to much of that work. We have committed to Rampart interoperability with the rest - including ws-security/ws-trust/ws-se

Re: axis and CXF

2010-09-29 Thread Sanjiva Weerawarana
And WSO2 does too - so I don't at all agree with Dan's assertions that JAX-WS support is not working. Dan (as CXF chair) is welcome to have his own opinions of course :). Sanjiva. On Wed, Sep 29, 2010 at 1:42 PM, Andreas Veithen wrote: > IBM uses Axis2 to provide JAX-WS support in WebSphere App

Webservice Enumeration classcastexception in AXIS2 WS

2010-09-29 Thread Meet
Hi, This is my client code. WorkRetrievalServiceStub stub2; try { stub2 = new WorkRetrievalServiceStub("http://localhost:7001/axis2/services/WorkRetrievalService";); String title = "I LOVE YOU"; FindWorkDetails findWorkDetail

AXIS2 Handling custom return types and complex class objects

2010-09-29 Thread Meet
Hi, Can someone please help me to provide the links is he/she knows where how to integrate complex return types like arraylist, hashtable and user defined classes? I would appreciate if someone posts sample code for this. I tried to look around net, but could not get it. Regards, Meet -- View

Re: axis and CXF

2010-09-29 Thread Andreas Veithen
IBM uses Axis2 to provide JAX-WS support in WebSphere Application Server (built into version 7.0 and available as a feature pack in 6.1). Andreas On Tue, Sep 28, 2010 at 21:44, Deepal Jayasinghe wrote: >  I would recommend you to use Axis2, Axis2 is more stable and support > number of required s

AXIS2- ArrayList Conversion Issue from OMTextImpl

2010-09-29 Thread Meet
Hi Friends, I need little help here. I have created webservice using AXIS2-Eclipse Plugin. Here is sample code. public ArrayList getWorkIntNo(String title){ ArrayList arrayList = new ArrayList(); arrayList.add( 1 ); arrayList.add