[appengine-java] Re: 1.6.1 Pre-release SDKs are live

2011-12-06 Thread Cyrille Vincey
No full text search in this release?? -- 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] Above 3000 files

2011-12-06 Thread prabu
Hi. In my project contains above 3000 files.i was deployed using sdk version 1.5.5(java).in live unable to run. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] How to export a RDBMS

2011-12-06 Thread deltaaruna
Hi all, We are converting a web based app to a cloud app. Our database is Microsoft Sql Server 2005. How can I convert this database to be used in GAE? Please someone help me. Thank You -- You received this message because you are subscribed to the Google Groups Google App Engine for Java

[appengine-java] An alternative to Objectify?

2011-12-06 Thread Alexander Orlov
*Is there a good/better alternative to Objectify?* I want to use a Datastore abstraction layer like JPA2 together with GWT's RequestFactory using its ServiceLocator pattern. Is the usage of Objectify even advisable in this case or should I use the Datastore directly (which I've done 2y ago...

[appengine-java] GAE Soap

2011-12-06 Thread Pedro Mendes
Hello , i'm new to GAE and i was trying to set up a soap server and client using the tutorial. But i keep getting server error.. from log: javax.xml.ws.soap.SOAPFaultException: Unrecognized SOAP request. Any idea why? thanks -- You received this message because you are subscribed to the

[appengine-java] Datastore Admin 302 error

2011-12-06 Thread Kyle Baley
I'm trying to copy data from one app to another with the Datastore Admin console and when I do, I get: Fetch to https://appid.appspot.com/remote_api failed with status 302 I suspect strongly that it's an authentication issue and that the URL is redirecting to the Google login page. I have the

Re: [appengine-java] An alternative to Objectify?

2011-12-06 Thread David Chandler
Objectify works great with RequestFactory: http://code.google.com/p/listwidget/ Do you have a specific concern about it? /dmc On Tue, Dec 6, 2011 at 2:51 AM, Alexander Orlov alexander.or...@loxal.netwrote: *Is there a good/better alternative to Objectify?* I want to use a Datastore

Re: [appengine-java] How to export a RDBMS

2011-12-06 Thread Ikai Lan (Google)
How much of App Engine's documentation have you read? http://code.google.com/appengine/ This is going to be non trivial, and the answer is not something I can write out in an email unless there's an understanding of the persistence model GAE uses. -- Ikai Lan Developer Programs Engineer, Google

Re: [appengine-java] Multi-threading enabled with servlets

2011-12-06 Thread Amy Unruh
Jason, In general you'll want to use threadsafetrue/threadsafe. Without threading, if additional requests come in while an instance is executing a request, the additional requests will either be handled by other instances, or placed in a pending queue to wait until an instance is free (which of

[appengine-java] what's going on with getServingUrl ?

2011-12-06 Thread atarno
hey, in the last 5 hours all attempts to call imagesService.getServingUrl(blob) throw this exception: com.google.appengine.api.images.ImagesServiceFailureException: Unknown at com.google.appengine.api.images.ImagesServiceImpl.getServingUrl(ImagesServiceImpl.java:237) this happens for

[appengine-java] Re: 1.6.1 Pre-release SDKs are live

2011-12-06 Thread John Wheeler
And exactly which front-end instance class have we all currently been using? I hope the lowest one-- I don't want to suffer a performance hit and increased expenses. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this

[appengine-java] unable to deploy applications to appengine

2011-12-06 Thread Kesava Neeli
Hi, We are seeing 500 Internal Server errors on appengine while deploying applications. Anyone seeing similar issues? This is at 6:30 PM PST Thanks Neeli -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on

[appengine-java] Re: unable to deploy applications to appengine

2011-12-06 Thread Kesava Neeli
Worked fine at 10:00 PM PST -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/KDRyiFN60H4J. To post to this group, send email to

Re: [appengine-java] An alternative to Objectify?

2011-12-06 Thread Raphael André Bauer
On Tue, Dec 6, 2011 at 10:20 PM, David Chandler drfibona...@google.com wrote: Objectify works great with RequestFactory: http://code.google.com/p/listwidget/ Do you have a specific concern about it? Btw - JPA2 and Objectify are similar in terms of technology. So you can always use