Reputation: 131
I'm wondering why my Struts application would direct me to
https://myhost.com/myThing/myThing?pickListId=2000000011
instead of:
https://myhost.com/myThing/myThing.action?pickListId=2000000011
Shouldn't these show the same thing? The top URL directs me to the 404 page and the bottom works correctly.
Upvotes: 0
Views: 23
Reputation: 131
I solved my problem. It turned out in my web.xml my filter mappings were only directing urls containing .action
to Struts. I just needed to change the filter mappings so all requests were allowed to go to Struts.
Upvotes: 1