hi dims; done , thanks for the info. Thanks Deepal
Davanum Srinivas (JIRA) wrote: > [ http://issues.apache.org/jira/browse/AXIS2-693?page=all ] > >Davanum Srinivas reopened AXIS2-693: >------------------------------------ > > >Deepal, > >Please consider using getQueryString() if getParameter() fails. fixing JSP's >does not seem like a good solution. > >thanks, >dims > > > >>Webapp bugs >>----------- >> >> Key: AXIS2-693 >> URL: http://issues.apache.org/jira/browse/AXIS2-693 >> Project: Apache Axis 2.0 (Axis2) >> Issue Type: Bug >> Reporter: Davanum Srinivas >> Assigned To: Deepal Jayasinghe >> Priority: Blocker >> >>From: Steve Barham <[EMAIL PROTECTED]> Mailed-By: ws.apache.org >>Reply-To: [email protected] >>To: [email protected] >>Date: May 8, 2006 6:20 AM >>Subject: [Axis2] Webapp bugs >>Hiya, >>Am surprised that noone else has mentioned these so far. Clearly too many >>Tomcat users on this project! >>1. In the service listing, the links to the services are emitted in the >>following style: >>http://localhost/axis2-web/services/version?wsdl >>This will fail to work under certain application containers, most notable >>Ironflare Orion. This is because the list service is checked with the >>following conditional (ListingAgent, line 87): >>if (httpServletRequest.getParameter("wsdl") != null || >> httpServletRequest.getParameter("xsd") != null) { >> processListService(httpServletRequest, httpServletResponse); >>} else { >> super.handle(httpServletRequest, httpServletResponse); >>} >>In this case, as wsdl or xsd do not have any value assigned to them, they >>do not have entries in the httpServletRequest parameter map. This can be >>solved by changing the links to be of the following form: >>http://localhost/axis2-web/services/version?wsdl=1 >>An alternative change would be to use the pathinfo to determine what >>action to take, rather than the parameter value. >>2. The listServices.jsp page is included by ListingAgent. As such, the >>content type declaration of text/html with utf-8 encoding made in the >>page's JSP header is clobbered, resulting in FireFox and other browsers >>displaying it as text/plain. >>Cheers, >>steve >> >> > > > -- Thanks, Deepal ................................................................ ~Future is Open~ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
