[appengine-java] Re: 1.4 eclipse plugin

2010-12-04 Thread GoSharp Lite
I solve my jsp compilation issue by using below steps. 1) Download and install eclipse-java-helios-SR1-win32.zip. 2) Install plugins from http://dl.google.com/eclipse/plugin/3.6;. 3) Download and install java_ee_sdk-6u1-jdk-windows.exe. 4) Create a new and empty app using same project name and

[appengine-java] Re: 1.4 eclipse plugin

2010-12-04 Thread GoSharp Lite
I solve my jsp compilation issue by using below steps. 1) Download and install eclipse-java-helios-SR1-win32.zip. 2) Install plugins from http://dl.google.com/eclipse/plugin/3.6;. 3) Download and install java_ee_sdk-6u1-jdk-windows.exe. 4) Create a new and empty app using same project name and

[appengine-java] Checking admin priviledges using UserService in a cron/task-queue task execution

2010-12-04 Thread andrew
I am trying to debug some issues with task execution and have a question. Background == Documentation states that tasks (cron and task queue) are executed by a system process with admin priviledges. To protect task execution from unauthorized execution I originally protected them with a

[appengine-java] Re: GWT wrapper for the client side (javascript) Channel API

2010-12-04 Thread George Moschovitis
http://code.google.com/p/gwt-gae-channel/ excellent, thanks! -g. -- 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-j...@googlegroups.com. To unsubscribe from this group, send

[appengine-java] DataStore embeds equals signs (=) into saved file

2010-12-04 Thread Max
Hi, My GAE application strips attachments from inbound emails and saves them as byte[]. Objectify translates the byte[] to a com.google.appengine.api.datastore.Blob (does not utilize BlobStore). For some files, it embeds equal signs in places where the original document doesn't have any

Re: [appengine-java] HttpServletRequest.getLocalPort() returns 0

2010-12-04 Thread Simpatico
I'm having the same problem here: http://sss.mysimpatico.com/server?authentication=unregistered What was the thank you for? -- 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

Re: [appengine-java] HttpServletRequest.getLocalPort() returns 0

2010-12-04 Thread Gabriele Kahlout
and btw this happens also with getRemotePort() -- 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-j...@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: URLFetch weirdness

2010-12-04 Thread hector
No, it was failing fast... I was not even seeing the call in my web service. In any case, it started working correctly again. No change on my part. I wonder where that appspot was deployed... I have other appspots that were not experiencing the issue. On Dec 2, 10:22 pm, Philippe Beaudoin

[appengine-java] Re: no async queries on AsyncDatastoreService for 1.4.0?

2010-12-04 Thread Luke
i finished updating my server to use the AsyncDatastoreService. i also cleaned up my memcache code to batch cache requests. both of these changes allowed me to improve the request time by up to 4x for some requests. from ~80ms to ~20ms. now i can prefetch content for the user with little to no

[appengine-java] Re: DataStore embeds equals signs (=) into saved file

2010-12-04 Thread Didier Durand
Hi, somebody already had a problem similar to yours and found the issue and its solution: http://groups.google.com/group/google-appengine-python/browse_thread/thread/0ac4ab5266fb3781 Hope it helps didier On Dec 4, 9:04 pm, Max 6738...@gmail.com wrote: Hi, My GAE application strips

[appengine-java] Authentication Failed

2010-12-04 Thread Jeevan
hello all, I developing an application called Cloud based teaching system and its done! I am registering my google app engine app. I am able to get the token but I am not able to generate multiple session tokens, and I am not able to register my app with the google registration key, too.

[appengine-java] Re: Checking admin priviledges using UserService in a cron/task-queue task execution

2010-12-04 Thread Didier Durand
Hi, To check if your code is running as a task, you can use the specific http headers added by GAE: QueueName, TaskName, RetryCount. See http://code.google.com/appengine/docs/java/taskqueue/overview.html#Task_Request_Headers If additionally. you made the right security restrictions, you are