[wsas-java-dev] [jira] Resolved: (WSAS-251) Any Get request on WSAS
with "rss" in
the request URI serves the WSAS rss feed... (similar for "atom" too)
Afkham Azeez (JIRA)
jira at wso2.org
Sat Jul 7 05:26:41 PDT 2007
[ http://www.wso2.org/jira/browse/WSAS-251?page=all ]
Afkham Azeez resolved WSAS-251.
-------------------------------
Fix Version/s: Nightly
Resolution: Fixed
Fixed
> 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
> Issue Type: Bug
> Reporter: Thilina Gunarathne
> Assigned To: Afkham Azeez
> Priority: Blocker
> Fix For: Nightly
>
>
> 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