[ http://issues.apache.org/jira/browse/AXIS2-693?page=all ]
Deepal Jayasinghe resolved AXIS2-693.
-------------------------------------
Resolution: Fixed
I changed the JSPs to send the request as ?wsdl =1.1 , but I did not change
the AxisServlet. Because changing that break the cool idea of ?wsdl . If the
application server has problems with parameters , then you can type not null
parameter value , like
https://localhost:8080/axis2/services/Myservice?wsdl=1.1
> 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
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]