|
Home > Archive > WebSphere Portal Server > May 2006 > WSRP in portal 5.0
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 |
WSRP in portal 5.0
|
|
|
| Hi,
I have created a producer and consumer using xmlaccess. I am able to see the instance in the administration console.
When I try to add this to a test page and display it I get this error.
WrappedException is: com.ibm.wps.wsrp.exception.WSRPException: WSRP1108E: Normal execution of the operation failed.
The nested exception shows some thing like this. 'Someone has deleted the RunData from the request'
How do you consume the netunity producer ?
How do you get the group id and handle of the netunity producer ? If I use another portal(Liferay) I get some other exception.
Not sure why WSRP is only supported using xmlaccess. It is cumbersome.
Thanks,
Mohan
| |
|
| I just followed what another post recommended and it worked.
Replaced the method
private static String getJspFilePath(RenderRequest request, String jspFile) {
String markup = request.getProperty("wps.markup");
if( markup == null )
markup = getMarkup(request.getResponseContentType());
return JSP_FOLDER+markup+"/"+jspFile+"."+getJspExtension(markup);
}
with
private static String getJspFilePath(RenderRequest request, String jspFile) {
String markup = null;//request.getProperty("wps.markup");
if( markup == null )
markup = getMarkup(request.getResponseContentType());
return JSP_FOLDER+markup+"/"+jspFile+"."+getJspExtension(markup);
}
Is it that we are doing something wrong ? Is the product stable enough ?
Thanks,
Mohan
|
|
|
|
|