Hi,
I want to do sth like the following:
When a user clicks the link:
http://myhost:8080/myapp/server.do/chapter1/images/1.jpg I want to get the
"/chapter1/images/1.jpg" part of the request and then serve the requested
file. "server.do" is a downloadaction.
As Laurie Harper stated in one of his previous emails, prefix mapping, i.e.
*.do, is not suitable to do this. He suggested to me that I use suffix
mapping which is sth. like /do/* . I have tried suffix mapping but no
success. request.getPathInfo() returns null.
All I want to do is to get the request.getPathInfo(), or the full URL of the
request, within a downloadaction class.
Thanks in advance.