Re: RequestFactory not working when upgrade from 2.2 to 2.3

2011-07-23 Thread Alessandro Giannone
If you add gwt-servlet-deps.jar to your classpath and also copy it into /war/WEB-INF/libs it should work properly. The GWT Eclipse Plugin doesn't seem to copy the file to the libs folder. Ale -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Problems while installing Google Updates for Eclipse 3.6

2011-02-20 Thread Alessandro Alessio
Hello Sandeepa, thanks for your answer. didi you just follow the instructions from http://code.google.com/intl/it-IT/eclipse/docs/install-from-zip.html and you successfully updated to ver 2.2.0? --Alex 2011/2/19 Sandeepa Nadahalli snadaha...@gmail.com Hello, I finally got it working. I had

Re: Simple question about GWT.create() signature

2010-11-29 Thread Alessandro Carraro (JUG Padova)
to... :) On 28 Nov, 10:56, Thomas Broyer t.bro...@gmail.com wrote: On 26 nov, 21:12, Alessandro Carraro (JUG Padova) carraro.alessan...@gmail.com wrote: A simple qestion, sorry if it is a FAQ: Why   public static T T create(Class? classLiteral) and not   public static T T create(ClassT

Simple question about GWT.create() signature

2010-11-27 Thread Alessandro Carraro (JUG Padova)
A simple qestion, sorry if it is a FAQ: Why public static T T create(Class? classLiteral) and not public static T T create(ClassT classLiteral) the second one would save me from a lot of unnecessary casts (IMHO). What's worse, I tried to write the helper function:

Re: read remote binary file

2010-04-02 Thread alessandro
will understand--a serializable object in the case of an RPC method, a mime type in the case of a servlet--and return it to your client. What do you expect to do with the binary file on the client side if you had it there? On Mar 25, 6:56 am, alessandro gopavelned...@gmail.com wrote: hi all, I

read remote binary file

2010-03-25 Thread alessandro
hi all, I need to read a binary file located on a remote server I also see that I can't use HttpURLRequest java class how can I do? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

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:

Boostrap hangs on page cached by google

2009-10-23 Thread Alessandro Pacifici
Accessing a GWT page cached by google (google adds the base tag to import correctly all relative referenced files) the bootsrap hangs even if the linker used in the page is xs added with the following lines on the gwt module xml file: add-linker name=xs /

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

Enhancement to Tutorial on GWT-RPC

2009-05-15 Thread alessandro
be a good idea to suggest using IsSerializable instead of java.io.Serializable by default. Thanks for the excellent tutorial. Alessandro --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group