I've never come across this extension before. It's being used for a front-end interface to a j2ee backend.
+3
A:
It's probably just a URL pattern for firing a Struts action. Most people stick with the .do convention, but you can make the actions fire on just about anything you want.
See Section 5.4.2 on this site for more info
yalestar
2009-09-02 19:16:16
Thanks! That's probably it!
gAMBOOKa
2009-09-02 19:57:04
A:
Looking inside the file with a hex or text editor will tell you more about it than the extension 99% of the time.
Jarett
2009-09-02 19:25:49
A:
This is servlet mapping in j2ee application where you can define the url pattern for a particular servlet and you can name it as you want in this one it name like .action you can give like .yourname or anything. This mapping you can give in your web.xml using servlet-mapping tag and url-patten tag in it.
Thanks