[jboss-dev-forums] [Design of JBoss Portal] - processAction method not implemented
bjoernb
do-not-reply at jboss.com
Tue Mar 10 18:24:43 EDT 2009
Hi,
i am trying to get a IPC-Portlet working in jboss portal 2.7.0 by using qnames.
Now i run into the following trouble when i want to use the annotation style
@ProcessEvent(qname="{http:sschmeckt.de/events}suchString")
public void processEvent1(EventRequest request, EventResponse response) throws PortletException, IOException {
...
}
i get the following error
javax.portlet.PortletException: processAction method not implemented
at javax.portlet.GenericPortlet.processAction(GenericPortlet.java:177)
when i it to change to
@Override
public void processAction(ActionRequest request, ActionResponse response)
throws PortletException, PortletSecurityException, IOException {
...
}
i get it working but the interportlet communication is not working !
what am i doing wrong ? can someone help ?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4216789#4216789
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4216789
More information about the jboss-dev-forums
mailing list