I have mapped a single Echo application into multiple URL spaces. This allows for small configuration details and branding of the application.
Everything works well but the exit page for the application also needs branding. In essence I need the requestURL that was used to start the application.
As this is already part of the servlet I have added the necessary software to ClientProperties. A diff follows :-
200a201,205 > /** > * The property name referencing the original requesting URL. > */ > public static final String REQUEST_URL = "requestURL"; > 258a264 > properties.put(REQUEST_URL, conn.getRequest().getRequestURL().toString());
Would a nice fellow in NextApp care to integrate this into the next release.