[appengine-java] Re: Install has encountered a problem in Eclipse.

2009-09-13 Thread Peter
I saw the same error when installing the Android plugin and was able to fix it by installing Sun's SDK instead of openjdk. On Aug 17, 11:44 am, tiger smae...@gmail.com wrote: I have get the following error when I was trying to install the Google App Engine 1.2.2 Plungins for Eclipse 3.5

[appengine-java] Re: Redirect back to non-SSL

2009-09-13 Thread Peter Ondruska
Use a filter to achieve this functionality. On Sep 13, 6:40 am, WY wai...@gmail.com wrote: Hi all, I managed to configure my web.xml file to redirect all pages ending with *.dos to be handled by ssl with the following:    security-constraint         web-resource-collection            

[appengine-java] Re: One-to-many relationships and saving

2009-09-13 Thread Anton Ananich
Dear Max, I read the doc, but it seems to me that it describes 1-N relationships, but there is a talk about 0-N relationships. I have the same trouble and here is an example: class BugReport { Key id; ListComment commentList; } class Comment { Key id; } So in this case I need 0-N

[appengine-java] Re: One-to-many relationships and saving

2009-09-13 Thread datanucleus
I read the doc, but it seems to me that it describes 1-N relationships, but there is a talk about 0-N relationships. They are the same thing, clearly. 0-N is simply that it accepts a null, so I don't see any difference. --~--~-~--~~~---~--~~ You received this

[appengine-java] Re: Google AppEngine app deploy error: Unable to upload app: Unknown

2009-09-13 Thread gsw
The error in the log with that message in 1.2.5 is: Unable to upload: java.lang.NullPointerException at java.net.URLEncoder.encode(Unknown Source) at com.google.appengine.tools.admin.ServerConnection.buildQuery (ServerConnection.java:191) at

[appengine-java] Pointing Domains

2009-09-13 Thread Danny
Hello, i would like to know if is it possible in some way to add a dns server in the google app engine ? allowing multiple domains refereing to specifc urls inside my account exmple: (without using the versions because these are not versions of the application) www.myapp1.com/p1 pointing to

[appengine-java] Re: Redirect back to non-SSL

2009-09-13 Thread WY
I don't suppose google offers a filter to accomplish a similar functionality? If not, there must be an easier solution to this problem, right? I suppose many others have written web apps not using Google accounts for authentication? If so, how do you configure your app to a secure login and then

[appengine-java] Re: JDO hook called before id is assigned?

2009-09-13 Thread bysse
More specifically that id isn't set when StoreLifecycleListener.postStore is called On Sep 13, 3:25 pm, bysse erik.byst...@gmail.com wrote: Hi, I'm trying to use Compass on appengine and everything works fine as long as i assign id to my entities manually. If i let appengine assign id to my

Re: [giannim] [appengine-java] Java Security Error

2009-09-13 Thread Gianni Mariani
App Engine does not allow access to JDBC. You must either use the App Engine Datastore or push you JDBC requests to another server using the UrlFetch service (perhaps using SDC). On Sun, Sep 13, 2009 at 2:14 AM, Ravi Mandliya funkyr...@gmail.com wrote: Hello everyone I just uploaded my first

[appengine-java] Re: Redirect back to non-SSL

2009-09-13 Thread WY
Well, the reason I ask is because this feels like infrastructure code. I think I'm missing something basic here because why is there an easy way to configure which paths should be ssl and not a way to define the reverse without having to write your own code? Again, this functionality is provided

[appengine-java] Re: Getting 'Request was aborted after waiting too long to attempt to service your request.' after application idle

2009-09-13 Thread lent
I have been doing some profiling on application startup and it seems that there is a large amount of overhead: - it takes about 5 seconds between the time the request is received to where our spring initialization code is invoked - creating an entity manager factory is taking on average 8+

[appengine-java] Can I avoid Data Nucleus and still use JPA?

2009-09-13 Thread jeremy rose
I have a JPA application that works fine with Hibernate as the persistence provider. Now, I'm trying to use the gwt with eclipse to develop an AJAX client for it. I do not intend to marshal my persistent objects to the client but to simply have the client communicate with my server via XML.

[appengine-java] GeoPt query (find location that is with-in the radius of a location)

2009-09-13 Thread mar_novice
Im new to geopt datatype and my question is how can i query the entities that is with-in 2km distance from a given entity. For example, I have a building name BigBuilding with a geopt X and in my datastore, I already have many buildings with a geopt in its field. How can i determine the buildings

[appengine-java] Re: Can I avoid Data Nucleus and still use JPA?

2009-09-13 Thread datanucleus
I've discovered if I changed the datanucleus.ConnectionURL to appengine I was able to get further You mean like the GAE/J documentation defines for you to do? and also the DataNucleus docs http://www.datanucleus.org/products/accessplatform_1_1/appengine/support.html This persistence

[appengine-java] Re: Can I avoid Data Nucleus and still use JPA?

2009-09-13 Thread datanucleus
What method isAgitated ? There is nothing in the JPA spec with such a name. This is nothing to do with the persistence provider DataNucleus defines nothing to prevent some method of that name; you don't define what your error was. The docs for GAE/J define what parts of JPA are supported so