How to tell web.xml that it should not handle .htc files and so leave them to the web server?
How can I do that ?
I am using Vaadin and it's servlet gets all requests, but I really need to serve a .htc file to fix IE(Dawn you Microsoft) corners and make them look better.
How to do that ?
Vaadin Servlet Mapping
> <servlet-mapping> > <servlet-name>vaadinServlet</servlet-name> > <url-pattern>/*</url-pattern> > </servlet-mapping>
Servlet
> <servlet>
> <servlet-name>vaadinServlet</servlet-name>
> <servlet-class>com.vaadin.terminal.gwt.server.GAEApplicationServlet</servlet-class>
<init-param>
> <description>
> Application widgetset</description>
> <param-name>widgetset</param-name>
> <param-value>web.googlemapwidget.Widgetset</param-value>
> </init-param> </servlet>