251252253254255256257258259260261
Vector structure = new Vector(); structure.add(portletApp); structure.add("/" + resolveURI(webModule)); webApp.postLoad(structure); // refill structure with necessary information webApp.preBuild(structure); webApp.postBuild(structure);
194195196197198199200201202203204
Vector structure = new Vector(); structure.add(portletApp); structure.add(path); try { webApp.postLoad(structure); webApp.preBuild(structure); webApp.postBuild(structure); } catch (Exception e) { throw (UnavailableException) new UnavailableException(e.getMessage()).initCause(e); }
199200201202203204205206207208209
Vector structure = new Vector(); structure.add(portletApp); structure.add(path); try { webApp.postLoad(structure); webApp.preBuild(structure); webApp.postBuild(structure); } catch (Exception e) { throw (UnavailableException) new UnavailableException("Problem: " + e.getMessage() + ". Context = " + contextName).initCause(e); }
270271272273274275276277278279280