Re: [google-appengine] Re: "HTTP 404 File not found" for file downloads

2012-05-11 Thread Uma Jeyachandran
Many thanks for your solution. It worked after configuring app.yaml. Thanks & Regards Umamageswari J On Fri, May 11, 2012 at 11:23 PM, Computer_Engineer wrote: > Hi Uma Jeyachandran: > *you should upload it as static file,this error because this file is > considered in the local host and GAE do

[google-appengine] Re: how to remove a kind from datastore using python

2012-05-11 Thread ttt www
On May 12, 4:17 am, Kaan Soral wrote: > Easiest: create zb_news_2 > Hard: run zb_news.all().delete() and move on thanks for your reply this is what i did. and working now i cannot access db admin, since i am in China. i need to remove some kind (table) to clean db. anybody can help? :remove

Re: [google-appengine] Re: full text search API is experimental, ready for a test drive

2012-05-11 Thread Adam Sah
(GAE team: congrats!!! on search-- please add clustered/grouped resultsto your todo list-- it's very hard to emulate such a feature at the app layer) Jeff: - this is pre-release, and if you personally can't bear that risk, then let others play beta

[google-appengine] Re: how to remove a kind from datastore using python

2012-05-11 Thread Kaan Soral
Easiest: create zb_news_2 Hard: run zb_news.all().delete() and move on -- 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/-/D51Z6xWmyBEJ. To post to thi

[google-appengine] Re: chrome https warning for unsecured content

2012-05-11 Thread astral.keenan
On Monday, November 21, 2011 10:30:02 PM UTC-5, James Gilliam wrote: > > I am using HTTPS but get the annoying caution warning (or even big red > X warning) when using the chrome browser when there is unsecured > content in the page. This can occur if even one http:// is > being used, e.g. a pr

[google-appengine] Re: chrome https warning for unsecured content

2012-05-11 Thread astral.keenan
> > I am having the same problems. My e-mail and Google voice both show that > they are insecure. I even get a banner across the screen warning me of > this. Can you at least direct me to a webpage that explains how to secure > my communications. > Thanks!!! -- You received this message

[google-appengine] Re: "HTTP 404 File not found" for file downloads

2012-05-11 Thread Computer_Engineer
Hi Uma Jeyachandran: *you should upload it as static file,this error because this file is considered in the local host and GAE doesn't find it, you should configure app.yaml and specify this * *file in it , see this link for app.yaml configuration * https://developers.google.com/appengine/docs/py

[google-appengine] Re: GAE, Django and SSL

2012-05-11 Thread Claude Vedovini
By default you don't have anything to do, just access your site with https instead of http But you can configure how ssl is handled on a per url basis in you app.yaml: https://developers.google.com/appengine/docs/python/config/appconfig#Secure_URLs On May 11, 10:00 pm, João Silva wrote: > Hi, >

[google-appengine] GAE, Django and SSL

2012-05-11 Thread João Silva
Hi, I know that GAE provides SSL traffic through appspot.com domains. But there aren't code examples that use django. My app.yaml is: application: my_app version: 1 runtime: python27 api_version: 1 threadsafe: true libraries: - name: django version: "1.3" builtins: - django_wsgi: on Does a

[google-appengine] Doing migrations

2012-05-11 Thread Aswath Satrasala
Dear All, I want to know how everyone is doing large migrations. I am not having luck with java mapreduce. I get the following exception consistently. /mapreduce/mapperCallback - RuntimeException: Couldn't find MR with job ID. Added to that, there is not enough documentation to understand all th

[google-appengine] how to remove a kind from datastore using python

2012-05-11 Thread ttt www
i create a kind using python : class zb_news(db.Model): news_date = db.DateProperty(required=True) title = db.StringProperty(required=True) news = db.TextProperty(required=True) after put some data, i need to change property. but i don't know how to change property. now i like remove

Re: [google-appengine] Re: java two request/thread that interact on the same session

2012-05-11 Thread Michael Hermus
Yes, the channel itself is one way from server to client, while the client to server communication is via normal HTTP requests. You seem to be stuck on the pattern of having two threads on the server side that need to interact directly with each other. I don't think that is correct. Your appl

[google-appengine] Re: "HTTP 404 File not found" for file downloads

2012-05-11 Thread timh
Hi The URL in your tag needs to point to either a handler or a static resource. If your getting a 404 then the URL is incorrect and does not map to either of these. T On Friday, May 11, 2012 4:44:33 PM UTC+8, Uma Jeyachandran wrote: > > Hi > > I have an application in appspot.com. When I at

[google-appengine] "HTTP 404 File not found" for file downloads

2012-05-11 Thread Uma Jeyachandran
Hi I have an application in appspot.com. When I attempting any file download using tag in html, it throws file not found error. Please suggest solution. Thank you Umamageswari -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to t

Re: [google-appengine] Re: java two request/thread that interact on the same session

2012-05-11 Thread Davide
Hi Michael, I have clicked on the link you provide and read the documentation. I have created a small project to test channel api. I can make it running. From the "main" request I can send a message to the client using the channel. The client can then respond to me. But I have seen that the re