Re: mvn wsdl2code for WSDL 2.0

2008-08-25 Thread Arnout Engelen
On Sat, Aug 23, 2008 at 11:57:33AM +0200, Arnout Engelen wrote: > I'm trying to run the Maven wsdl2code plugin (version 1.4). > > When I invoke this target, I get the following stacktrace: ... > WSDLException (at /wsdl:description): faultCode=INVALID_WSDL: Expected > element '{http://schemas.xml

[AXIS2] Axis2 and KDevelop

2008-08-25 Thread Martina08
Hi i want to test the math example under the IDE KDevelop (Linux). My command in the panel was something like: g++ -m32 -o mathexec _I/home/.../include/axis2-1.5.0 -L/home/.../lib -laxutil -laxis2_axiom ..-ldl -Wl,--rpath -Wl,/home/.../lib and it works! so i did the following in KDevelop: -

Axis2 Addressing

2008-08-25 Thread Tamás Horváth
Hi, How can I turn off Addressing under Axis2? I tried this: (In code) @Addressing(enabled=false) But on the server, after deploying the service, I have the following: Engaged modules for the service * addressing :: Disengage If I try to disengage the this module for the servise I get the

Error in Return Type

2008-08-25 Thread shekher awasthi
Hi All, I am new to webService i have develpoed a webservice in which i am trying to send the response but i am facing a problem in it. i have created ajavabean and have defined the return type as ArrayList of this BEan type.. if i will just use this array list and add simple string values in to

Re: Error in Return Type

2008-08-25 Thread Chinmoy Chakraborty
Hello, Instead of using ArrayList use your custom object array (e.g. MyObject[]). Chinmoy On Mon, Aug 25, 2008 at 2:17 PM, shekher awasthi <[EMAIL PROTECTED]>wrote: > Hi All, > > I am new to webService i have develpoed a webservice in which i am trying > to send the response but i am facing a p

Re: Error in Return Type

2008-08-25 Thread shekher awasthi
i am trying for it let's see wat happened i will let you know about the status. On 8/25/08, Chinmoy Chakraborty <[EMAIL PROTECTED]> wrote: > > Hello, > > Instead of using ArrayList use your custom object array (e.g. MyObject[]). > > Chinmoy > > > On Mon, Aug 25, 2008 at 2:17 PM, shekher awasth

Re: Axis2 Addressing

2008-08-25 Thread Deepal jayasinghe
Where do you want to turn off the addressing , if it is in the server side , you can do the following - go to axis2.xml inside the conf directory and remove the "" tag Thank you! Deepal > Hi, > > How can I turn off Addressing under Axis2? > > I tried this: > (In code) > @Addressing(enabled=false)

Re: [AXIS2] Axis2 and KDevelop

2008-08-25 Thread Nandana Mihindukulasooriya
Hi Martin, I think you have asked the question on the wrong mailing list. This is the mailing list for Axis2/Java. You can find the information on how to join the Axis2/C mailing lists here [1] and Axis2/C [2] people might be able to help you better. thanks, nandana [1] - http://ws.apache.org

RE: Listening to chunks in the axis2 server

2008-08-25 Thread Afzal, Zaeem (OakTree Software)
> Axis2 uses transfer-encoding: chunked in the http header as a default. > When a message is received by the axis2 server, apparently the server > waits until all of the message chunks are received from the client > before presenting the entire message to the application code. > > I was wondering

[Axis2] Where to get JDK 1.4.2 compatible versions of Axis2 1.3 and 1.4 WAR distros

2008-08-25 Thread Chris Miller
Hi everybody, we would like to run Axis2 in a pre Java 5 environment and are discovering problems with WebSphere 5.1 which runs on JDK 1.4.2. We get Unnsupported Major Minor version exceptions (49.0) using the WAR distribution of Axis2 1.3. Some of the jars have a "built using 1.5" tag in thei

[Axis2] Where to get JDK 1.4.2 compatible versions of Axis2 1.3 and 1.4 WAR distros

2008-08-25 Thread Chris Miller
Hi everybody, we would like to run Axis2 in a pre Java 5 environment and are discovering problems with WebSphere 5.1 which runs on JDK 1.4.2. We get Unnsupported Major Minor version exceptions (49.0) using the WAR distribution of Axis2 1.3. Some of the jars have a "built using 1.5" tag in thei

Re: Axis 1.3 integrated WebApp on WebSphere 5.1: DispatchPhase NoClassDefFound Exception

2008-08-25 Thread Chris Miller
Hi Azeez, thanks for your support. But the links you provided were not as helpful as expected. We are running on WAS 5.1 and I am sure that we have a classloader issue. >From the WAS Admin pages, both applications, the working prototype and the not >working production applicatio are set up exa

Axis1 to Axis2 server side code

2008-08-25 Thread Lee, Alan
Hi All, We are in the process of upgrading our web services from Axis1 to Axis2 and we have some questions. Our current web services 1) throw custom exceptions and have 2) polymorphism (class hierarchy). Using Axis1, both just worked without an issue, we don't have/need any Axis1 custom

[ANN] Apache Axis2 1.4.1 Released

2008-08-25 Thread Nandana Mihindukulasooriya
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Axis2 team is proud to announce the release of Apache Axis2 version 1.4.1. Apache Axis2 1.4.1 fixes a security vulnerability present in Apache Axis2 1.4 policy processing. Downloads are available at: http://ws.apache.org/axis2/download.cgi The Maven2

[Axis2].Http Connection pool

2008-08-25 Thread Padmaja Pradhan
Is there a way Axis2 can be configured to use Http Connection pool so the http connection to the service is not opened and closed for every request. Is it possible for multiple threads to use the same client to send a request out by choosing a connection randomly from the pool? Thanks

Re: [Axis2].Http Connection pool

2008-08-25 Thread Deepal jayasinghe
Padmaja Pradhan wrote: > > Is there a way Axis2 can be configured to use Http Connection pool so > the http connection to the service is not opened and closed for every > request. > Are you talking about client side of Axis2 or server side of it ? in the server side Axis2 does not have a way to con

RE: [Axis2].Http Connection pool

2008-08-25 Thread Padmaja Pradhan
I was talking about the client side of Axis 2. However, just found out about Jakarta Commons HttpClient which uses the MultiThreadedHttpConnectionManager allowing connection pools which is exactly what I was looking for. Thanks -Padma -Original Message- From: Deepal jayasinghe [mailto:[E

changing the Http request URI

2008-08-25 Thread pierre betz
Hi everybody, I've found a good tutorial on how to change and customize the endpoint address format of hosted services via Axis2/C you can see it here : http://wso2.org/library/2663 But, as I work with axis2/java, it can't run of course. I did not found anything like this tutorial on the network

Re: Axis2 Addressing

2008-08-25 Thread Tamás Horváth
Hi, I've got a solution. Remove the then (after restarting the server) deploy your webservice and engage this module for this service. 2008/8/25 Deepal jayasinghe <[EMAIL PROTECTED]>: > Where do you want to turn off the addressing , if it is in the server > side , you can do the following > - g