Re: What's the best/easiest way of doing server-side persistence with GWT?

2010-05-22 Thread Robnauticus-
I am using Oracle DB Java Edition http://www.oracle.com/database/berkeley-db/je/index.html HTH, Rob On May 21, 8:21 am, Navigateur naveen.c...@googlemail.com wrote: Robonauticus, which object db are you using? db4o? On May 21, 3:50 pm, Robnauticus- robnauti...@gmail.com wrote

Re: What's the best/easiest way of doing server-side persistence with GWT?

2010-05-21 Thread Robnauticus-
Hello, I have completed a GWT / Hibernate / gilead / mysql project. It was my first, the whole process was a large pain but mostly worth it still compared to DIY. My newer project is based on GWT / Oracle DB Java edition an object based db. It has been too easy so far... no translators, just one

Re: GWT RPC Hibernate - again and again

2009-09-10 Thread Robnauticus-
for. I looked at Gilead and the samples, and they use Hibernate.cfg.xml and the Object.hbm.xml ... which I don't have in this application. So, if I found an example of Gilead with Spring, that would help. Thanks for the help, I do appreciate it!   :-) Tom On Sep 9, 1:38 pm, Robnauticus

Re: GWT RPC Hibernate - again and again

2009-09-09 Thread Robnauticus-
Hello Thomas, Do you have Hibernate working with annotations? If you don't have an cfg.xml file set up and mapping files, Hibernate will not work. You are also attempting to call spring classes inside of GWT which will not work. I created a Domain package that serves as the in-between for

Re: List Box Issue with GWT 1.7

2009-09-07 Thread Robnauticus-
Thanks again Erik, It is working! Rob On Sep 7, 12:11 am, Erik luys.e...@gmail.com wrote: Maybe you should use : setItemSelected(int index, boolean selected)           Sets whether an individual list item is selected. --~--~-~--~~~---~--~~ You received this

Re: List Box Issue with GWT 1.7

2009-09-07 Thread Robnauticus-
Hey Erik, I must have missed the method. Sorry I will try that one out. Thanks! Should be what I am looking for. Thanks! Rob On Sep 7, 12:11 am, Erik luys.e...@gmail.com wrote: Maybe you should use : setItemSelected(int index, boolean selected)           Sets whether an individual

Re: WYSIWYG version of Google Plugin for Eclipse coming soon?

2009-08-29 Thread Robnauticus-
Hi Keith, I own the Designer, the only warning I would give about purchase is this; only get it if you are not planning on using any 3rd party widget libraries that are up to date. SmartGWT and GXT cannot be designed yet. They are working on it but you should not hold a project up for that.

Re: How to list items from a data base

2009-08-27 Thread Robnauticus-
Hey Ted, There are some things that need clarification. 1. Where do you have this database? 2. What type of DB? 3. How you plan on connecting to it? (GWT does not handle the back end DB connections) You will need a Server of some kind beyond a simple HTTP server. PHP or Java Servlet are most

Re: Google plugin demands an -AsyncAsync version of a service interface [Solved]

2009-08-05 Thread Robnauticus-
Hello I am having a similar issue. The new version of the Eclipse plugin throws an error because I have a base interface that all of my remote service interfaces are based from. It wants me to create an async version of my base interface. Is there a way to prevent this from throwing an error

Re: Google plugin demands an -AsyncAsync version of a service interface [Solved]

2009-08-05 Thread Robnauticus-
,Robnauticus- robnauti...@gmail.com wrote: Hello I am having a similar issue.  The new version of the Eclipse plugin throws an error because I have a base interface that all of my remote service interfaces are based from.  It wants me to create an async version of my base interface. What