RE: Dynamic wsdl

2014-04-17 Thread Martin Gainty
> Date: Thu, 17 Apr 2014 08:35:39 +0200 > From: [email protected] > To: [email protected] > Subject: Dynamic wsdl > > Hi list, > I'm newbie of Axis > > I started managing an old app using Axis2 1.5.3 that runs on jetty 9.1.3 > which listen http on a specific port furthermore; the

Re: Browser/CURL requests to WS w/response extending a type

2014-04-17 Thread Mike Hawes
Hi Martin, All the .jar files from the axis2-1.6.2/lib folder in axis2-1.6.2-bin.zip as found at this URL are being copied into WEB-INF/lib: http://axis.apache.org/axis2/java/core/download.cgi That distribution .zip file doesn't have a stax-*.jar file in it, but surely if that was missing then CU

Re: Dynamic wsdl

2014-04-17 Thread Andrea Cappelli
Il 17/04/2014 15:28, Martin Gainty ha scritto: MG>Port Address translation or PAT is explained at MG>http://www.dslreports.com/faq/13449 I know what PAT is, but seems to me that it ha nothing to do with the matter of this thread MG>Cisco has ASA-5500 ADSM Product which will configure NAT/PA

Re: Dynamic wsdl

2014-04-17 Thread Jeff Greif
This is a speculation, not a definitive answer. The ?wsdl URL is handled by the Axis servlet, so if no other way was found, you could introduce a servlet filter that used an XSLT, or some other technique to transform whatever normally comes out of the ?wsdl URL. On Thu, Apr 17, 2014 at 7:18 AM,

Re: Dynamic wsdl

2014-04-17 Thread Andrea Cappelli
Il 17/04/2014 18:05, Jeff Greif ha scritto: This is a speculation, not a definitive answer. The ?wsdl URL is handled by the Axis servlet, so if no other way was found, you could introduce a servlet filter that used an XSLT, or some other technique to transform whatever normally comes out of th

Re: Dynamic wsdl

2014-04-17 Thread Jeff Greif
Your servlet filter (javax.servlet.Filter) has access to the HttpServletRequest, which contains the necessary information about the source of the request. The code of your filter's doFilter method would look at the URL (and invoke the rest of the filter chain unless it had the parameter ?wsdl). T