Hi all,
I am an absolute newbie to spring webflow, so apologies if this is a really stupid question.
I basically developed my web app using spring mvc (for which I am not a newbie). At the moment I have various filters which populate certain request attributes (ServletRequest.setAttribute).
The problem is that when I get hold of a RequestContext in my action I cannot seem to find any of these attributes, I have tried:
Scope requestScope = requestContext.getRequestScope();
Scope flowScope = requestContext.getFlowScope();
Map scope = requestContext.getModel();
And none of these contain any of the attributes I have set.
The filters are definately working because I can step through them. The rest of the app which also uses these attributes (ServletRequest.getAttribute) also work correctly.
I am completely stuck.
As a wider problem, the integration of webflow into an existing web app is extremely high to the abstraction of the ServletRequest. I can see how writing an app from scratch wouldn't be a problem, but it would be really nice if there was an easy way to get at the ServletRequest
Many thanks,
Col
P.S. Urgency is very much appreciated as this is a huge sticking point.


). At the moment I have various filters which populate certain request attributes (ServletRequest.setAttribute).
Reply With Quote