I’m trying to deploy a simple Vaadin (vaadin 7 beta 10) application on a weblogic server 12c.
Installation is working fine, but when trying to access the application I get the following message in my browser :
“Failed to load the bootstrap javascript ./VAADIN/vaadinBootstrap.js”
For information, I’ve deployed exactly the same web application on Jboss 7.1.1, and it’s working perfectly.
Digging further into the problem. The problem is in VaadinServletService class (com.vaadin.server.VaadinServletService ) method getStaticFileLocation(VaadinRequest)
If you don’t put any “Ressource” value in Vaadin servlet init, the method returs requestedPath += pathInfo (if this one is not null)
Result is not the same between Jboss 7.1.1 and Weblogic 12c. (In fact, jboss is returning /${MyWebAppContext} and Weblogic is returning “.”
I’m perhaps missing something, but why aren’t you also using the context path of the application ?