[google-appengine] Re: WebServicess for WSDL filereading

2013-12-27 Thread Sree
Just a quick Question.. Is your wsdl exposed in internet? On Friday, 20 December 2013 18:48:58 UTC+8, chandra sekhar wrote: Hi I have created one app for wsdl file reading it is working fine on my compluter i am deploying in to app engine it is not working .please help

[google-appengine] Deadline Exceeded Error even with a TaskQueue running on a Backend

2013-12-27 Thread Roger
I'm having some issues with *Deadline Exceeded error*. Basically I'm doing some webscrapping in an URL using *Mechanize*. So when trying to perform br.open(url) I have this error HTTPException: Deadline exceeded while waiting for HTTP response from URL: my-url I have read the

[google-appengine] Re: Centralized logging to cloud storage

2013-12-27 Thread Chad Vincent
While Vinny probably has the better option, if you wanted something without a rolloff and search options, I would use Objectify and make a LogEntry object. Just parse the request, build the object, tell Objectify to write it asynchronously, and return. Should be fast and reliable, but without

[google-appengine] File Deserialization in Servlet Init()

2013-12-27 Thread Darryl Gouder
As part of an academic assignment I am developing a Java Web Application that requires the de-serialization of a Dictionary Object File in the init() method of the start up servlet. For some reason however, when pressing one of the pages buttons (and hence initiating the doPost() method) the

[google-appengine] Can i use linux command in google app

2013-12-27 Thread Shipu Ahamed
can i use linux command in google appspot or always run a python program. -- 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] No SDKs in Kepler update

2013-12-27 Thread Sekhar
Just noticed that SDKs isn't appearing in the Kepler update ( https://dl.google.com/eclipse/plugin/4.3), the Juno update shows it fine (https://dl.google.com/eclipse/plugin/4.2). Was OK the last time I checked, but is gone today. -- You received this message because you are subscribed to the

[google-appengine] Blank entity count and storage columns for Datastore Indexes

2013-12-27 Thread Anil S
Hi, In GAE Admin Console, under Datastore Indexes, all of my indexes are listed as Serving. However, few of them are blank in the Index Entry Count and Index Storage columns. All queries associated with those blank fields are failing. One thing that I observed is one of the field in index is

[google-appengine] Re: Can i use linux command in google app

2013-12-27 Thread timh
No You should read the docs. You can import pure python and call functions, and instantiate classes. On Friday, December 27, 2013 8:24:09 PM UTC+8, Shipu Ahamed wrote: can i use linux command in google appspot or always run a python program. -- You received this message because you

[google-appengine] Re: Centralized logging to cloud storage

2013-12-27 Thread timh
You still have to wait. From a code point of view it might look like you are doing an async write, not waiting and sending a response back , but you will find the response is held until all outstanding rpc's are resolved. On Saturday, December 28, 2013 3:54:22 AM UTC+8, Chad Vincent

Re: [google-appengine] Can i use linux command in google app

2013-12-27 Thread Vinny P
On Fri, Dec 27, 2013 at 6:24 AM, Shipu Ahamed shipuahame...@gmail.com wrote: can i use linux command in google appspot or always run a python program. If you would prefer to use Linux directly, you can rent a Compute Engine VM: https://cloud.google.com/products/compute-engine/

Re: [google-appengine] JS Problem

2013-12-27 Thread Vinny P
On Fri, Dec 27, 2013 at 6:27 AM, Shipu Ahamed shipuahame...@gmail.com wrote: my js file not upload in appspot . for example see attach file. When you say upload, do you mean uploading via appcfg, Git Push-To-Deploy, or uploading inside an application to the Blobstore or Google Cloud Storage?

Re: [google-appengine] Deadline Exceeded Error even with a TaskQueue running on a Backend

2013-12-27 Thread Vinny P
On Fri, Dec 27, 2013 at 12:39 PM, Roger roger.cam...@gmail.com wrote: I'm having some issues with *Deadline Exceeded error*. Basically I'm doing some webscrapping in an URL using *Mechanize*. I have this error HTTPException: Deadline exceeded while waiting for HTTP response from URL: my-url

Re: [google-appengine] GAE and HttpSessionEvent

2013-12-27 Thread Vinny P
On Thu, Dec 26, 2013 at 11:25 AM, Carlos Sergio de Paiva Araujo carlossdpara...@gmail.com wrote: I'm having some trouble. If my HttpSession times out shouldn't I receive an HttpSessionEvent? I looked up

Re: [google-appengine] Blank entity count and storage columns for Datastore Indexes

2013-12-27 Thread Vinny P
On Fri, Dec 27, 2013 at 4:41 PM, Anil S sadinenia...@gmail.com wrote: All queries associated with those blank fields are failing. One thing that I observed is one of the field in index is ENUM. Any clues? When you say the queries are failing, are there any error messages being printed out?

Re: [google-appengine] File Deserialization in Servlet Init()

2013-12-27 Thread Vinny P
On Fri, Dec 27, 2013 at 10:10 AM, Darryl Gouder dargou...@gmail.com wrote: As part of an academic assignment I am developing a Java Web Application that requires the de-serialization of a Dictionary Object File in the init() method of the start up servlet. For some reason however, when