Events not firing or caught, though handlers created successfully

2010-12-30 Thread UseTheFork
Hi, I am implementing a small GWT application containing a couple of buttons. I take most of my inspiration from the contact tutorial. I fire the button events with something like this: display.getCreditsButton().addClickHandler(new ClickHandler() { @Override

Re: Is encryption over RCP possible?

2010-12-27 Thread UseTheFork
I just came across the Secure Remote Password protocol (http:// srp.stanford.edu/). To reduce the TLS/SSL load on the server, one could create accounts/pwd (and perform commercial transactions) using HTTPS, and carry on with SRP later. It would make encryption over RCP possible and lighter, while

Re: Centering an image in a SimplePanel

2010-12-23 Thread UseTheFork
I found a workaround, I used an horizontal panel containing one element and played with setVerticalAlignment/setHorizontalAlignment in the code. It works, but it is not 'clean'. If anyone knows a better solution, let me know. Thanks. On Dec 22, 11:41 pm, UseTheFork jvers...@gmail.com wrote: I

Rebind result '...' must be a class on ImageResource

2010-12-22 Thread UseTheFork
Hi, I am following the guidelines available at: http://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.html#ImageResource to create an image resource item: public interface ApplicationImageBundle extends ImageResource { public static final ApplicationImageBundle INSTANCE

Re: Rebind result '...' must be a class on ImageResource

2010-12-22 Thread UseTheFork
Problem solved. Many thanks Thomas, I was getting crazy !!! On Dec 22, 5:42 pm, Thomas Broyer t.bro...@gmail.com wrote: Your interface should extend ClientBundle, not ImageResource. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Centering an image in a SimplePanel

2010-12-22 Thread UseTheFork
Hi, What is the best way to put an image at the center of a SimplePanel? I am looking for a code example. Should I try to use a HTMLPanel instead of a SimplePanel? If yes how? Thanks ! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Centering an image in a SimplePanel

2010-12-22 Thread UseTheFork
I forgot to mention: I use Uibinder. -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Is encryption over RCP possible?

2010-12-19 Thread UseTheFork
On Dec 15, 6:46 pm, Sripathi Krishnan sripathi.krish...@gmail.com wrote: Explain me how Mallory can put in a fake/invalid/duplicate/whatever SSL certificate when Alice and Bob are communicating. Mallory can start a C.A. business, like Go Daddy does. It would get its certificate from Verizon and

Re: Is encryption over RCP possible?

2010-12-19 Thread UseTheFork
On Dec 16, 9:15 am, Basdl b...@cirosec.de wrote: Concerning your conclusion, that root certificates stored in browsers where no pre-established secrets, I have a notice: The certificates itself where public but the server knows the corresponding secret key. So he can sign something and the

Re: Is encryption over RCP possible?

2010-12-19 Thread UseTheFork
For those who are interested in the weaknesses of SSL/TLS, here is more information: - http://code.google.com/p/littleblackbox/wiki/FAQ - http://www.thoughtcrime.org/software/sslsniff/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Is encryption over RCP possible?

2010-12-15 Thread UseTheFork
Hi Rob, On Dec 15, 9:39 am, Rob Coops rco...@gmail.com wrote: Lets sum this up nice and quick...    - SSL/TLS uses certificates and is according to most as save as it gets    - MITM attacks can and do happen, they could theoretically even mess with    SSL/TLS communication    - SSL/TLS MITM

Re: Is encryption over RCP possible?

2010-12-14 Thread UseTheFork
Hi Sri, On Dec 13, 11:00 pm, Sripathi Krishnan sripathi.krish...@gmail.com wrote: @UseTheFork We have had similar discussions on the web security mailing lists. Here is a relevant discussion threadhttp://www.webappsec.org/lists/websecurity/archive/2010-09/msg00079.html. Short summary

Re: Is encryption over RCP possible?

2010-12-13 Thread UseTheFork
Hi Sripathi, Thanks for your feedback. I have been googling a little... On Dec 13, 9:14 am, Sripathi Krishnan sripathi.krish...@gmail.com wrote: Hi, I am newbie to GWT and I am trying to find the best way to communicate a password from a GWT application's client-side to a server's-side

Re: Is encryption over RCP possible?

2010-12-13 Thread UseTheFork
Hi Chris, On Dec 13, 5:14 pm, Chris Conroy con...@google.com wrote: Please do not try to implement encryption yourself on the client side. This is a fundamentally flawed idea. You will definitely not be doing anyone (other than Eve) a service. Thanks for the advice, but I'll do it anyway. I

Optimization of 3rd party javascript?

2010-12-13 Thread UseTheFork
Hi, Let's imagine I include a 3rd party javascript file in my GWT project, and that I implement wrapper methods in my Java client to invoke the functions defined in the Javascript. Will the GWT compiler optimize that 3rd party javascript code? If not, would it help to move the Javascript code

Is encryption over RCP possible?

2010-12-12 Thread UseTheFork
Hi, I am newbie to GWT and I am trying to find the best way to communicate a password from a GWT application's client-side to a server's-side service without using SSL. Of course, I am thinking about account creation and login issues. We don't want Eve and Malory to fiddle with the communication.

About rpcService instance creation in tutorial code

2010-12-11 Thread UseTheFork
ContactsServiceAsync to create the rpcService instance? I don't see any code implementing ContactsServiceAsync. ii) Or should I assume that none of the Java code I write for my application is going to be used at runtime, since everything will be converted into Javascript? Thanks, UseTheFork -- You

Re: Maven stops with i18n generation error

2010-12-06 Thread UseTheFork
, but it is a start...) UseTheFork P.S.: Typically, I believe a proper maven project pom.xml for GWT should contain the following the plugin reference: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-compiler-plugin/artifactId version2.0.2/version