[appengine-java] Cancel of deploy using the Eclipse Plugin didn't cancel

2011-11-09 Thread Ken Kahn
After the console displayed Preparing to deploy: Created staging directory at: 'C:\Users\Ken\AppData\Local\Temp \appcfg928847376792477628.tmp' I clicked 'Cancel'. It continued as can seen below despite the fact that it prints "User cancelled"

[appengine-java] Re: You do not have permission to modify this app

2011-09-19 Thread Ken Bowen
Duh! Didn't realize I was incorrectly logged in to the Eclipse plugin. Sorry for the clutter. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscr

[appengine-java] You do not have permission to modify this app

2011-09-15 Thread Ken Bowen
rbidden You do not have permission to modify this app (app_id=u'wnaccess'). Note that it did not ask me for an email or password. I've worked on GAE applications for another company for a couple of years, and I can't see what I'm doing differently here. Can anyone help me fig

[appengine-java] Re: The API call datastore_v3.Put() was explicitly cancelled.

2011-05-26 Thread Ken Kahn
Same thing happened to me. It happened once and all seems fine now. On May 14, 12:13 am, JT wrote: > After upgrading to 1.5.0, I encountered this error: > com.google.apphosting.api.ApiProxy$CancelledException: > The API call datastore_v3.Put() was explicitly cancelled. which I could not > explain

[appengine-java] Re: Problem following HOW TO: Build a SOAP Server tutorial

2011-03-02 Thread ken
Solved: My cut/paste mangled the @WebService annotation On Mar 2, 2:11 pm, ken wrote: > I'm attempting to follow the Server part of Mitch Rudominer's tutoral > HOW TO: Build a SOAP Server and a SOAP Client on Google App Engine > (http://code.google.com/appengine/articles/soap.

[appengine-java] Problem following HOW TO: Build a SOAP Server tutorial

2011-03-02 Thread ken
ple.Greeter source and class are present as described. Nothing is generated, in particular, no WSDL file is created. I'll appreciate any pointers in getting past this. Thanks in advance ...Ken -- You received this message because you are subscribed to the Google Groups "Google App Eng

[appengine-java] Re: bytes array into file

2010-11-01 Thread Ken Traub
Re #1, are you saying you'd like to be able to read your byte[] array as you would a file, without actually creating a file in the filesystem? In that case, you should be able to use java.io.ByteArrayInputStream. -- You received this message because you are subscribed to the Google Groups "Goog

[appengine-java] Logging during JUnit tests in NetBeans with the GAE plugin

2010-05-27 Thread Ken
Logging works fine in the production environment. I put my logging.properties file in the right place and told GAE where to find it and all is fine. Now, when I try to use the same logging.properties file during my JUnit tests it is completely ignored. I'm not sure how to tell ant to use it. I'

[appengine-java] Re: Hard Deadline Exceeded and High CPU

2010-03-07 Thread Ken
://groups.google.com/group/google-appengine-java/browse_thread/th... > > On 8 Mar 2010, at 05:37, Ken wrote: > > > > > I am getting HardDeadlineExceededErrors.  What do you mean that the > > instance will be disposed?  What can I do about it? > > > Thank you. &g

[appengine-java] Re: Hard Deadline Exceeded and High CPU

2010-03-07 Thread Ken
be the problem? > > On 8 Mar 2010, at 05:09, Ken wrote: > > > > > I was just looking in the logs after making numerous requests to my > > application.  Something is seriously wrong.  I'm even having high CPU > > on static files.  In one request it took 45 seconds o

[appengine-java] Re: Hard Deadline Exceeded and High CPU

2010-03-07 Thread Ken
ut if that's true then the server is going down after only a few seconds of use. It is starting the server handling a request and a few seconds later dropping the server. It isn't even staying up a minute. On Mar 7, 3:13 pm, Ken wrote: > I have a very simple Groovy on Grails app

[appengine-java] Re: Enable billing to avoid HardDeadlineExceededError?

2010-03-07 Thread Ken
This is happening to me in a Groovy on Grails application, but it doesn't seem to be a loading problem. Even if I'm clicking through the application I get these kinds of problems randomly. Probably one out of every five clicks fails if I wait for it to. Grails uses Spring underneath so maybe thi

[appengine-java] Hard Deadline Exceeded and High CPU

2010-03-07 Thread Ken
I have a very simple Groovy on Grails application installed that uses only a single table. The application is really just the scaffolded edits on this table with very few modifications to make it work. So it doesn't really do anything. About one in five clicks result in an error. The exception

[appengine-java] HTTPRequestPoster - problem

2010-01-23 Thread ken
); In the doPost method on the receiving Tomcat, the following code shows 0 bytes: InputStream inStream = request.getInputStream(); int nbytes = inStream.available(); System.out.println("# bytes available = "+nbytes); What is the problem here? Thanks in advance, Ken Bow

[appengine-java] Re: Plugin Hosted Mode failing to resolve import java.net.* on Macintosh

2009-09-21 Thread ken
he Plugin could distinguish GWT client classes from all others (including GWT serverimpl classes) and validate accordingly, but that might be some unpleasant work. Thanks to all, Ken On Sep 21, 4:09 pm, Toby Reyelts wrote: > Hi Ken, > > GWT and App Engine support two different sets of API, b

[appengine-java] Re: Plugin Hosted Mode failing to resolve import java.net.* on Macintosh

2009-09-21 Thread ken
from the first through the server which is going to process it. Let me know if the App Engine architecture really requires me to run my case via RPC through the App server too. {I've posted to the GWT list about the original question too.} Thanks, Ken On Sep 21, 3:34 pm, Toby Reyelts wr

[appengine-java] Plugin Hosted Mode failing to resolve import java.net.* on Macintosh

2009-09-21 Thread ken
es and which compiles and runs fine under Eclipse 3.3. Can this be resolved?? Thanks in advance, Ken Bowen --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to th

[appengine-java] makePersistent fails silently

2009-09-10 Thread Ken
I have a JDO class representing a tree of entities, somewhat like this: public class TreeNode { private String nodeName; private List children; ... } When I persist any such node to the datastore, the insert fails silently. The key of the object returned from makePersistent is nu