Lukasz Lenart wrote:
My understanding is that the webwork API for ApplicationAware means that the
interceptor will have it's setApplication(Map applicationData); triggered
when the interceptor is run, thereby giving me access to the
applicationcontext.
ApplicationAware should be used with Actions not with interceptors, to
access application just use
public String intercept(ActionInvocation invocation) {
Map appScope = invocation.getInvocationContext().getApplication();
}
That's done it, thank you very much. I was really stymied.
-dbs
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]