Trace: • Portlet Integration • Asynchronous Communication Using CallBack • Using XmlSecurityManager • Push support
This is an old revision of the document!
There's already a push mechanism in JVx. Simply use this article and ignore the instructions for the listener registration because ProjX already is a listener. Simply extend ProjX:
public class CustomApplication extends ProjX { public CustomApplication(UILauncher pLauncher) throws Throwable { super(pLauncher); } @Override public void callBackResult(CallBackResultEvent pEvent) { if ("RELOAD".equals(pEvent.getInstruction())) { try { reload(); } catch (Throwable th) { error(th); } } } }