GWT Spring Interjection

2011-11-13 Thread Dave Potts
hi, What is the best way of intergrating a Gwt project with the spring Framework? I have seen several different attempts at doing this gwt-spring-starter-app orcades-gwt-spring spring4gwt gwtrpc-spring The gwt application is going to be making simple Gwt Servlet requests and will be expectin

EntityProxy & equals

2011-11-13 Thread Hilco Wijbenga
Hi all, I was trying to check the presence of an EntityProxy in a Set [i.e. set.contains(proxy)]. This returned false even though the proxy was an element of the set. As it turns out EntityProxy.equals() doesn't work, or, more precisly, it seems to behave as the default equals() and check referenc

Re: Sessions and Activities and Places

2011-11-13 Thread -sowdri-
Have your tried moving login part to a separate GWT module, with a different url (consequently a separate host html) and let the container handle the session management? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discus

Breakpoints don't work in Development Mode

2011-11-13 Thread Hans Schmitt
Hi, after switching to a Mac I just set up Eclipse and GWT and was trying to debug the Stockwatcher sample application. But the debugger doesn't stop at any breakpoint, no matter if it is located in client or in server code. (Yes, I'm sure that I started 'Development Mode'.) In non- GWT projects d

Re: Sessions and Activities and Places

2011-11-13 Thread Ashton Thomas
I handle this in two areas: 1) onModuleLoad: isAuthenticated/Valid Session 2) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/47RRkzwO8OEJ.

Re: Sessions and Activities and Places

2011-11-13 Thread Ashton Thomas
I handle this in two areas: 1) onModuleLoad: isAuthenticated/Valid Session 2) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/T6HkY06Cz_gJ.

Deferred binding with ClientBundle?

2011-11-13 Thread Ed
How can I override a ClientBundle through Deferred binding to override or add resources like images? Explain: I have a CLientbundle LoginResources that extends from Clientbundle. The LoginResources contains images that are used in the CSS file. I like to be able to use the RichLoginResources inte

Re: GWT HTTP RequestBuilder

2011-11-13 Thread Thomas Broyer
On Sunday, November 13, 2011 7:59:38 PM UTC+1, karun wrote: > > Hi Jens > > Yes i am sure, i got response code as 200 and the jsp from J2EE server > is also getting displayed, > > sorry for typo my application is in server 2 and J2EE application is > in server 1. > > to overcome SOP only, w

Re: Apache - Httpd.conf Entry - Static images

2011-11-13 Thread Thomas Broyer
You should apply a very short expiry on *.nocache.*, see http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#perfect_caching -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web vi

Re: GWT HTTP RequestBuilder

2011-11-13 Thread karun
Hi Jens Yes i am sure, i got response code as 200 and the jsp from J2EE server is also getting displayed, sorry for typo my application is in server 2 and J2EE application is in server 1. to overcome SOP only, we have setup the 2 servers in above format. so that domain name and port are same, b

Display first web page in GWT

2011-11-13 Thread Jonathan Gossage
I am a complete beginner with GWT and web development generally and I trying to build a GWT app using baby steps so I can understand each step. I have created a tiny app that simply as a styled layout panel in the RootPanel. My code in onModuleLoad is: public void onModuleLoad() {

Apache - Httpd.conf Entry - Static images

2011-11-13 Thread Polaris Polaris
Dear all, I have put the following entry in the httpd.conf file for compress and expiry page. Can you pls check and confirm whether my entry is correct in this file or i need to enabled anyother files. #SetOutputFilter DEFLATE ExpiresActive on ExpiresDefault "now plus 1 month" SetOutputF

Re: Why does GWT's API differ so much from the Javascript one?

2011-11-13 Thread Stephen Buergler
Window.open returns void. Stuff is missing like document fragments. It seems to me like none of this stuff has to be rewritten if it all the interfaces were generated from webidl then the implementations from GWT generators. -- You received this message because you are subscribed to the Google

Re: Why does GWT's API differ so much from the Javascript one?

2011-11-13 Thread Thomas Broyer
org.w3c.dom is such a pain to work with, you'd better define your own API that you implement on top of it (or JDOM or dom4j or whatever) on the server-side, and com.google.gwt.xml or com.google.gwt.dom on the client-side. This is exactly what the Wave guys did, and it works pretty well: https:

Re: Why does GWT's API differ so much from the Javascript one?

2011-11-13 Thread toont...@googlemail.com
Yes but it isn't clear how to share code between the client and server -- especially in the case the original poster mentioned: org.w3c.dom.* We were forced to wrap all the org.w3c.dom interfaces in classes that implement the com.google.gwt.client.xml interfaces. I understand that GWT can't implem