GAE plug-in / deploy issue (GRails 1.1.1 / Google App Engine SDK 1.2.1)

7 messages Options
Embed this post
Permalink
Xiaofei Chen

GAE plug-in / deploy issue (GRails 1.1.1 / Google App Engine SDK 1.2.1)

Reply Threaded More More options
Print post
Permalink
hi all,

 when i use appengine plugin. when deploying

i find following error.

     [java] Bad argument: email requires an argument, for example, "email=FOO"
     [java] usage: AppCfg [options] <action> <app-dir> [<output-file>]
     [java] Action must be one of:
     [java]   help: Print help for a specific action.
     [java]   request_logs: Write request logs in Apache common log format.
     [java]   rollback: Rollback an in-progress update.
     [java]   update: Create or update an app version.
     [java]   update_indexes: Update application indexes.
     [java]   version: Prints version information.
     [java]   update_cron: Update application cron jobs.
     [java] Use 'help <action>' for a detailed description.
     [java] options:
     [java]   -h, --help            Show the help message and exit.
     [java]   -s SERVER, --server=SERVER
     [java]                         The server to connect to.
     [java]   -e EMAIL, --email=EMAIL
     [java]                         The username to use. Will prompt if omitted.

     [java]   -H HOST, --host=HOST  Overrides the Host header sent with all RPCs
.
     [java]   -p PROXYHOST[:PORT], --proxy=PROXYHOST[:PORT]
     [java]                         Proxies requests through the given proxy ser
ver.
     [java]                         If --proxy_https is also set, only HTTP will
 be
     [java]                         proxied here, otherwise both HTTP and HTTPS
will.
     [java]   --proxy_https=PROXYHOST[:PORT]
     [java]                         Proxies HTTPS requests through the given pro
xy server.
     [java]   --sdk_root=root       Overrides where the SDK is located.
     [java]   --passin              Always read the login password from stdin.
     [java]   --enable_jar_splitting
     [java]                         Split large jar files (> 10M) into smaller f
ragments.
     [java]   --retain_upload_dir
     [java]                         Do not delete temporary directory used in up
loading.
     [java]   --compile_encoding
     [java]                         The character encoding to use when compiling
 JSPs.
     [java]   -n NUM_DAYS, --num_days=NUM_DAYS
     [java]                         Number of days worth of log data to get. The
 cut-off
     [java]                         point is midnight UTC. Use 0 to get all avai
lable
     [java]                         logs. Default is 1.
     [java]   --severity=SEVERITY   Severity of app-level log messages to get. T
he range
     [java]                         is 0 (DEBUG) through 4 (CRITICAL). If omitte
d, only
     [java]                         request logs are returned.
     [java] Java Result: 1


which one should i use?  appcfg    or  grails app-engine deploy?


thx.


leo

Alexander Orlov-4

Re: GAE plug-in / deploy issue (GRails 1.1.1 / Google App Engine SDK 1.2.1)

Reply Threaded More More options
Print post
Permalink
I had the same issue, use GAE SDK 1.2.0 instead of 1.2.1!

http://googleappengine.googlecode.com/files/appengine-java-sdk-1.2.0.zip

HTH
Alex

On Tue, Jun 2, 2009 at 6:23 PM, Xiaofei Chen <[hidden email]> wrote:
hi all,

 when i use appengine plugin. when deploying

i find following error.

     [java] Bad argument: email requires an argument, for example, "email=FOO"
     [java] usage: AppCfg [options] <action> <app-dir> [<output-file>]
     [java] Action must be one of:
     [java]   help: Print help for a specific action.
     [java]   request_logs: Write request logs in Apache common log format.
     [java]   rollback: Rollback an in-progress update.
     [java]   update: Create or update an app version.
     [java]   update_indexes: Update application indexes.
     [java]   version: Prints version information.
     [java]   update_cron: Update application cron jobs.
     [java] Use 'help <action>' for a detailed description.
     [java] options:
     [java]   -h, --help            Show the help message and exit.
     [java]   -s SERVER, --server=SERVER
     [java]                         The server to connect to.
     [java]   -e EMAIL, --email=EMAIL
     [java]                         The username to use. Will prompt if omitted.

     [java]   -H HOST, --host=HOST  Overrides the Host header sent with all RPCs
.
     [java]   -p PROXYHOST[:PORT], --proxy=PROXYHOST[:PORT]
     [java]                         Proxies requests through the given proxy ser
ver.
     [java]                         If --proxy_https is also set, only HTTP will
 be
     [java]                         proxied here, otherwise both HTTP and HTTPS
will.
     [java]   --proxy_https=PROXYHOST[:PORT]
     [java]                         Proxies HTTPS requests through the given pro
xy server.
     [java]   --sdk_root=root       Overrides where the SDK is located.
     [java]   --passin              Always read the login password from stdin.
     [java]   --enable_jar_splitting
     [java]                         Split large jar files (> 10M) into smaller f
ragments.
     [java]   --retain_upload_dir
     [java]                         Do not delete temporary directory used in up
loading.
     [java]   --compile_encoding
     [java]                         The character encoding to use when compiling
 JSPs.
     [java]   -n NUM_DAYS, --num_days=NUM_DAYS
     [java]                         Number of days worth of log data to get. The
 cut-off
     [java]                         point is midnight UTC. Use 0 to get all avai
lable
     [java]                         logs. Default is 1.
     [java]   --severity=SEVERITY   Severity of app-level log messages to get. T
he range
     [java]                         is 0 (DEBUG) through 4 (CRITICAL). If omitte
d, only
     [java]                         request logs are returned.
     [java] Java Result: 1


which one should i use?  appcfg    or  grails app-engine deploy?




--
www.loxal.org | www.loxal.net | blog.loxal.net
Mobile: +49 1577 3856583
Hofmannstr. 29 * 91052 Erlangen * Germany
tomas lin

Re: GAE plug-in / deploy issue (GRails 1.1.1 / Google App Engine SDK 1.2.1)

Reply Threaded More More options
Print post
Permalink
In reply to this post by Xiaofei Chen
It's a bug with the input via ant, where it ignores the first line you
entered and reads the second line. Introduced with the improved
authentication of .81

Try setting these values on config.groovy
[hidden email]
google.appengine.password=yourpassword

should work

On Tue, Jun 2, 2009 at 5:23 PM, Xiaofei Chen <[hidden email]> wrote:

> hi all,
>
>  when i use appengine plugin. when deploying
>
> i find following error.
>
>      [java] Bad argument: email requires an argument, for example,
> "email=FOO"
>      [java] usage: AppCfg [options] <action> <app-dir> [<output-file>]
>      [java] Action must be one of:
>      [java]   help: Print help for a specific action.
>      [java]   request_logs: Write request logs in Apache common log format.
>      [java]   rollback: Rollback an in-progress update.
>      [java]   update: Create or update an app version.
>      [java]   update_indexes: Update application indexes.
>      [java]   version: Prints version information.
>      [java]   update_cron: Update application cron jobs.
>      [java] Use 'help <action>' for a detailed description.
>      [java] options:
>      [java]   -h, --help            Show the help message and exit.
>      [java]   -s SERVER, --server=SERVER
>      [java]                         The server to connect to.
>      [java]   -e EMAIL, --email=EMAIL
>      [java]                         The username to use. Will prompt if
> omitted.
>
>      [java]   -H HOST, --host=HOST  Overrides the Host header sent with all
> RPCs
> .
>      [java]   -p PROXYHOST[:PORT], --proxy=PROXYHOST[:PORT]
>      [java]                         Proxies requests through the given proxy
> ser
> ver.
>      [java]                         If --proxy_https is also set, only HTTP
> will
>  be
>      [java]                         proxied here, otherwise both HTTP and
> HTTPS
> will.
>      [java]   --proxy_https=PROXYHOST[:PORT]
>      [java]                         Proxies HTTPS requests through the given
> pro
> xy server.
>      [java]   --sdk_root=root       Overrides where the SDK is located.
>      [java]   --passin              Always read the login password from
> stdin.
>      [java]   --enable_jar_splitting
>      [java]                         Split large jar files (> 10M) into
> smaller f
> ragments.
>      [java]   --retain_upload_dir
>      [java]                         Do not delete temporary directory used
> in up
> loading.
>      [java]   --compile_encoding
>      [java]                         The character encoding to use when
> compiling
>  JSPs.
>      [java]   -n NUM_DAYS, --num_days=NUM_DAYS
>      [java]                         Number of days worth of log data to get.
> The
>  cut-off
>      [java]                         point is midnight UTC. Use 0 to get all
> avai
> lable
>      [java]                         logs. Default is 1.
>      [java]   --severity=SEVERITY   Severity of app-level log messages to
> get. T
> he range
>      [java]                         is 0 (DEBUG) through 4 (CRITICAL). If
> omitte
> d, only
>      [java]                         request logs are returned.
>      [java] Java Result: 1
>
>
> which one should i use?  appcfg    or  grails app-engine deploy?
>
>
> thx.
>
>
> leo
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Alexander Orlov-4

Re: GAE plug-in / deploy issue (GRails 1.1.1 / Google App Engine SDK 1.2.1)

Reply Threaded More More options
Print post
Permalink
In reply to this post by Xiaofei Chen
P.S.: Alternatively hit enter after the first prompt for your mail address and enter your mail address after the second prompt for your mail address.


On Tue, Jun 2, 2009 at 6:23 PM, Xiaofei Chen <[hidden email]> wrote:
hi all,

 when i use appengine plugin. when deploying

i find following error.

     [java] Bad argument: email requires an argument, for example, "email=FOO"
     [java] usage: AppCfg [options] <action> <app-dir> [<output-file>]
     [java] Action must be one of:
     [java]   help: Print help for a specific action.
     [java]   request_logs: Write request logs in Apache common log format.
     [java]   rollback: Rollback an in-progress update.
     [java]   update: Create or update an app version.
     [java]   update_indexes: Update application indexes.
     [java]   version: Prints version information.
     [java]   update_cron: Update application cron jobs.
     [java] Use 'help <action>' for a detailed description.
     [java] options:
     [java]   -h, --help            Show the help message and exit.
     [java]   -s SERVER, --server=SERVER
     [java]                         The server to connect to.
     [java]   -e EMAIL, --email=EMAIL
     [java]                         The username to use. Will prompt if omitted.

     [java]   -H HOST, --host=HOST  Overrides the Host header sent with all RPCs
.
     [java]   -p PROXYHOST[:PORT], --proxy=PROXYHOST[:PORT]
     [java]                         Proxies requests through the given proxy ser
ver.
     [java]                         If --proxy_https is also set, only HTTP will
 be
     [java]                         proxied here, otherwise both HTTP and HTTPS
will.
     [java]   --proxy_https=PROXYHOST[:PORT]
     [java]                         Proxies HTTPS requests through the given pro
xy server.
     [java]   --sdk_root=root       Overrides where the SDK is located.
     [java]   --passin              Always read the login password from stdin.
     [java]   --enable_jar_splitting
     [java]                         Split large jar files (> 10M) into smaller f
ragments.
     [java]   --retain_upload_dir
     [java]                         Do not delete temporary directory used in up
loading.
     [java]   --compile_encoding
     [java]                         The character encoding to use when compiling
 JSPs.
     [java]   -n NUM_DAYS, --num_days=NUM_DAYS
     [java]                         Number of days worth of log data to get. The
 cut-off
     [java]                         point is midnight UTC. Use 0 to get all avai
lable
     [java]                         logs. Default is 1.
     [java]   --severity=SEVERITY   Severity of app-level log messages to get. T
he range
     [java]                         is 0 (DEBUG) through 4 (CRITICAL). If omitte
d, only
     [java]                         request logs are returned.
     [java] Java Result: 1


which one should i use?  appcfg    or  grails app-engine deploy?


thx.


leo




--
www.loxal.org | www.loxal.net | blog.loxal.net
Mobile: +49 1577 3856583
Hofmannstr. 29 * 91052 Erlangen * Germany
Xiaofei Chen

Re: GAE plug-in / deploy issue (GRails 1.1.1 / Google App Engine SDK 1.2.1)

Reply Threaded More More options
Print post
Permalink
In reply to this post by tomas lin
Hi Tomas,
 
  thx a lot for your great help.  it works as you tell.  but when uploading .there is another problem.
 

     [java] java.io.IOException: Error posting to URL: http://appengine.google.c
om/api/appversion/addfile?path=WEB-INF%2Fclasses%2FUserController%24_closure2.cl
ass&app_id=leochan007&version=1&
     [java] 400 Bad Request
     [java] Max number of files and blobs is 1000.
     [java] Unable to upload app: Error posting to URL: http://appengine.google.
com/api/appversion/addfile?path=WEB-INF%2Fclasses%2FUserController%24_closure2.c
lass&app_id=leochan007&version=1&
     [java] 400 Bad Request
     [java] Max number of files and blobs is 1000.
     [java] Please see the logs [C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\appcfg52969.
log] for further information.
 
 
is there a limit of file numbers??   
 
 
Rgds,
Leo.
 
 
 

 
On Wed, Jun 3, 2009 at 1:46 AM, Tomas Lin <[hidden email]> wrote:
It's a bug with the input via ant, where it ignores the first line you
entered and reads the second line. Introduced with the improved
authentication of .81

Try setting these values on config.groovy
google.appengine.email=[hidden email]
google.appengine.password=yourpassword

should work

On Tue, Jun 2, 2009 at 5:23 PM, Xiaofei Chen <[hidden email]> wrote:
> hi all,
>
>  when i use appengine plugin. when deploying
>
> i find following error.
>
>      [java] Bad argument: email requires an argument, for example,
> "email=FOO"
>      [java] usage: AppCfg [options] <action> <app-dir> [<output-file>]
>      [java] Action must be one of:
>      [java]   help: Print help for a specific action.
>      [java]   request_logs: Write request logs in Apache common log format.
>      [java]   rollback: Rollback an in-progress update.
>      [java]   update: Create or update an app version.
>      [java]   update_indexes: Update application indexes.
>      [java]   version: Prints version information.
>      [java]   update_cron: Update application cron jobs.
>      [java] Use 'help <action>' for a detailed description.
>      [java] options:
>      [java]   -h, --help            Show the help message and exit.
>      [java]   -s SERVER, --server=SERVER
>      [java]                         The server to connect to.
>      [java]   -e EMAIL, --email=EMAIL
>      [java]                         The username to use. Will prompt if
> omitted.
>
>      [java]   -H HOST, --host=HOST  Overrides the Host header sent with all
> RPCs
> .
>      [java]   -p PROXYHOST[:PORT], --proxy=PROXYHOST[:PORT]
>      [java]                         Proxies requests through the given proxy
> ser
> ver.
>      [java]                         If --proxy_https is also set, only HTTP
> will
>  be
>      [java]                         proxied here, otherwise both HTTP and
> HTTPS
> will.
>      [java]   --proxy_https=PROXYHOST[:PORT]
>      [java]                         Proxies HTTPS requests through the given
> pro
> xy server.
>      [java]   --sdk_root=root       Overrides where the SDK is located.
>      [java]   --passin              Always read the login password from
> stdin.
>      [java]   --enable_jar_splitting
>      [java]                         Split large jar files (> 10M) into
> smaller f
> ragments.
>      [java]   --retain_upload_dir
>      [java]                         Do not delete temporary directory used
> in up
> loading.
>      [java]   --compile_encoding
>      [java]                         The character encoding to use when
> compiling
>  JSPs.
>      [java]   -n NUM_DAYS, --num_days=NUM_DAYS
>      [java]                         Number of days worth of log data to get.
> The
>  cut-off
>      [java]                         point is midnight UTC. Use 0 to get all
> avai
> lable
>      [java]                         logs. Default is 1.
>      [java]   --severity=SEVERITY   Severity of app-level log messages to
> get. T
> he range
>      [java]                         is 0 (DEBUG) through 4 (CRITICAL). If
> omitte
> d, only
>      [java]                         request logs are returned.
>      [java] Java Result: 1
>

>
> which one should i use?  appcfg    or  grails app-engine deploy?
>
>
> thx.
>
>
> leo
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email



tomas lin

Re: GAE plug-in / deploy issue (GRails 1.1.1 / Google App Engine SDK 1.2.1)

Reply Threaded More More options
Print post
Permalink
Yes, 1000 - which you seem to run into

On Wed, Jun 3, 2009 at 7:10 AM, Xiaofei Chen <[hidden email]> wrote:

> Hi Tomas,
>
>   thx a lot for your great help.  it works as you tell.  but when uploading
> .there is another problem.
>
>      [java] java.io.IOException: Error posting to URL:
> http://appengine.google.c
> om/api/appversion/addfile?path=WEB-INF%2Fclasses%2FUserController%24_closure2.cl
> ass&app_id=leochan007&version=1&
>      [java] 400 Bad Request
>      [java] Max number of files and blobs is 1000.
>      [java] Unable to upload app: Error posting to URL:
> http://appengine.google.
> com/api/appversion/addfile?path=WEB-INF%2Fclasses%2FUserController%24_closure2.c
> lass&app_id=leochan007&version=1&
>      [java] 400 Bad Request
>      [java] Max number of files and blobs is 1000.
>      [java] Please see the logs
> [C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\appcfg52969.
> log] for further information.
>
>
> is there a limit of file numbers??
>
>
> Rgds,
> Leo.
>
>
>
>
> On Wed, Jun 3, 2009 at 1:46 AM, Tomas Lin <[hidden email]> wrote:
>>
>> It's a bug with the input via ant, where it ignores the first line you
>> entered and reads the second line. Introduced with the improved
>> authentication of .81
>>
>> Try setting these values on config.groovy
>> [hidden email]
>> google.appengine.password=yourpassword
>>
>> should work
>>
>> On Tue, Jun 2, 2009 at 5:23 PM, Xiaofei Chen <[hidden email]>
>> wrote:
>> > hi all,
>> >
>> >  when i use appengine plugin. when deploying
>> >
>> > i find following error.
>> >
>> >      [java] Bad argument: email requires an argument, for example,
>> > "email=FOO"
>> >      [java] usage: AppCfg [options] <action> <app-dir> [<output-file>]
>> >      [java] Action must be one of:
>> >      [java]   help: Print help for a specific action.
>> >      [java]   request_logs: Write request logs in Apache common log
>> > format.
>> >      [java]   rollback: Rollback an in-progress update.
>> >      [java]   update: Create or update an app version.
>> >      [java]   update_indexes: Update application indexes.
>> >      [java]   version: Prints version information.
>> >      [java]   update_cron: Update application cron jobs.
>> >      [java] Use 'help <action>' for a detailed description.
>> >      [java] options:
>> >      [java]   -h, --help            Show the help message and exit.
>> >      [java]   -s SERVER, --server=SERVER
>> >      [java]                         The server to connect to.
>> >      [java]   -e EMAIL, --email=EMAIL
>> >      [java]                         The username to use. Will prompt if
>> > omitted.
>> >
>> >      [java]   -H HOST, --host=HOST  Overrides the Host header sent with
>> > all
>> > RPCs
>> > .
>> >      [java]   -p PROXYHOST[:PORT], --proxy=PROXYHOST[:PORT]
>> >      [java]                         Proxies requests through the given
>> > proxy
>> > ser
>> > ver.
>> >      [java]                         If --proxy_https is also set, only
>> > HTTP
>> > will
>> >  be
>> >      [java]                         proxied here, otherwise both HTTP
>> > and
>> > HTTPS
>> > will.
>> >      [java]   --proxy_https=PROXYHOST[:PORT]
>> >      [java]                         Proxies HTTPS requests through the
>> > given
>> > pro
>> > xy server.
>> >      [java]   --sdk_root=root       Overrides where the SDK is located.
>> >      [java]   --passin              Always read the login password from
>> > stdin.
>> >      [java]   --enable_jar_splitting
>> >      [java]                         Split large jar files (> 10M) into
>> > smaller f
>> > ragments.
>> >      [java]   --retain_upload_dir
>> >      [java]                         Do not delete temporary directory
>> > used
>> > in up
>> > loading.
>> >      [java]   --compile_encoding
>> >      [java]                         The character encoding to use when
>> > compiling
>> >  JSPs.
>> >      [java]   -n NUM_DAYS, --num_days=NUM_DAYS
>> >      [java]                         Number of days worth of log data to
>> > get.
>> > The
>> >  cut-off
>> >      [java]                         point is midnight UTC. Use 0 to get
>> > all
>> > avai
>> > lable
>> >      [java]                         logs. Default is 1.
>> >      [java]   --severity=SEVERITY   Severity of app-level log messages
>> > to
>> > get. T
>> > he range
>> >      [java]                         is 0 (DEBUG) through 4 (CRITICAL).
>> > If
>> > omitte
>> > d, only
>> >      [java]                         request logs are returned.
>> >      [java] Java Result: 1
>> >
>> >
>> > which one should i use?  appcfg    or  grails app-engine deploy?
>> >
>> >
>> > thx.
>> >
>> >
>> > leo
>> >
>> >
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>    http://xircles.codehaus.org/manage_email
>>
>>
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Xiaofei Chen

Re: GAE plug-in / deploy issue (GRails 1.1.1 / Google App Engine SDK 1.2.1)

Reply Threaded More More options
Print post
Permalink
 
hi  Tomas,
   
   i confirm the file num limit online. so i change to another compute cloud.    www.mor.ph.  u know? it is pretty good.
 
it has no file num limit and support MySql. :)   and i successfully deploy my app on it.
 
Rgds,
 
Leo

On Wed, Jun 3, 2009 at 4:45 PM, Tomas Lin <[hidden email]> wrote:
Yes, 1000 - which you seem to run into

On Wed, Jun 3, 2009 at 7:10 AM, Xiaofei Chen <[hidden email]> wrote:
> Hi Tomas,
>
>   thx a lot for your great help.  it works as you tell.  but when uploading
> .there is another problem.
>
>      [java] java.io.IOException: Error posting to URL:
> http://appengine.google.c
> om/api/appversion/addfile?path=WEB-INF%2Fclasses%2FUserController%24_closure2.cl
> ass&app_id=leochan007&version=1&
>      [java] 400 Bad Request
>      [java] Max number of files and blobs is 1000.
>      [java] Unable to upload app: Error posting to URL:
> http://appengine.google.
> com/api/appversion/addfile?path=WEB-INF%2Fclasses%2FUserController%24_closure2.c
> lass&app_id=leochan007&version=1&
>      [java] 400 Bad Request
>      [java] Max number of files and blobs is 1000.
>      [java] Please see the logs
> [C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\appcfg52969.
> log] for further information.
>
>
> is there a limit of file numbers??
>
>
> Rgds,
> Leo.
>
>
>
>
> On Wed, Jun 3, 2009 at 1:46 AM, Tomas Lin <[hidden email]> wrote:
>>
>> It's a bug with the input via ant, where it ignores the first line you
>> entered and reads the second line. Introduced with the improved
>> authentication of .81
>>
>> Try setting these values on config.groovy
>> google.appengine.email=[hidden email]
>> google.appengine.password=yourpassword
>>
>> should work
>>
>> On Tue, Jun 2, 2009 at 5:23 PM, Xiaofei Chen <[hidden email]>
>> wrote:
>> > hi all,
>> >
>> >  when i use appengine plugin. when deploying
>> >
>> > i find following error.
>> >
>> >      [java] Bad argument: email requires an argument, for example,
>> > "email=FOO"
>> >      [java] usage: AppCfg [options] <action> <app-dir> [<output-file>]
>> >      [java] Action must be one of:
>> >      [java]   help: Print help for a specific action.
>> >      [java]   request_logs: Write request logs in Apache common log
>> > format.
>> >      [java]   rollback: Rollback an in-progress update.
>> >      [java]   update: Create or update an app version.
>> >      [java]   update_indexes: Update application indexes.
>> >      [java]   version: Prints version information.
>> >      [java]   update_cron: Update application cron jobs.
>> >      [java] Use 'help <action>' for a detailed description.
>> >      [java] options:
>> >      [java]   -h, --help            Show the help message and exit.
>> >      [java]   -s SERVER, --server=SERVER
>> >      [java]                         The server to connect to.
>> >      [java]   -e EMAIL, --email=EMAIL
>> >      [java]                         The username to use. Will prompt if
>> > omitted.
>> >
>> >      [java]   -H HOST, --host=HOST  Overrides the Host header sent with
>> > all
>> > RPCs
>> > .
>> >      [java]   -p PROXYHOST[:PORT], --proxy=PROXYHOST[:PORT]
>> >      [java]                         Proxies requests through the given
>> > proxy
>> > ser
>> > ver.
>> >      [java]                         If --proxy_https is also set, only
>> > HTTP
>> > will
>> >  be
>> >      [java]                         proxied here, otherwise both HTTP
>> > and
>> > HTTPS
>> > will.
>> >      [java]   --proxy_https=PROXYHOST[:PORT]
>> >      [java]                         Proxies HTTPS requests through the
>> > given
>> > pro
>> > xy server.
>> >      [java]   --sdk_root=root       Overrides where the SDK is located.
>> >      [java]   --passin              Always read the login password from
>> > stdin.
>> >      [java]   --enable_jar_splitting
>> >      [java]                         Split large jar files (> 10M) into
>> > smaller f
>> > ragments.
>> >      [java]   --retain_upload_dir
>> >      [java]                         Do not delete temporary directory
>> > used
>> > in up
>> > loading.
>> >      [java]   --compile_encoding
>> >      [java]                         The character encoding to use when
>> > compiling
>> >  JSPs.
>> >      [java]   -n NUM_DAYS, --num_days=NUM_DAYS
>> >      [java]                         Number of days worth of log data to
>> > get.
>> > The
>> >  cut-off
>> >      [java]                         point is midnight UTC. Use 0 to get
>> > all
>> > avai
>> > lable
>> >      [java]                         logs. Default is 1.
>> >      [java]   --severity=SEVERITY   Severity of app-level log messages
>> > to
>> > get. T
>> > he range
>> >      [java]                         is 0 (DEBUG) through 4 (CRITICAL).
>> > If
>> > omitte
>> > d, only
>> >      [java]                         request logs are returned.
>> >      [java] Java Result: 1
>> >
>> >
>> > which one should i use?  appcfg    or  grails app-engine deploy?
>> >
>> >
>> > thx.
>> >
>> >
>> > leo
>> >
>> >
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>    http://xircles.codehaus.org/manage_email
>>
>>
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email