[wsas-java-dev] [jira] Created: (WSAS-251) Any Get request on WSAS with "rss" in the request URI serves the WSAS rss feed... (similar for "atom" too)

Thilina Gunarathne (JIRA) jira at wso2.org
Fri Jun 8 03:53:15 PDT 2007


Any Get request on WSAS with "rss" in the request URI serves the WSAS rss feed... (similar for "atom" too)
----------------------------------------------------------------------------------------------------------

                 Key: WSAS-251
                 URL: http://www.wso2.org/jira/browse/WSAS-251
             Project: WSO2 WSAS-Java
          Issue Type: Bug
            Reporter: Thilina Gunarathne
         Assigned To: Afkham Azeez
            Priority: Blocker


This can be very misleading... 
eg: 
Typing "https://10.100.1.213:9443/services/hostObjectrssService" which is an incorrect URL serves the WSAS server rss feed.. Note the "rss" in between the "Object" and the "Service".

In the mashup server we facilitate having feeds per service basis.. This makes it impossible too...


WSAS servlet line 108 -106
            String requestURI = request.getRequestURI();
            if (requestURI.indexOf("rss") >= 0) {
                rssProcessor.process(request, response, configContext);
                isRequestHandled = true;
            }
            if (requestURI.indexOf("atom") >= 0) {
                atomProcessor.process(request, response, configContext);
                isRequestHandled = true;
            }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://www.wso2.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        




More information about the Wsas-java-dev mailing list