I am trying to develop a front end using GWT. The data fetched from
the font end are ultimately passed to provision.java file used for the
provisioning Data as provided by Provisioning API of Google.
Naturally to do the provisioning I need to import :

import com.google.gdata.client.appsforyourdomain.UserService;
import com.google.gdata.data.appsforyourdomain.provisioning.UserEntry;
import com.google.gdata.data.appsforyourdomain.provisioning.UserFeed;
import com.google.gdata.util.AuthenticationException;
import com.google.gdata.util.ServiceException;

All the gdata jar files necessary for the import are added in the
library from the project properties.
But when I am doing the GWT complilation I get this error:

Compiling module com.google.test.WebApplication
   Validating newly compiled units
      [ERROR] Errors in 'file:/D:/EclipseWorkSpace/webApplication/src/
com/google/test/shared/Provision.java'
         [ERROR] Line 39: No source code is available for type
com.google.gdata.client.appsforyourdomain.UserService; did you forget
to inherit a required module?
         [ERROR] Line 43: No source code is available for type
java.net.URL; did you forget to inherit a required module?
         [ERROR] Line 45: No source code is available for type
com.google.gdata.data.appsforyourdomain.provisioning.UserFeed; did you
forget to inherit a required module?
         [ERROR] Line 46: No source code is available for type
com.google.gdata.data.appsforyourdomain.provisioning.UserEntry; did
you forget to inherit a required module?
         [ERROR] Line 53: No source code is available for type
com.google.gdata.util.AuthenticationException; did you forget to
inherit a required module?
         [ERROR] Line 56: No source code is available for type
java.net.MalformedURLException; did you forget to inherit a required
module?
         [ERROR] Line 59: No source code is available for type
com.google.gdata.util.ServiceException; did you forget to inherit a
required module?
   Finding entry point classes
         [ERROR] Unable to find type
'com.google.test.client.WebApplication'
         [ERROR] Hint: Previous compiler errors may have made this
type unavailable
         [ERROR] Hint: Check the inheritance chain from your module;
it may not be inheriting a required module or a module may not be
adding its source path entries properly

I placed the provision.java in the com.google.test.shared package.
I am not getting any idea how to inherit the module. Do I have to do
anything in the gwt.xml file?
My intention is to have a front in GWT and the back end will do the
provisioning after fetching the data.Please help me out and give
necessary suggestions. Thanks in advance for your help.

Regards Lampard

-- 
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