Re: GWT and Hibernate using different Eclipse projects

2009-06-25 Thread eggsy
and use DTO objects for passing objects from client to server. Alternatively you can use Gilead (formerly Hibernate4Gwt) for more details on Gilead see: http://gilead.sourceforge.net Hope this goes somewhat to helping you. Eggsy On Jun 24, 1:15 pm, HenningS wrote: > Hi there, > > i&

Re: Ordering of rendering

2009-06-02 Thread eggsy
Hi Ian, Many thanks for the reply. I'm assuming you mean the GWT DeferredCommand object. I'll have to take a look into how that is utilised. Eggsy On Jun 2, 10:55 am, Ian Bambury wrote: > Have you ensured that the gwt script tag occurs after everything else? > Or tried a def

Re: GWT and Hibernate XML files vs Annotations

2009-05-28 Thread eggsy
cePOJO implements Serializable { Your annotated getters and setters } Notice the inheritance annotation and the PrimaryKeyJoinColumn annotation. Eggsy On May 27, 4:09 pm, Rafael Barrera Oro wrote: > Sorry for taking so long in replying and thank you for your answers. I am > tryi

Re: GWT and Hibernate XML files vs Annotations

2009-05-21 Thread eggsy
Hi Rafel, Yeah you can do everything in Hibernate Annotations its really quite powerful. We have moved to using it fully now instead of mapping files. Using the mapping file to simply hold our queries. What kind of relationship are you trying to map? Eggsy PS. Paul - yeah that framework does

Re: GWT for WAP

2009-05-05 Thread eggsy
shouldn't matter. Eggsy On May 5, 3:04 pm, Alejandro Fernandez wrote: > Hi: > > I am in a project about constructing a WAP application with Tomcat (Jboss). > Do you know if GWT can help me in this case? > Can you suggest me any framework that could help?

Re: Making a call to more than one server

2009-04-21 Thread eggsy
http://json.org has a bit more of a discussion about JSON itself. Eggsy On Apr 21, 12:38 am, Sumit Chandel wrote: > Hi AnaLena, > As mentioned in the SOP article, you won't be able to make calls to a server > on another domain because of the browser security policies in place. &

Re: GWT position - NYC

2009-04-17 Thread eggsy
If only I lived in NY (and was American) :( Eggsy On Apr 16, 8:30 pm, Ed wrote: > Hi, my client has an exciting opportunity to redo their user interface > with GWT, and is looking for someone with strong expertise, leadership > and a passion for GWT. If you are interested please c

Re: Connecting to database with eclipse

2009-04-09 Thread eggsy
No worries!! Glad you got it sorted Eggsy On Apr 8, 5:16 pm, Cryssyenddo wrote: > Yes, i did created an object class "Forum" at client side, and i've > just confirmed that the array from server side is null. > > I've found out the problem with result set is

Re: Connecting to database with eclipse

2009-04-08 Thread eggsy
Can you confirm (server side) that the array of objects isn't null? If so this sounds like GWT might not be able to handle objects of type Forum. GWT can only handle objects declared under the client side packages and wont be able to handle any database POJO object declared at server level. For

Re: Connecting to database with eclipse

2009-04-08 Thread eggsy
. Your DB code that you have already shown us should go on the server side either in your ServiceImpl class or another server side bean (preferred) On Apr 8, 3:36 pm, eggsy wrote: > Are you using GWT 1.4 or 1.5? > > If you are using 1.5 add the line: > > @RemoteServiceRelativ

Re: Connecting to database with eclipse

2009-04-08 Thread eggsy
Are you using GWT 1.4 or 1.5? If you are using 1.5 add the line: @RemoteServiceRelativePath("teachers") in the same place as where I have mine - replace teachers with whatever path you want for your servlet. next thing is how to call the servlet using RPC this should be done like so: TeacherS

Re: Connecting to database with eclipse

2009-04-08 Thread eggsy
rtant. Do you have this? Eggsy On Apr 7, 4:15 pm, Cryssyenddo wrote: > Anyone? please? i need this to work... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this gro

Re: JSONP with Authentication

2009-03-23 Thread eggsy
, 11:47 am, Thomas Broyer wrote: > On 23 mar, 00:42, eggsy wrote: > > > Are there any other ways? > > > For example if I code a GWT form with username and password and pass > > the values through with the JSONP request as parameters (doing my own > > verification ser

Re: JSONP with Authentication

2009-03-22 Thread eggsy
eters because they would be in plain text?? On Mar 20, 2:17 pm, eggsy wrote: > Yep I spose thats one way to do it! :) > > On Mar 20, 1:58 pm, Brian wrote: > > > I'd just send the requests over https. > > > On Mar 20, 4:56 am, eggsy84 wrote: > > > >

Re: JSONP with Authentication

2009-03-20 Thread eggsy
on a good footing with good secure principles in place? > > > Has anyone else followed proven methods when implementing a GWT > > application? > > > Many thanks all, > > > Eggsy --~--~-~--~~~---~--~~ You received this message because yo

Re: help required

2009-03-16 Thread eggsy
I have already replied to this from your blog comment. Eggsy On Mar 16, 2:45 pm, Vitali Lovich wrote: > Oh, and SQL is the umbrella name for the database language.  There's a lot > of different vendors providing slightly different implementations.  MySQL is > a popular one. >

Re: Cache problem?

2009-03-11 Thread eggsy
On the HTML page that includes your GWT script try doing something like this: (Notice the 1.2 addition) Then locate the compiled up Javascript and rename it to the file above. You can then be sure it is referencing the correct JS. On Mar 10, 2:23 pm, "fatjack1...@googlemail.com" wrote: >

Re: Synchornous GWT, how can i do that

2009-03-11 Thread eggsy
sible. Eggsy On Mar 11, 10:13 am, ping2ravi wrote: > I totally agree with you guys that Asynchronous is good, but i would > love to see mix up of synchrnous and asynchronous in GWT(my personal > view), where i can make an asynchronous call to one function which > internally can make

Re: Error in Application

2009-02-27 Thread eggsy
kage containing client. You must not have server side objects on your client side so in this case anything under: 'com.company.client' should all be GWT compatible Java classes. Hope this helps, I have also replied on the blog post part 3. Eggsy On Feb 27, 11:27 am, gregor wrote