While searching for something else, I saw some gwt directories in the Local
Settings\Temp dir, which had some log files in them.

C:\Documents and Settings\MyName\Local
Settings\Temp\gwtc2884477077954149866.tmp\myModuleName\shell\gen

These look like logs for the RPCs.

On Mon, Aug 17, 2009 at 9:47 AM, Trevis <trevistho...@gmail.com> wrote:

>
> This isnt a direct answer to your question but i think that this is
> the root of what is going wrong. Class instances that you send to the
> client have to play by the rules of GWT.  The class cant have imports
> that are not available on the javascript runtime code.
>
> import javax.persistence.Entity;
> import javax.persistence.Table;
>
> those classes are almost certainly not in the limited environment.
>
> Trevis
>
>
>
>
> On Aug 17, 8:21 am, tolga ozdemir <tka...@gmail.com> wrote:
> > this thread seems the same.. But I cannot reach the solution yet.. I
> > receive this error.. I cannot retrieve a List of my object via RPC
> > service
> >
> > http://groups.google.com/group/Google-Web-Toolkit/browse_thread/threa...
> >
> > ::: HERE IS MY OBJECT :::
> >
> > package net.tolgaozdemir.gwt.client.domain;
> >
> > import javax.persistence.Entity;
> > import javax.persistence.Table;
> >
> > import com.google.gwt.user.client.rpc.IsSerializable;
> > import net.sf.gilead.pojo.java5.LightEntity;
> >
> > public class Entry extends LightEntity implements IsSerializable{
> >
> >         /**
> >          *
> >          */
> >         private static final long serialVersionUID =
> -4123250238413358095L;
> >
> >         private Integer ID;
> >         private String entry;
> >
> >         // Properties
> >         /**
> >          * @return the id
> >          */
> >         public final Integer getId() {
> >                 return ID;
> >         }
> >         /**
> >          * @param id the id to set
> >          */
> >         public final void setId(Integer id) {
> >                 this.ID = id;
> >         }
> >
> >         public String getEntry(){
> >                 return entry;
> >         }
> >
> >         public void setEntry(String entry){
> >                 this.entry = entry;
> >         }
> >
> >         public Entry(){
> >
> >         }
> >
> > }
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to