|
Home > Archive > WebSphere Portal Server > May 2007 > WAS 6.1 Portlet Container: "action" param in URL does not work
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
WAS 6.1 Portlet Container: "action" param in URL does not work
|
|
|
| Hello,
I have a portlet that was developed to run in WP6.0, and we are trying to migrate it to WAS 6.1 (through the PortletContainer).
In particular, I have "WebPager" component that divides up the results of the data table into several pages; if any of the numbers of the pager are clicked, it returns an HTTP404 error under WAS6.1, but not under WP6.0.
I noticed that getting rid of the "/action" from the URL allows the page navigation successfully complete (on WAS6.1).
**Does anyone know why WAS6.1 Portlet Container can't handle "Action" in the URL?
**Can anyone suggest a solution or workaround to this?
| |
|
| Hi,
Any solution on this issue?
//Staffan
| |
| karavan 2007-05-08, 7:23 pm |
| Could be action is a reserved word. Did you try using urlGeneration tag?
<wps:urlGeneration contentNode="<uniquename>" accessControlCheck="NoCheck" >
<wps:urlParam name="action" value="<someAction>" />
<a href="<% wpsURL.write(out); %>">Click here</a>
</wps:urlGeneration>
|
|
|
|
|