0

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.

GGomer
  • 131
  • 1
  • 1
  • 8

1 Answers1

1

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.

Aleksandr M
  • 24,264
  • 12
  • 69
  • 143
GGomer
  • 131
  • 1
  • 1
  • 8