RE: [Axis1.4] Problems with ChannelAdvisor WSDL

2011-05-10 Thread Neil Aggarwal
Hello: I found some code on the Internet about adding the handler to my client. Here is what I did: List handlerChain = new ArrayList(); HandlerInfo handlerInfo = new HandlerInfo(AuthenticationHandler.class,null,null); handlerChain.add(handlerInfo); AdminServiceLocator locator =

[Axis1.4] Problems with ChannelAdvisor WSDL

2011-05-10 Thread Neil Aggarwal
Hello: I am trying to process the ChannelAdvisor WSDL for their AdminService. They have posted their WSDL here: http://developer.channeladvisor.com/display/cadn/Admin+Service I used WSDL2Java to create the client classes, but it does not generate a class for APICredentials. If I add the --all s

Re: invoke wsdl 2.0 webservice from browser

2011-05-10 Thread wadi wadi
Thanks Raghu that was a typo the correct url is still not working and I get the followinf error: org.apache.axis2.databinding.ADBException: Unexpected subelement add any idea? On Tue, May 10, 2011 at 5:31 PM, Raghu Upadhyayula < [email protected]> wrote: > I observed that in your URL t

RE: invoke wsdl 2.0 webservice from browser

2011-05-10 Thread Raghu Upadhyayula
I observed that in your URL there is a forward slash (/) after the add operation. It should not be here, after the add operation it should have a question mark followed by parameters. Thanks Raghu [cid:[email protected]] From: wadi wadi [mailto:wadie.

[Axis2] Remaining CLOSE_WAIT connections client-side with https

2011-05-10 Thread Philippe Frangioni
Hello all, we're using Axis2 1.5.1. Our client makes web service calls every second over https (we're doing 2-way SSL). We noticed the number of CLOSE_WAIT connections client-side grows over time on our production servers... This bug looks related: https://issues.apache.org/jira/browse/AXIS2-2883 I

Re: invoke wsdl 2.0 webservice from browser

2011-05-10 Thread wadi wadi
Well, both do not work. It seems wsdl 2.0 webservices require an additional thing. To explain I have a webservice UserService that defines an add() method. The code has been generated using the wsdl2java tool with the option -wv 2.0 from a wsdl 2.0 file The tomcat web page displays the following i

RE: invoke wsdl 2.0 webservice from browser

2011-05-10 Thread Martin Gainty
the org.apache.axis2.rest.HttpGetRESTBasedTest.java REST example from Axis2 identifies comma "," for field delimiters e.g. URL wsdlrequestUrl = new URL( "http://127.0.0.1:8080/axis2/services/User2Service/add?param0=5,param1=10";); Martin -- _

Re: invoke wsdl 2.0 webservice from browser

2011-05-10 Thread Sagara Gunathunga
On Tue, May 10, 2011 at 4:29 PM, wadi wadi wrote: > Hi, > How to invoke a wsdl 2.0 webservice using the browser? > For example for a wsdl 1.1 websevice offering add() method it can be invoked > using the > URL http://localhost:8080/axis2/services/UserService/add?param0=5¶m1=10 Above format is com

invoke wsdl 2.0 webservice from browser

2011-05-10 Thread wadi wadi
Hi, How to invoke a wsdl 2.0 webservice using the browser? For example for a wsdl 1.1 websevice offering add() method it can be invoked using the URL http://localhost:8080/axis2/services/UserService/add?param0=5¶m1=10