I have one JSR-286 portlet running on IBM Websphere Portal 8.0 This portlet is published under the following friendly url: http://myServer/wps/portal/mySite/menu/my-portlet-friendly-url
There is an external page, in another server (and domain), which wants to send POST data to my portlet.
For instance, imagine this situation:
External page http://www.externalServer.com/externalPage.html
<form method = "POST" action = "http://myServer/wps/portal/mySite/menu/my-portlet-friendly-url">
<input type = "hidden" name = "externalParam" value = "valueExternalParam"> </ input>
<input type = "submit" value = "submitData"> </ input>
</ form>
Then, I would like to read the value of "externalParam" ("valueExternalParam") inside my portlet.