• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

launch via servlet

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

i'm not a beginner but i can't solve this problem :

I have a jsp which include my gwt script :
<meta name='gwt:module' content='org.yournamehere.Main=org.yournamehere.Main'>
<title>JSP Page</title>
<script type="text/javascript" src="org.yournamehere.Main/org.yournamehere.Main.nocache.js"></script>


When i launch the jsp via a <welcome-file>myjsp.jsp</welcome-file> in web.xml it's OK :


But when i declare a servlet in web.xml to launch the jsp, the jsp is launched but the gwt part is empty.

Could you help me? I google my issue and doesn't find anything...
 
Bartender
Posts: 11497
19
Android Google Web Toolkit Mac Eclipse IDE Ubuntu Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to the Ranch.

Servlet to launch your JSP? I am not sure I understand. Can you show us your servlet code and web.xml mapping?
 
cedric cavrois
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I've find the issue :

the inclusion of the script nocache.js doesn't work when a servlet is defined in web.xml with "/" mapping, i don't know why...

In web.xml i declare a welcome-file which is a jsp which redirect me toward a servlet with mapping "/home", so i have no more servlet with mapping "/" and its work normally.

Thanks for your responses.
 
A day job? In an office? My worst nightmare! Comfort me tiny ad!
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic