
Originally Posted by
gmatthews
Can you elaborate on what you're trying to do? What's in the ObjectOutputStream?
If you want to build your own view, just subclass org.springframework.web.servlet.view.AbstractView, and then in your controller do something like this:
Map myModel = new HashMap();
myModel.put("blah", "xyz");
return new ModelAndView(new MyView(myObjectOutputStream), myModel);
You might need to explain what you're doing a bit more.
Thanks for your reply.
My application will do the following:
1 - Retrieve some data from a DB
2 - Create a model with this data
3 - Send it as an object stream
This will be retrieved by a desktop application using a rpc axis webservice call.
I' m now using webflow to process the request and as webflow use modelandevents I wonder how can I do what you told me....
C