[google-appengine] Re: Application running locally fine after deploy not wroking

2013-04-24 Thread Shilendra Sharma
Hi Vinny,

Thanks you.

I fixed this issue may be its have root directory issue

Thanks 
Shilendra

On Wednesday, 24 April 2013 01:42:52 UTC+5:30, Vinny P wrote:

 Try adding a leading forward slash to the JSP file name. So you have this 
 now: *jsp-fileMasterPage.jsp/jsp-file*  but change it to this: *
 jsp-file/MasterPage.jsp/jsp-file*  (assuming that MasterPage.jsp is 
 in your root directory, change as needed if it's not).


 -
 -Vinny P
 Technology  Media Advisor
 Chicago, IL

 My Go side project: http://invalidmail.com/



 On Tuesday, April 23, 2013 12:24:18 PM UTC-5, Shilendra Sharma wrote:

 Hi everyone

 my application id :- omshrisay.appspot.com
 url: www.shrisay.org

 I am using jsp and servlet

 call for jsp 

  servlet  
  servlet-nameHome/servlet-name  
  jsp-fileMasterPage.jsp/jsp-file  
  /servlet  
  servlet-mapping  
   servlet-nameHome/servlet-name  
   url-pattern/home/url-pattern  
   /servlet-mapping 

 and in jsp page

  a href=homeHome/a in menus
  but its working fine locally .. but not working after deployed the 
 application 
 So please give me the solution why its not working after deployed

 Shilendra



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Re: Unable to use Google App Engine Remote API behind proxy

2013-04-24 Thread srikanth ande
Hi, 

I am getting the below error message when i am trying to get data from 
google datastore and i am behind corporate proxy. 

Error message :

Apr 24, 2013 6:58:03 PM 
com.google.appengine.repackaged.org.apache.commons.httpclient.HttpMethodDirector
 
executeWithRetry
INFO: I/O exception (java.net.ConnectException) caught when processing 
request: Connection timed out: connect
Apr 24, 2013 6:58:03 PM 
com.google.appengine.repackaged.org.apache.commons.httpclient.HttpMethodDirector
 
executeWithRetry
INFO: Retrying request


Please help me out from this issue, I want this issue be resolved. 


Thanks,
Srikanth

On Wednesday, 24 April 2013 00:59:35 UTC+5:30, srikanth ande wrote:

 Hi,

 I am trying to access the Google DataStore using remote API behind proxy. 
 But i am not able to work on that. It is giving an exception Connection 
 Refused. The same code is running fine when i am out of proxy. Could any 
 one please let me know how to use remote API behind proxy? I am very much 
 annoyed with this issue as it stopped all my work and i developed my entire 
 code, but now it is not working behind proxy. I developed my code in Java. 
 Please help me out from this issue.


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Re: Task Queue - Transient Errors

2013-04-24 Thread Santiago
Thanks Vinny, It's not happening anymore but to mitigate that next time it 
happens I will try with your strategy,

On Friday, April 19, 2013 3:01:03 PM UTC-3, Vinny P wrote:

 Hello Santiago,

 Transient errors happen sometimes, there's not a whole lot you can do to 
 prevent or reduce them. 

 One mitigating strategy is to attempt to add a task; if you get an error, 
 sleep for 500ms - 1sec and try again. Here's some more discussion on the 
 topic: 
 http://grokbase.com/t/gg/google-appengine/12ck1skbqy/transient-error-when-attempting-to-add-task-to-queue-fails-on-retry


 -
 -Vinny P
 Technology  Media Advisor
 Chicago, IL

 @GOV on AppDotNet: https://alpha.app.net/gov



 On Thursday, April 18, 2013 9:21:41 AM UTC-5, Santiago wrote:

 Hi everyone, In the last days I've been seeing on my application a lot of 
 Transient Errors when I try to use task queues. is this happening to anyone 
 else? do you know what actually happen when this error is raised? all i get 
 from GAE documentation is There was a transient error while accessing 
 the queue. Please try again later  but I'm not very confortable about 
 having my logs flooded with this! thanks!



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Task Queue target parameter clarification

2013-04-24 Thread Dan

The documentation for the Task Queue target parameter for Python (
https://developers.google.com/appengine/docs/python/config/queue#target) 
states the following:

target (push queues only)

 The version of your application (including backends) on which the tasks in 
 this queue will be invoked.

 If unspecified, then tasks are invoked on the same version of the 
 application where they were enqueued. So, if you enqueued a task from the 
 default application version without specifying a target on the queue, the 
 task is invoked in the default application version. You can specify a 
 backend as your target.

What happens in the following scenario:
I have an app with version '12' as the default version and enqueue a task 
without using the target parameter.
I then change the default version to '13' before the task has executed.

Will the task execute on version '12' even though it is no longer the 
default version or will it execute on '13'? I believe it will still execute 
on version '12' but the documentation seems a bit ambiguous.

I would test on the SDK (v1.7.7) but using the target parameter has started 
producing errors queuing tasks with my current code so I have had to remove 
it.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Changing a cloned app name

2013-04-24 Thread Guillermo Siliceo
I cloned a working google app engine repo into my local env and got it to 
work.
Later i decided i wanted to deploy to my own GAE app so i changed the name 
in app.yaml to the one in my newly created app.

But then when launching it with the GoogleAppEngineLauncher i got this 
error:

BadRequestError: app dev~bandtasticnews cannot access app 
dev~noticiashacker's data

The original name is noticiashacker and the new one is bandtasticnews, the 
cloned worked alright online but the dev is broken, i have to change the 
name on app.yaml to the original if i want it to launch locally and return 
it before deploying.

There are no more lines on my code referencing the original name, i don't 
know why is it trying to retrieve it.

UPDATE
Here is the stack trace shown in the GoogleAppEngineLauncher logs

*** Running dev_appserver with the following flags:
--skip_sdk_update_check=yes --port=8080 --admin_port=8000 
--clear_datastore=yes
Python command: /usr/bin/python2.7
INFO 2013-04-24 00:45:10,683 devappserver2.py:498] Skipping SDK 
update check.
WARNING  2013-04-24 00:45:10,690 api_server.py:328] Could not 
initialize images API; you are likely missing the Python PIL module.
INFO 2013-04-24 00:45:10,693 api_server.py:152] Starting API server 
at: http://localhost:50495
INFO 2013-04-24 00:45:10,700 dispatcher.py:150] Starting server 
default running at: http://localhost:8080
INFO 2013-04-24 00:45:10,706 admin_server.py:117] Starting admin 
server at: http://localhost:8000

/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/tools/devappserver2/mtime_file_watcher.py:82:
 
UserWarning: There are too many files in your application for changes in 
all of them to be monitored. You may have to restart the development server 
to see some changes to your files.
  'There are too many files in your application for '
ERROR2013-04-24 00:45:17,489 webapp2.py:1528] app 
dev~bandtasticnews cannot access app dev~noticiashacker's data
Traceback (most recent call last):
  File 
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.3/webapp2.py,
 
line 1511, in __call__
rv = self.handle_exception(request, response, e)
  File 
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.3/webapp2.py,
 
line 1505, in __call__
rv = self.router.dispatch(request, response)
  File 
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.3/webapp2.py,
 
line 1253, in default_dispatcher
return route.handler_adapter(request, response)
  File 
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.3/webapp2.py,
 
line 1077, in __call__
return handler.dispatch()
  File 
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.3/webapp2.py,
 
line 547, in dispatch
return self.handle_exception(e, self.app.debug)
  File 
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.3/webapp2.py,
 
line 545, in dispatch
return method(*args, **kwargs)
  File 
/Users/grillermo/c/BandtasticNews/Noticias-HAcker/handlers/MainHandler.py, 
line 85, in get
self.response.out.write(template.render('templates/main.html', 
locals()))
  File 
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/webapp/template.py,
 
line 92, in render
return t.render(Context(template_dict))
  File 
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/webapp/template.py,
 
line 172, in wrap_render
return orig_render(context)
  File 
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/_internal/django/template/__init__.py,
 
line 173, in render
return self._render(context)
  File 
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/_internal/django/template/__init__.py,
 
line 167, in _render
return self.nodelist.render(context)
  File 

[google-appengine] Re: My indexes keep building since last week

2013-04-24 Thread Ray Gerami
Dear App Engine Team,
I have same problem with my app engine(socialenterprise-1) and I have not 
data yet

Thanks,
Ray

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Generate cloud endpoint client library not working

2013-04-24 Thread Manas Mukherjee

We are trying to generate 'cloud endpoint client library' using 
google-eclipse plugin. This feature worked fine even day before yesterday. 
We didn't change any code but getting the following exception. Our project 
is in a critical phase. Please help us ASAP. 

Caused by: 
com.google.appengine.repackaged.com.google.api.client.http.HttpResponseException:
 
400 Bad Request
{error: {message: Bad Request, code: 400, errors: [{message: 
api error, debug_info: Could not parse api}]}}
at 
com.google.appengine.repackaged.com.google.api.client.http.HttpRequest.execute(HttpRequest.java:1155)
at 
com.google.api.server.spi.tools.CloudClientLibGenerator.postRequest(CloudClientLibGenerator.java:52)
at 
com.google.api.server.spi.tools.CloudClientLibGenerator.generateClientLib(CloudClientLibGenerator.java:43)
... 41 more

Thanks 
Manas

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] Inequality operators on two properties at once

2013-04-24 Thread Mohsin Hijazee
So simply put, we cannot have a condition such as from_field  5 and 
to_field  10? How we would go about that then?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] problem with the Java dev_appserver after updating to Java JDK 1.7.0_21

2013-04-24 Thread Gary Frederick
Several of us can not get the dev_appserver to bring up an app correctly 
after updating to Java JDK 1.7.0_21. The 'fix' is to go back to Java 
1.7.0._17. 

We would like to find what changed and see if we can do something about it. 

The error is 

java.io.IOException: Cannot find cached resource for URL: 
http://localhost:/ode2/webstartfile/v132-16-g0025b7e_d824h4eddfpc0kipeldr4iva1k9hgrc4x1ozk7q86g0hjtqzv82hheizrfaervtvr05omhmta51gkm9qasqckx8vr61zt1nzb2e52wp365oj0q69kjkdikxo0e8nc7b80takai1o3n/BlocksEditor.jar
at com.sun.deploy.cache.Cache.getCachedResourceFilePath(Unknown Source)
at 
com.sun.deploy.cache.ResourceProviderImpl.getCachedResourceFilePath(Unknown 
Source)
at 
com.sun.javaws.security.JNLPSignedResourcesHelper.getSignedJNLPBits(Unknown 
Source)
at 
com.sun.javaws.security.JNLPSignedResourcesHelper.getSignedJNLPFile(Unknown 
Source)
at 
com.sun.javaws.security.JNLPSignedResourcesHelper.checkSignedLaunchDescHelper(Unknown
 
Source)
at 
com.sun.javaws.security.JNLPSignedResourcesHelper.checkSignedLaunchDesc(Unknown 
Source)
at 
com.sun.javaws.security.JNLPSignedResourcesHelper.checkSignedLaunchDesc(Unknown 
Source)
at com.sun.javaws.Launcher.prepareResources(Unknown Source)
at com.sun.javaws.Launcher.prepareAllResources(Unknown Source)
at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
at com.sun.javaws.Launcher.launch(Unknown Source)
at com.sun.javaws.Main.launchApp(Unknown Source)
at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
at com.sun.javaws.Main.access$000(Unknown Source)
at com.sun.javaws.Main$1.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

Any ideas what to look for?

Gary 


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] OverQuotaException while testing

2013-04-24 Thread Parag Gorghate
I am getting following exception in my app

App ID:microgentalk-hrd

/_ah/xmpp/message/chat/
com.google.apphosting.api.ApiProxy$OverQuotaException: The API call
xmpp.SendMessage() required more quota than is available.

I've just send single request to servlet and still got the exception.

Please help me to fix this

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] building a app

2013-04-24 Thread Jakob Reed
i am trying to find out if google buys apps that people make and if they 
help with getting them out for the world

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] Re: My indexes keep building since last week

2013-04-24 Thread Takashi Matsuo
Hi Ray,

All of your indexes are serving state. The index building might take some
time even if you don't any data.
So I recommend you wait for at least 30 minutes or so before filing a bug
or any sort.

-- Takashi


On Tue, Apr 23, 2013 at 6:28 AM, Ray Gerami agera...@gmail.com wrote:

 Dear App Engine Team,
 I have same problem with my app engine(socialenterprise-1) and I have not
 data yet

 Thanks,
 Ray

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to google-appengine+unsubscr...@googlegroups.com.

 To post to this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
Takashi Matsuo | Developers Programs Engineer | tmat...@google.com

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] Re: Anyone using EU-datacenter option outside Premier Accounts?

2013-04-24 Thread Aswath Satrasala
Any updates on when the EU-datacenter will be available for  non-premier
customers
-Aswath

On Wed, Mar 20, 2013 at 4:14 AM, Miguel PersonToVehicle 
mig...@persontovehicle.com wrote:

 Thanks for the info Luca. Let's wait then.

 Good luck!


 On Tuesday, March 19, 2013 8:56:48 AM UTC+1, decu...@uemd.net wrote:

 Hi Miguel

 No, I did not receive any confirmation message so far. I think they might
 got flooded with requests...

 Regards
 -Luca.



 Am Montag, 18. März 2013 23:19:35 UTC+1 schrieb Miguel PersonToVehicle:

 Hi Luca,

 We applied for it five weeks ago and haven´t receive any answer so far.
 Not even a simple acknowledge. I'm begining to think something wrong
 happened because it is quiet rare not getting at least one courtesy email
 confirming the reception the request.

 Did you get any sort of acknowledge  just after sending your request?

 Thanks,
 Miguel


 On Monday, March 18, 2013 2:21:11 PM UTC+1, decu...@uemd.net wrote:

 Hi Juha

 How long did you have to wait for the answer? I did also apply the last
 week and I don't know where I'm standing now.
 I would like to use my freshly created Cloud SQL EU-instance. Suddenly
 my App instance is still in US and I can't connect those.

 Did you notice any response improvements while moving to Europe?

 Regards
 -Luca.

 Am Samstag, 2. Februar 2013 08:57:08 UTC+1 schrieb Juha Koskela:

 Hi,

 I signed up for the Google App Engine is extending its European
 offering to non-premier customers - offering some time ago. Got an email
 earlier this week: Based on the feedback that you provided, we've
 enabled this support for your account.

 Is anyone using this already? I can't find the Location option
 anywhere and the documentation (in the Uploading Your Application 
 -section)
 referes only to premier accounts. I've tried creating a new app (no
 location option available while creating), enabling billing, and going
 through all possible settings. If you're using the EU datacenter with the
 extended european offering, how did you get started?

 thanks!


  --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to google-appengine+unsubscr...@googlegroups.com.
 To post to this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] Inequality operators on two properties at once

2013-04-24 Thread Google Tasks Backup Moderator
If TextSearch doesn't help, and since Datastore doesn't allow more than one
property per query to have inequality filters, then I can see only two
possibilities, depending on the amount of data that you expect to have.

If the amount of data is small, you could filter on one property using GQL
(e.g. SELECT * FROM Equipment WHERE from_time = 1600) and then filter
the rest in code.

If you have a large dataset, where performing the single inequality filter
would return too many results, then the only other option that I can see is
to use Cloud SQL.

Regards,

Julie


On 24 April 2013 19:19, Mohsin Hijazee mohsinhija...@gmail.com wrote:

 So simply put, we cannot have a condition such as from_field  5 and
 to_field  10? How we would go about that then?

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to google-appengine+unsubscr...@googlegroups.com.
 To post to this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.