Re: RPC Call Failed from other domain(cross domain) due to SOP

2010-02-23 Thread Alessandro Loche
Hi Ramesh, take a look at JsonpRequestBuilder class.. here you can find javadoc http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/jsonp/client/JsonpRequestBuilder.html Regards, Ale -- From: ramesh chiluveri

Re: ERROR: GWT.create() is only usable in client code! It cannot be called, for example, from server code.

2009-11-28 Thread Alessandro Loche
This is because you are using XMLParser in server side. Otherwise you should put that code under the client package. (p.s. Why returning ArrayList instead of List? Separate interface from implementation...) -- From: Dave ladjo...@gmail.com Sent:

Re: Did you forget to inherit a required module? about jdo

2009-08-30 Thread Alessandro Loche
You should move your classes out of the package 'client'. This is because GWT consider it by default as a source package, so the compiler will search for source code to translate Java into Javascript.

Re: Did you forget to inherit a required module? about jdo

2009-08-30 Thread Alessandro Loche
, Alessandro Loche alessandro.lo...@gmail.com wrote: You should move your classes out of the package 'client'. This is because GWT consider it by default as a source package, so the compiler will search for source code to translate Java into Javascript. http://code.google.com/intl

Re: Plain OO question

2009-08-25 Thread Alessandro Loche
); SetCondition getConditions(); void setConditions( SetCondition conditions ); EvaluationResult apply ( CourseOrder c ); } Or am I wrong again? :-) On 25 Aug, 04:03, Alessandro Loche alessandro.lo...@gmail.com wrote: You should think in terms of Rules and Conditions. interface Rule

Re: Plain OO question

2009-08-24 Thread Alessandro Loche
You should think in terms of Rules and Conditions. interface Rule { boolean evaluateConditions( Course c ); SetCondition getConditions(); void setConditions( SetCondition conditions ); EvaluationResult apply ( Course c ); } interface Condition { isTrue( Course c); } Any

Re: Career suggestion needed

2009-08-23 Thread Alessandro Loche
What do you think about EJB 3? Regards -- From: venki pola.ve...@gmail.com Sent: Sunday, August 23, 2009 7:25 PM To: Google Web Toolkit google-web-toolkit@googlegroups.com Subject: Career suggestion needed Hi all.. I have been working on GWT

Re: VerticalSplitPanel doesn't show widgets

2009-08-23 Thread Alessandro Loche
Excluding constructor signature (that's wrong, it must have the same name as his class), it works. Ale. -- From: google400 ali.rac...@gmail.com Sent: Sunday, August 23, 2009 4:47 PM To: Google Web Toolkit google-web-toolkit@googlegroups.com