Ok my question hasn't been posted, but I've found, what I think is the solution. I'm not exactly certain if I'm doing things correctly yet, but, to save some other poor soul 8 hours of their life.
If you are having problems with OutputStream or any other part of the standard JRE. let's say you are getting: write(int) is undefined for class OutputStream take a look at: https://groups.google.com/forum/?fromgroups=#!topic/Google-Web-Toolkit/kz1RH1JMw1U specifically this: https://developers.google.com/web-toolkit/doc/1.6/DevGuideOrganizingProjects and http://code.google.com/p/gwt-in-the-air/source/browse/trunk/super/net/ltgt/gwt/air/emul/Emulation.gwt.xml basically what you want to do is: in source trunk, assuming you made a java and javax tree with custom java files, cause you thought you will fill in places in GWT mkdir jre mv java jre mv javax jre cd jre cat > JRE.gwt.xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.4.0//EN" "http://google-web-toolkit.googlecode.com/svn/tags/2.4.0/distro-source/core/src/gwt-module.dtd" > <module> <super-source/> </module> cd .. go into whatever your main project is and do your usual inherit: <?xml version="1.0" encoding="UTF-8"?> <module rename-to='mailiverse'> <!-- Inherit the core Web Toolkit stuff. --> <inherits name='com.google.gwt.user.User'/> <inherits name='jre.JRE'/> Seems to work. -tim p.s. google, your new newsgroups have lots of errors. why not fix this. it's 2012 and we have errors reading newsgroups? what is the cut off date when things actually work? 2050? Why is the bar just so low for all of these technologies? oh well. take for instance this "google groups window" I am writing in 20% of the screen space write now. I can't even see my whole post. 80% of the screen is the stupid google bar + google search + google welcome to google+ google post + my groups + google web tookit title in a mysteriously huge font + by me (I know who I am) + subject, ok fine + blahblahblah I can't even see my own post, who is this stuff designed by? no one? god I am a troll, but jeeze this stuff is so poorly done. It's like no one cares. -- 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/-/k_YvhIvKIxkJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
