[appengine-java] Re: java.awt.Color is not supported by Google App Engine's Java runtime environment

2011-09-22 Thread Heiko Roth
GWT will compile to Javascript. You can't mix different UI frameworks with GWT, that's it. On 21 Sep., 11:54, KRS krishnaro...@gmail.com wrote: Hi all We had web application developed in netbeans and using GWT. Now i tried to move the application to eclipse and using google app engine.. I

[appengine-java] Re: java.awt.Color is not supported by Google App Engine's Java runtime environment

2011-09-22 Thread J.Ganesan
Migrate your application using com.google.gwt.canvas.dom.client.CssColor. J.Ganesan www.DataStoreGwt.com Persist objects directly in GAE On Sep 21, 2:54 pm, KRS krishnaro...@gmail.com wrote: Hi all We had web application developed in netbeans and using GWT. Now i tried to move the

[appengine-java] Re: java.awt.Color is not supported by Google App Engine's Java runtime environment

2011-09-22 Thread Rutger van der Eijk
Hi, I am not fully sure if I understand what you are trying to accomplish. What do you mean with that you can not change your application, how does that match with that you developed it in netbeans? R -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] JavaScript implementation enclosed with /*-{ and }-*/ error message when compile the taskengine demo project (included in App Engine Java SDK)

2011-09-22 Thread Miklos Keresztes
Hello everybody, When I try to build the taskengine demo project, included in the App Engine Java SDK, I get a lot of Native methods require a JavaScript implementation enclosed with /*-{ and }-*/ errors in DomUtils.java class. I use gwt-2.4.0 and appengine-java-sdk-1.5.4 for Linux 64-bit. The

Re: [appengine-java] JavaScript implementation enclosed with /*-{ and }-*/ error message when compile the taskengine demo project (included in App Engine Java SDK)

2011-09-22 Thread Don Schwarz
Sorry about this. It should be fixed in the next release. On Thu, Sep 22, 2011 at 3:57 AM, Miklos Keresztes miklos.keresz...@gmail.com wrote: Hello everybody, When I try to build the taskengine demo project, included in the App Engine Java SDK, I get a lot of Native methods require a

[appengine-java] Re: Blobstore and upload question

2011-09-22 Thread GeorgeS
I finally got back to the upload function and started trying to get it to work... I'm using VB.Net WebClient to try to talk to my upload server to get an upload URL and I keep getting a 'null' return. Do I need to make that call using XMLRPC or something similar? It works just fine from my

Re: [appengine-java] Re: Blobstore and upload question

2011-09-22 Thread Brandon Donnelson
I used a servlet to spit out an upload URL in plain text. If its unsecure, you could just type a get request into the url and it should render a url in a format that you could grab. It could be any content type you like. I used a plain text (unsecure) servlet to render the url in plain text (for