[appengine-java] Re: Local Server and local_db.bin

2011-05-25 Thread pavb
I have not found any solution to user the local_db.bin file generated by my unit test in my local server. I have a solution by using the RemoteAPI. Only replace: LocalServiceTestHelper helper = new LocalServiceTestHelper(new LocalDatastoreServiceTestConfig()); helper.setUp(); by

[appengine-java] JDO Query ordering issue

2011-05-25 Thread mscwd01
Hey I have a JDO query which filters on two properties of a Person entity, lets call them age and height. I wish to order the results by the Persons score. However, due to the restrictions App Engine imposes I firstly have to order by age or height. So I currently have query.setOrdering(age

[appengine-java] Using Serializable object in session

2011-05-25 Thread Ice13ill
Hello, i want to store objects in session, and for that I need to implements java.io.Serializable. The problem is that i don't know if i should generate the serialVersionUID field... My classes change from one deploy to another, so i get the exception InvalidClassException, because at first, the

Re: [appengine-java] Coding with Adobe Software

2011-05-25 Thread Drew Spencer
Sorry dude, I kinda naively assumed you would already have some experience in HTML/CSS. As the two above have said, these are the foundations of all web pages. I highly recommend the tutorials on w3schools.com for both of them. They give a great introduction to becoming a web designer: -

[appengine-java] why the development of java tools fall far behind that of python's?

2011-05-25 Thread Tapir
such as: 1. remove obsolete indexes 2. copy Mater-Slave data to High Replication I think if these tools are already done in python, it would be easy to port them in java within one week, especially for your googlers. But why have you done these yet? You know, these tools are so essential. Many

[appengine-java] Re: JDO Query ordering issue

2011-05-25 Thread Brandon Donnelson
What restrictions are you referring? Have you tried the entity query class, the sort is a bit easier to set up. Query q = new Query(BlobTmpJdo); q.addFilter(key, FilterOperator.EQUAL, fbd.getKey()); q.addSort(index); Brandon Donnelson http://gwt-examples.googlecode.com --

Re: [appengine-java] Re: open source pdf engine for GAE

2011-05-25 Thread Vik
Hie Thanks i gave a try to the itext also with their sample code and i get following exception: vik.sakshum.sakshumweb.utilities.PDFTest doGet: class javax.mail.SendFailedException:Send failure (javax.mail.MessagingException: Converting attachment data failed) My code is as follows:

[appengine-java] Re: AccessControlException java.io.FilePermission

2011-05-25 Thread Jon
Thomas, Did you ever figure this problem out? I just upgraded from AppEngine sdk 1.4.0 to 1.5.0 and I'm no longer able to check lastModified on files in the classpath. --jon On May 10, 2:16 pm, Thomas Wiradikusuma wiradikus...@gmail.com wrote: Btw this is the console output (I'm using

[appengine-java] how to create key for child object

2011-05-25 Thread hairinwind
Object NoteChain is the parent. Object Note is the child. They should be saved in on transaction, so they should be in one entity group. How to create the key for them? Here is my code but get the weird error. noteChain.key = KeyFactory.createKey(NoteChain, 1L) noteChain.save() println

[appengine-java] Re: Google App Engine + Java Applet

2011-05-25 Thread SKP
Hi Ian How does that work, any idea? Because the GAE JRE doesnt support java.applet.Applet. Thanks On May 24, 1:52 pm, Ian Gillett iangillet...@gmail.com wrote: Hi, You can run Applets on App Engine - we are using an Applet / App engine on the App below:

Re: [appengine-java] Re: Google App Engine + Java Applet

2011-05-25 Thread A. Stevko
App Engine's JVM does not support java.applet because it only support server side code. Your Applet code is loaded into the server's static files and, after downloading, the applet is loaded into the browser's jvm On Wed, May 25, 2011 at 10:59 AM, SKP patil.sha...@gmail.com wrote: Hi Ian How

[appengine-java] Jersey error : java.lang.SecurityException: Unable to get members for class

2011-05-25 Thread Adam Musial-Bright
Hi, in my java application I'm using Jersey for REST services. Everything works perfect, but I get this error which consumes a lot of CPU (13830cpu_ms) and freezes the app for few seconds. com.sun.jersey.core.spi.component.ProviderFactory __getComponentProvider: The provider class, class

[appengine-java] Re: Google App Engine + Java Applet

2011-05-25 Thread Brandon Donnelson
Try this: http://www.htmlcodetutorial.com/applets/_APPLET.html - stick the applet tag in a web page html source. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this

[appengine-java] Failed to upload app with Google App account SDK 1.5.1

2011-05-25 Thread JY
I just downloaded the last SDK 1.5.1. It appears the upload-authentication is different now. Instead of asking for email and password, it shows a page to log in GAE and grant access to third party service. I clicked the Sign In with a Google Apps Account, enter my email address, clicked Go

[appengine-java] Re: Failed to upload app with Google App account SDK 1.5.1

2011-05-25 Thread JY
the SDK is 1.5.0 -- 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 unsubscribe from this group, send email to

Re: [appengine-java] Re: Local Server and local_db.bin

2011-05-25 Thread 汪恭泽
Visit this link: localhost:/_ah/admin/datastore , Then you can browse your entities. 2011/5/25 pavb pavieillardba...@gmail.com I have not found any solution to user the local_db.bin file generated by my unit test in my local server. I have a solution by using the RemoteAPI. Only

[appengine-java] Problems with recaptcha

2011-05-25 Thread Bill Lunnon
Hi All, I have been migrating existing online forms from a standard TOMCAT deplyment to the App Engine. For the (anti) SPAM treatment we have been using Google reCaptcha - via the net.tanesha.recaptcha. Java libraries. The problem I am having is that the recaptcha component is not

[appengine-java] Re: Iframe does not allow thrid party cookies in IE7 and IE9

2011-05-25 Thread nandha kumar
U ll get answer soon.. i'm searching over it -- 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 unsubscribe from this group, send email to

[appengine-java] Re: Problems with recaptcha

2011-05-25 Thread Bill Lunnon
No worries - worked it out. Forgot to generate new reCaptcha keys for the application in the appspot.com domain. The reason it worked in development is that recaptcha accepts requests from the localhost (127.0.0.0) for development and debugging -- You received this message because you are

Re: [appengine-java] Re: Strange behavior by App Engine Eclipse Plugin

2011-05-25 Thread Brandon Donnelson
Is this the location for revoking? https://www.google.com/accounts/b/0/IssuedAuthSubTokens Brandon Donnelson http://gwt-examples.googlecode.com -- 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

[appengine-java] Re: Failed to upload app with Google App account SDK 1.5.1

2011-05-25 Thread Brandon Donnelson
Hmmm, I would think try revoking the oauth so it asks for your credentials again. https://www.google.com/accounts/b/0/IssuedAuthSubTokens - I'm not sure if this is the place yet. https://groups.google.com/d/msg/google-appengine-java/Hg2PgwC6_0g/RDtz9XlJ1isJ Brandon Donnelson

Re: [appengine-java] Re: Strange behavior by App Engine Eclipse Plugin

2011-05-25 Thread Ikai Lan (Google)
Yes. You should see an entry that looks like this: Google Plugin for Eclipse — Google App Engine, Google Code Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit: http://www.reddit.com/r/appengine On

Re: [appengine-java] Re: Strange behavior by App Engine Eclipse Plugin

2011-05-25 Thread Brandon Donnelson
D'oh, I could have spotted that one, first one in my list. :) Thanks for your time :). Brandon -- 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