I installed AppWrench in Eclipse (I'm using 3.4) and attempted to check out the local datastore through one of the views but was unable too see it. Can you relay to me the steps to check out the local datastore (I didn't see clear instructions on the vendor's website)?
In GWT, I just added a couple of text boxes, an insert button and a refresh button. The buttons show the results through a popup of the call to the servlet that interacts with the datastore. The insert button just returns that it was successful in inserting the record. The refresh button (should) shows all the records in the datastore for the class I'm interacting with. On Apr 28, 10:36 pm, Jean Hsu <[email protected]> wrote: > You could check out AppWrench to look at the datastore directly. That way > you would at least know it's not there for sure. I'm also working with > GWT/GAE. What did you add with GWT? > > Jean > > > > On Wed, Apr 28, 2010 at 6:19 PM, zackmac <[email protected]> wrote: > > My issue kind of crosses GWT and GAE/J, but I'm thinking it's more of > > an issue in GWT (most likely an issue with my understanding/missing > > something important). > > > I developed a GAE/J application that was inserting successfully into > > my local google datastore. Was also retrieving records fine. When I > > included GWT functionality in the application, my transactions don't > > seem to be persisting. A sample of a servlet that's being called by a > > push button event: > > > Categories cat = new Categories(user.getNickname(), account, > > categoryName); > > System.out.println("user=" + cat.getUserName()); > > System.out.println("account=" + cat.getAccount()); > > System.out.println("categoryName=" + cat.getCategoryName()); > > pm.makePersistent(cat); > > System.out.println("record got inserted"); > > > I've run this several times, yet data isn't persisting. I know this > > cause I query later in the program and no records are returned. > > > Any advice on things I could check 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]<google-web-toolkit%[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 > 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.
