Re: Setting Up A Login Page To Use SSL

2011-05-25 Thread Max Jonas Werner
Nick, On Tuesday, May 24, 2011 11:56:57 PM UTC+2, Nick Apperley wrote: > > Max - With regards to point 1 I did consider it but it isn't feasible > to use SSL for the entire website when large amounts of data is being > sent to/from the server. Most of the data being received from the > server i

Re: Setting Up A Login Page To Use SSL

2011-05-24 Thread Max Jonas Werner
Nick, two points: 1. Have you considered using TLS/SSL for your complete application? Without that a MITM would still be able to sniff the session cookie and act on behalf of the user, sniff users' data, modify data on the way between server and client and so on. 2. If you really really want

Re: Please send some sample code in detail for Gwt server side method unit test cases.

2011-05-24 Thread Max Jonas Werner
Hi Rupesh, I don't think this has anything to do with GWT. Perhaps you'll have more luck asking the folks on the EasyMock mailing list at http://tech.groups.yahoo.com/group/easymock/ or read the Spring docs at http://www.springsource.org/documentation. You should consider posting some more cod

Re: Image URL from Facebook doesn't load on Chrome, but does on other browsers.

2011-05-23 Thread Max Jonas Werner
Hi erebrus, without some code it'll be difficult to help you. Please post the code snippet which creates your Image. HTH Max -- 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@googleg

Prototypical implementation of Desktop Notifications

2011-05-20 Thread Max Jonas Werner
it+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. package de.maxwerner.gwtplayground.client; import com.google.gwt.event.dom.client.DomEvent; /** * Represents a native display event. * * @author Max Jonas Werner

Re: KeyPressEvent doesn't capture Enter

2011-04-27 Thread Max Jonas Werner
Hi julio, there's also an open issue in the issue tracker for GWT: http://code.google.com/p/google-web-toolkit/issues/detail?id=5558 It is increasingly annoying that the docs in http://code.google.com/webtoolkit/doc/latest/tutorial/manageevents.html are not updated to reflect this issue. HTH

Re: textbox water mark

2010-12-28 Thread Max Jonas Werner
This is weird. I can't search for this topic and it doesn't show up in my or in pieceovcake's activity log but the direct link still works. What am I missing here? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, se

Re: textbox water mark

2010-12-28 Thread Max Jonas Werner
Why has this topic been deleted from Groups? On 20 December 2010 21:03, Max Jonas Werner wrote: > You're a lucky guy that you can use this feature. ;-) > > Cheers! > Max > > -- > You received this message because you are subscribed to the Google Groups > "Go

Re: textbox water mark

2010-12-20 Thread Max Jonas Werner
You're a lucky guy that you can use this feature. ;-) Cheers! Max -- 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 goo

Re: textbox water mark

2010-12-20 Thread Max Jonas Werner
Hi pieceovcake, yes, we're using sth. like you've mentioned a lot in our application. It looks sth. like this: ... private TextArea _ta; ... _ta.setText("placeholder"); _ta.setStyleName("textarea-placeholder"); _ta.addFocusHandler(new FocusHandler() { @Override public void onFocus(final

Re: Repeating Timer and onUnload()

2010-11-27 Thread Max Jonas Werner
ruction :) > > On 23 Nov., 17:26, Max Jonas Werner wrote: > > > Hi, > > > I have built a widget for my GWT application that shows the latest > > actions users of the application have performed. To refresh this > > widget automatically I use a Timer and its sche

Repeating Timer and onUnload()

2010-11-23 Thread Max Jonas Werner
Hi, I have built a widget for my GWT application that shows the latest actions users of the application have performed. To refresh this widget automatically I use a Timer and its schedule() method like this: private final Timer t = new Timer() { @Override public void run() {