Hi All

This is my first post, so please go easy on me!

I have checked the archives, but I couldn't find anything that seemed
to answer my questions.

I'm integrating GWT with Spring using a proxy class that derives from
RemoteServiceServlet and gets the Spring Application context as
follows:

final XmlWebApplicationContext context = new XmlWebApplicationContext
();
context.setServletContext(this.getServletContext());
context.refresh();
IssuesService issues = (IssuesService) context.getBean("IssuesImpl");

This works just fine when the project is deployed to TomCast (proper),
but when I use it in hosted mode I get:

[WARN] StandardContext[]Exception while dispatching incoming RPC call
com.google.gwt.user.server.rpc.UnexpectedException: Service method
'public abstract java.util.List
uk.co.marauder.tracker.client.rpc.IssuesService.getIssueHeaders
(boolean)' threw an unexpected exception:
org.springframework.beans.factory.BeanDefinitionStoreException:
IOException parsing XML document from ServletContext resource [/WEB-
INF/applicationContext.xml]; nested exception is
java.io.FileNotFoundException: Could not open ServletContext resource
[/WEB-INF/applicationContext.xml]

Where is the WEB-INF located when running in hosted mode?

Thanks
Paul

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to