[google-appengine] Re: Help with Security in Cloud Functions

2018-09-21 Thread Miguel Pagan Murphy
Hi Geroge,

Thank you so much for your fast response. I registered for the alpha and it 
seems like it's going in the right direction, :).

Thanks again,

Miguel.

On Thursday, September 20, 2018 at 10:06:19 PM UTC+2, George (Cloud 
Platform Support) wrote:
>
> Hello Miguel, 
>
> Your concern is legitimate, and you should be able to restrict access to 
> your deployed functions. Work is being done and a solution under way. You 
> may check the "Provide Authentication / Access Control" feature request 
> <https://issuetracker.google.com/63744839> in the Public Issue Tracker. 
> Progress towards eventual implementation my be followed in that issue. You 
> are welcome to formulate related concerns, or provide more detail on your 
> requirements. Posting this information in the mentioned feature request 
> <https://issuetracker.google.com/63744839> is more effective, and your 
> concerns would reach Engineering directly. 
>

-- 
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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/91bdfcc0-f3bf-4e26-b34f-0af2be05%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Help with Security in Cloud Functions

2018-09-20 Thread Miguel Pagan Murphy
Hi,

I'm a newbie to cloud functions. I'm using them for a web app, and was 
surprised to see that when deployed they are completely public.

Is there no way to secure them without doing it in the function in itself? 
Maybe by means of a service account or something similar. If you can't, 
what would be the correct way to protect a REST cloud function endpoint? 

The most relevant article i've found is this one, and it doesn't give me 
very much hope:

https://stackoverflow.com/questions/46358013/secure-google-cloud-functions-http-trigger-with-auth

Thanks,

Miguel Pagán Murphy

-- 
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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/b71efbcd-3a4f-499a-95b9-e2845b762d29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: What is the best way to clean datastore expired sessions?

2018-09-20 Thread Miguel Pagan Murphy
Hi George,

Basically it's because of the "_ah_SESSION" token. This token is created 
whenever an app engine standard application stores a user's session and 
contains all the information about the session.

Something that was not easy to find is that when it's created it is then 
stored both on memcache and on datastore, and never cleaned from datastore, 
even if its expiration (_expires) period passes. 

We have ended creating a cloud function to delete from datastore all 
expired entries with a cron, but that has reached a whole new level of 
issues with security (which I will leave for another post).

One last thing, is, as feedback, it´s a bit "sneaky" to store data from the 
users in datastore without providing a free way to clean it afterwards. I 
mean, just to clean up the expired entries we are gonna have to pay for:
- Reading from the datastore.
- Deleting from the datastore.
- Cloud function periodically activated.

For something that is neither our wish nor our desire to have, ;).

On the other hand, if we didn't pay for it, I already have more than 500 MB 
of expired session entries on datastore, meaning that I'd still have to pay 
to store something I have no wish or use to store, without any notification 
of it.

The reference by which i found out was a few articles similar to 
this: http://www.zoftino.com/google-app-engine-session-data-cleanup. 
Once you start to look in depth, it's all over the place, but if your not 
aware, it's hard to find it referenced in the docs.

Anyway, thanks for your assistance.

Miguel Pagán Murphy


On Wednesday, September 19, 2018 at 2:35:11 AM UTC+2, George (Cloud 
Platform Support) wrote:
>
> Hello Miguel, 
>
> To clean data in both Memcache and Datastore, you should use the 
> corresponding key. In case of the Memcache, to remove a value from the 
> cache (to evict it immediately), call the remove() method with the key as 
> its argument. To remove every value from the cache for the application, 
> call the clear() method. Related detail may be read on the "Using Memcache" 
> page 
> <https://cloud.google.com/appengine/docs/standard/java/memcache/using#putting_and_getting_values>.
>  
> In Memcache, you may write your data limiting its persistence: the app can 
> provide an expiration time when a value is stored, as either a number of 
> seconds relative to when the value is added, or as an absolute Unix epoch 
> time in the future. This is documented on the "Memcache Overview" page 
> <https://cloud.google.com/appengine/docs/standard/php/memcache/#how_cached_data_expires>
> . 
>
> Similarly, in case of Datastore, when an entity is no longer needed, you 
> can remove it from Cloud Datastore with the key's delete() method, a 
> statement similar to sandy.key.delete(). The "Creating, Retrieving, 
> Updating, and Deleting Entities" page 
> <https://cloud.google.com/appengine/docs/standard/python/ndb/creating-entities>
>  
> might offer more insight. In both cases, your code should keep track of the 
> keys, to be able to perform the delete operation. You may use App Engine 
> Cron Service to perform these operations at appropriate times, in 
> accordance with your app's needs.  
>
> How did you ascertain that Memcache data was persisted to Datastore? When 
> did you first notice 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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/126fdb77-4812-40e7-805a-6872e9b86f89%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] What is the best way to clean datastore expired sessions?

2018-09-18 Thread Miguel Pagan Murphy
Hi, 

I have an app in app engine standard that records session data to memcache. 
After seeing that it was persisted in the datastorage for some reason (I´m 
not fully understanding why), I´ve been researching how to clean up the 
expired session entries from datastore and have read that the best way to 
do it is with a cron. However, all the implementations I´ve seen are 
unofficial. How would be the right/correct way to do it? I haven´t been 
able to find it in the docs. 

On the other side, I´m looking to invalidate a user's session created in 
memcaché and cannot find the right way to do it. Does anyone have any 
pointers in this direction? Is there any way to do it with some of the 
user´s details? (Search by a certain field stored in user session, etc.). 

Thanks.

Miguel Pagán Murphy. 

-- 
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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/1618c13e-d6a0-41f1-a670-400f101db6e6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] 502 Issue with @ComponentScan in java8 standard jetty environment and flexible

2018-01-16 Thread Miguel Pagan Murphy
Hi,

Me and my team are in the middle of a migration towards Google App Engine 
and have found it near to impossible to complete it. Basically, we had our 
Spring MVC App for java 8 and managed for it to work perfectly on the app 
engine standard local server with jetty but when we upload it to the cloud 
it completely fails to even respond to basic http requests. 

This of course is very off putting (I don´t like the idea of something 
working locally and then not when we uploaded) but after hours of searching 
forums, stackoverflow, etc.. We still haven´t been able to solve the issue.

The main problem, as close as we can get, is that for some reason when we 
deploy in google app engine, it stops recognising the @Components Spring 
annotation. 

To load our configuration we use a programatic model similar to this one:  
 
http://www.codejava.net/frameworks/spring/bootstrapping-a-spring-web-mvc-application-programmatically

We have tried building a few demo apps from 0 and the only way we can get 
them to work is if we explicity declare the servlets/security config in our 
web.xml. 

¿Is there no way that this can work? ¿Is the local app engine standard 
server so different from the cloud server?

Additional info:
- After having it working locally we have deployed the project to app 
engine and when trying to access a simple service get the following error:
Failed startup of context c.g.a.r.j.AppEngineWebAppContext@
org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean 
named 'springSecurityFilterChain' available.

- If we remove the springSecurityFilter (which has had no issues in any 
other environment including the local jetty/app engine server so far and is 
loaded programatically, as i said before) we then get an error saying that:
No handlers matched this URL.
Because of the @Spring notation we know that they should be created 
automatically and don´t understand why they are not. 

¿Is there anything i´m missing here? 

Thanks

Miguel.





-- 
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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/dbdb7953-7333-417a-9219-65dde7410d97%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: All Managed VMs beta instances were turned down in the past hours.

2017-11-13 Thread Miguel Vitorino
Hi,

We also didn't see that warning anywhere.


On Friday, 10 November 2017 14:06:19 UTC, Yannick (Cloud Platform Support) 
wrote:
>
> Hello, apologies for the delay in answering. I am told the date should be 
> visible in a banner on the Cloud Console.
>
> On Wednesday, November 1, 2017 at 1:22:52 PM UTC-4, Justin Yip wrote:
>>
>> Yannick,
>>
>> We didn't get any notification either.
>>
>> Can you point out where in the google cloud console that I can find the 
>> information about the next maintenance window?
>>
>> Thanks!
>>
>> Justin
>>
>>
>>
>> On Wednesday, November 1, 2017 at 9:25:08 AM UTC-7, Andrei Baragan wrote:
>>>
>>> Hello Yannick,
>>>
>>> Thanks for your response. We were not notified about this in the Cloud 
>>> Console.
>>>
>>> We are planning to migrate soon but until then can you share the 
>>> maintenance notification schedule so that we know when the next shutdown 
>>> is? 
>>>
>>> Thanks
>>>
>>> On Wednesday, November 1, 2017 at 4:20:25 PM UTC+2, Yannick (Cloud 
>>> Platform Support) wrote:

 Hello, this was a planned maintenance window about which affected 
 project owners were informed of in the form of a MSA email.


 As you have pointed out the Managed VMs beta environment (App Engine 
 applications deployed with vm: true in their app.yaml) is deprecated 
 and will be turned down on December 15, 2017. The App Engine flexible 
 environment is replacing Managed VMs, which we are no longer updating.

 During this turndown process, we will keep maintenance windows open, 
 starting in October and running through the end of the year. This was one 
 such maintenance window.


 Notifications leading up to each maintenance window will be in the Cloud 
 Platform Console . For our beta 
 customers, during this period, your projects will continue to be eligible 
 for beta pricing in the env: flex environment (announced in November 
 2016). After Managed VMs beta is turned down, regular pricing 
  will apply.


 Please visit the upgrade guide 
 , 
 and learn more about how to move from the vm: true environment to the env: 
 flex environment.

 As detailed in the upgrade guide, the flexible environment does not 
 support deprecated runtimes such as python-compat and java-compat. If 
 you cannot yet upgrade to a supported runtime on the flexible environment, 
 you can request to continue using a deprecated "compat" runtime on 
 env:flex 
 
  
 t 
 
 em 
 
 po 
 
 ra 
 
 ri 
 
 ly 
 
 . 
 The
  
 compat runtimes will be available on this basis until flexible environment 
 solutions for memcache and task queues are in public beta 
 .
  
 After receiving a confirmation email, you must follow the steps in the 
 upgrade 
 guide 
  to 
 run your application on the flexible environment before we decommission 
 Managed VMs on December 15, 2017.

 The App Engine flexible environment is generally available and offers 
 features such as multi-zonal deployments, modern network stack, multiple 
 region availability, and more. For more details, see the documentation 
  and new features 
 to consider when upgrading 
 
 .

 If you have any questions or concerns specific to one of your projects, 
 please use this form to contact Google Cloud Support 
 .

 On Tuesday, October 31, 2017 at 7:42:50 PM UTC-4, Jianliang Zhao wrote:
>
> Reported an issue: https://issuetracker.google.com/issues/68727696
>
> On Tuesday, October 31, 2017 at

Re: [google-appengine] Re: Cheapest possible config for app engine flexible instance

2017-07-11 Thread Miguel Vitorino
Hi Jordan,

Thanks, it seems I'm up to date on the current status of flex environment
after all. We do already employ the techniques you mentioned to keep costs
down.

Miguel Vitorino

Technical Director
Skype: miguel.vitorino
Support UK: +44 (20) 33 896 112
Support US: +1 (646) 350-0511



On 10 July 2017 at 20:16, 'Jordan (Cloud Platform Support)' via Google App
Engine  wrote:

> Thank you Miguel for the clarification.
>
> Currently the App Engine Flexible environment requires at least one
> instance
> <https://cloud.google.com/appengine/docs/flexible/python/flexible-for-standard-users#scaling_characteristics>
> to be active in a version in order for requests to be routed to it. Our
> engineering team is working very hard on a good "scale to zero" solution
> for the Flex environment. There is currently no ETA for its implementation.
>
> In the meantime, there is a great article on Reducing Costs for App
> Engine Flex
> <https://medium.com/google-cloud/three-simple-steps-to-save-costs-when-prototyping-with-app-engine-flexible-environment-104fc6736495>
>  that
> I recommend you read. The idea is the same, reduce instances, but for every
> deployed version and service. When you deploy a new version on your app,
> App Engine will keep the instances of older versions running. This will in
> turn increase costs for every deployed version and service. You should
> therefore ensure to delete all instances in all unused versions.
>
> ---
>
> Concerning health checks. Health check requests to your application will
> not affect performance or cost. A health check will not ask your
> application to do any work, and instead simply pings the instance and
> container running your application to ensure they are alive and well.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Google App Engine" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/google-appengine/uaiyicw6rhg/unsubscribe.
> To unsubscribe from this group and all its topics, 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 https://groups.google.com/group/google-appengine.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/google-appengine/0337d53b-e93f-4890-a911-
> 2e973ccacd43%40googlegroups.com
> <https://groups.google.com/d/msgid/google-appengine/0337d53b-e93f-4890-a911-2e973ccacd43%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAB5oza-eHXpiN1_TjUsJYB%3Dh%2BW78w6-%3DGt-%3DZL3Nmikc1%2BEk%3Dg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Cheapest possible config for app engine flexible instance

2017-07-08 Thread Miguel Vitorino
Hi Jordan,

Are you saying that appengine flex can now scale to zero instances? Because 
I recall that during beta and before it wasn't possible, so has this 
changed when it hit GA?

On Thursday, 6 July 2017 09:12:06 UTC+1, Kush Goyal wrote:
>
> Hi,
>
> I am using app engine flexible environment for my python 3 app. I read the 
> documentation for app.yaml [1] to configure my instance. This is my 
> app.yaml config for my instance:
>
>
> runtime: python
> env: flex
> entrypoint: gunicorn -b :$PORT myproject.wsgi
>
> manual_scaling:
>  instances: 1
>
> resources:
>  cpu: 0.2
>  memory_gb: 0.6
>  disk_size_gb: 10
>
> health_check:
>  enable_health_check: False
>
> runtime_config:
>  python_version: 3
>
>
> I am facing these problem with this config:
>
>
> 1. enable health check false is not working. I still see health check 
> requests in the log.
>
>
> 2. I am not able to figure out the cheapest config for my instance. Currently 
> with the above config I am getting monthly USD 50 bill. Is it possible to 
> make it cheaper?
>
>
> Regards,
>
>
> Kush
>
>
> [1] https://cloud.google.com/appengine/pricing#flexible-environment-instances
>
>

-- 
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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/13d8ad1f-2fef-4903-bb0c-c7088e575062%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: How to deploy a flexible app to a preemptible VM?

2016-09-28 Thread Miguel Vitorino

Hi Randy,

I don't believe that you can use Preemptible VMs yet. But it would surely 
make sense since these in the flex environment should be disposable
But I wouldn't get too excited about the current flex pricing as there have 
been hints that pricing may change for GA to consider the added value of 
GAE on top of GCE or GKE.


On Wednesday, September 28, 2016 at 2:32:50 PM UTC+1, Randy Sugianto wrote:
>
> I just tried the Flexible version of app engine, and I like it because 
> with 0.05 USD per hour I can get 1 core and almost 4 GB of RAM, much higher 
> than with a B1 instance (600MHz CPU and 128 MB of RAM only!).
>
> Then I know that Google also offers Preemptible VMs with cost only 0.01 
> USD/hour for the same spec! I guess my app engine app is very suitable to 
> use preemptible VMs.
>
> However I can't find a way to do so. Is there anything in the app.yaml 
> file that I should put so that the app will be deployed to a preemptible VM 
> instead of a normal one?
>

-- 
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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/f766555d-3026-49dd-a805-ee778530743a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Google App Engine multiple regions

2016-06-30 Thread Miguel Vitorino
Kaan,

I believe the ping time to appspot.com domains is not indicative of the 
actual smallest response time as it only pings the entry point of Google's 
global edge network. Once your request is inside Google internal network, 
it will then travel to your GAE instances and back. If you ping an app from 
London, you only get 10s of ms, yet if you perform a full simple HTTP 
request it will add the 100ms of cross atlantic RTT at the very least.


On Wednesday, June 22, 2016 at 9:38:22 AM UTC+1, Kaan Soral wrote:
>
> I think one way or another, there's going to be a delay, why do you need 
> to minimise the delay so much?
>
> Even if the instances were spread over the world, I'm guessing there would 
> be a smaller data access delay in most cases
>
> I'm way outside US, my users are closer to EU, yet my appengine location 
> is US, didn't have any issues up to now
>
> Out of curiosity, I pinged my domain and the appspot domain, the domain is 
> wrapped with Cloudflare
>
> Appspot-> 30ms
> Cloudflare-> 60ms
>
> Before this experiment I expected Cloudflare to decrease the international 
> ping, it didn't
>
> Then I wget'd the domain
>
> Appspot-> 0.1s
> Cloudflare-> 0.2s
>
> It obviously doesn't directly answer your question, yet it's an insight
>

-- 
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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/f594f6fc-9e73-4ffe-b761-99adabc08b1d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: help with cloud enpoint... cannot access in local testing...

2016-02-04 Thread Miguel Santos
Hi, Trez.

I'm having this same problem. My best guess for now is that the problem is 
the Google Chrome current version (48).
I was using the version #47 and it was working. After updating chrome to 
#48, I'm facing this same problem.

Em quarta-feira, 3 de fevereiro de 2016 08:14:05 UTC-3, Trez Ertzzer 
escreveu:
>
> Hello.
> I have a project created with the GPE.
> this project contains Endpoints services that I can see when deployed on 
> google app engine server.
>
> BUT
> when I launch the webapp locally through eclipse, and user chrome to go to 
> *http://localhost:/_ah/api/explorer 
> -->*I do not see the endpoint 
> services:
>
> I clicked on the shield (in the adress bar), then I allow the scripts to 
> be loaded...  but no services endpoint appears.
>
>
> I have to say that the worst is that IT WAS WORKING and now it's not 
> and I have no idea why...  
>
>
> I created a new project from scratch...using this:
> http://rominirani.com/2014/01/10/google-cloud-endpoints-tutorial-part-1/
> --> SAME thing: cannot see the services.
>
>
> I also tried to launch chrome using the "--disable-web-security" option.
> --> did not change anything...
>
>
> really I need help...
>
> thanks in advance.
>
>
>
>

-- 
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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/5872f53b-693c-4466-95a7-8263fc0e1cc4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Lat-Lng headers in the request

2016-01-02 Thread Miguel Vitorino
Hi Mayank,

I was not aware that GAE doesn't have an api for domain verification. It is 
a big limitation. Thanks for sharing!

Miguel

On Saturday, January 2, 2016 at 7:52:16 AM UTC, Mayank Bhagya wrote:
>
> Hello Miguel,
>
> In our app, users can hook-up their custom domain to their accounts.
>
> Now, appengine has this restriction that one cannot attach a custom domain 
> without google verifying it.
> And there is no API to do that verification. It can be done via the UI 
> only.
>
> So the only way to offer custom domain to our users was to attach domains 
> to another machine running a reverse proxy above the GAE application.
>
> Thanks.
>
>
>
> On Saturday, 2 January 2016 01:25:28 UTC+5:30, Miguel Vitorino wrote:
>>
>> Hi,
>>
>> I don't have an answer for you, but I am curious to why you need nginx in 
>> front of AppEngine.
>>
>> Miguel
>>
>> On Friday, 1 January 2016 07:39:45 UTC, Mayank Bhagya wrote:
>>>
>>>
>>> Hello,
>>>
>>> I am using nginx as a reverse proxy in front of my appengine app.
>>>
>>> So the client's IP doesn't turn up in the remote_addr of the request 
>>> that reaches app engine.
>>> Instead, remote_addr has the ip of the machine running nginx.
>>>
>>> So lat-lng, country and other headers are not getting populated 
>>> correctly.
>>> Is there anyway I can tell appengine to use the forwarded IP to compute 
>>> lat-lng, country etc?
>>>
>>> Thanks.
>>> -mayank
>>>
>>

-- 
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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/edb1a48b-c8e4-4b97-a63c-dfa0276fbebf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Lat-Lng headers in the request

2016-01-01 Thread Miguel Vitorino
Hi,

I don't have an answer for you, but I am curious to why you need nginx in 
front of AppEngine.

Miguel

On Friday, 1 January 2016 07:39:45 UTC, Mayank Bhagya wrote:
>
>
> Hello,
>
> I am using nginx as a reverse proxy in front of my appengine app.
>
> So the client's IP doesn't turn up in the remote_addr of the request that 
> reaches app engine.
> Instead, remote_addr has the ip of the machine running nginx.
>
> So lat-lng, country and other headers are not getting populated correctly.
> Is there anyway I can tell appengine to use the forwarded IP to compute 
> lat-lng, country etc?
>
> Thanks.
> -mayank
>

-- 
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 https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/b1f69d0c-27cd-438e-b194-b1b2d77965e0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Mail quota increase request - billing enabled project

2015-12-10 Thread Miguel Vitorino

Hi Rafael,

We use Amazon SES with AppEngine and works very well. You can setup SNS 
topics with HTTPS webhook calls to your GAE for unsubscribes, bounces, etc.


On Wednesday, December 9, 2015 at 2:56:03 PM UTC, Rafael Darder wrote:
>
> Hi, 
> I requested an email quota increase two days ago, which is pending 
> approval. From what I've read in this forum, it may take weeks. 
> The project has billing enabled, but falls within the free tier. I just 
> tried the same request on another billing enabled project and it got 
> approved instantly. The only difference is that this other project exceeds 
> the free tier. I suspect is has something to do.
> Is there anything I can do make the approval happen today? 
> Thanks
> Rafael
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/e9b987df-b110-424e-a9b3-2fd063a57f4f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Google APIs integrated authentication

2015-12-09 Thread Miguel Vitorino
Hi Nick,

Yes, that's right, the issues were manifested as 401s across all APIs and
were solved once incident #15025 was fixed.

Miguel

Miguel Vitorino

Director
Skype: miguel.vitorino
Support UK: +44 (20) 33 896 112
Support US: +1 (646) 350-0511



On 9 December 2015 at 20:46, Nick (Cloud Platform Support) <
pay...@google.com> wrote:

> Were these errors manifesting as 401 responses? There's very little
> description in this thread of what issues are actually being seen. Is this
> <https://status.cloud.google.com/incident/appengine/15025> possibly the
> issue you were affected by (linked to the Cloud Status Dashboard)? The
> appengine-downtime-notify mailing list also saw a posting
> <https://status.cloud.google.com/incident/appengine/15025> about this.
>
>
> On Tuesday, December 8, 2015 at 4:02:57 PM UTC-5, Stefano Ciccarelli wrote:
>>
>> Same here, our app is partially unusable (because it cannot reach GCS)
>> but we have not been contacted.
>>
>> Il giorno mar 8 dic 2015 alle 20:58 bFlood 
>> ha scritto:
>>
>>> same here, we have not been contacted but our app is affected as well
>>>
>>>
>>> On Tuesday, December 8, 2015 at 2:53:18 PM UTC-5, Miguel Vitorino wrote:
>>>>
>>>>
>>>> Hi,
>>>>
>>>> Google Cloud Platform mailing list has just posted this announcement:
>>>>
>>>> "We’re investigating elevated error rates for some Google Cloud
>>>> Platform users. We believe these errors are affecting between 2-5 percent
>>>> of Google App Engine (GAE) applications. We are working directly with the
>>>> customers who are affected to restore full operation in their application
>>>> as quickly as possible, and apologize for any inconvenience."
>>>>
>>>> Anyone know what exactly Google is doing directly with the affected
>>>> customers. Our app is severely affected and we have received no contact or
>>>> instructions regarding this.
>>>>
>>>> Miguel
>>>>
>>> --
>>> 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.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-appengine/dbc0fe86-abe3-40fe-a112-b3d73974e90a%40googlegroups.com
>>> <https://groups.google.com/d/msgid/google-appengine/dbc0fe86-abe3-40fe-a112-b3d73974e90a%40googlegroups.com?utm_medium=email&utm_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> *Stefano Ciccarelli*
>> GAE Application Division
>> / Director
>> stefano.ciccare...@mmbsoftware.it
>>
>> *M.M.B. s.r.l.*
>> via Granarolo, 177/7 - 48018 Faenza (RA) - Italy
>> tel. +39.0546.637711 - fax +39.0546.46077
>> www.mmbsoftware.it - i...@mmbsoftware.it
>>
>> Le informazioni contenute in questa comunicazione sono riservate e
>> destinate esclusivamente alla/e persona/e o all'ente sopra indicati. E'
>> vietato ai soggetti diversi dai destinatari qualsiasi uso, copia,
>> diffusione di quanto in esso contenuto sia ai sensi dell'art. 616 c.p., sia
>> ai sensi del DL n. 196/03. Se questa comunicazione Vi e' pervenuta per
>> errore, Vi preghiamo di rispondere a questa e-mail e successivamente
>> cancellarla dal Vostro sistema.
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Google App Engine" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-appengine/4TgH5hCOF3o/unsubscribe
> .
> To unsubscribe from this group and all its topics, 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/a0ae75b9-e756-49db-be43-6fcc9e4d0bd5%40googlegroups.com
> <https://groups.google.com/d/msgid/google-appengine/a0ae75b9-e756-49db-be43-6fcc9e4d0bd5%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAB5oza86V0cFJ2W_F%2BE5k4GJe7p4EFjP3orxbYvtSvV57PeRHA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Google APIs integrated authentication

2015-12-08 Thread Miguel Vitorino
We are not alone then, good to know.
In case this helps, what we have done temporarily on some of our services
was to perform OAuth2 authentication using a JWT token instead of using the
"integrated" GAE API integration. This helped with BigQuery and GCS.


Miguel Vitorino

Director
Skype: miguel.vitorino
Support UK: +44 (20) 33 896 112
Support US: +1 (646) 350-0511



On 8 December 2015 at 19:58, bFlood  wrote:

> same here, we have not been contacted but our app is affected as well
>
>
> On Tuesday, December 8, 2015 at 2:53:18 PM UTC-5, Miguel Vitorino wrote:
>>
>>
>> Hi,
>>
>> Google Cloud Platform mailing list has just posted this announcement:
>>
>> "We’re investigating elevated error rates for some Google Cloud Platform
>> users. We believe these errors are affecting between 2-5 percent of Google
>> App Engine (GAE) applications. We are working directly with the customers
>> who are affected to restore full operation in their application as quickly
>> as possible, and apologize for any inconvenience."
>>
>> Anyone know what exactly Google is doing directly with the affected
>> customers. Our app is severely affected and we have received no contact or
>> instructions regarding this.
>>
>> Miguel
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Google App Engine" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-appengine/4TgH5hCOF3o/unsubscribe
> .
> To unsubscribe from this group and all its topics, 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/dbc0fe86-abe3-40fe-a112-b3d73974e90a%40googlegroups.com
> <https://groups.google.com/d/msgid/google-appengine/dbc0fe86-abe3-40fe-a112-b3d73974e90a%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAB5oza9ZZBH3ODwRmPA_JpOkx6c%3Dn3gW-0dDiHm08%3DnYibWWEw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Google APIs integrated authentication

2015-12-08 Thread Miguel Vitorino

Hi,

Google Cloud Platform mailing list has just posted this announcement:

"We’re investigating elevated error rates for some Google Cloud Platform 
users. We believe these errors are affecting between 2-5 percent of Google 
App Engine (GAE) applications. We are working directly with the customers 
who are affected to restore full operation in their application as quickly 
as possible, and apologize for any inconvenience."

Anyone know what exactly Google is doing directly with the affected 
customers. Our app is severely affected and we have received no contact or 
instructions regarding this.

Miguel 

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/1cd8e0e0-1723-453d-a6fe-faf27a444783%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: I have some doubts about the pricing and the free quotas

2015-11-21 Thread Miguel Abellan
Depending on the nature of the project you don't even need a database at 
all, such us a Web-hook that performs some actions on specific requests. 
Now I have one more doubt left: If I enable billing on a project will I 
lose the free trial offer?

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/ad3a0abd-ed31-46b9-ab4b-a67c76d61d67%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] I have some doubts about the pricing and the free quotas

2015-11-20 Thread Miguel Abellan
I know that each resource may have a free quota, available for all apps 
even free apps that don't have enabled billing. But the problem comes when 
we start to talk about billable resources. For example the Datastore has a 
free quota of 1GB of data and 50,000 read/write operations, so technically 
it should be available for free apps but my experience in the past shown 
that this is not the case, as soon as I implemented some functions using 
the Datastore an error page was telling me to enable billing... So... 
What's the point of having a free limit if you need to enable billing 
anyway? I don't understand that... Maybe is it possible to enable billing 
and set a limit to zero?

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/699fc5c8-598f-47fa-ac2b-137f0404c1b7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Constraints of the Socket API

2015-10-24 Thread Miguel Vitorino

Hi sorry, hasty response. You obviously tried that and doesn't work. We do 
use socket api for periods longer than 2 mins but in Go. Can't help in java.


On Saturday, 24 October 2015 22:48:45 UTC+1, Miguel Vitorino wrote:
>
>
> Hi,
>
> Have you thought about calling it from a push task queue?
> Task queue initiated requests have a deadline of 10 mins
>
> Miguel
>
> On Saturday, 24 October 2015 12:52:45 UTC+1, Jeff Schnitzer wrote:
>>
>> I'm calling a third-party HTTP service from a task that sometimes takes 
>> more than 60s to respond. Since the URLFetchService has a hard limit of 
>> 60s, I thought I might be able to work around this with the Socket API - 
>> there do not appear to be any documented time limits other than the 2m idle.
>>
>> I wired in the Apache HttpClient... and I'm still getting an exception at 
>> 60s, even though I explicitly set the timeout to 118s:
>>
>> Caused by: java.net.SocketException: Socket operation timed out: The API 
>> call remote_socket.Receive() took too long to respond and was cancelled. at 
>> com.google.appengine.api.socket.SocketApiHelper.makeSyncCall(
>> SocketApiHelper.java:87 
>> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=com%2Fgoogle%2Fappengine%2Fapi%2Fsocket%2FSocketApiHelper.java&line=87>)
>>  
>> at com.google.appengine.api.socket.AppEngineSocketImpl.receive(
>> AppEngineSocketImpl.java:750 
>> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=com%2Fgoogle%2Fappengine%2Fapi%2Fsocket%2FAppEngineSocketImpl.java&line=750>)
>>  
>> at com.google.appengine.api.socket.AppEngineSocketInputStream.read(
>> AppEngineSocketInputStream.java:36 
>> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=com%2Fgoogle%2Fappengine%2Fapi%2Fsocket%2FAppEngineSocketInputStream.java&line=36>)
>>  
>> at sun.security.ssl.InputRecord.readFully(InputRecord.java:442 
>> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=sun%2Fsecurity%2Fssl%2FInputRecord.java&line=442>)
>>  
>> at sun.security.ssl.InputRecord.read(InputRecord.java:480 
>> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=sun%2Fsecurity%2Fssl%2FInputRecord.java&line=480>)
>>  
>> at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:944 
>> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=sun%2Fsecurity%2Fssl%2FSSLSocketImpl.java&line=944>)
>>  
>> at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:901 
>> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=sun%2Fsecurity%2Fssl%2FSSLSocketImpl.java&line=901>)
>>  
>> at sun.security.ssl.AppInputStream.read(AppInputStream.java:102 
>> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=sun%2Fsecurity%2Fssl%2FAppInputStream.java&line=102>)
>>  
>> at org.apache.http.impl.io.SessionInputBufferImpl.streamRead(
>> SessionInputBufferImpl.java:139 
>> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=org%2Fapache%2Fhttp%2Fimpl%2Fio%2FSessionInputBufferImpl.java&line=139>
>> )
>>
>> Question #1: Is there a limit missing from the documentation?
>>
>> Question #2: Will I have any success with the NIO version of httpclient? 
>> I'm guessing not.
>>
>> Question #3: Any suggestions for ways to work around this? It's part of 
>> an already-too-complicated multistep cascade of transactional task 
>> operations. This will be very hard to sp

[google-appengine] Re: Constraints of the Socket API

2015-10-24 Thread Miguel Vitorino

Hi,

Have you thought about calling it from a push task queue?
Task queue initiated requests have a deadline of 10 mins

Miguel

On Saturday, 24 October 2015 12:52:45 UTC+1, Jeff Schnitzer wrote:
>
> I'm calling a third-party HTTP service from a task that sometimes takes 
> more than 60s to respond. Since the URLFetchService has a hard limit of 
> 60s, I thought I might be able to work around this with the Socket API - 
> there do not appear to be any documented time limits other than the 2m idle.
>
> I wired in the Apache HttpClient... and I'm still getting an exception at 
> 60s, even though I explicitly set the timeout to 118s:
>
> Caused by: java.net.SocketException: Socket operation timed out: The API 
> call remote_socket.Receive() took too long to respond and was cancelled. at 
> com.google.appengine.api.socket.SocketApiHelper.makeSyncCall(
> SocketApiHelper.java:87 
> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=com%2Fgoogle%2Fappengine%2Fapi%2Fsocket%2FSocketApiHelper.java&line=87>)
>  
> at com.google.appengine.api.socket.AppEngineSocketImpl.receive(
> AppEngineSocketImpl.java:750 
> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=com%2Fgoogle%2Fappengine%2Fapi%2Fsocket%2FAppEngineSocketImpl.java&line=750>)
>  
> at com.google.appengine.api.socket.AppEngineSocketInputStream.read(
> AppEngineSocketInputStream.java:36 
> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=com%2Fgoogle%2Fappengine%2Fapi%2Fsocket%2FAppEngineSocketInputStream.java&line=36>)
>  
> at sun.security.ssl.InputRecord.readFully(InputRecord.java:442 
> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=sun%2Fsecurity%2Fssl%2FInputRecord.java&line=442>)
>  
> at sun.security.ssl.InputRecord.read(InputRecord.java:480 
> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=sun%2Fsecurity%2Fssl%2FInputRecord.java&line=480>)
>  
> at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:944 
> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=sun%2Fsecurity%2Fssl%2FSSLSocketImpl.java&line=944>)
>  
> at sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:901 
> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=sun%2Fsecurity%2Fssl%2FSSLSocketImpl.java&line=901>)
>  
> at sun.security.ssl.AppInputStream.read(AppInputStream.java:102 
> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=sun%2Fsecurity%2Fssl%2FAppInputStream.java&line=102>)
>  
> at org.apache.http.impl.io.SessionInputBufferImpl.streamRead(
> SessionInputBufferImpl.java:139 
> <https://console.developers.google.com/project/gearlaunch-hub/clouddev/debug/resolve_location?appModule=default&appVersion=2015-10-24-1046-build-2799×tampNanos=144568517851200&file=org%2Fapache%2Fhttp%2Fimpl%2Fio%2FSessionInputBufferImpl.java&line=139>
> )
>
> Question #1: Is there a limit missing from the documentation?
>
> Question #2: Will I have any success with the NIO version of httpclient? 
> I'm guessing not.
>
> Question #3: Any suggestions for ways to work around this? It's part of an 
> already-too-complicated multistep cascade of transactional task operations. 
> This will be very hard to split up in any reasonable way.
>
> Thanks,
> Jeff
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/42589dac-5d9c-4bba-9702-4a0c4faaede5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] GAP - Access to Google Drive Spreadsheet using IAAS

2015-01-20 Thread Miguel Fabre
Hi! I'm developing a app with GAP which insert data into a Google Drive 
Spreadsheet. In my computer, using 'localhost', works fine but now I want 
to use a IAAS (Koding). When I try to connect to my gmail account to access 
to the Spreadsheet (with the IAAS machine), it doesn't work because google 
thinks that someone want to enter in my gmail account (because the place of 
conection is in Dublin, so thinks it's a intruder).

Someone can help me?

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Application Data Center/Zone

2014-08-05 Thread Miguel Vitorino
We never seem to get anything other than us3. And couldn't find a
correlation with us-central1-a, b, etc.
Thanks anyway Vinny.

Miguel Vitorino


On 22 July 2014 20:05, Miguel Vitorino  wrote:

> Thanks Vinny, I didn't know and will definitely take a look at that.
> On 22 Jul 2014 05:56, "Vinny P"  wrote:
>
>> On Mon, Jul 21, 2014 at 7:00 AM, Miguel Vitorino 
>>  wrote:
>>
>>> How is possible to know the current Zone (as in: us-central1-a, b, f)
>>> where an AppEngine application is currently running?
>>> Cloud SQL allows us to specify that its location should follow an
>>> AppEngine app, but for general GCE instances there isn't a similar option
>>> (since they obviously aren't managed so static to one zone...)
>>>
>>
>>
>> Some runtimes (I'm not sure if all runtimes support this) can supply a
>> name of the hosting datacenter. For example, in Go you can call
>> appengine.Datacenter()
>> <https://developers.google.com/appengine/docs/go/reference#Datacenter>
>> and get back a string similar to *us3*.
>>
>>
>> -
>> -Vinny P
>> Technology & Media Consultant
>> Chicago, IL
>>
>> App Engine Code Samples: http://www.learntogoogleit.com
>>
>>
>>  --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "Google App Engine" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/google-appengine/xr5W6HvWVFE/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, 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.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Application Data Center/Zone

2014-07-22 Thread Miguel Vitorino
Thanks Vinny, I didn't know and will definitely take a look at that.
On 22 Jul 2014 05:56, "Vinny P"  wrote:

> On Mon, Jul 21, 2014 at 7:00 AM, Miguel Vitorino 
>  wrote:
>
>> How is possible to know the current Zone (as in: us-central1-a, b, f)
>> where an AppEngine application is currently running?
>> Cloud SQL allows us to specify that its location should follow an
>> AppEngine app, but for general GCE instances there isn't a similar option
>> (since they obviously aren't managed so static to one zone...)
>>
>
>
> Some runtimes (I'm not sure if all runtimes support this) can supply a
> name of the hosting datacenter. For example, in Go you can call
> appengine.Datacenter()
> <https://developers.google.com/appengine/docs/go/reference#Datacenter>
> and get back a string similar to *us3*.
>
>
> -
> -Vinny P
> Technology & Media Consultant
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>
>
>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "Google App Engine" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-appengine/xr5W6HvWVFE/unsubscribe
> .
> To unsubscribe from this group and all its topics, 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.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Application Data Center/Zone

2014-07-21 Thread Miguel Vitorino

Hi,

How is possible to know the current Zone (as in: us-central1-a, b, f) where 
an AppEngine application is currently running?
Cloud SQL allows us to specify that its location should follow an AppEngine 
app, but for general GCE instances there isn't a similar option (since they 
obviously aren't managed so static to one zone...)
We would like to create GCE instances in the same zone as the app to reduce 
latency.
One way we thought of was to start one instance in each zone and then test 
the latency but we would naturally prefer a simpler approach to find this 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Task Queue Namespaces and Quota

2014-04-08 Thread Miguel Vitorino
Thanks for the help Vinny. I believe you are right.

Miguel Vitorino


On 7 April 2014 08:52, Vinny P  wrote:

> On Thu, Apr 3, 2014 at 9:09 AM, Miguel Vitorino 
>  wrote:
>
>> When using namespaces with Task Queues is the quota applicable across all
>> namespaces or do namespaced queues actually work as separate queues?
>> Example: the 500 task invocations per second per queue are a limit for
>> all namespaces on the same queue or per namespace?
>>
>
>
>
> I believe the limit on task executions is across the entire queue,
> regardless of the namespace configured.
>
>
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Google App Engine" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-appengine/mpvUnzqiFO4/unsubscribe
> .
> To unsubscribe from this group and all its topics, 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.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Task Queue Namespaces and Quota

2014-04-03 Thread Miguel Vitorino

Hi,

When using namespaces with Task Queues is the quota applicable across all 
namespaces or do namespaced queues actually work as separate queues?
Example: the 500 task invocations per second per queue are a limit for all 
namespaces on the same queue or per namespace?

Thanks,

Miguel

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Google App Engine Unit Tests - Python

2014-01-24 Thread Pedro Miguel

Hi guys, 

I'm relative new to python and google app engine so please bear with me.
OK so my problem is that I'm trying to run a test unit by following the 
tutorial at 
Webapp2and 
I keep getting the following error:

Traceback (most recent call last):
  File "test.py", line 2, in 
import webapp2
ImportError: No module named webapp2



*This is is my app.yaml file:*
application: test-app
version: 1
runtime: python27
api_version: 1
threadsafe: true

- url: /.*
  script: main.app

libraries:
- name: jinja2
  version: latest

builtins:
- remote_api: on




*This is my main.py file:*
import webapp2

class HelloHandler(webapp2.RequestHandler):
def get(self):
self.response.write('Hello, world!')

app = webapp2.WSGIApplication([('/', HelloHandler)])

def main():
app.run()

if __name__ == '__main__':
main()



*and this is my test.py file:*
import unittest
import webapp2

# from the app main.py
import main

class TestHandlers(unittest.TestCase):
   def test_hello(self):
   # Build a request object passing the URI path to be tested.
   # You can also pass headers, query arguments etc.
   request = webapp2.Request.blank('/')
   # Get a response for that request.
   response = request.get_response(main.app)

   # Let's check if the response is correct.
   self.assertEqual(response.status_int, 200)
   self.assertEqual(response.body, 'Hello, world!')


if __name__ == '__main__':
unittest.main()




My project file structure is something like:

(folder) test-app
  app.yaml
  index.yaml
  main.py
  test.py



And to run the 'test.py' I do:

$ cd test-app
$ python test.py



And then I get the error above..Can anyone point me in the right direction?

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.
For more options, visit https://groups.google.com/groups/opt_out.


[google-appengine] Google app engine local unit test with python

2014-01-24 Thread Pedro Miguel


Hi guys,

I'm fairly new to google app engine and python so please bear with me.

I would like to start running some python unit tests and I've been 
following the guide at Webapp2

But when I run the test I keep getting the following error :
Traceback (most recent call last):
  File "test.py", line 2, in 
import webapp2
ImportError: No module named webapp2


*This is my test.py file:*
import unittest
import webapp2



# from the app main.py
import main

class TestHandlers(unittest.TestCase):
   def test_hello(self):
   # Build a request object passing the URI path to be tested.
   # You can also pass headers, query arguments etc.
   request = webapp2.Request.blank('/')
   # Get a response for that request.
   response = request.get_response(main.app)

   # Let's check if the response is correct.
   self.assertEqual(response.status_int, 200)
   self.assertEqual(response.body, 'Hello, world!')


if __name__ == '__main__':
unittest.main()


*This is my main.py file:*
import webapp2



class HelloHandler(webapp2.RequestHandler):
def get(self):
self.response.write('Hello, world!')

app = webapp2.WSGIApplication([('/', HelloHandler)])

def main():
app.run()

if __name__ == '__main__':
main()



*This is my app.yaml file:*
application: test-app
version: 1
runtime: python27
api_version: 1
threadsafe: true



- url: /.*
  script: main.app

libraries:
- name: jinja2
  version: latest

builtins:
- remote_api: on



My current folder structure is:
test-app
 app.yaml
 main.py 
 test.py

And to run the test I do:
$ cd test-app
$ python test.py

Answer that's when I get the error showed above.  Could anyone tell me what 
am I doing wrong.


Regards,

Pedro

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[google-appengine] Deploy appengine endpoints to non-default version

2013-04-08 Thread Miguel Sanz


According to the trusted tester documentation, there was an issue with 
endpoints that prevented them to be created when deploying to a 
"non-default" version. When 1.7.5 was released and endpoints graduated from 
trusted tester to "Experimental" we were told that this issue was fixed but 
couldn't be included in 1.7.5 (for timing reasons) and would be included in 
the next version.

Ok, the next version is already here (1.7.6) but still, if I deploy 
endpoints to a non-default version, they are not generated. Does anybody 
know if there is some specific setting that needs to be added to web.xml, 
appengine-web.xml or somewhere else? Or is this just that this feature was 
not included in 1.7.6 either.

>From my point of view this is essential. I have an Android app based on 
requestfactory. If I replace my default version, the app will stop working. 
I need to deploy to a separate version, deploy a new Android app version 
pointing to this server version, and after some time when most of users 
have updated their Android app set that as default.

Thanks for any hints on 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] Re: How to put ads in my Google App Engine application?

2013-04-01 Thread Miguel Alfonso Varela Fonseca
Hi Everybody. I've just got an email from Leandro Rezende, asking me for an 
explanation about what I've donne, and I think, could be a little helpful 
If I share it in the thread.

In my case, I have an app in google apps engine wich I wanna put some ads 
in. My problem is that the AdSense uses the url of the web product to 
analyze the static content and identify the correct kind of ads to show. 
Unfortunatelly the content of those apps is dynamic, so AdSense can not 
analyze it; and additionally, some Google hosts (as appspot.com) are nor 
valid to use (for analysis) with AdSense.

The firts obstacule I had to resolve was to get the AdSense account. In 
order to avoid buying hosts, domains, etc. I decided to use the Google 
Sites option, There I put some contet explaining my web app and enabled the 
"Use AdSense" option in the site. after a couple of days, AdSense system 
accepted my content as valid for get ads to show. (Resuming, the first 
thing you need is some static web content to AdSense to analyze, as a 
webpage, or a blog, Google has some special places to get the AdSense 
acccount as Sites or Youtube).

After it, what I have to do (I've not gotten time enough to do this yet) is 
to copy some html code from the static site to my dynamic app, I'm not sure 
how it will reult, but I'm gonna being telling it in the thread.

Thanks to everybody.

-- 
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: How to put ads in my Google App Engine application?

2013-03-26 Thread Miguel Alfonso Varela Fonseca
Hi there.

Finally, after playing a lot with my pages content, I've finally gotten an
AdSense account, I've not tryed to pu the add in my app, but as soon as I'd
donne that, I'll tell you how it was. Vinny, thanks again.


2013/3/10 Miguel Alfonso Varela Fonseca 

> Thanks, Vinny, thats really more clarificant and a bit more concrete than
> all other answers i've foud, I'll be trying your suggestions during this
> week, I'll be talking about my results. ;)
>
> Thanks a lot.
>
>
> 2013/3/8 Vinny P 
>
>>
>>
>>
>> On Fri, Mar 8, 2013 at 2:42 PM, Miguel Alfonso Varela Fonseca <
>> miguel.var...@savantti.com> wrote:
>>
>>>  if my web site is actually a dynamic app, will not be content to
>>> analize (the *"**insufficient content"* issue from other posts).
>>>
>>
>> There are ways around this; the Adsense robot doesn't inspect content
>> loaded via Javascript. When I was writing GWT applications, I encountered
>> the same problem. See
>> https://groups.google.com/forum/?fromgroups=#!topic/Google-Web-Toolkit/KmSGUpLhInY
>>  for
>> an example solution to this (essentially you have to create a static site
>> for Google/Bing/etc to index).
>>
>> On Fri, Mar 8, 2013 at 2:42 PM, Miguel Alfonso Varela Fonseca <
>> miguel.var...@savantti.com> wrote:
>>
>>> 2. my app is hosted in GAE (by google), and *AdSense denies those
>>> google hosts*. That way, it is not as exactly as GAE is irrelevant for
>>> AdSense.
>>>
>>>
>> Ah, then you're using an [app-id].appspot.com domain. You need to get
>> your own domain name. You'll have to buy one from NameCheap or another
>> domain registrar. Or, I believe you can get .tk domains for free, you might
>> want to look into that.
>>
>> On Fri, Mar 8, 2013 at 2:42 PM, Miguel Alfonso Varela Fonseca <
>> miguel.var...@savantti.com> wrote:
>>
>>> I've tried to use AdSense for Google Sites and Blogger but it simply
>>> allows me to add AdSense in those services but not so in my GAE app. I've
>>> seen the question you suggested, but it talks about using the AdSense
>>> gotten from who knows where inside a span. It would be more userfull if I
>>> got an AdSense aproved account to use with my app.
>>>
>>>
>> You're not going to get an Adsense account without your own domain name.
>> Once you do, they'll give you a scrap of Javascript that you can then embed
>> into your dynamic app (that's what they're talking about, they're placing
>> the Adsense JS inside a span).
>>
>> -Vinny P
>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "Google App Engine" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/google-appengine/IzwAbWfCJbE/unsubscribe?hl=en
>> .
>> To unsubscribe from this group and all its topics, 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.
>>
>>
>>
>
>
>
> --
>
> Miguel Alfonso Varela Fonseca.
> CTO - Director de Tecnología
> Móvil: +57(301)5794157 Oficina: +57(1)7949929
> Dirección: Cr 3 No. 1-02 – Gachancipá, Cundinamarca. Colombia
> e-Mail: miguel.var...@savantti.com
> www.savantti.com
>
> NOTA CONFIDENCIAL: La información contenida en este E-mail es confidencial
> y sólo puede ser utilizada por el individuo o la compañía a la cual está
> dirigido. Si no es el receptor autorizado, cualquier retención, difusión,
> distribución o copia de este mensaje es prohibida y será sancionada por la
> ley. Si por error recibe este mensaje, por favor notificarnos y eliminarlo
> inmediatamente.
>



-- 

Miguel Alfonso Varela Fonseca.
CTO - Director de Tecnología
Móvil: +57(301)5794157 Oficina: +57(1)7949929
Dirección: Cr 3 No. 1-02 – Gachancipá, Cundinamarca. Colombia
e-Mail: miguel.var...@savantti.com
www.savantti.com

NOTA CONFIDENCIAL: La información contenida en este E-mail es confidencial
y sólo puede ser utilizada por el individuo o la compañía a la cual está
dirigido. Si no es el receptor autorizado, cualquier retención, difusión,
distribución o copia de este mensaje es prohibida y será sancionada por la
ley. Si por error recibe este mensaje, por favor notificarnos y eliminarlo
inmediatamente.

-- 
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: Anyone using EU-datacenter option outside Premier Accounts?

2013-03-19 Thread Miguel PersonToVehicle
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.




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

2013-03-18 Thread 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.




Re: [google-appengine] Re: How to put ads in my Google App Engine application?

2013-03-10 Thread Miguel Alfonso Varela Fonseca
Thanks, Vinny, thats really more clarificant and a bit more concrete than
all other answers i've foud, I'll be trying your suggestions during this
week, I'll be talking about my results. ;)

Thanks a lot.


2013/3/8 Vinny P 

>
>
>
> On Fri, Mar 8, 2013 at 2:42 PM, Miguel Alfonso Varela Fonseca <
> miguel.var...@savantti.com> wrote:
>
>>  if my web site is actually a dynamic app, will not be content to analize
>> (the *"**insufficient content"* issue from other posts).
>>
>
> There are ways around this; the Adsense robot doesn't inspect content
> loaded via Javascript. When I was writing GWT applications, I encountered
> the same problem. See
> https://groups.google.com/forum/?fromgroups=#!topic/Google-Web-Toolkit/KmSGUpLhInY
>  for
> an example solution to this (essentially you have to create a static site
> for Google/Bing/etc to index).
>
> On Fri, Mar 8, 2013 at 2:42 PM, Miguel Alfonso Varela Fonseca <
> miguel.var...@savantti.com> wrote:
>
>> 2. my app is hosted in GAE (by google), and *AdSense denies those google
>> hosts*. That way, it is not as exactly as GAE is irrelevant for AdSense.
>>
>>
> Ah, then you're using an [app-id].appspot.com domain. You need to get
> your own domain name. You'll have to buy one from NameCheap or another
> domain registrar. Or, I believe you can get .tk domains for free, you might
> want to look into that.
>
> On Fri, Mar 8, 2013 at 2:42 PM, Miguel Alfonso Varela Fonseca <
> miguel.var...@savantti.com> wrote:
>
>> I've tried to use AdSense for Google Sites and Blogger but it simply
>> allows me to add AdSense in those services but not so in my GAE app. I've
>> seen the question you suggested, but it talks about using the AdSense
>> gotten from who knows where inside a span. It would be more userfull if I
>> got an AdSense aproved account to use with my app.
>>
>>
> You're not going to get an Adsense account without your own domain name.
> Once you do, they'll give you a scrap of Javascript that you can then embed
> into your dynamic app (that's what they're talking about, they're placing
> the Adsense JS inside a span).
>
> -Vinny P
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Google App Engine" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-appengine/IzwAbWfCJbE/unsubscribe?hl=en
> .
> To unsubscribe from this group and all its topics, 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.
>
>
>



-- 

Miguel Alfonso Varela Fonseca.
CTO - Director de Tecnología
Móvil: +57(301)5794157 Oficina: +57(1)7949929
Dirección: Cr 3 No. 1-02 – Gachancipá, Cundinamarca. Colombia
e-Mail: miguel.var...@savantti.com
www.savantti.com

NOTA CONFIDENCIAL: La información contenida en este E-mail es confidencial
y sólo puede ser utilizada por el individuo o la compañía a la cual está
dirigido. Si no es el receptor autorizado, cualquier retención, difusión,
distribución o copia de este mensaje es prohibida y será sancionada por la
ley. Si por error recibe este mensaje, por favor notificarnos y eliminarlo
inmediatamente.

-- 
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: How to put ads in my Google App Engine application?

2013-03-08 Thread Miguel Alfonso Varela Fonseca
Hi, Vinny, thanks for your answer.

As I said, I have an *application*, not a website. the "normal tutorial" of
AdSense if for *web sites*. That way, those tutorials are *not usefull* for
me. In adition, following the normal tutorial there are two issues. 1. It
requires a website to analize the posible ads to use, and if my web site is
actually a dynamic app, will not be content to analize (the *"**insufficient
content"* issue from other posts). 2. my app is hosted in GAE (by google),
and *AdSense denies those google hosts*. That way, it is not as exactly as
GAE is irrelevant for AdSense.

I've tried to use AdSense for Google Sites and Blogger but it simply allows
me to add AdSense in those services but not so in my GAE app. I've seen the
question you suggested, but it talks about using the AdSense gotten from
who knows where inside a span. It would be more userfull if I got an
AdSense aproved account to use with my app.

Thanks again for your answer.


2013/3/8 Vinny P 

> GAE is simply a hosting service. Whether or not you use GAE is completely
> irrelevant to Adsense. If you want to put Adsense ads on your site, just
> follow the normal tutorial for web sites.
>
> Here's a similar question, and a similar answer given previously:
> https://groups.google.com/forum/#!topic/google-appengine/DPMKfp_hexo
>
> -Vinny
>
>
> On Friday, March 8, 2013 8:47:24 AM UTC-6, Miguel Alfonso Varela Fonseca
> wrote:
>>
>>
>> Hi everybody.
>>
>> My question is really simple: *How can I put ads into my GAE application?
>> *
>>
>> I've developed an interesting application in the google app engine (GAE)
>> plataform and I want to put ads in that in the same way AdSense does or the
>> ads you find in free Android aplications.
>>
>> I've search in some Internet forums but I'm not being able to find a
>> concrete or clear answer, even, I'm not sure if GAE policies allow me to
>> put those ads in my app, but independently of it, I want to know is *How
>> can I put ads into my GAE application?*
>> *
>> *
>> Additionally, I've seen AdSense options, It is intended for like static
>> web sites, pages, portals, etc, and AdMob is for mobile apps like Android,
>> IOs, etc. But no one of them is oriented for GAE Apps. I hope a really
>> clear answer from you. (because answers I've found are like: "yes you can",
>> or "following instructions of blah")
>>
>> Thanks a lot.
>>
>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "Google App Engine" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/google-appengine/IzwAbWfCJbE/unsubscribe?hl=en
> .
> To unsubscribe from this group and all its topics, 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.
>
>
>



-- 

Miguel Alfonso Varela Fonseca.
CTO - Director de Tecnología
Móvil: +57(301)5794157 Oficina: +57(1)7949929
Dirección: Cr 3 No. 1-02 – Gachancipá, Cundinamarca. Colombia
e-Mail: miguel.var...@savantti.com
www.savantti.com

NOTA CONFIDENCIAL: La información contenida en este E-mail es confidencial
y sólo puede ser utilizada por el individuo o la compañía a la cual está
dirigido. Si no es el receptor autorizado, cualquier retención, difusión,
distribución o copia de este mensaje es prohibida y será sancionada por la
ley. Si por error recibe este mensaje, por favor notificarnos y eliminarlo
inmediatamente.

-- 
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] How to put ads in my Google App Engine application?

2013-03-08 Thread Miguel Alfonso Varela Fonseca

Hi everybody.

My question is really simple: *How can I put ads into my GAE application?*

I've developed an interesting application in the google app engine (GAE) 
plataform and I want to put ads in that in the same way AdSense does or the 
ads you find in free Android aplications.

I've search in some Internet forums but I'm not being able to find a 
concrete or clear answer, even, I'm not sure if GAE policies allow me to 
put those ads in my app, but independently of it, I want to know is *How 
can I put ads into my GAE application?*
*
*
Additionally, I've seen AdSense options, It is intended for like static web 
sites, pages, portals, etc, and AdMob is for mobile apps like Android, IOs, 
etc. But no one of them is oriented for GAE Apps. I hope a really clear 
answer from you. (because answers I've found are like: "yes you can", or 
"following instructions of blah")

Thanks a lot.

-- 
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] DEPLOYING OVER EU DATACENTERS WITHOUT PREMIUM ACCOUNT

2013-02-26 Thread Miguel PersonToVehicle
Hi,

I filled the form to get the EU allocation feature for our GAE applications 
almost 2 weeks ago- waiting for the response. It's a really good movement 
from Google not requiring the Premium account to deploy in EU as the legal 
framework here is a big issue.

I'd appreciate if anyone could comment anything about the experience on 
getting the Google approval: timing and chances to be accepted. Also if 
there is some way to track the request as I haven´t received anything, not 
even an ACK.

We are willing to deploy our apps as soon as possible and want to do it 
directly in EU datacenters to avoid future migrations,

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




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

2013-02-20 Thread Miguel PersonToVehicle
Hi,

I'm just filled the form to get the EU allocation feature for our GAE 
applications- waiting for the response. It's a really good movement from 
Google not requiring the Premium account to deploy in EU as the legal 
framework here is a big issue.

I'd appreciate if anyone could comment anything about the experience on 
getting the Google approval: timing and chances to be accepted.

We are willing to deploy our apps as soon as possible and want to do it 
directly in EU datacenters to avoid future migrations,

Many 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] Re: 400 bad request

2013-01-08 Thread Miguel M.
Same issue here. 

I've download photo-sharing-demo app from tutorial section but still 
getting this error every tyme I try to upload it to my App Engine account. 
This happens also with a simple Hello World application. None of them allow 
uploading and throw Error 400.

Here's the ouput:

Unable to update:
com.google.appengine.tools.admin.HttpIoException: Error posting to URL: 
https://appengine.google.com/api/appversion/create?app_id=x2-tokyo-carving-k&version=1&;
400 Bad Request
Invalid runtime or the current user is not authorized to use it.

at 
com.google.appengine.tools.admin.AbstractServerConnection.send1(AbstractServerConnection.java:293)
at 
com.google.appengine.tools.admin.AbstractServerConnection.send(AbstractServerConnection.java:253)
at 
com.google.appengine.tools.admin.AbstractServerConnection.post(AbstractServerConnection.java:232)
at 
com.google.appengine.tools.admin.AppVersionUpload.send(AppVersionUpload.java:644)
at 
com.google.appengine.tools.admin.AppVersionUpload.beginTransaction(AppVersionUpload.java:449)
at 
com.google.appengine.tools.admin.AppVersionUpload.doUpload(AppVersionUpload.java:124)
at 
com.google.appengine.tools.admin.AppAdminImpl.doUpdate(AppAdminImpl.java:371)
at 
com.google.appengine.tools.admin.AppAdminImpl.update(AppAdminImpl.java:53)
at 
com.google.appengine.tools.admin.AppCfg$UpdateAction.execute(AppCfg.java:1072)
at com.google.appengine.tools.admin.AppCfg.(AppCfg.java:219)
at com.google.appengine.tools.admin.AppCfg.(AppCfg.java:102)
at com.google.appengine.tools.admin.AppCfg.main(AppCfg.java:98)
com.google.appengine.tools.admin.AdminException: Unable to update app: 
Error posting to URL: 
https://appengine.google.com/api/appversion/create?app_id=x2-tokyo-carving-k&version=1&;
400 Bad Request
Invalid runtime or the current user is not authorized to use it.

at 
com.google.appengine.tools.admin.AppAdminImpl.doUpdate(AppAdminImpl.java:376)
at 
com.google.appengine.tools.admin.AppAdminImpl.update(AppAdminImpl.java:53)
at 
com.google.appengine.tools.admin.AppCfg$UpdateAction.execute(AppCfg.java:1072)
at com.google.appengine.tools.admin.AppCfg.(AppCfg.java:219)
at com.google.appengine.tools.admin.AppCfg.(AppCfg.java:102)
at com.google.appengine.tools.admin.AppCfg.main(AppCfg.java:98)
Caused by: com.google.appengine.tools.admin.HttpIoException: Error posting 
to URL: 
https://appengine.google.com/api/appversion/create?app_id=x2-tokyo-carving-k&version=1&;
400 Bad Request
Invalid runtime or the current user is not authorized to use it.

at 
com.google.appengine.tools.admin.AbstractServerConnection.send1(AbstractServerConnection.java:293)
at 
com.google.appengine.tools.admin.AbstractServerConnection.send(AbstractServerConnection.java:253)
at 
com.google.appengine.tools.admin.AbstractServerConnection.post(AbstractServerConnection.java:232)
at 
com.google.appengine.tools.admin.AppVersionUpload.send(AppVersionUpload.java:644)
at 
com.google.appengine.tools.admin.AppVersionUpload.beginTransaction(AppVersionUpload.java:449)
at 
com.google.appengine.tools.admin.AppVersionUpload.doUpload(AppVersionUpload.java:124)
at 
com.google.appengine.tools.admin.AppAdminImpl.doUpdate(AppAdminImpl.java:371)
... 5 more


El lunes, 31 de diciembre de 2012 15:20:34 UTC+1, Akshay Pakanati escribió:
>
> thank you for replying..
> here is my appengine-web.xml
>
> 
> http://appengine.google.com/ns/1.0";>
>   cvsrportal
>   2
>
>   
>   true
>
>   
>   
>  value="WEB-INF/logging.properties"/>
>   
>
>   
> true
> 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/98s06m4XsWEJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] DKIM not being verified

2012-09-16 Thread Miguel
Hi,
Do you know if there is some problem verifying DKIM when you set ti up?
I have been trying for a week now on 2 different domains and it has been 
imposible.
I have added the TXT records on my domain and when I 
click authenticate doesn't work.

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/40deogtGxEAJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Channel API not working in production

2012-08-31 Thread Miguel Alfonso Varela Fonseca
Hi All.

I've recently faced the same problem. I've implemented some collaborative 
work on my app. I've used the Channel API in dev mode and it works really 
fine. After deploy, I've tried to do the same actions as in development, 
but the "update" in the other client is never recieved. I've added some 
logs to my code and I find the lines next lines are reached.

final ChannelMessage channelMessage = new ChannelMessage(clientId, 
myMessage);
ChannelServiceFactory.getChannelService().sendMessage(channelMessage);

After this, on the client side nothing happens.

In the App Engine console, I don't find none "warning", "error", or even, 
"info" logs related to Channel API (Just logs from server I've added), So I 
really don't know the cause of the failure.

I've got Channel API working on a two weeks deploy, the actual version 
works fine in dev mode, and the actual version has the same configuration 
of the Channel API, so, I think, the issue is no related to my code (I 
hope).

I've read in some threads Channel API presented some production issues some 
time ago. How can I know if there is a new issue on the whole service?

Please, this release is really important to my clients, so I hope really 
quick answares.

Thank you so much.

PD. in StackOverflow I've not found nothig related or usefull, even less in 
the 
https://groups.google.com/forum/?fromgroups#!topic/google-appengine/Z6XN_64cA7w 
therad. 
regardless of platform, the really important things are the answers.



El miércoles, 14 de marzo de 2012 14:42:44 UTC-5, Ikai Lan (Google) 
escribió:
>
> Praveen,
>
> Try asking this question on StackOverflow:
>
>
> https://groups.google.com/forum/?fromgroups#!topic/google-appengine/Z6XN_64cA7w
>
> Also, it would be helpful to provide more details when you do. "It sucks" 
> is terrible information. That kind of feedback is not actionable.
>
> --
> Ikai Lan 
> Developer Programs Engineer, Google App Engine
> plus.ikailan.com
>
>
>
> On Mon, Mar 12, 2012 at 3:58 AM, praveen 
> > wrote:
>
>> I have implement struts based chat application using channel API
>> trying to implement the chat application., The Sample struts chat
>> application works in local enviroinment .But in production
>> enviroinment totally it sucks.Please help
>>
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Google App Engine" group.
>> To post to this group, send email to 
>> google-a...@googlegroups.com
>> .
>> To unsubscribe from this group, send email to 
>> google-appengi...@googlegroups.com .
>> For more options, visit this group at 
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/v4Rq1Efe07AJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Python NDB StructuredProperty for Java

2011-11-19 Thread Miguel Vitorino

Hi,

Does anyone know is there is something similar to the NDB 
StructuredProperty<https://docs.google.com/document/d/1dsx1hihmMXMJm8wIRu49tJR-KEng80o3wkg4Nlbqn-w/edit?hl=en&ndplr=1#heading=h.1ph4n6-eddoo4>
 for 
Java?

Miguel

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/MOdYc4Hyfq8J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: _ah/login_redir 500 server error

2011-09-16 Thread Miguel
The same to me!

HELP!! ..

On Sep 16, 12:49 am, Vivek Madurai 
wrote:
> we are using federated login to enable openid authentication,
>
> It throws the below errror when we try to access via google
> authentication,http://xyz.appspot.com/_ah/login_required?openid=google.com/accounts/...
>
> Error: Server Error
> The server encountered an error and could not complete your request.
> If the problem persists, please report your problem and mention this
> error message and the query that caused it.
>
> but with yahoo it works 
> fine,http://xyz.appspot.com/_ah/login_required?openid=yahoo.com&continue=
>
> it happens only from today morning
> any clue about the issue
>
> Vivek

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



[google-appengine] Windows XP__GoogleAppEngine-1.5.2.msi___python compatibility

2011-07-24 Thread Miguel Arnedo
Hi,

 First of all, thanks for the time invested in reading this. Simple
question ;)

 I just would like to know the Python version compatible with
GoogleAppEngine1.5.2.msi. If it is easier to find a compatibility
match with Python, with another version, please let me know, as long
is a .msi version ;)

 Is it Python 2.5. ? When I go to

http://www.python.org/download/releases/2.5/

 it recommends the version 2.6, but I heard that the version 2.5 is
the only one compatible with GoodleAppEngine. Am I wrong ?

 I would like an .msi Python package, for my windows XP... and ideally
a good GoogleAppEngine + Python version compatible with latest windows
version, so I do not have to look for new version compatibilities
whenever I get a new Windows computer... ;)

 THANK YOU

 Miguel

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



[google-appengine] Re: Java Remote API - getting 302 error

2011-07-18 Thread Miguel Barrero
I have the same issue, because error is 302 (http redirection), I
wonder if it's related to authentication? any ideas?

Miguel

On 12 jul, 10:59, Muneer Malik  wrote:
> any clues /  suggestion here ?
>
> not sure if my query was successfully posted !
>
> thanks
>
>
>
>
>
>
>
>
>
> On Monday, July 11, 2011, Muneer Malik  wrote:
> > Did anyone try this yet?
> > any ideas here?
> > Thanks
>
> > On Mon, Jul 11, 2011 at 10:51 AM, Muneer Malik  wrote:
> > Exception in thread "main" java.io.IOException: can't get appId from remote 
> > api; status code = 302
> >    at 
> > com.google.appengine.tools.remoteapi.RemoteApiInstaller.getAppIdFromServer( 
> > RemoteApiInstaller.java:217)
> >    at 
> > com.google.appengine.tools.remoteapi.RemoteApiInstaller.loginImpl(RemoteApi 
> > Installer.java:199)      at 
> > com.google.appengine.tools.remoteapi.RemoteApiInstaller.login(RemoteApiInst 
> > aller.java:165)
>
> >    at 
> > com.google.appengine.tools.remoteapi.RemoteApiInstaller.install(RemoteApiIn 
> > staller.java:86) at RemoteExample.main(RemoteExample.java:29)
>
> > Any clues?
> > Best,Muneer
>
> > --
> > Confidentiality Notice
> > ---
>
> > THIS INFORMATION IS INTENDED ONLY FOR THE USE OF THE ADDRESSEE AND MAY 
> > CONTAIN INFORMATION THAT IS PRIVILEGED, CONFIDENTIAL AND EXEMPT FROM 
> > DISCLOSURE UNDER APPLICABLE LAW.  IF YOU ARE NOT THE INTENDED RECIPIENT, OR 
> > THE EMPLOYEE OR AGENT RESPONSIBLE FOR DELIVERING THIS MESSAGE TO THE 
> > INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, 
> > DISTRIBUTION OR COPYING OF THE COMMUNICATION IS STRICTLY PROHIBITED.  IF 
> > YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE NOTIFY IMMEDIATELY AT 
> > tutti...@gmail.com OR BY TELEPHONE AT 817-458-1764.
>
> > THANK YOU.
>
> > --
> > Confidentiality Notice
> > ---
>
> > THIS INFORMATION IS INTENDED ONLY FOR THE USE OF THE ADDRESSEE AND MAY 
> > CONTAIN INFORMATION THAT IS PRIVILEGED, CONFIDENTIAL AND EXEMPT FROM 
> > DISCLOSURE UNDER APPLICABLE LAW.  IF YOU ARE NOT THE INTENDED RECIPIENT, OR 
> > THE EMPLOYEE OR AGENT RESPONSIBLE FOR DELIVERING THIS MESSAGE TO THE 
> > INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION, 
> > DISTRIBUTION OR COPYING OF THE COMMUNICATION IS STRICTLY PROHIBITED.  IF 
> > YOU HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE NOTIFY IMMEDIATELY AT 
> > tutti...@gmail.com OR BY TELEPHONE AT 817-458-1764.
>
> > THANK YOU.
>
> --
> Confidentiality Notice
> ---
>
> THIS INFORMATION IS INTENDED ONLY FOR THE USE OF THE ADDRESSEE AND MAY
> CONTAIN INFORMATION THAT IS PRIVILEGED, CONFIDENTIAL AND EXEMPT FROM
> DISCLOSURE UNDER APPLICABLE LAW.  IF YOU ARE NOT THE INTENDED RECIPIENT, OR
> THE EMPLOYEE OR AGENT RESPONSIBLE FOR DELIVERING THIS MESSAGE TO THE
> INTENDED RECIPIENT, YOU ARE HEREBY NOTIFIED THAT ANY DISSEMINATION,
> DISTRIBUTION OR COPYING OF THE COMMUNICATION IS STRICTLY PROHIBITED.  IF YOU
> HAVE RECEIVED THIS COMMUNICATION IN ERROR, PLEASE NOTIFY IMMEDIATELY AT
> tutti...@gmail.com OR BY TELEPHONE AT 817-458-1764.
>
> THANK YOU.

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



Re: [google-appengine] Slow deploys, corrupted app

2011-05-31 Thread Miguel Andrés Yáñez Barreto
1. Forgot to mention I'm using python
2. the appid and version were not (initially changed) from what I had before, 
when deploys worked successfully..
3. I did change the version after seeing the 404 error in the first version, to 
see if I could get past it by uploading a new version. 
4. Since my last attempt, 10 minutes ago, it seems to be working, with the new 
version. The deploy still took a long time.

—
Miguel Andrés Yáñez Barreto


migueland...@gmail.com (mailto:migueland...@gmail.com)

Edsger Wybe Dijkstra wrote on EWD1305 
(http://www.cs.utexas.edu/~EWD/ewd13xx/EWD1305.PDF):
The required techniques of effective reasoning are pretty formal, but as long 
as programming is done by people that don't master them, the software crisis 
will remain with us and will be considered an incurable disease. And you know 
what incurable diseases do: they invite the quacks and charlatans in, who in 
this case take the form of Software Engineering gurus.



Le martes 31 de mayo de 2011 à 22:22, renu sathish a écrit :

> ur trying to upload ur application, that time u face the problem. the app 
> engine must know who is the server. so u should check appengine web.xml 
> (http://web.xml) default it load the server name when u deployed. second u 
> check verify your project setting correct version and and correct server name 
> that must be check.
> 
> 
> 
> or if u or using client server application please check web.xml 
> (http://web.xml) for u calling the server or not
> 
> 
> Thank u
> 
>  -- 
>  You received this message because you are subscribed to the Google Groups 
> "Google App Engine" group.
>  To post to this group, send email to google-appengine@googlegroups.com 
> (mailto:google-appengine@googlegroups.com).
>  To unsubscribe from this group, send email to 
> google-appengine+unsubscr...@googlegroups.com 
> (mailto:google-appengine+unsubscr...@googlegroups.com).
>  For more options, visit this group at 
> http://groups.google.com/group/google-appengine?hl=en.

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



Re: [google-appengine] Slow deploys, corrupted app

2011-05-31 Thread Miguel Andrés Yáñez Barreto
I'm sorry Renu, I did not understand what you said. could you please explain 
what you meant?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/X3I1LWFlb1hjLWtK.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Slow deploys, corrupted app

2011-05-31 Thread Miguel Andrés Yáñez Barreto
I am having VERY slow deploys today, as shown below.  What's worse, now my 
deployed app does not work anymore.

   Starting update of app: **, version: 2

Scanning files on local disk.

Cloning 2 static files.

Cloning 59 application files.

Uploading 1 files and blobs.

Uploaded 1 files and blobs

Precompilation starting.

Precompilation completed.

Starting deployment.

Checking if deployment succeeded.

Will check again in 1 seconds.

Checking if deployment succeeded.

Will check again in 2 seconds.

Checking if deployment succeeded.

Will check again in 4 seconds.

Checking if deployment succeeded.

Will check again in 8 seconds.

Checking if deployment succeeded.

Will check again in 16 seconds.

Checking if deployment succeeded.

Will check again in 32 seconds.

Checking if deployment succeeded.

Will check again in 60 seconds.

Checking if deployment succeeded.

Will check again in 60 seconds.

Checking if deployment succeeded.

Will check again in 60 seconds.

Checking if deployment succeeded.

Will check again in 60 seconds.

Checking if deployment succeeded.

Will check again in 60 seconds.

Checking if deployment succeeded.

Will check again in 60 seconds.

Checking if deployment succeeded.

Will check again in 60 seconds.

Checking if deployment succeeded.

Will check again in 60 seconds.

Checking if deployment succeeded.

Will check again in 60 seconds.

Checking if deployment succeeded.

Will check again in 60 seconds.


When I try to access the app, it says:


Error: Not FoundThe requested URL / was not found on this server.

My application logs don't show any requests after the problem started 
happening!! Uploaded with a new version and I get the same problem.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/QmVkdjFocno2VE1K.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Need to map a subfolder to a owned domain

2011-01-07 Thread Miguel
Hi,
I am trying to do something that seems impossible: I am developing a
Java GAE application in .appspot.com account.
With a RESTful approach I am creating several "web-applications" to
these urls:
- .appspot.com/applications/
- .appspot.com/applications/
- .appspot.com/applications/
- ..

At this point I have a question: is there a way to map the domain
www.myapplication1.com to .appspot.com/applications/?

I succeeded:
- to map www.myapplication.com to .appspot.com (with the Google
Apps standard service)
- to redirect www.myapplication1.com to .appspot.com/
applications/ (with the enom.com advanced service)

.. but I don't really want to just "redirect" the http call: I would
like to complete hide the appspot domain with my own domain.

>From what I understood about the DNS "CNAME" I should create a
subdomain of .appspot.com for each "web-applications", but I
really don't know how to do this in Java. I saw some tutorials only
for python.

Thank you very much,
Miguel

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



[google-appengine] Re: REST web service client in gae

2010-12-21 Thread José Miguel Bataller
Hi Robert,

I am going to have a look to the URL Fetch Java Api.

Thanks for the info,

Jose

On Dec 20, 8:53 pm, Robert Kluin  wrote:
> Hi José,
>   Yes, you can consume REST webservices using an App Engine app.
>      http://code.google.com/appengine/docs/java/urlfetch/
>
>   The Python gdata libs have been modified to use URLFetch on App
> Engine, I suspect the Java libs have as well.
>
> Robert
>
> 2010/12/20 José Miguel Bataller :
>
> > Hi all,
>
> > My situation is the following, I am able to run restful web services
> > using the wink library for Java in the google appengine without any
> > problem and  I am having problems when I try to go one step further,
> > trying to consume remote restful web services with JSON responses from
> > inside my restful web services.
>
> > Is it possible to use a REST web service client to connect to 3rd
> > party apps in google appengine?
>
> > I have seen in the official page of Google: "WillItPlayInJava" that is
> > not possible (http://code.google.com/p/googleappengine/wiki/
> > WillItPlayInJava).
>
> > However, in that page, it says that the google appengine supports the
> > Google Data client library.  I haven't tried this library, has anybody
> > tried and can confirm that it works?
>
> > How is possible that the google data client library is compatible with
> > the appengine, which means that the appengine is able to establish
> > http connections with remote servers and a restful web service client
> > does not work when it is exactly the same?
>
> > Thanks.
>
> > --
> > You received this message because you are subscribed to the Google Groups 
> > "Google App Engine" group.
> > To post to this group, send email to google-appeng...@googlegroups.com.
> > To unsubscribe from this group, send email to 
> > google-appengine+unsubscr...@googlegroups.com.
> > For more options, visit this group 
> > athttp://groups.google.com/group/google-appengine?hl=en.

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



[google-appengine] REST web service client in gae

2010-12-20 Thread José Miguel Bataller
Hi all,

My situation is the following, I am able to run restful web services
using the wink library for Java in the google appengine without any
problem and  I am having problems when I try to go one step further,
trying to consume remote restful web services with JSON responses from
inside my restful web services.

Is it possible to use a REST web service client to connect to 3rd
party apps in google appengine?

I have seen in the official page of Google: "WillItPlayInJava" that is
not possible (http://code.google.com/p/googleappengine/wiki/
WillItPlayInJava).

However, in that page, it says that the google appengine supports the
Google Data client library.  I haven't tried this library, has anybody
tried and can confirm that it works?

How is possible that the google data client library is compatible with
the appengine, which means that the appengine is able to establish
http connections with remote servers and a restful web service client
does not work when it is exactly the same?

Thanks.


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



[google-appengine] python 2.6...

2010-04-13 Thread Lord Gustavo Miguel Angel
hi.

i have install ubuntu 9.10 with python 2.6
my question:
app-engine work with version 2.6?

thank's

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



Re: [google-appengine] Re: Eclipse: no Google menu options after update to 1.3.0

2009-12-21 Thread Miguel Méndez
Can you look in the Error Log (Window > Show Views > Error Log) for clues?
 If you don't have that view then you can look in the
${YOUR_WORKSPACE_PATH}/.metadata/.log file.

On Mon, Dec 21, 2009 at 1:16 AM, MiloDC  wrote:

> Broken for me, as well.  No Google entries in the Preferences dialog
> or any menu.  No longer able to deploy Google Wave projects.
>
>
>
> On Dec 19, 2:52 am, Delo  wrote:
> > Hi,
> >
> > I am running an Eclipse EE 3.5 on Windows Vista (Build id:
> > 20090920-1017) and I have successfully used the GAE plugin 1.2.6 and
> > GWT plugin 1.7.1. My application is running on GAE.
> >
> > Yesterday I updated to GAE 1.3.0 and GWT 2.0.0 via "Help->Install new
> > software". After the update my project showed errors on all Google
> > related classes ("import cannot be resolved"). The links to the google
> > libs are shown as "com.google.appengine.eclipse.core.GAE_CONTAINER"
> > and "com.google.gwt.eclipse.core.GWT_CONTAINER". Furthermore, the
> > Google menu in the preferences dialog is gone and in the "New
> > project..." dialog there is no option to create a new web application
> > project, the complete Google category is missing. But: if I go to
> Help->About Eclipse->Installation details->Installed software, all three
> >
> > plugins are listed correctly with the newest version (GAE plugin is
> > dated 20091214, GWT and Google plugins are dated 20091206).
> >
> > I have already tried to uninstall the Google plugin, the GAE plugin
> > and the GWT plugin and to reinstall them - no success. I have
> > uninstalled them again, deleted all Google related entries in C:\Users
> > \Delo\.eclipse\org.eclipse.platform_3.5.0_1709980481\features and C:
> > \Users\Delo\.eclipse/org.eclipse.platform_3.5.0_1709980481\plugins,
> > deleted the configuration directory, started Eclipse with the "-clean"
> > option and installed again, but no success. Still the same: plugins
> > are shown as correctly installed but no Google options anywhere.
> >
> > Does anybody have similar problems or can anybody give me a hint what
> > I could try next?
> >
> > Thanks in advance,
> > Delo
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>
>


-- 
Miguel

--

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




Re: [google-appengine] How to update to SDK 1.3.0 via Eclipse?

2009-12-17 Thread Miguel Méndez
Sorry for the confusion.  In order to keep eclipse from deleting older SDKs
when you install a newer one (and breaking your existing projects), we push
new SDKs like 1.3.0 out as new features.  We need to clarify this in the
update notification.

On Thu, Dec 17, 2009 at 1:18 AM, Amir Michail  wrote:

> The standard update mechanism doesn't work on the mac with Eclipse
> Galileo.
>
> Amir
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>
>


-- 
Miguel

--

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




[google-appengine] [ Where are my error? ] Autoresponsed

2009-03-19 Thread Lord Gustavo Miguel Angel

Sorry,

When i save my file (holamundo.py) editor "Intype" is
in  "ANSI FILE" and CR...

Incorrect: "CR"
Correct: "CR + LF"

Now my litle project is run.

Thank´s 


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



[google-appengine] [ where are my error? ]

2009-03-19 Thread Lord Gustavo Miguel Angel

Hello!

Where are my error?

: invalid syntax (holamundo.py, line 1)
  args = ('invalid syntax',
(r'd:\google\trabajos\holamundo\holamundo.py', 1, 40, 'from
google.appengine.ext import webapp\rfrom goo...iAplicacion)\r\t\rif __name__
== "__main__":\r\tmain()'))
  filename = r'd:\google\trabajos\holamundo\holamundo.py'
  lineno = 1
  message = ''
  msg = 'invalid syntax'
  offset = 40
  print_file_and_line = None
  text = 'from google.appengine.ext import webapp\rfrom
goo...iAplicacion)\r\t\rif __name__ == "__main__":\r\tmain()'

Thank´s

my code:
---8< --

from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app

class paginaPrincipal(webapp.RequestHandler):
 def get(self):
  self.response.headers['Content-Type'] = 'text/plain'
  self.response.out.write('holanda')

miAplicacion = webapp.WSGIApplication(
  [('/', paginaPrincipal)],
  debug=True)

def main():
 run_wsgi_app(miAplicacion)

if __name__ == "__main__":
 main()

---8< --  


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



[google-appengine] Re: from google.appengine.ext

2009-03-19 Thread Lord Gustavo Miguel Angel
oH lan, thank´s

  - Original Message - 
  From: Ian Lewis 
  To: google-appengine@googlegroups.com 
  Sent: Wednesday, March 18, 2009 10:45 PM
  Subject: [google-appengine] Re: from google.appengine.ext


  Gustavo,

  google.appengine.ext contains a number of things not the least of which is 
the datastore api. You will probably have the most success searching the group 
archives.

  Ian


  On Thu, Mar 19, 2009 at 8:18 AM, Lord Gustavo Miguel Angel 
 wrote:

Hi,

I need information about google.appendine.ext, 
some link?

Thank´s

Gustavo.
Argentina.







  -- 
  ===
  株式会社ビープラウド  イアン・ルイス
  〒150-0012
  東京都渋谷区広尾1-11-2アイオス広尾ビル604
  email: ianmle...@beproud.jp
  TEL:03-5795-2707
  FAX:03-5795-2708
  http://www.beproud.jp/
  ===

  

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



[google-appengine] from google.appengine.ext

2009-03-18 Thread Lord Gustavo Miguel Angel
Hi,

I need information about google.appendine.ext, 
some link?

Thank´s

Gustavo.
Argentina.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: dev_appserver.py", line 55, in

2009-03-17 Thread Lord Gustavo Miguel Angel
Matthew, 
yes, i´m using started tutorial. 

  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 10:19 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 


  Do you have a .yaml file? Are you using the Getting Started tutorial?


  On Mon, Mar 16, 2009 at 8:24 PM, Lord Gustavo Miguel Angel 
 wrote:

with python 2.5.4 equal. same error.
  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 9:10 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 




  The Development Environment
  You develop and upload applications for Google App Engine using the App 
Engine software development kit (SDK).

  The SDK includes a web server application that simulates the App Engine 
environment, including a local version of the datastore, Google Accounts, and 
the ability to fetch URLs and send email directly from your computer using the 
App Engine APIs. The SDK runs on any computer with Python 2.5, and versions are 
available for Windows, Mac OS X and Linux.

  If necessary, download and install Python 2.5 for your platform from the 
Python website...

  
http://code.google.com/appengine/docs/python/gettingstarted/devenvironment.html

  You need to have Python 2.5 and you only have Python 2.4.5 installed.
   

  On Mon, Mar 16, 2009 at 8:05 PM, Lord Gustavo Miguel Angel 
 wrote:



sorry i don´t understand

  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 8:50 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 



  Don't forget the first sentence.


  On Mon, Mar 16, 2009 at 7:29 PM, Lord Gustavo Miguel Angel 
 wrote:

thank´s
But i have python 2.4.5 not 3.0

  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 6:09 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 



  I know that one of the requirements to run GAE is to have at 
least Python 2.5. Don't go running to Python 3.0 though just quite yet for GAE. 
It's not supported AFAIK.


  On Mon, Mar 16, 2009 at 3:54 PM, goosfancito 
 wrote:


hello,

OS: windows xp Sp2
version python: 2.4.5


i´m new user googe app engine. when i do

dev_appserver.py holamundo

appeserver reports

- 8< -
 File "C:\Google\google_appengine\dev_appserver.py", line 55, in

   execfile(script_path, globals())
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver_main.py"
, line 358, in 
   sys.exit(main(sys.argv))
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver_main.py"
, line 306, in main
   config, matcher = dev_appserver.LoadAppConfig(root_path, {})
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver.py", lin
e 2638, in LoadAppConfig
   raise AppConfigNotFoundError
google.appengine.tools.dev_appserver.AppConfigNotFoundError

- 8< -

Why?
Thank´s






  -- 

  M. Page-Lieberman
  mateus.just...@gmail.com






  -- 
  M. Page-Lieberman
  mateus.just...@gmail.com





  -- 
  M. Page-Lieberman
  mateus.just...@gmail.com





  -- 
  M. Page-Lieberman
  mateus.just...@gmail.com

  

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



[google-appengine] Re: dev_appserver.py", line 55, in

2009-03-16 Thread Lord Gustavo Miguel Angel
with python 2.5.4 equal. same error.
  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 9:10 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 




  The Development Environment
  You develop and upload applications for Google App Engine using the App 
Engine software development kit (SDK).

  The SDK includes a web server application that simulates the App Engine 
environment, including a local version of the datastore, Google Accounts, and 
the ability to fetch URLs and send email directly from your computer using the 
App Engine APIs. The SDK runs on any computer with Python 2.5, and versions are 
available for Windows, Mac OS X and Linux.

  If necessary, download and install Python 2.5 for your platform from the 
Python website...

  
http://code.google.com/appengine/docs/python/gettingstarted/devenvironment.html

  You need to have Python 2.5 and you only have Python 2.4.5 installed.
   

  On Mon, Mar 16, 2009 at 8:05 PM, Lord Gustavo Miguel Angel 
 wrote:



sorry i don´t understand

  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 8:50 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 


  Don't forget the first sentence.


  On Mon, Mar 16, 2009 at 7:29 PM, Lord Gustavo Miguel Angel 
 wrote:

thank´s
But i have python 2.4.5 not 3.0

  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 6:09 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 



  I know that one of the requirements to run GAE is to have at least 
Python 2.5. Don't go running to Python 3.0 though just quite yet for GAE. It's 
not supported AFAIK.


  On Mon, Mar 16, 2009 at 3:54 PM, goosfancito  
wrote:


hello,

OS: windows xp Sp2
version python: 2.4.5


i´m new user googe app engine. when i do

dev_appserver.py holamundo

appeserver reports

- 8< -
 File "C:\Google\google_appengine\dev_appserver.py", line 55, in

   execfile(script_path, globals())
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver_main.py"
, line 358, in 
   sys.exit(main(sys.argv))
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver_main.py"
, line 306, in main
   config, matcher = dev_appserver.LoadAppConfig(root_path, {})
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver.py", lin
e 2638, in LoadAppConfig
   raise AppConfigNotFoundError
google.appengine.tools.dev_appserver.AppConfigNotFoundError

- 8< -

Why?
Thank´s






  -- 

  M. Page-Lieberman
  mateus.just...@gmail.com






  -- 
  M. Page-Lieberman
  mateus.just...@gmail.com





  -- 
  M. Page-Lieberman
  mateus.just...@gmail.com

  

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



[google-appengine] Re: dev_appserver.py", line 55, in

2009-03-16 Thread Lord Gustavo Miguel Angel
jaaa
Thank´s

sorry :)
  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 9:10 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 




  The Development Environment
  You develop and upload applications for Google App Engine using the App 
Engine software development kit (SDK).

  The SDK includes a web server application that simulates the App Engine 
environment, including a local version of the datastore, Google Accounts, and 
the ability to fetch URLs and send email directly from your computer using the 
App Engine APIs. The SDK runs on any computer with Python 2.5, and versions are 
available for Windows, Mac OS X and Linux.

  If necessary, download and install Python 2.5 for your platform from the 
Python website...

  
http://code.google.com/appengine/docs/python/gettingstarted/devenvironment.html

  You need to have Python 2.5 and you only have Python 2.4.5 installed.
   

  On Mon, Mar 16, 2009 at 8:05 PM, Lord Gustavo Miguel Angel 
 wrote:



sorry i don´t understand

  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 8:50 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 


  Don't forget the first sentence.


  On Mon, Mar 16, 2009 at 7:29 PM, Lord Gustavo Miguel Angel 
 wrote:

thank´s
But i have python 2.4.5 not 3.0

  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 6:09 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 



  I know that one of the requirements to run GAE is to have at least 
Python 2.5. Don't go running to Python 3.0 though just quite yet for GAE. It's 
not supported AFAIK.


  On Mon, Mar 16, 2009 at 3:54 PM, goosfancito  
wrote:


hello,

OS: windows xp Sp2
version python: 2.4.5


i´m new user googe app engine. when i do

dev_appserver.py holamundo

appeserver reports

- 8< -
 File "C:\Google\google_appengine\dev_appserver.py", line 55, in

   execfile(script_path, globals())
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver_main.py"
, line 358, in 
   sys.exit(main(sys.argv))
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver_main.py"
, line 306, in main
   config, matcher = dev_appserver.LoadAppConfig(root_path, {})
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver.py", lin
e 2638, in LoadAppConfig
   raise AppConfigNotFoundError
google.appengine.tools.dev_appserver.AppConfigNotFoundError

- 8< -

Why?
Thank´s






  -- 

  M. Page-Lieberman
  mateus.just...@gmail.com






  -- 
  M. Page-Lieberman
  mateus.just...@gmail.com





  -- 
  M. Page-Lieberman
  mateus.just...@gmail.com

  

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



[google-appengine] Re: dev_appserver.py", line 55, in

2009-03-16 Thread Lord Gustavo Miguel Angel
sorry i don´t understand

  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 8:50 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 


  Don't forget the first sentence.


  On Mon, Mar 16, 2009 at 7:29 PM, Lord Gustavo Miguel Angel 
 wrote:

thank´s
But i have python 2.4.5 not 3.0

  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 6:09 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 


  I know that one of the requirements to run GAE is to have at least Python 
2.5. Don't go running to Python 3.0 though just quite yet for GAE. It's not 
supported AFAIK.


  On Mon, Mar 16, 2009 at 3:54 PM, goosfancito  
wrote:


hello,

OS: windows xp Sp2
version python: 2.4.5


i´m new user googe app engine. when i do

dev_appserver.py holamundo

appeserver reports

- 8< -
 File "C:\Google\google_appengine\dev_appserver.py", line 55, in

   execfile(script_path, globals())
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver_main.py"
, line 358, in 
   sys.exit(main(sys.argv))
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver_main.py"
, line 306, in main
   config, matcher = dev_appserver.LoadAppConfig(root_path, {})
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver.py", lin
e 2638, in LoadAppConfig
   raise AppConfigNotFoundError
google.appengine.tools.dev_appserver.AppConfigNotFoundError

- 8< -

Why?
Thank´s






  -- 

  M. Page-Lieberman
  mateus.just...@gmail.com






  -- 
  M. Page-Lieberman
  mateus.just...@gmail.com

  

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



[google-appengine] Re: dev_appserver.py", line 55, in

2009-03-16 Thread Lord Gustavo Miguel Angel
thank´s
But i have python 2.4.5 not 3.0

  - Original Message - 
  From: Matthew Page-Lieberman 
  To: google-appengine@googlegroups.com 
  Sent: Monday, March 16, 2009 6:09 PM
  Subject: [google-appengine] Re: dev_appserver.py", line 55, in 


  I know that one of the requirements to run GAE is to have at least Python 
2.5. Don't go running to Python 3.0 though just quite yet for GAE. It's not 
supported AFAIK.


  On Mon, Mar 16, 2009 at 3:54 PM, goosfancito  wrote:


hello,

OS: windows xp Sp2
version python: 2.4.5


i´m new user googe app engine. when i do

dev_appserver.py holamundo

appeserver reports

- 8< -
 File "C:\Google\google_appengine\dev_appserver.py", line 55, in

   execfile(script_path, globals())
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver_main.py"
, line 358, in 
   sys.exit(main(sys.argv))
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver_main.py"
, line 306, in main
   config, matcher = dev_appserver.LoadAppConfig(root_path, {})
 File "C:\Google\google_appengine\google\appengine\tools
\dev_appserver.py", lin
e 2638, in LoadAppConfig
   raise AppConfigNotFoundError
google.appengine.tools.dev_appserver.AppConfigNotFoundError

- 8< -

Why?
Thank´s






  -- 
  M. Page-Lieberman
  mateus.just...@gmail.com

  

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