Re: Storing uploaded file in gwt (server side)

2014-03-05 Thread Maithilish
Online tutorial is now available at CodeDrops - http://www.codedrops.in/gwt-tutorial/ -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+

Re: Development Mode will not be supported in Firefox 27+

2014-03-05 Thread Ed Bras
> They have to change, they have to update their tools and move forward, or quit doing Web dev. Agree, that's why I spend a lot of grey hairs in using SDM, but it's simple not there yet saidly... Don't get me wrong, I wish it would as I certainly see the advantages. I noticed that it's hard to und

Multiple host page and compilation errors related

2014-03-05 Thread Rubén Bermúdez López
I have a GWT application that use and have 2 host pages with 2 differents EntryPoint (gwt.xml files) which some code and most important, Database (datastore in Google App Engine) common. The problem is that one of them (main application entry point) makes use of several external Java librarie

GWT with Spring4

2014-03-05 Thread Dilan A
Hi I'm try to setup GWT, Maven with Spring and I'm getting following error; java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener I have created the project with following mvn commands; mvn archetype:generate \ -DarchetypeGroupId=org.codehaus.mojo \ -Dar

GWT with Spring

2014-03-05 Thread Dilan A
Hi I got gwt setup through maven and try to configure spring 4 and getting following error: javax.servlet.UnavailableException: org.spring4gwt.server.SpringGwtRemoteServiceServlet -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsu

Re: Development Mode will not be supported in Firefox 27+

2014-03-05 Thread Thomas Broyer
On Wednesday, March 5, 2014 9:30:54 AM UTC+1, Ed wrote: > > > They have to change, they have to update their tools and move forward, > or quit doing Web dev. > Agree, that's why I spend a lot of grey hairs in using SDM, but it's > simple not there yet saidly... Don't get me wrong, I wish it wou

Re: Problems using native JavaScript library (Snap)

2014-03-05 Thread Jens
Code below is untested: public class GraphicsWidget extends Widget { private static boolean injected = false; public GraphicsWidget() { if (!injected) { MyGraphics.injectSnap (); injected = true; } // set empty div as widget element: Element e = Document.get().*createElem

Re: Multiple host page and compilation errors related

2014-03-05 Thread Thomas Broyer
On Wednesday, March 5, 2014 9:49:06 AM UTC+1, Rubén Bermúdez López wrote: > > I have a GWT application that use and have 2 host pages with 2 differents > EntryPoint (gwt.xml files) which some code and most important, Database > (datastore in Google App Engine) common. > > The problem is that on

list box item is truncated in IE

2014-03-05 Thread aditi
the selected item in the list box is truncated in IE. We have language listbox where default language is English. The language name is displayed as Englis(h is truncated). Do we have to write some css that works for IE only? -- You received this message because you are subscribed to the Google

Re: Tomcat exception

2014-03-05 Thread Bryn Ellis
Hi Magnus I've just hit this exact problem in a production environment. Did you ever get a resolution to it please? Regards Bryn On Friday, 6 December 2013 14:23:44 UTC, Magnus wrote: > > Hi, > > my user reported a rpc.StatusCodeException. The tomcat logs report the > exceptions shown below.

Connect GWT with MY SQL database using JDO

2014-03-05 Thread Mansi Shah
Hello, I am new to GWT & JDO. Please tell me how to build application in GWT using JDO with MY SQL database. Regards, Mansi -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving

Re: Connect GWT with MY SQL database using JDO

2014-03-05 Thread Jens
> > Please tell me how to build application in GWT using JDO with MY SQL > database. > By reading the documentation of GWT, JDO and MYSQL. http://www.gwtproject.org/doc/latest/DevGuide.html -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Tool

Re: Running Hupa in Development Mode

2014-03-05 Thread Manuel Carrasco Moñino
It seems a problem in your maven setup, maybe this answer in SO could help: http://stackoverflow.com/questions/7905501/get-rid-of-pom-not-found-warning-for-org-eclipse-m2elifecycle-mapping On Tue, Mar 4, 2014 at 10:34 AM, Harry Lin wrote: > Thanks!! > > I can compile with : mvn clean package

Re: GWT SimpleEventBus which implementation to use?

2014-03-05 Thread sluettmann
Thanks very much for the clairification Jens. Am Dienstag, 4. Februar 2014 10:17:51 UTC+1 schrieb Jens: > > In your code you should use the web.bindery one. > > If you use Activities then you still get the old > com.google.gwt.event.shared.EventBus for compatibility reasons through > Activity.s

HTML5 Video Eror Handler

2014-03-05 Thread sluettmann
Hey folks, is there a way to register an error handler on a GWT Video Element? I tried to use video.addDomHandler(handler, ErrorEvent.getType()); but that doesn't fire when the HTML5 Video is not able to play the video (e.g. the video is not compatible with the codecs accepted by the html5

GWT HTML5 Video register Error Handler

2014-03-05 Thread sluettmann
Hey folks, is there a way to register an error handler on a GWT Video Element? I tried to use video.addDomHandler(handler, ErrorEvent.getType()); but that doesn't fire when the HTML5 Video is not able to play the video (e.g. the video is not compatible with the codecs accepted by the html5

Re: Problems using native JavaScript library (Snap)

2014-03-05 Thread Magnus
On Wednesday, March 5, 2014 10:19:51 AM UTC+1, Jens wrote: > > // set empty div as widget element: > Element e = Document.get().*createElement("svg"); // Snap() needs a > svg element, see docs.* > *Yes, one overloaded method expects a svg element. I also tested this, but...* var s =

Re: Problems using native JavaScript library (Snap)

2014-03-05 Thread Jens
> > It seems that the existing svg element is not recognized by the Snap > constructor. > This was also noticed > here, > > but the solution (adding more attributes to the

Re: Connect GWT with MY SQL database using JDO

2014-03-05 Thread Mansi Shah
On Wednesday, March 5, 2014 7:13:20 PM UTC+5:30, Jens wrote: > > Please tell me how to build application in GWT using JDO with MY SQL >> database. >> > > By reading the documentation of GWT, JDO and MYSQL. > > http://www.gwtproject.org/doc/latest/DevGuide.html > > -- J. > Thanks Jens.. I have

Re: Connect GWT with MY SQL database using JDO

2014-03-05 Thread Mansi Shah
On Wednesday, March 5, 2014 7:13:20 PM UTC+5:30, Jens wrote: > > Please tell me how to build application in GWT using JDO with MY SQL >> database. >> > > By reading the documentation of GWT, JDO and MYSQL. > > http://www.gwtproject.org/doc/latest/DevGuide.html > > -- J. > Thanks Jens.. I have

Re: Problems using native JavaScript library (Snap)

2014-03-05 Thread Magnus
On Wednesday, March 5, 2014 7:56:45 PM UTC+1, Jens wrote: > > It seems that the existing svg element is not recognized by the Snap >> constructor. >> This was also noticed >> here