Thanks vkmanoj, I did that and the error disappeared. Now, the problem is that when I add the hibernate core library, in order to manage the DAOs and POJOs generated by the hibernate reverse Engineering, I instead have a HTTP 404 error. Any help? efsiken
--- On Tue, 5/4/10, Mano <[email protected]> wrote: From: Mano <[email protected]> Subject: Re: Having problems with Gilead and hibernate integration in gwt To: "Google Web Toolkit" <[email protected]> Date: Tuesday, May 4, 2010, 12:27 PM Just move your Connection class to the server folder. Classes in server side can access the POJOs in client folder and whatever is there in server folder, not the other way around. (Also remember that client side code get converted into java script and the GWT emulator supports only a subset of what JRE supports) http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsCompatibility.html http://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html On May 4, 4:21 am, efsiken <[email protected]> wrote: > Hi, > I'm still new to gwt and so permit me if I speak what is not > right. I started up a gwt project with amongst other packages, a > client and a server package. Then I added the following gilead > libraries to the build path: > > gilead4gwt-1.3.1.1665.jar > gilead-core-1.3.1.1665.jar > gilead4appengine-1.3.1.1665.jar > gilead-hibernate-1.3.1.1665.jar > > Then I went to the project.gwt.xml file and added <inherits > name='net.sf.gilead.Gilead4Gwt'/>. Till this point, the program could > compile and execute without errors. I then added hibernate > capabilities to the project and with hibernate reverse engineering, I > generated the pojos and DAOs which I sent to the server package. I > dont know if up to this point, that is correct (I mean performing > hibernate reverse engineering in gwt). > > I created a class (Connection.java) in the client package that uses > the pojos and DAOs in the server package. When I run this class as a > java application, it executes without any problem and prints the > output on the console as expected. But when I compile the entire > project, I have the following errors: > > [ERROR] Errors in 'file:/C:/Projets/java/webtop/src/com/extjs/gxt/ > samples/desktop/client/widget/Connection.java' > [ERROR] Line 24: No source code is available for type > com.extjs.gxt.samples.desktop.server.Evuti; did you forget to inherit > a required module? > [ERROR] Line 26: No source code is available for type > com.extjs.gxt.samples.desktop.server.Evlang; did you forget to inherit > a required module? > [ERROR] Line 28: No source code is available for type > com.extjs.gxt.samples.desktop.server.EvlangDAO; did you forget to > inherit a required module? > [ERROR] Line 32: No source code is available for type > com.extjs.gxt.samples.desktop.server.EvutiDAO; did you forget to > inherit a required module? > > So I don't know the module I have to inherit or the source to be > added. Please can someone help me out? > > -- > 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 > athttp://groups.google.com/group/google-web-toolkit?hl=en. -- 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. -- 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.
