RE: [Fwd: Re: url-pattern issue during Axis2 integration]

2007-01-30 Thread Lin Sun
().length() == 0) { throw new IllegalArgumentException(service path cannot be null or empty); } return servicePath.trim(); } Thanks, Lin Original Message Subject:Re: url-pattern issue during Axis2 integration Date: Tue, 30 Jan 2007 00:47:12

Re: [Fwd: Re: url-pattern issue during Axis2 integration]

2007-01-30 Thread Davanum Srinivas
Original Message Subject:Re: url-pattern issue during Axis2 integration Date: Tue, 30 Jan 2007 00:47:12 -0500 From: Davanum Srinivas [EMAIL PROTECTED] Reply-To: dev@geronimo.apache.org, [EMAIL PROTECTED] To: dev@geronimo.apache.org References: [EMAIL PROTECTED

url-pattern issue during Axis2 integration

2007-01-29 Thread Lin Sun
Hi there, I have been working on one particular issue related to Axis2 integration into Geronimo. Basically the problem is that in the jaxws test, we had to use /services/* as the url-pattern for the servlet: servlet-mapping servlet-namecxfPojoServlet/servlet-name

Re: url-pattern issue during Axis2 integration

2007-01-29 Thread Davanum Srinivas
Lin, Isn't setServicePath() enough to do the trick? thanks, dims On 1/30/07, Lin Sun [EMAIL PROTECTED] wrote: Hi there, I have been working on one particular issue related to Axis2 integration into Geronimo. Basically the problem is that in the jaxws test, we had to use /services/* as the

Re: url-pattern issue during Axis2 integration

2007-01-29 Thread Jarek Gawor
Lin Sun, When WebServicesBuilder.findWebServices() is called, the 3rd argument (Map servletLocations) contains the mapping between the servlet-name and its context location. For example, there would be a mapping of 'cxfPojoServlet' to '/war name/services' or something similar. Jarek On