I’d like to call the method createResourceURL() on my RenderResponse.
Unfortunately, when I do that, I’m getting the following exception thrown:
Caused by:
java.lang.AbstractMethodError:
org.jboss.portletbridge.BufferedRenderResponseWrapper.createResourceURL()Ljavax/portlet/ResourceURL;
Ain’t it possible in a portlet bridge environment to write a resource URL?!
It seems the version of the portlet bridge you are using only support the portlet 1.0 api while the
createResourceURLmethod was introduced in version 2.0 of the portlet spec. JBoss Portal 2.7 should support the newer version, it would be strange if it bundled a bridge that only supports an older version.Can you check whether what version you are using? The bundled version should be in
deploy/jboss-portal.sar/lib/portal-portlet-bridge-lib.jar, but perhaps you are deploying your own version along with you application.