Don't put a symbolic link in your gwt project's output directory...

2012-02-13 Thread Stephen Buergler
Turns out if you make a symbolic link to another folder in GWT's output directory it will go into the symlink and delete everything there when you try to rebuild the project. I did this once a long time ago in an attempt to use this as an impromptu HTTP server. I still regret it. -- You

RequestFactoryServlet config and symbolMapsDirectory

2012-01-22 Thread Stephen Buergler
Shouldn't the stuff in com.google.web.bindery.requestfactory.server.RequestFactoryServlet.ensureConfig() be in init() instead so you don't have to call it for every POST? Also is there a reason it doesn't default to looking for the symbolMapsDirectory wherever gwt normally puts them by

Is there a way to include arbitrary .java files into my gwt module?

2011-11-14 Thread Stephen Buergler
I want to use java files in the libraries that I am using with my gwt module. Is there a way to include them without copying them into an emul directory and using super-source? How does gwt-user.jar get included? I am using Eclipse. -- You received this message because you are subscribed to

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

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

2011-11-11 Thread Stephen Buergler
Wouldn't it be easier to use the interfaces in org.w3c.dom.* or to generate new ones from idl files. The WebIDL spec shows how to translate things to Java, though I am having a tough time finding more information about it. -- You received this message because you are subscribed to the Google

Re: How to send mail using Google App Engine?Very Urgent, I have been waiting for your reply.

2011-09-12 Thread Stephen Buergler
You are not using the python API http://code.google.com/appengine/docs/java/mail/overview.html You are not currently on the App Engine group: https://groups.google.com/forum/#!forum/google-appengine https://groups.google.com/forum/#!forum/google-appengine-java The init() method of the Java HTTP

Re: HTML5 Offline Web-Application

2011-09-05 Thread Stephen Buergler
Passing -compileReport into the gwt compiler while using this linker results in this: http://pastebin.com/dzDafk96 If it is any help this is what I made following a video about GWT. http://pastebin.com/tjTghKVA No template file necessary. I changed the name of the outputted file so that both

Re: Access to AsyncFragmentLoader$HttpDownloadFailure

2011-08-30 Thread Stephen Buergler
Is it a good idea to post to really old threads? Anyway, I see that if there is a 404 error the exception thrown is now IncompatibleRemoteServiceException. so VladS's original concern is taken care of. I still think it would be a good idea to make HttpDownloadFailure a public class though,