> any idea why I am
> getting this warning and what can be done to remove the same.

Normally there's a link to a more detailed description of that warning
in the hosted mode console. Here's the detailed message:
http://code.google.com/p/google-web-toolkit/source/browse/trunk/distro-source/core/src/doc/helpInfo/webAppClassPath.html

Hope that helps,

Salvador

On May 8, 8:10 pm, sim123 <[email protected]> wrote:
> That works. Thanks for your help. I have other compilation warning
> like
>
> [WARN] Server class 'com.test.UserServiceImpl' could not be found in
> the web app, but was found on the system classpath
> [WARN] Adding classpath entry 'file:/Users/test/workspace/A/bin/' to
> the web app classpath for this session
>
> any idea why I am
> getting this warning and what can be done to remove the same.
>
> Thanks for the help.
>
> On May 7, 6:11 pm, sim123 <[email protected]> wrote:
>
> > in web.xml patterns are relative, I have given the path in web.xml,
> > but my application appends /B/userinfo here is my web.xml
> > configuration
>
> > <servlet>
> >         <servlet-name>UserService</servlet-name>
> >         <servlet-class>
> >                 com.test.UserServiceImpl
> >         </servlet-class>
> > </servlet>
> > <servlet-mapping>
> >         <servlet-name>UserService</servlet-name>
> >         <url-pattern>/A/userinfo/*</url-pattern>
> > </servlet-mapping>
>
> > if I don't add it in my module.gwt.xml I get following exception
> > [ERROR] Uncaught exception escaped
> > com.google.gwt.user.client.rpc.ServiceDefTarget
> > $NoServiceEntryPointSpecifiedException: Service implementation URL not
> > specified
> >         at
> > com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.doPrepareRequestBuil 
> > derImpl
> > (RemoteServiceProxy.java:293)
>
> > if I define it in module.gwt.xml
>
> > <servlet path="/userinfo" class="com.test.UserServiceImpl" />
>
> > I tried all possible combination of appending context root like
> > in module.xml
> > <servlet path="/A/userinfo" class="com.test.UserServiceImpl" />
>
> > and in web.xml
> > <servlet-mapping>
> >         <servlet-name>UserService</servlet-name>
> >         <url-pattern>/A/userinfo/*</url-pattern>
> > </servlet-mapping>
>
> > same is for B, and for /B/A/ noting works.
>
> > please help.
>
> > On May 7, 11:40 am, Vitali Lovich <[email protected]> wrote:
>
> > > In the web.xml for B, provide the proper paths for the RPC services.  I
> > > think that'll work.
>
> > > On Thu, May 7, 2009 at 2:13 PM, sim123 <[email protected]> wrote:
>
> > > > Can some one please help me with this issue and guide me to right
> > > > directions??
>
> > > > Thanks a lot for your help.
>
> > > > On May 6, 5:04 pm, sim123 <[email protected]> wrote:
> > > > > I have created two GWT projects A and B where A is an independent and
> > > > > main application and B is more like test application for A, so I
> > > > > inherit A as a module in B. I have a couple of RPC Service defined in
> > > > > A which I want to call from B to get the same data and use it in a
> > > > > different way. But when I try to make async call I get an exception
> > > > > saying
>
> > > > > [ERROR] Uncaught exception escaped
> > > > > com.google.gwt.user.client.rpc.ServiceDefTarget
> > > > > $NoServiceEntryPointSpecifiedException: Service implementation URL not
> > > > > specified
> > > > >         at
>
> > > > com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.doPrepareRequestBuil
> > > > derImpl
> > > > > (RemoteServiceProxy.java:293)
>
> > > > > I think it could be because of context root of my application has
> > > > > changed from A to B.  B is more like test but I want to do it in a
> > > > > real browser and I want to test A using B but not via Junit. Sorry for
> > > > > the confusion here but what should I do to make it working?
>
> > > > > Thanks for all the help and support.
--~--~---------~--~----~------------~-------~--~----~
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