I found some related tickets some time ago:
    * gwt ticket: 
http://code.google.com/p/google-web-toolkit/issues/detail?id=283
    * swt ticket: https://bugs.eclipse.org/bugs/show_bug.cgi?id=59506
    * java ticket: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6587166

On Feb 18, 9:56 pm, DAve <[email protected]> wrote:
> Thanks!
>
> Is there a bug filed with Sun or Google that I can track?
>
> El Mentecato Mayor wrote:
> > Yes, this is a known problem. Hosted mode doesn't support applets (not
> > running a real html/javascript page), so you'll have to test your
> > applet integration on web-mode only.
>
> > I do something like this:
>
> > if (GWT.isScript()) {   // running on web mode
> >             applet = new AppletPanel();
> > }
> > else {  // running on hosted mode
> >            applet = // new Dummy panel such as SimplePanel();
> > }
>
> > so that you can test evrything else in hosted mode, and only go to web
> > mode when you really need to test something on the applet or its
> > interactions with your other widgets.
>
> > On Feb 16, 8:54 am, DAve <[email protected]> wrote:
> > > I'm writing a GWT app that embeds a Java applet (for legacy reasons).
> > > Whenever I try to run it in Hosted Mode, the host browser crashes, so
> > > I have to compile it and load it in a real browser, slowing down my
> > > development process and preventing me from using the step-through
> > > debugger.
>
> > > Is this a known problem? Is there a workaround?
>
> > > Thanks,
> > > Dave
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to