Failed to load the bootstrap javascript

Hi,

Vaadin 7, beta 11.

I get "Failed to load the bootstrap javascript when I change from /* to /Lims/

It works if I start first with /*, then I can change to /Lims/, but if I clean the cache, it’s not work longer.

//LW

If you remove the / you need to define an url pattern for /VAADIN/

<servlet-mapping>
	<servlet-name>YourServlet</servlet-name>
	<url-pattern>/Lims/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
	<servlet-name>YourServlet</servlet-name>
	<url-pattern>/VAADIN/*</url-pattern>
</servlet-mapping>

Thanks for you take your time to solve my problem, you save my day :lol: