Re: [google-appengine] Stability of Java 8 on Standard Environment

2017-07-11 Thread Emanuele Ziglioli
Do you know exactly what > caused the drop in utilization? Did you change other things than upgrading > to Java 8? > > -Patrick > > On Sat, Jul 8, 2017 at 5:00 AM Emanuele Ziglioli < > the...@emanueleziglioli.it > wrote: > >> I've been amazed: I've depl

Re: [google-appengine] Stability of Java 8 on Standard Environment

2017-07-08 Thread Emanuele Ziglioli
I've been amazed: I've deployed it three days ago and utilization has dropped to the floor. Instances, no more than one at the time. I'm now thinking of

[google-appengine] Re: FTP alternative

2017-02-09 Thread Emanuele Ziglioli
t you problems > as you scale. But for your usage you should not expect to see any issues. > > > On Friday, February 10, 2017 at 8:50:35 AM UTC+11, Emanuele Ziglioli wrote: >> >> Thanks Nick >> >> I've checked out your code and it looks similar to other work I've done &g

[google-appengine] Re: FTP alternative

2017-02-09 Thread Emanuele Ziglioli
Thanks Nick I've checked out your code and it looks similar to other work I've done myself before, adapting apache commons so that it would use GAE's low level support for sockets. It did work for a while but then it stopped. When I complained about they told me simply that GAE don't support

[google-appengine] Re: Using gcloud instead of the GAE SDK to develop GAE standard

2016-11-03 Thread Emanuele Ziglioli
Can I add (3) is the datastore emulation in gcloud any different, better, faster, more robust than standard? When it reaches about 30MB database space, it gets really slow and eventually it just stops working. What happens is either database corruption or the GAE fails to load it at startup

[google-appengine] Re: Console Issue - Memcache / Taskqueue

2016-06-01 Thread Emanuele Ziglioli
Same here! On Thursday, 2 June 2016 09:31:12 UTC+12, Daniel Young wrote: > > The console is not letting me access the memcache details or taskqueue. > I've opened this issue for visibility > https://code.google.com/p/googleappengine/issues/detail?id=13033=13033=1464816539 > > > -- You

[google-appengine] Happy Feedback

2016-05-25 Thread Emanuele Ziglioli
Hi everyone I'd like to provide some happy feedback, for once... (I hope Alex Martelli is listening) First, the new docs: completely revamped, across the board, much improved! Second: I went to https://github.com/GoogleCloudPlatform/gcloud-java. That's where everyone is, a lot of activity

[google-appengine] Re: Unable to find the reason for this error : NoClassDefFoundError: Could not initialize class com.google.apphosting.runtime.security.shared.stub.sun.security.provider.Sun.

2016-05-23 Thread Emanuele Ziglioli
Are all the required App Engine jars in your lib folder? Check your pom, starting from com.google.appengine appengine-api-1.0-sdk ${appengine.version} Also make sure there are no multiple versions of the same jars. What jre version are your running? Finally, how do you launch the server? > >

Re: [google-appengine] Re: Sockets don't work any more

2016-05-18 Thread Emanuele Ziglioli
point!-). Maybe you and I should arrange a Google Hangout 1:1 video meet, > so we can both speak our beloved native Italian AND expressively gesture at > each other to work out frustration and anger (unfortunately I haven't yet > convinced my colleagues developing Hangouts to add

Re: [google-appengine] Re: Sockets don't work any more

2016-05-18 Thread Emanuele Ziglioli
bove >>- App Engine SDK version >>- Code sample that can reliably reproduce this behavior so that we >>can reproduce this ourselves >>- A time frame of when you started experiencing this issue and if it >>persists >> >> With the in

[google-appengine] Re: Sockets don't work any more

2016-05-15 Thread Emanuele Ziglioli
. Just don't expect to use FTP, it's now been silently declared unsupported. Emanuele On Sunday, 15 May 2016 16:45:17 UTC+12, Emanuele Ziglioli wrote: > > Hi there, > > we use (passive) FTP and sockets have always been unreliable. Although, by > retrying in a task queue, usually

[google-appengine] Sockets don't work any more

2016-05-14 Thread Emanuele Ziglioli
Hi there, we use (passive) FTP and sockets have always been unreliable. Although, by retrying in a task queue, usually they would work. For the past few days, they've stopped working altogether. For example System error: errno: 113, detail:no route to host java.net.SocketException: System

Re: [google-appengine] Mail Service Deprecation?

2016-05-03 Thread Emanuele Ziglioli
yeah, one less reason to bet on App Engine: it's such a moving target. We can't afford to rewrite critical parts of the code every few years just because APIs get deprecated. Blobstore first, now this. Mail has been the single most reliable feature for us over the past 5 years. I understand the

[google-appengine] Re: Does GAE supports applications that consumes a SOAP web service?

2016-02-10 Thread Emanuele Ziglioli
I'm really sorry!! I got confused myself, it's been a few years!! Indeed you use wsimport to process the WSDL file if you want to use jaxws to access a SOAP web point. "xjc" is a way to generate code that transforms the received XML response in Java classes and to populate objects.

[google-appengine] Re: Does GAE supports applications that consumes a SOAP web service?

2016-02-08 Thread Emanuele Ziglioli
n Wednesday, February 3, 2016 at 4:47:56 AM UTC+8, Emanuele Ziglioli > wrote: >> >> I use SOAP but a different jaxb connector, the salesforce one. >> That gives me more control over timeouts. Unfortunately their code >> generation tool is semibroken: >> >

[google-appengine] Re: Does GAE supports applications that consumes a SOAP web service?

2016-02-02 Thread Emanuele Ziglioli
I use SOAP but a different jaxb connector, the salesforce one. That gives me more control over timeouts. Unfortunately their code generation tool is semibroken: https://github.com/forcedotcom/wsc/blob/master/src/main/java/com/sforce/ws/transport/GaeHttpTransport.java Why are you trying to access

[google-appengine] Re: Bulk upload datastore and files

2016-02-02 Thread Emanuele Ziglioli
How many rows? within 10m in a task queue, you should be able to upload >100k rows. If you need more, there are many tools, but the simplest one (Java) is probably: https://github.com/icoloma/queue4gae On Tuesday, 2 February 2016 21:47:23 UTC+13, pinesh shah wrote: > > Hi, > > I have a scenario

[google-appengine] Re: GeoSpatial Query for Student Project

2016-01-27 Thread Emanuele Ziglioli
Hi Adrian, I work in the field of Wildlife Tracking, just curious: what's your data source? We fetch it from Argos and also store locations onto App Engine. Are you saying that you're not allowed to deploy it because you didn't get an invitation? Meanwhile, you could consider the Search API:

[google-appengine] Re: GeoSpatial Alpha Invite

2016-01-21 Thread Emanuele Ziglioli
y 21, 2016 at 3:57:12 AM UTC+5:30, Emanuele Ziglioli > wrote: >> >> You guys should reconsider this decision and make a special case for the >> author of the Nimbits project. >> I don't know if you know this project. There aren't many success stories >> on App E

[google-appengine] Re: GeoSpatial Alpha Invite

2016-01-20 Thread Emanuele Ziglioli
You guys should reconsider this decision and make a special case for the author of the Nimbits project. I don't know if you know this project. There aren't many success stories on App Engine, this is one http://nimbits.com/index.jsp I need to talk to the manager! :-D On Thursday, 21 January

[google-appengine] Re: GAE for Java picking wrong / old jars

2015-06-08 Thread Emanuele Ziglioli
Could it simply be some instances with old versions of your code still being active? On Monday, 8 June 2015 19:59:28 UTC+12, Daniel Florey wrote: I am seing this issue once in a while: I'm uploading a new version of my app including updated jars, but GAE still uses old versions of the jars.

[google-appengine] Re: Java 8 and the App Engine

2015-05-24 Thread Emanuele Ziglioli
That's great news!! Now, if you stumble upon someone from the Android team, just let them know... ;-) On Saturday, 23 May 2015 11:08:45 UTC+12, Ludovic Champenois wrote: Hi, While I can not predict when it will come up, I can tell you we are working on enable Java 8 to the good old App

[google-appengine] Re: Google App Engine SDK version 1.9.21 now available

2015-05-20 Thread Emanuele Ziglioli
- The Files API, which has been deprecated since June 2013, will soon be restricted to existing users only in preparation for its future removal. Further information about the removal of this API is available here: https://cloud.google.com/appengine/docs/deprecations/

Re: [google-appengine] Re: Google App Engine SDK version 1.9.21 now available

2015-05-20 Thread Emanuele Ziglioli
Non proprio!-) Signed URLs are the Cloud Storage way to serve large files without using CPU instance time AND without making them public -- see https://cloud.google.com/storage/docs/access-control#Signed-URLs . Ciao Alex, I've been looking for something like that, I just didn't know

Re: [google-appengine] Re: Google App Engine SDK version 1.9.21 now available

2015-05-20 Thread Emanuele Ziglioli
: On Wed, May 20, 2015 at 2:36 PM, Emanuele Ziglioli the...@emanueleziglioli.it javascript: wrote: Non proprio!-) Signed URLs are the Cloud Storage way to serve large files without using CPU instance time AND without making them public -- see https://cloud.google.com/storage/docs/access

[google-appengine] Re: Google App Engine for beginners - Tutorial (Java)

2015-02-25 Thread Emanuele Ziglioli
suggestions. regards, Maciej. W dniu czwartek, 26 lutego 2015 02:45:27 UTC+1 użytkownik Emanuele Ziglioli napisał: Thank you. I think though that every tutorial should start with the question: 1. is GAE for you? (if you're gonna deal with large data, likely not, cause costs

[google-appengine] Re: Google App Engine for beginners - Tutorial (Java)

2015-02-25 Thread Emanuele Ziglioli
Thank you. I think though that every tutorial should start with the question: 1. is GAE for you? (if you're gonna deal with large data, likely not, cause costs of getting data in and out will kill you) 2. do you accept vendor lock-in? Be aware that moving your App off GAE will require your

Re: [google-appengine] Re: Datastore: how to design for huge time-series data

2015-02-01 Thread Emanuele Ziglioli
What about using BigQuery, anybody has tried for this specific purpose? Inserting data and exporting a whole table is free at this stage. By the way, I've tried a couple of strategies, involving entity groups. I started storing the timestamp as key. That improved things a little bit, in the

Re: [google-appengine] How to increase Task Queue Execution timing

2015-01-20 Thread Emanuele Ziglioli
is append-only, if you want it to replace the Datastore for queries, you will need to add versioning to each row you insert into BigQuery, and construct a query which only considers the latest version of an entity/record. Nick On 16 December 2014 at 08:05, Emanuele Ziglioli

[google-appengine] No more Transaction History?

2015-01-13 Thread Emanuele Ziglioli
Hi, I can't seem to access the Transaction History from the app engine console anymore and the app engine usage cost are not billed in the same transaction that appears in the cloud console (it's an old app). Is there a secret link anywhere where I can access my app engine invoices? Thanks

[google-appengine] Re: No more Transaction History?

2015-01-13 Thread Emanuele Ziglioli
it somehow. Any suggestion? By the way, please excuse my poor English, I sent this without checking it Emanuele On Wednesday, 14 January 2015 17:32:44 UTC+13, Emanuele Ziglioli wrote: Hi, I can't seem to access the Transaction History from the app engine console anymore and the app engine

Re: [google-appengine] How to increase Task Queue Execution timing

2014-12-15 Thread Emanuele Ziglioli
Hi Gilberto, quick question: do you think BigQuery could possibly replace the Datastore for queries? A big Datastore pain point is the fact for each query requires an index, while BigQuery doesn't have this restriction. Do you think it would be feasible for a GAE app to internally redirect

Re: [google-appengine] How to increase Task Queue Execution timing

2014-12-11 Thread Emanuele Ziglioli
you think you can't parallelize your problem, but when you're forced to the MapReduce workflow, you might find you were actually wrong, and by the end of the day you have a better code. On Wednesday, December 10, 2014 6:22:17 PM UTC-2, Emanuele Ziglioli wrote: It all comes at a cost

Re: [google-appengine] How to increase Task Queue Execution timing

2014-12-10 Thread Emanuele Ziglioli
It all comes at a cost: increased complexity. You can't beat the simplicity of task queues and the 10m limit seems artificially imposed to me. I mean, we pay for CPU time, as we would pay for 20m, 30m, 1h tasks. I've got a simple task that takes a long time, looping through hundreds of

[google-appengine] Security Issues in App Engine

2014-12-08 Thread Emanuele Ziglioli
I hope you guys haven't missed this interesting post: https://plus.google.com/102301209457369315970/posts/9bKW6js1PzJ http://seclists.org/fulldisclosure/2014/Dec/26 Quoting: *[SE-2014-02] Google App Engine Java security sandbox bypasses (project pending completion / action from Google)*

Re: [google-appengine] Re: One senses GAE is just not a major priority for Google

2014-11-11 Thread Emanuele Ziglioli
Thank you Daniel for your update! It's great to hear an official statement from Google about App Engine's health and future. I've certainly been enjoying increased reliability and reduced instance warmup time over the past couple of years, and that's a reflection of the hard work that's been

[google-appengine] Re: One senses GAE is just not a major priority for Google

2014-11-07 Thread Emanuele Ziglioli
Hey but we did get something new, it's probably from an acquisition, but who cares (only for managed VMs): https://cloud.google.com/tools/cloud-debugger On Saturday, 8 November 2014 17:17:35 UTC+13, Brandon Thomson wrote: Perhaps it is selfish on my part, but in some ways I am glad that GAE

Re: [google-appengine] Re: One senses GAE is just not a major priority for Google

2014-11-05 Thread Emanuele Ziglioli
Thank you everyone for your insights, very interesting. What do you guys think it's the way forward? Are you going to migrate your GAE apps to to Managed VMs, with Docker and the gcs command line tools? Also, is the Datastore still a valid option? I wish BigQuery just worked natively with

[google-appengine] One senses GAE is just not a major priority for Google

2014-10-28 Thread Emanuele Ziglioli
I would find hard to disagree: *IBM, Google, and Oracle are all equally at pains to deliver a message that makes them uniquely attractive. In this regard, Google's inability to recover from the botched roll-out of Google App Engine (GAE) will surely go down as one of the oddest business

Re: [google-appengine] What is the point of making a new release with no changes?

2014-10-27 Thread Emanuele Ziglioli
One bug fix with 1.9.14, yeah! https://code.google.com/p/googleappengine/wiki/SdkForJavaReleaseNotes On Saturday, 18 October 2014 11:24:49 UTC+13, husayt wrote: Lack of any reply here from anyone from The team, is itself an indicator. On Wednesday, October 15, 2014 1:28:36 AM UTC+1, Emanuele

Re: [google-appengine] What is the point of making a new release with no changes?

2014-10-14 Thread Emanuele Ziglioli
I feel like knocking Hello GAE, is anybody here? On Wednesday, 15 October 2014 12:12:22 UTC+13, PK wrote: @husyat I totally agree with your concern. Remember it has been almost two months since I started another topic https://groups.google.com/forum/#!topic/google-appengine/MSpXQyGZxOk in

[google-appengine] Long standing bug with activatition of default GCS bucket has been solved

2014-10-09 Thread Emanuele Ziglioli
Thanks to https://code.google.com/p/googleappengine/issues/detail?id=9602#c62 It looks like the AppEngine team has a fix coming on the next official release. For now you can use http://preview.appengine.google.com to access your project's admin console which includes the fix. -- You

[google-appengine] Re: Long standing bug with activation of default GCS bucket has been solved

2014-10-09 Thread Emanuele Ziglioli
My spelling error fixed too ;-) On Friday, 10 October 2014 14:35:39 UTC+13, Emanuele Ziglioli wrote: Thanks to https://code.google.com/p/googleappengine/issues/detail?id=9602#c62 It looks like the AppEngine team has a fix coming on the next official release. For now you can use http

Re: [google-appengine] GAE+JAVA+CMS

2014-09-07 Thread Emanuele Ziglioli
There have been some Vosao updates from the community, see here: https://groups.google.com/forum/?fromgroups#!forum/vosao-cms-development I maintain my own fork on GitHub, for our specific needs, ie several groups/users: https://github.com/Sirtrack/vosao/tree/siena-async On Wednesday, 27

[google-appengine] Re: GAE SDK Release announcements ???

2014-08-19 Thread Emanuele Ziglioli
Not just pre-releases but also releases are never announced. When Eclipse tells me the plugin has been updated I go here: https://code.google.com/p/googleappengine/wiki/SdkForJavaReleaseNotes On Wednesday, 20 August 2014 13:43:13 UTC+12, David Hardwick wrote: +1 on announcing here...I check

[google-appengine] Re: Anybody interested in a Datastore Manager for GAE?

2014-06-25 Thread Emanuele Ziglioli
SDK 1.9.7, from this video https://www.youtube.com/watch?v=1jcgYI7rlCg. will bring a local console that matches the cloud console. Also they're showing a new Big Data menu, related to the new Data Flow API (a new Hadoop). I wonder how easy will be to use Docker, and whether or not it'll be

[google-appengine] Re: Anybody interested in a Datastore Manager for GAE?

2014-06-21 Thread Emanuele Ziglioli
I don't know if you guys remember AppWrench. I've found what looks like its source code on Google Code: https://code.google.com/p/appwrench/ It was a very good project but it doesn't work anymore on Eclipse's current version. So, I thought we could contact its original author and ask what his

Re: [google-appengine] Roadmap for Datastore features described in Next Gen Queries (I/O 2010 talk)?

2014-06-18 Thread Emanuele Ziglioli
rant I've looked at the Search API and BigQuery, it looks way too much effort and too clunky to setup. Google's Cloud offering is chaotic, wildly changing, confusing and hard to follow. Would love to see a unified vision. It takes time to invest into a technology and learn how to use it. What's

[google-appengine] Re: No Generate git password button on Cloud Devlopment Releases Cannot Push to deploy with my emial password - doesn't work

2014-03-31 Thread Emanuele Ziglioli
pardon my spelling, I meant to write git client On Tuesday, 1 April 2014 09:00:37 UTC+13, Emanuele Ziglioli wrote: What Git clinter are you using? Likewise, I'm not able to push from Eclipse, but using git from the command line tool works fine, after I create the repository using run gcloud

[google-appengine] Re: No Generate git password button on Cloud Devlopment Releases Cannot Push to deploy with my emial password - doesn't work

2014-03-31 Thread Emanuele Ziglioli
What Git clinter are you using? Likewise, I'm not able to push from Eclipse, but using git from the command line tool works fine, after I create the repository using run gcloud init yourapp: git push origin master. After I push, the command line output says that a build will be started,

Re: [google-appengine] When will App Engine officially support JDK 8 / Java 8

2014-03-26 Thread Emanuele Ziglioli
without Android supporting InvokeDynamic, how can libraries work? Can Java 8 code compile to run on a Java 7 VM? On Wednesday, 26 March 2014 04:48:37 UTC+13, Jeff Schnitzer wrote: Everyone please star this issue: https://code.google.com/p/googleappengine/issues/detail?id=9537 I can't

[google-appengine] Push-to-Deploy does nothing

2014-03-26 Thread Emanuele Ziglioli
Hi everyone, I understand this is brand new (for Java at least), very exciting though. I've managed to push my java repo to the cloud, have set it to run a Java Maven Build, pushed again but nothing happens. From the command line I see Execution started but nothing appears on the Google cloud

[google-appengine] Re: Managed VMs - Limitations

2014-03-26 Thread Emanuele Ziglioli
Can I add a couple of questions about all this works? I've watched the keynote. At a certain point Chris says we're opening App Engine. That makes me think that suddenly the VM a GAE instance runs in becomes customizable. But that doesn't seem the case, as far as I understand, it means GAE

Re: [google-appengine] Re: New Pricing

2014-03-26 Thread Emanuele Ziglioli
Same here, old app :-) A large e-mail volume is absolutely essential for our app, that's how Iridium works On Thursday, 27 March 2014 05:03:35 UTC+13, pdknsk wrote: That's not the case. I have an app that is regularly sending to 100 recipients/day. I had never requested that any cap be

Re: [google-appengine] When will App Engine officially support JDK 8 / Java 8

2014-03-26 Thread Emanuele Ziglioli
as futures ones http://openjdk.java.net/projects/sumatra/ On Thursday, 27 March 2014 12:05:40 UTC+13, husayt wrote: What has Android got to do with Appengine? On Wednesday, 26 March 2014 20:12:43 UTC, Emanuele Ziglioli wrote: without Android supporting InvokeDynamic, how can libraries work

Re: [google-appengine] Cookies on Cloud Endpoints Java

2014-02-20 Thread Emanuele Ziglioli
I can't say whether it's exactly the same problem you're seeing but I couldn't get Vosao (cookie based)'s authentication work with cloud endpoints. The reason is that the way endpoints is implemented (in Java, at least), there's a servlet listening to Rest requests that internally posts RPC

Re: [google-appengine] Have anyone tried to port a java project with heavy framworks, such as struts and spring, to a pure jsp/servlet project?

2014-02-19 Thread Emanuele Ziglioli
, 2014 1:59:15 PM UTC+8, Tapir wrote: On Tuesday, February 18, 2014 4:33:16 AM UTC+8, Emanuele Ziglioli wrote: Not sure where my reply went. On Tuesday, February 18, 2014 3:57:37 AM UTC+8, Emanuele Ziglioli wrote: Our warmup time was 15 seconds, then I looked at the hello world project

Re: [google-appengine] Have anyone tried to port a java project with heavy framworks, such as struts and spring, to a pure jsp/servlet project?

2014-02-17 Thread Emanuele Ziglioli
Our warmup time was 15 seconds, then I looked at the hello world project that the GAE plugin generates with one servlet. That took 2 seconds to startup (once the servlet was hit). Then I added all the jars from our project but kept the same web.xml configuration. Startup time went up to almost

Re: [google-appengine] Have anyone tried to port a java project with heavy framworks, such as struts and spring, to a pure jsp/servlet project?

2014-02-17 Thread Emanuele Ziglioli
Not sure where my reply went. On Tuesday, February 18, 2014 3:57:37 AM UTC+8, Emanuele Ziglioli wrote: Our warmup time was 15 seconds, then I looked at the hello world project that the GAE plugin generates with one servlet. That took 2 seconds to startup (once the servlet was hit). On F2

Re: [google-appengine] Have anyone tried to port a java project with heavy framworks, such as struts and spring, to a pure jsp/servlet project?

2014-02-17 Thread Emanuele Ziglioli
. Guava itself is surprisingly large (10% of my average war). Might be worth playing a little with to see how much this can be optimised. Maybe Proguard can help, haven't looked at it yet On Tuesday, February 18, 2014 7:33:16 AM UTC+11, Emanuele Ziglioli wrote: Not sure where my reply

[google-appengine] Lots of com.google.apphosting.api.ApiProxy$ApiDeadlineExceededException

2013-10-21 Thread Emanuele Ziglioli
For the past half an hour we've been getting java.util.concurrent.ExecutionException: com.google.apphosting.api.ApiProxy$ApiDeadlineExceededException: The API call datastore_v3.Get() took too long to respond and was cancelled. at

[google-appengine] Re: Lots of com.google.apphosting.api.ApiProxy$ApiDeadlineExceededException

2013-10-21 Thread Emanuele Ziglioli
Gone now, it lasted for about three hours. I'm considering upgrading to Objectify 4, to see whether it makes any difference. It wasn't a memcache failure, it looked really like a failure to to a Get() On Tuesday, 22 October 2013 09:44:48 UTC+13, Emanuele Ziglioli wrote: For the past half

[google-appengine] AppWrench

2013-10-09 Thread Emanuele Ziglioli
Remember AppWrench, a slick tool that used to work up to Eclipse 3.7? http://appwrench.onpositive.com/ Well, it's on Google Code, under an Eclipse Public License: https://code.google.com/p/appwrench/ If anybody is in touch with people http://www.onpositive.com/onpositive/index.html, it would

[google-appengine] Re: Scheduler seems to be a little mad this evening.

2013-09-23 Thread Emanuele Ziglioli
Down for us On Tuesday, 24 September 2013 05:06:01 UTC+12, Christopher Ritter wrote: We're seeing it too, probably related to the current production issues on the status page. On Monday, September 23, 2013 12:04:16 PM UTC-4, timh wrote: Hi I am seeing instances started via warmup

[google-appengine] Re: 500 Server Error

2013-09-23 Thread Emanuele Ziglioli
Same for almost an hour https://sirtrackwms.appspot.com/ On Tuesday, 24 September 2013 10:13:48 UTC+12, LizBetSoft wrote: Suddenly a few of my applications are getting 500 Server Error when i try to access. No error in console logs. The number of my apps with this error error is increasing.

[google-appengine] Re: 500 Server Error

2013-09-23 Thread Emanuele Ziglioli
-1. On Monday, September 23, 2013 3:15:58 PM UTC-7, Emanuele Ziglioli wrote: Same for almost an hour https://sirtrackwms.appspot.com/ On Tuesday, 24 September 2013 10:13:48 UTC+12, LizBetSoft wrote: Suddenly a few of my applications are getting 500 Server Error when i try to access

[google-appengine] Re: 500 Server Error

2013-09-23 Thread Emanuele Ziglioli
I've noticed instances show they're running SDK 1.8.5 On Tuesday, 24 September 2013 10:42:40 UTC+12, Emanuele Ziglioli wrote: it's back to life here On Tuesday, 24 September 2013 10:26:37 UTC+12, gks wrote: I also run into the same issue. Most requests to my environment times out

[google-appengine] Re: 500 Server Error

2013-09-23 Thread Emanuele Ziglioli
An update: https://groups.google.com/forum/#!topic/google-appengine-downtime-notify/EFIzt7BiJe4 On Tuesday, 24 September 2013 11:09:09 UTC+12, Emanuele Ziglioli wrote: I've noticed instances show they're running SDK 1.8.5 On Tuesday, 24 September 2013 10:42:40 UTC+12, Emanuele Ziglioli wrote

Re: [google-appengine] GAE Blobstore file-like API deprecation timeline (py 2.7 runtime) [XPOST from StackOverflow]

2013-09-17 Thread Emanuele Ziglioli
I'm not sure what they mean here: The Files API feature used here to write files to Blobstore has been deprecated and is going to be removed at some time in the future, in favor of writing files to Google Cloud Storage and using Blobstore to serve them I see the Blobstore API can be used to

[google-appengine] Re: When will we have Google App Engine for .Net

2013-09-11 Thread Emanuele Ziglioli
There are more chances for AppScale to run on Azure. This article appeared in 2010... http://blogs.msdn.com/b/windowsazure/archive/2010/11/18/thought-leaders-in-the-cloud-talking-with-chandra-krintz-associate-professor-at-uc-santa-barbara.aspx On Wednesday, 11 September 2013 04:02:14 UTC+12,

[google-appengine] mobile version of the dashboard?

2013-03-24 Thread Emanuele Ziglioli
Hi, does anybody know if there exists or a have you built (open or closed source) a version of the GAE dashboard for mobile devices. Nice to have: 1 - a native/fast android app for monitoring 2 - ability to generate notifications It could be a read only interface Thanks Emanueke -- You

[google-appengine] Re: giving up with GAE

2013-02-04 Thread Emanuele Ziglioli
Besides the cold startup problem, I can't recall reading about any GAE success stories where java was the language of choice. Probably most java frameworks are too big and too slow to start for what GAE is trying to do. What I'm saying is that even if Python is slower as a language, the most

[google-appengine] Re: Some dynamic flexibility in selecting the type of instances would be really useful

2012-11-28 Thread Emanuele Ziglioli
Thank you for the suggestion, I'm not sure if I understand, which one these two: 1. You use one backend instance to cater for larger memory/speed requirements 2. You use one backend instance to spin multiple F1 and/or F2 task queues because backends allow you to On Thursday, 29 November 2012

[google-appengine] Some dynamic flexibility in selecting the type of instances would be really useful

2012-11-27 Thread Emanuele Ziglioli
Hi everyone, have been following this group for months but can't recall reading anything related to this: currently the instance size is one big knob while it'd be useful to be able to select a different instance size at runtime. Our web site is perfectly served by F1 instances but it runs out

Re: [google-appengine] Some dynamic flexibility in selecting the type of instances would be really useful

2012-11-27 Thread Emanuele Ziglioli
On Wednesday, 28 November 2012 12:35:03 UTC+13, Takashi Matsuo (Google) wrote: Hi Emanuele, On Tue, Nov 27, 2012 at 3:10 PM, Emanuele Ziglioli the...@emanueleziglioli.it javascript: wrote: Hi everyone, have been following this group for months but can't recall reading anything

[google-appengine] Re: Would you rather have 1GB or 26GB of RAM?

2012-11-26 Thread Emanuele Ziglioli
I'll believe it when I see it On Tuesday, 27 November 2012 09:34:22 UTC+13, Kaan Soral wrote: I'm sure they will improve Appengine too -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

[google-appengine] Re: Hundreds of 500-pages out of the blue. All related to database errors (An error occurred parsing (locally or remotely) the arguments to DATASTORE_V3.Get())

2012-10-03 Thread Emanuele Ziglioli
GAE looks down to me: Dynamic Get: Latency Measures the latency, in milliseconds, of one round-trip HTTP request to a simple dynamically-served handler. Uncaught exception from servlet org.apache.xerces.util.ObjectFactory$ConfigurationError: Provider

Re: [google-appengine] Re: Google App Engine SOAP call SocketTimeoutException

2012-09-27 Thread Emanuele Ziglioli
yesterday Thanks a lot. Le mercredi 26 septembre 2012 23:51:29 UTC+2, Emanuele Ziglioli a écrit : Ok, have you managed to generate any code with the SalesForce tool? As I wrote, I did get an error but most of the code generated anyway. I'll post the command line options I used if I can find

Re: [google-appengine] Re: Google App Engine SOAP call SocketTimeoutException

2012-09-26 Thread Emanuele Ziglioli
Ok, have you managed to generate any code with the SalesForce tool? As I wrote, I did get an error but most of the code generated anyway. I'll post the command line options I used if I can find them. The generated code contains three packages: com.sforce.ws.transport GaeHttpTransport.java

Re: [google-appengine] Re: GAE + JAXWS bug

2012-09-19 Thread Emanuele Ziglioli
Have you got a jaxb jar in your classpath? If that's the case, you have to remove it and rely on the JRE implementation of jaxb. The GAE runtime wants you to use their jaxb and jaxws implementations. You can use a jaxb jar without jaxws but not toghether (the reason escapes me). I had to adapt

Re: [google-appengine] A.A.A. Italian GAE Developers

2012-09-19 Thread Emanuele Ziglioli
lol, you may have heard about a place called Italy, it's south of London and west of Mumbay :-) On Wednesday, 19 September 2012 22:03:40 UTC+12, Shilendra Sharma wrote: Hello, Me also from india on google app engine with java Regards Thanks Shilendra Sharma +919891343808

Re: [google-appengine] Re: GAE + JAXWS bug

2012-09-19 Thread Emanuele Ziglioli
septembre 2012 13:55:46 UTC+2, Emanuele Ziglioli a écrit : Have you got a jaxb jar in your classpath? If that's the case, you have to remove it and rely on the JRE implementation of jaxb. The GAE runtime wants you to use their jaxb and jaxws implementations. You can use a jaxb jar without jaxws

Re: [google-appengine] Re: GAE + JAXWS bug

2012-09-19 Thread Emanuele Ziglioli
really need to fix this issue. Le mercredi 19 septembre 2012 13:55:46 UTC+2, Emanuele Ziglioli a écrit : Have you got a jaxb jar in your classpath? If that's the case, you have to remove it and rely on the JRE implementation of jaxb. The GAE runtime wants you to use their jaxb and jaxws

Re: [google-appengine] Re: GAE + JAXWS bug

2012-09-19 Thread Emanuele Ziglioli
/googleappengine/issues/detail?id=4910 Le mercredi 19 septembre 2012 14:57:58 UTC+2, Emanuele Ziglioli a écrit : By the way, I've also managed to get the Force.com SOAP implementation running on GAE, it's older than their implementation but pehaps faster and I can also set timeouts. It relies on top

Re: [google-appengine] Re: GAE + JAXWS bug

2012-09-19 Thread Emanuele Ziglioli
that you're talking about? https://developers.google.com/appengine/articles/soap That will certainly work on the GAE server on a new project. Try your own WSDL Le mercredi 19 septembre 2012 15:14:18 UTC+2, Emanuele Ziglioli a écrit : On Thursday, 20 September 2012 01:07:57 UTC+12, Phil wrote

Re: [google-appengine] Re: GAE + JAXWS bug

2012-09-19 Thread Emanuele Ziglioli
jar in the projet. I only use the one of Google App Enfin. Could you tell me where is the tutorial SOAP that you're talking about? Le mercredi 19 septembre 2012 15:14:18 UTC+2, Emanuele Ziglioli a écrit : On Thursday, 20 September 2012 01:07:57 UTC+12, Phil wrote: I already add one

Re: [google-appengine] Re: GAE + JAXWS bug

2012-09-19 Thread Emanuele Ziglioli
I'm going to bed now (almost 2am NZ time). Good luck! On Thursday, 20 September 2012 01:35:41 UTC+12, Phil wrote: I tried Force.com API. Unfortunetly, when I generate code from WSDL, I got the error message : Found more than one wsdl:binding. WSDL with multiple binding not supported

Re: [google-appengine] A.A.A. Italian GAE Developers

2012-09-18 Thread Emanuele Ziglioli
Me three! Sono di Milano ma non sono a Milano :-( https://github.com/ZiglioNZ #java #siena #vosao On Wednesday, 19 September 2012 07:54:31 UTC+12, Stefano Ciccarelli wrote: Ping! In azienda abbiamo abbracciato GAE+GWT fin dal 2009 e ci definiamo molto skillati. -- Inviato con

[google-appengine] Re: When moving between HTTP and HTTPS, how to share authentication cookies (ACSID, SACSID)?

2012-08-28 Thread Emanuele Ziglioli
We use Vosao's authentication system and I've been trying to share session cookies between https and http using CORS but browser support is still inconsistent. If you use Java, that's what I've been using: http://software.dzhuvinov.com/cors-filter.html On Friday, 24 August 2012 17:28:22

[google-appengine] Problem with Java SDK 1.7.1, java.lang.NoClassDefFoundError: Could not initialize class com.google.apphosting.api.DatastorePb$Query

2012-08-21 Thread Emanuele Ziglioli
I'm experiencing an exception with the new SDK. It looks like what's described in this old post: https://groups.google.com/forum/?fromgroups=#!msg/google-appengine-java/xiDijH7S8Ow/udo8DPEjtR0J java.lang.NoClassDefFoundError: Could not initialize class

[google-appengine] Re: Problem with Java SDK 1.7.1, java.lang.NoClassDefFoundError: Could not initialize class com.google.apphosting.api.DatastorePb$Query

2012-08-21 Thread Emanuele Ziglioli
) at org.vosao.dao.BaseDaoImpl.selectNotCache(BaseDaoImpl.java:278) On Wednesday, 22 August 2012 13:26:59 UTC+12, Emanuele Ziglioli wrote: I'm experiencing an exception with the new SDK. It looks like what's described in this old post: https://groups.google.com/forum/?fromgroups=#!msg/google-appengine-java/xiDijH7S8Ow

Re: [google-appengine] Re: Problem with Java SDK 1.7.1, java.lang.NoClassDefFoundError: Could not initialize class com.google.apphosting.api.DatastorePb$Query

2012-08-21 Thread Emanuele Ziglioli
I haven't deployed it. I'm seeing this error on the development server On Wednesday, 22 August 2012 13:37:20 UTC+12, Takashi Matsuo (Google) wrote: Hi Emanuele, What is your app-id? On Wed, Aug 22, 2012 at 10:32 AM, Emanuele Ziglioli the...@emanueleziglioli.it javascript: wrote

Re: [google-appengine] Re: Problem with Java SDK 1.7.1, java.lang.NoClassDefFoundError: Could not initialize class com.google.apphosting.api.DatastorePb$Query

2012-08-21 Thread Emanuele Ziglioli
the project solve the issue then? On Wed, Aug 22, 2012 at 10:54 AM, Emanuele Ziglioli the...@emanueleziglioli.it javascript: wrote: I haven't deployed it. I'm seeing this error on the development server On Wednesday, 22 August 2012 13:37:20 UTC+12, Takashi Matsuo (Google) wrote: Hi

Re: [google-appengine] Re: Problem with Java SDK 1.7.1, java.lang.NoClassDefFoundError: Could not initialize class com.google.apphosting.api.DatastorePb$Query

2012-08-21 Thread Emanuele Ziglioli
is in our SDK. Thanks 1. http://code.google.com/p/vosao/ On Wed, Aug 22, 2012 at 11:02 AM, Emanuele Ziglioli the...@emanueleziglioli.it javascript: wrote: Hi Takashi, I've deployed a non default version with SDK 1.7.1 and it's working on the production server. So this problem just

Re: [google-appengine] Is GAE good for database-heavy applications?

2012-08-19 Thread Emanuele Ziglioli
Sounds like the blob will be in the 10s of megabytes. I believe GAE charges for bandwidth based on the pre-gzip-encoding size of requests. If you have a lot of downloads, you may wish to zip it on write and deliver a zipfile download to your users, which should dramatically reduce

[google-appengine] Re: Anybody interested in a Datastore Manager for GAE?

2012-08-09 Thread Emanuele Ziglioli
it looks really good. I've used the evaluation of AppWrench and have found very useful the ability to edit both local and remote store. I find painful you can't add fields to an existing entity from the official web console (or can you?). Haven't been able to run the profiler but I'd love to

[google-appengine] Can you tweak the memacache timeout

2012-08-09 Thread Emanuele Ziglioli
Hi, this morning we're experiencing repetitive memcache errors. I see a LogAndContinueErrorHandler so requests don't fail but they take an awful amount of time to be fullfilled. Is there any way to force a maximum response time for memcache (something like 50ms?). I will profile it using

[google-appengine] Re: Can you tweak the memacache timeout

2012-08-09 Thread Emanuele Ziglioli
My same question on SO: http://stackoverflow.com/questions/11893308/can-you-tweak-gaes-memcache-timeout Thanks On Friday, 10 August 2012 11:06:53 UTC+12, Emanuele Ziglioli wrote: Hi, this morning we're experiencing repetitive memcache errors. I see a LogAndContinueErrorHandler so requests

Re: [google-appengine] Can you tweak the memacache timeout

2012-08-09 Thread Emanuele Ziglioli
. *From:* google-a...@googlegroups.com javascript: [mailto: google-a...@googlegroups.com javascript:] *On Behalf Of *Emanuele Ziglioli *Sent:* Thursday, August 09, 2012 4:07 PM *To:* google-a...@googlegroups.com javascript: *Subject:* [google-appengine] Can you tweak the memacache timeout Hi

Re: [google-appengine] Can you tweak the memacache timeout

2012-08-09 Thread Emanuele Ziglioli
I'm doing some experiments on com.google.appengine.api.memcache.MemcacheServiceImpl private static T T quietGet(FutureT future) { try { // return future.get(); return future.get( 100, TimeUnit.MILLISECONDS); } catch (TimeoutException ex) { // throw new

  1   2   >