Re: GWTShell dev mode problem

2009-12-22 Thread Rajeev Dayal
Hi Shawn,

I'm not sure how those Android natures/builders were added to your project.
Maybe you inadvertently triggered a wizard that creates a GAE + Android
project, or some other wizard that converts your project to an Android
project? At any rate, to remove the "Androidness" from your project, remove
the following entries from the file:

 

 org.eclipse.ui.externaltools.ExternalToolBuilder
   full,incremental,
   
   
   LaunchConfigHandle

 
/.externalToolBuilders/com.android.ide.eclipse.adt.ResourceManagerBuilder.launch
   
   
   
   

 org.eclipse.ui.externaltools.ExternalToolBuilder
   full,incremental,
   
   
   LaunchConfigHandle

 
/.externalToolBuilders/com.android.ide.eclipse.adt.PreCompilerBuilder.launch
   
   
   


   

 org.eclipse.ui.externaltools.ExternalToolBuilder
   full,incremental,
   
   
   LaunchConfigHandle

 
/.externalToolBuilders/com.android.ide.eclipse.adt.ApkBuilder.launch
   
   
   


 com.android.ide.eclipse.adt.AndroidNature


On Mon, Dec 21, 2009 at 5:38 PM, Shawn Brown wrote:

> Hi Miguel,
>
> > Is the war directory at the root of your project?
> yes
>
> >If you look at your .project file does it have the web app nature?
>
> Can you post what a .project file should look like?  Originally mine
> was of web app nature but (please understand I never set it to be like
> this -- others have the same problem) the Android plugin decided it
> owns the world and tried to make my GWT-appengine project into an
> Android one.
>
> You can see how messed up this is...
>
> If you don't have time, that's fine.  I can launch devmode as an
> external program.  It'd be nice though to have it cleaned up so I
> don't end up somehow getting confusing errors that nobody can track
> down.
>
> 
>FluencyBuilderGAE
>
>
>
>
>
>
>  org.eclipse.ui.externaltools.ExternalToolBuilder
>full,incremental,
>
>
>LaunchConfigHandle
>
>  
> /.externalToolBuilders/com.android.ide.eclipse.adt.ResourceManagerBuilder.launch
>
>
>
>
>
>  org.eclipse.ui.externaltools.ExternalToolBuilder
>full,incremental,
>
>
>LaunchConfigHandle
>
>  
> /.externalToolBuilders/com.android.ide.eclipse.adt.PreCompilerBuilder.launch
>
>
>
>
>
>  com.google.appengine.eclipse.core.enhancerbuilder
>
>
>
>
>
>  com.google.gdt.eclipse.core.webAppProjectValidator
>
>
>
>
>
>  com.google.appengine.eclipse.core.projectValidator
>
>
>
>
>
>  com.google.gwt.eclipse.core.gwtProjectValidator
>
>
>
>
>org.eclipse.jdt.core.javabuilder
>
>
>
>
>
>  org.eclipse.ui.externaltools.ExternalToolBuilder
>full,incremental,
>
>
>LaunchConfigHandle
>
>  
> /.externalToolBuilders/com.android.ide.eclipse.adt.ApkBuilder.launch
>
>
>
>
>
>com.android.ide.eclipse.adt.AndroidNature
>org.eclipse.jdt.core.javanature
>com.google.appengine.eclipse.core.gaeNature
>com.google.gwt.eclipse.core.gwtNature
>com.google.gdt.eclipse.core.webAppNature
>
> 
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to google-web-tool...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>
>

--

You

Re: GWTShell dev mode problem

2009-12-21 Thread Henry
Hi Miguel,

What I did was to prepend a src directory in my project
and create my own implementation of GWTShell

public class GWTShell extends DevMode {
}

Then enter the arguments from the Debug Configurations as you
would for a Java application
At the very least this won't give you a popup and put all your
log messages in the plugin window.

Cheers,
Henry

On Dec 21, 2:38 pm, Shawn Brown  wrote:
> Hi Miguel,
>
> > Is the war directory at the root of your project?
>
> yes
>
> >If you look at your .project file does it have the web app nature?
>
> Can you post what a .project file should look like?  Originally mine
> was of web app nature but (please understand I never set it to be like
> this -- others have the same problem) the Android plugin decided it
> owns the world and tried to make my GWT-appengine project into an
> Android one.
>
> You can see how messed up this is...
>
> If you don't have time, that's fine.  I can launch devmode as an
> external program.  It'd be nice though to have it cleaned up so I
> don't end up somehow getting confusing errors that nobody can track
> down.
>
> 
>         FluencyBuilderGAE
>         
>         
>         
>         
>                 
>                         
> org.eclipse.ui.externaltools.ExternalToolBuilder
>                         full,incremental,
>                         
>                                 
>                                         LaunchConfigHandle
>                                         
> /.externalToolBuilders/com.android.ide.eclipse.adt.ResourceManagerBuilder.launch
>                                 
>                         
>                 
>                 
>                         
> org.eclipse.ui.externaltools.ExternalToolBuilder
>                         full,incremental,
>                         
>                                 
>                                         LaunchConfigHandle
>                                         
> /.externalToolBuilders/com.android.ide.eclipse.adt.PreCompilerBuilder.launch
>                                 
>                         
>                 
>                 
>                         
> com.google.appengine.eclipse.core.enhancerbuilder
>                         
>                         
>                 
>                 
>                         
> com.google.gdt.eclipse.core.webAppProjectValidator
>                         
>                         
>                 
>                 
>                         
> com.google.appengine.eclipse.core.projectValidator
>                         
>                         
>                 
>                 
>                         
> com.google.gwt.eclipse.core.gwtProjectValidator
>                         
>                         
>                 
>                 
>                         org.eclipse.jdt.core.javabuilder
>                         
>                         
>                 
>                 
>                         
> org.eclipse.ui.externaltools.ExternalToolBuilder
>                         full,incremental,
>                         
>                                 
>                                         LaunchConfigHandle
>                                         
> /.externalToolBuilders/com.android.ide.eclipse.adt.ApkBuilder.launch
>                                 
>                         
>                 
>         
>         
>                 com.android.ide.eclipse.adt.AndroidNature
>                 org.eclipse.jdt.core.javanature
>                 com.google.appengine.eclipse.core.gaeNature
>                 com.google.gwt.eclipse.core.gwtNature
>                 com.google.gdt.eclipse.core.webAppNature
>         
> 

--

You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: GWTShell dev mode problem

2009-12-21 Thread Shawn Brown
Hi Miguel,

> Is the war directory at the root of your project?
yes

>If you look at your .project file does it have the web app nature?

Can you post what a .project file should look like?  Originally mine
was of web app nature but (please understand I never set it to be like
this -- others have the same problem) the Android plugin decided it
owns the world and tried to make my GWT-appengine project into an
Android one.

You can see how messed up this is...

If you don't have time, that's fine.  I can launch devmode as an
external program.  It'd be nice though to have it cleaned up so I
don't end up somehow getting confusing errors that nobody can track
down.


FluencyBuilderGAE






org.eclipse.ui.externaltools.ExternalToolBuilder
full,incremental,


LaunchConfigHandle

/.externalToolBuilders/com.android.ide.eclipse.adt.ResourceManagerBuilder.launch





org.eclipse.ui.externaltools.ExternalToolBuilder
full,incremental,


LaunchConfigHandle

/.externalToolBuilders/com.android.ide.eclipse.adt.PreCompilerBuilder.launch





com.google.appengine.eclipse.core.enhancerbuilder





com.google.gdt.eclipse.core.webAppProjectValidator





com.google.appengine.eclipse.core.projectValidator





com.google.gwt.eclipse.core.gwtProjectValidator




org.eclipse.jdt.core.javabuilder





org.eclipse.ui.externaltools.ExternalToolBuilder
full,incremental,


LaunchConfigHandle

/.externalToolBuilders/com.android.ide.eclipse.adt.ApkBuilder.launch





com.android.ide.eclipse.adt.AndroidNature
org.eclipse.jdt.core.javanature
com.google.appengine.eclipse.core.gaeNature
com.google.gwt.eclipse.core.gwtNature
com.google.gdt.eclipse.core.webAppNature



--

You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: GWTShell dev mode problem

2009-12-21 Thread Miguel Méndez
Is the war directory at the root of your project?  If you look at your
.project file does it have the web app nature?

On Sat, Dec 19, 2009 at 7:04 AM, Andrey  wrote:

> Hello!
>
> I have war/WEB-INF/web.xml in my project but GWT-plugin still launches
> GWTShell instead of DevMode.
> What should I do?
>
> Thanks!
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to google-web-tool...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>
>


-- 
Miguel

--

You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: GWTShell dev mode problem

2009-12-19 Thread Shawn Brown
> I have war/WEB-INF/web.xml in my project but GWT-plugin still launches
> GWTShell instead of DevMode.
> What should I do?

Hi,

There may be more than one answer and your issue may be different than
mine especially since I am using appengine but...

DevMode wouldn't launch for me either so...


I run it as an application to get the developer mode window:

main class:
com.google.gwt.dev.DevMode

program args:  (to the class that implements EntryPoint)
-server com.google.appengine.tools.development.gwt.AppEngineLauncher
com.your.appname

vmargs:
-javaagent:/your-path/eclipse/plugins/com.google.appengine.eclipse.sdkbundle_1.2.8.v200912041521/appengine-java-sdk-1.2.8/lib/agent/appengine-agent.jar
-Xmx256M

then set up your class path by adding the necessary jars.

[note: eventually I notice devmode does run but not the window]

--

You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




GWTShell dev mode problem

2009-12-19 Thread Andrey
Hello!

I have war/WEB-INF/web.xml in my project but GWT-plugin still launches
GWTShell instead of DevMode.
What should I do?

Thanks!

--

You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.