Struts2 combine with domain specific servlet

Posted by Dewfy on Stack Overflow See other posts from Stack Overflow or by Dewfy
Published on 2010-05-12T06:40:06Z Indexed on 2010/05/12 6:44 UTC
Read the original article Hit count: 231

Filed under:
|

I have struts2 web application. Right now I need embed with help of iframe some functionality from stand-alone servlet. But according to following rule, servlet is never get calling.

<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

Unfortunately I cannot change it to /prefix/*

So does anybody know how to resolve it? Thanks in advance!

© Stack Overflow or respective owner

Related posts about struts2

Related posts about servlet