arrow_back history picture_as_pdf This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ~~NOTRANS~~ ~~Title: Push support~~ There's already a [[jvx:communication:push_support|push mechanism]] in JVx. In ProjX based applications it's easier to handle messages, because ProjX already is a listener. Simply extend ProjX: <file java> public class MyApplication extends ProjX { public MyApplication(UILauncher pLauncher) throws Throwable { super(pLauncher); } @Override public void callBackResult(CallBackResultEvent pEvent) { if ("RELOAD".equals(pEvent.getInstruction())) { try { reload(); } catch (Throwable th) { error(th); } } } } </file>