Class not found Exception

2012-07-24 Thread harish saharan
Dear all, I am using GWT 2.5 RC and i am having java.lang.ClassNotFoundException: com.google.gwt.core.client.GWTBridge Can anyone help me on this problem -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group

GWT AND SOAP

2012-07-24 Thread Nitheesh Chandran
HI, Can we use GWT and SOAP ? i read from some documents that GWT does not have a built in support for SOAP and another document says it can be used in server side of GWT. it is a little bit confusing. Can anyone give me a clarification on this. Also i read SMART GWT has built in support f

Re: GWT 2.5 RC1 Is Here!

2012-07-24 Thread harish saharan
hey all, I am using GWT 2.5 RC and i am having java.lang.ClassNotFoundException: com.google.gwt.core.client.GWTBridge can anyone help me . On Thursday, 28 June 2012 02:09:07 UTC+5:30, Rajeev Dayal wrote: > > Hey all, > > We're excited to announce th

GWT AND SOAP

2012-07-24 Thread Nitheesh Chandran
Hi , Can we use SOAP with GWT ? i found from some documents that GWT does not have a built in support for SOAP. I read that can be used in server side of GWT. It is confusing. Can anyone clarify this -- You received this message because you are subscribed to the Google Groups "Google Web

Re: Submitting a FormPanel affect "back button" support

2012-07-24 Thread Juan Pablo Gardella
Thanks Gal!! This workaround works!!! Juan 2012/7/25 Gal Dolber > I had the same problem. After the upload is complete, remove the formpanel > from the screen (removeFromParent). IOW only show the FileUpload when > needed. > > On Wed, Jul 25, 2012 at 12:42 AM, Juan Pablo Gardella < > gardellaju

Re: Submitting a FormPanel affect "back button" support

2012-07-24 Thread Gal Dolber
I had the same problem. After the upload is complete, remove the formpanel from the screen (removeFromParent). IOW only show the FileUpload when needed. On Wed, Jul 25, 2012 at 12:42 AM, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > Hi, > > I see http://code.google.com/p/google-web-

Submitting a FormPanel affect "back button" support

2012-07-24 Thread Juan Pablo Gardella
Hi, I see http://code.google.com/p/google-web-toolkit/issues/detail?id=624 and at now I do not see any workaround that works on all browsers. I did an upload file that is similar at the gmail (use FormPanel and FileUpload), but the only problem that had is that when do the submit affect the histor

GWT and Google Maps API

2012-07-24 Thread nesrine doghri
Hi , I'm trying this project http://code.google.com/p/gwt-examples/source/browse/trunk/DemoGWTMap/#DemoGWTMaps%2Fwar%2Fdemogwtmaps%2Fgwt%2Fstandard%2Fimages%253Fstate%253Dclosed and I got this error 01:32:29.406 [ERROR] [maps] Uncaught exception escaped java.lang.ExceptionInInitializerError: null

Re: XsrfTokenServiceServlet throws RpcTokenException: Invalid RPC token

2012-07-24 Thread alexkrishnan
I just started implementing the same guide, and used a similar workaround to you: if (Cookies.getCookie("JSESSIONID") == null) // We must have a session cookie in order to authenticate with the server Cookies.setCookie("JSESSIONID", Double.toString(Math.random())); XsrfTokenServiceAsync xs

XsrfTokenServiceServlet throws RpcTokenException: Invalid RPC token

2012-07-24 Thread dhoffer
I've been switching my RPC calls to use XsrfTokenServiceServlet per this link https://developers.google.com/web-toolkit/articles/security_for_gwt_applications#cross-site It's working quite well except that I occasionally get this error on the first RPC method call. Exception while dispatchin

GWTEventService listener triggers additional call each time the web application is displayed in the browser

2012-07-24 Thread gshepherd
I have a web service bundled with my GWT app and I'm using GWTEventService 1.1.1. I need for the client to be notified when a record is added to the database via a web service call. In the OnMonduleLoad I've added the event listener and everything works as expected. For example, an external c

Re: RequestBuilder passes SOP without notice.

2012-07-24 Thread Alexandre Ardhuin
Hi, The response of the first request contains the header "access-control-allow-origin: *". This is known as Cross-Origin Resource Sharing ( see http://www.w3.org/TR/cors/ ) and allows to call other domain with XHR. Be careful, not all browser support this feature. Alexandre 2012/7/24 KutaBeach

Re: GWT 2.5-rc1 feature uirender is not working as expected.

2012-07-24 Thread Rodrigo Chandia
Hmm, this seems like a bug to me. Hopefully I'll have a fix ready for rc2. On Mon, Jul 23, 2012 at 11:11 PM, Vasu wrote: > > Yea you are absolutely right. It worked when I removed type attribute > from tag. I was wondering it has to identify type to call > respective methods on the same a

Re: GWT Maven dependency - missing SDK

2012-07-24 Thread Aldo Neto
I deleted the things you suggested and it worked now!! Thanks a lot On Tue, Jul 24, 2012 at 11:45 AM, Thomas Broyer wrote: > > > On Tuesday, July 24, 2012 4:28:12 PM UTC+2, Aldo wrote: >> >> Yes...and after that I get all packages downloaded and everything seems >> just fine, except for this e

Re: GWT Maven dependency - missing SDK

2012-07-24 Thread Thomas Broyer
On Tuesday, July 24, 2012 4:28:12 PM UTC+2, Aldo wrote: > > Yes...and after that I get all packages downloaded and everything seems > just fine, except for this error that says that no SDK is configured. The > actual message is: > > Unbound classpath container: 'GWT SDK [missing]' in project 'H

Re: GWT Maven dependency - missing SDK

2012-07-24 Thread Aldo Neto
Yes...and after that I get all packages downloaded and everything seems just fine, except for this error that says that no SDK is configured. The actual message is: Unbound classpath container: 'GWT SDK [missing]' in project 'HelpAssist' Build path Build Path Problem Then I try to configure the

Re: GWT Maven dependency - missing SDK

2012-07-24 Thread Thomas Broyer
How do you "point [your] eclipse to it"? Are you using "Import Existing Maven Project" from M2Eclipse? On Tuesday, July 24, 2012 2:50:18 PM UTC+2, Aldo wrote: > > Hi, > > I'm using GWT 2.3 and my project uses Maven. I'm trying to build an > environment from scratch but I'm getting a strange error

GWT Maven dependency - missing SDK

2012-07-24 Thread Aldo Neto
Hi, I'm using GWT 2.3 and my project uses Maven. I'm trying to build an environment from scratch but I'm getting a strange error. I have gwt-user configure in maven but it downloads a file named gwt-user-2.3.0.jar and when I try to point my eclipse to it I have the following error: "gwt-user.jar

Re: DevMode for Firefox 14

2012-07-24 Thread kim young ill
thanx Alan for the efforts. it was a great help. On Tue, Jul 24, 2012 at 8:21 AM, Frank Hossfeld wrote: > Fantastic! Thank you! > > Am Dienstag, 24. Juli 2012 07:49:30 UTC+2 schrieb Alan Leung: > >> Last but not least, >> http://acleung.com/ff14-mac.**xpi >> >>

Re: GWT Cross Site Iframe Linker and Script Tags

2012-07-24 Thread Daniel
Thanks for the explanation. I find this very interesting. This means I'll be able to extend the CrossSiteIframeLinker Linker and overwrite the fillSelectionScriptTemplate() function to include all required scripts with sth like document.write() or document.getElementsByTagName("head")[0].append

Re: GWT Cross Site Iframe Linker and Script Tags

2012-07-24 Thread Thomas Broyer
On Monday, July 23, 2012 4:33:01 PM UTC+2, Daniel wrote: > > Hi, > can someone please explain to me the technical details why the xsiframe > Link can not compile GWT apps which load