Re: app engine with hosted mode

2010-08-30 Thread Chris Conroy
Make sure you see a ?gwt.codesvr fragment in the URL you are using. It
sounds like you might just be hitting the embedded server--not DevMode. You
need that fragment to tell the plugin in your browser to use DevMode.

On Sun, Aug 29, 2010 at 8:42 PM, alexh alexanderhar...@gmail.com wrote:

 Hi,

 I posted a while back about having trouble running App Engine under
 hosted mode using the gwt-maven-plugin.


 http://groups.google.com/group/google-web-toolkit/browse_thread/thread/2432606db3635f3d/fbd6a8749c977b0d?lnk=gstq=app+engine+hosted#fbd6a8749c977b0d

 I've been able to find the correct configuration with the plugin to
 launch the GAE runtime but I am now finding that hot deploy of
 changes doesn't work. If I change a GWT compiled class in Eclipse, the
 change isn't available when I refresh the browser. I have to perform
 essentially a gwt:compile to have the change appear. Anyone have ideas
 on what might be the problem?

 Here's my plugin configuration in my pom.xml.

plugin
groupIdorg.codehaus.mojo/groupId
artifactIdgwt-maven-plugin/artifactId
version1.3.1.google/version
executions
execution
goals
goalcompile/goal

  goalgenerateAsync/goal
goaltest/goal
/goals
/execution
/executions
configuration
 !--
styleDETAILED/style
logLevelDEBUG/logLevel
  --
runTarget/index/runTarget

  hostedWebapp${project.build.directory}/$
 {project.build.finalName}/hostedWebapp
copyWebapptrue/copyWebapp

 servercom.google.appengine.tools.development.gwt.AppEngineLauncher/
 server
extraJvmArgs-Xmx512m
 -Dappengine.sdk.root=${gae.home} -
 javaagent:${gae.home}/lib/agent/appengine-agent.jar/extraJvmArgs
gwtVersion${gwt.version}/gwtVersion
soycfalse/soyc
/configuration
/plugin

 --
 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.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.




-- 
Chris Conroy
Software Engineer
Google, Atlanta

-- 
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: app engine with hosted mode

2010-08-30 Thread alexh
Thanks for the tip and you are correct. We are losing the ?
gwt.codesvr=127.0.0.1:9997 after going through our authentication.
Good catch.

On Aug 30, 9:42 am, Chris Conroy con...@google.com wrote:
 Make sure you see a ?gwt.codesvr fragment in the URL you are using. It
 sounds like you might just be hitting the embedded server--not DevMode. You
 need that fragment to tell the plugin in your browser to use DevMode.





 On Sun, Aug 29, 2010 at 8:42 PM, alexh alexanderhar...@gmail.com wrote:
  Hi,

  I posted a while back about having trouble running App Engine under
  hosted mode using the gwt-maven-plugin.

 http://groups.google.com/group/google-web-toolkit/browse_thread/threa...

  I've been able to find the correct configuration with the plugin to
  launch the GAE runtime but I am now finding that hot deploy of
  changes doesn't work. If I change a GWT compiled class in Eclipse, the
  change isn't available when I refresh the browser. I have to perform
  essentially a gwt:compile to have the change appear. Anyone have ideas
  on what might be the problem?

  Here's my plugin configuration in my pom.xml.

                         plugin
                                 groupIdorg.codehaus.mojo/groupId
                                 artifactIdgwt-maven-plugin/artifactId
                                 version1.3.1.google/version
                                 executions
                                         execution
                                                 goals
                                                         goalcompile/goal

   goalgenerateAsync/goal
                                                         goaltest/goal
                                                 /goals
                                         /execution
                                 /executions
                                 configuration
  !--
                                         styleDETAILED/style
                                         logLevelDEBUG/logLevel
   --
                                         runTarget/index/runTarget

   hostedWebapp${project.build.directory}/$
  {project.build.finalName}/hostedWebapp
                                         copyWebapptrue/copyWebapp

  servercom.google.appengine.tools.development.gwt.AppEngineLauncher/
  server
                                         extraJvmArgs-Xmx512m
  -Dappengine.sdk.root=${gae.home} -
  javaagent:${gae.home}/lib/agent/appengine-agent.jar/extraJvmArgs
                                 gwtVersion${gwt.version}/gwtVersion
                                 soycfalse/soyc
                                 /configuration
                         /plugin

  --
  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.comgoogle-web-toolkit%2Bunsubs 
  cr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

 --
 Chris Conroy
 Software Engineer
 Google, Atlanta

-- 
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.



app engine with hosted mode

2010-08-29 Thread alexh
Hi,

I posted a while back about having trouble running App Engine under
hosted mode using the gwt-maven-plugin.

http://groups.google.com/group/google-web-toolkit/browse_thread/thread/2432606db3635f3d/fbd6a8749c977b0d?lnk=gstq=app+engine+hosted#fbd6a8749c977b0d

I've been able to find the correct configuration with the plugin to
launch the GAE runtime but I am now finding that hot deploy of
changes doesn't work. If I change a GWT compiled class in Eclipse, the
change isn't available when I refresh the browser. I have to perform
essentially a gwt:compile to have the change appear. Anyone have ideas
on what might be the problem?

Here's my plugin configuration in my pom.xml.

plugin
groupIdorg.codehaus.mojo/groupId
artifactIdgwt-maven-plugin/artifactId
version1.3.1.google/version
executions
execution
goals
goalcompile/goal

goalgenerateAsync/goal
goaltest/goal
/goals
/execution
/executions
configuration
!--
styleDETAILED/style
logLevelDEBUG/logLevel
 --
runTarget/index/runTarget

hostedWebapp${project.build.directory}/$
{project.build.finalName}/hostedWebapp
copyWebapptrue/copyWebapp

servercom.google.appengine.tools.development.gwt.AppEngineLauncher/
server
extraJvmArgs-Xmx512m 
-Dappengine.sdk.root=${gae.home} -
javaagent:${gae.home}/lib/agent/appengine-agent.jar/extraJvmArgs
gwtVersion${gwt.version}/gwtVersion
soycfalse/soyc
/configuration
/plugin

-- 
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: app engine with hosted mode

2010-06-12 Thread Sky
I dunno, it just works with Eclipse. A GWT project created in Eclipse
with AppEngine chosen for the server automatically runs the AppEngine
server and it all works beautifully.

lol, I should stick to answering threads specifically about the GWT ui
and widgets cuz that's what I'm pretty good at :P

On Jun 11, 10:23 pm, alexh alexanderhar...@gmail.com wrote:
 No one has tried this?

 On Jun 9, 9:12 pm, alexh alexanderhar...@gmail.com wrote:



  Hi,

  I am currently developing a GWT application that will run on Google
  App Engine. I have chosen to use Maven and am running my application
  from the command line for debugging and testing. What I would like to
  be able to do is run my application in the GWT 2.0 hosted environment
  but still initialize the App Engine runtime. Can someone help me out
  with what I need to configure in order to make this happen? I'm
  currently using gwt-maven-plugin in my pom.xml. Any help with this
  would be greatly appreciated.

  Thanks,

  Alex

-- 
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: app engine with hosted mode

2010-06-11 Thread alexh
No one has tried this?

On Jun 9, 9:12 pm, alexh alexanderhar...@gmail.com wrote:
 Hi,

 I am currently developing a GWT application that will run on Google
 App Engine. I have chosen to use Maven and am running my application
 from the command line for debugging and testing. What I would like to
 be able to do is run my application in the GWT 2.0 hosted environment
 but still initialize the App Engine runtime. Can someone help me out
 with what I need to configure in order to make this happen? I'm
 currently using gwt-maven-plugin in my pom.xml. Any help with this
 would be greatly appreciated.

 Thanks,

 Alex

-- 
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.



app engine with hosted mode

2010-06-10 Thread alexh
Hi,

I am currently developing a GWT application that will run on Google
App Engine. I have chosen to use Maven and am running my application
from the command line for debugging and testing. What I would like to
be able to do is run my application in the GWT 2.0 hosted environment
but still initialize the App Engine runtime. Can someone help me out
with what I need to configure in order to make this happen? I'm
currently using gwt-maven-plugin in my pom.xml. Any help with this
would be greatly appreciated.

Thanks,

Alex

-- 
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.