[appengine-java] Deploy Issues in 1.5.3

2011-08-17 Thread Robert Lancer
Getting Found interface com.google.appengine.tools.admin.Application, but class was expected - as soon as deploy button was hit, tried it on two of my projects. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this

[appengine-java] com.google.apphosting.api.DeadlineExceededException

2011-08-12 Thread Robert Lancer
Getting a lot of:com.google.apphosting.api.DeadlineExceededException And my app is on HRD. -- 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] Re: com.google.apphosting.api.DeadlineExceededException

2011-08-12 Thread Robert Lancer
Back working now, thought HR was supposed to deal with these issues more elegantly than going down for over a half hour. -- 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] Looking for App Engine developer **Paid Contract**

2011-07-09 Thread Robert Lancer
We are looking for an App Engine Java developer to build a phase one of a social a Facebook driven web application. Looking to spend $2,500 for the phase one of the project. Must be able to build a general UI, CSS / AJAX. There will also be a graphics designer working on the project. If

[appengine-java] Looking for App Engine developer **Paid Contract**

2011-07-09 Thread Robert Lancer
We are looking for an App Engine Java developer to build a phase one of a social a Facebook driven web application. Looking to spend $2,500 for the phase one of the project. Must be able to build a general UI, CSS / AJAX. There will also be a graphics designer working on the project. If

[appengine-java] Looking for App Engine developer **Paid Contract**

2011-07-09 Thread Robert Lancer
We are looking for an App Engine Java developer to build a phase one of a social Facebook driven web application. Looking to spend $2,500 for the phase one of the project. Must be able to build a general UI, CSS / AJAX. There will also be a graphics designer working on the project. If

Re: [appengine-java] 1.4.2?

2011-02-10 Thread Robert Lancer
How do we disable that check? Considering that we could break our deployed apps by upgrading. -- 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

[appengine-java] Re: periodic downtimes

2011-02-10 Thread Robert Lancer
Are you sure its not the datastore throwing an error because its busy? Other API's might still be working, maybe rely on memcache and tasks and stuff to balance datastore fails. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

[appengine-java] Re: Using JAIN-SIP

2010-11-27 Thread Robert Lancer
*not on the white list, white list is the core java classes which can be used On Nov 27, 2:16 am, Robert Lancer robert.lan...@gmail.com wrote: As long as it has no dependencies which are on the white listhttp://code.google.com/appengine/docs/java/jrewhitelist.htmlit should work. On Nov 25

[appengine-java] Re: Using JAIN-SIP

2010-11-26 Thread Robert Lancer
As long as it has no dependencies which are on the white list http://code.google.com/appengine/docs/java/jrewhitelist.html it should work. On Nov 25, 8:44 am, SIPuser sale...@gmail.com wrote: Hello, I like to implement SIP entities that uses JAIN-SIP. Does GAE supports JAIN-SIP at this

[appengine-java] Re: Java low level API type conversions

2010-11-24 Thread Robert Lancer
For numbers you can use the java.lang.Number its the parent class of all numbers. It has methods like shortValue(), longValue() ... that you can use to extract values. For Lists just extract a Collection and convert the collection to a list. Strings are the most complicated, because a you need a

[appengine-java] Re: pdf

2010-11-18 Thread Robert Lancer
Try this http://docs.google.com/viewer On Nov 18, 7:23 am, thangavel s thangaveln...@gmail.com wrote: hi,   how to use OCR in pdf and way to convert pdf to image conversion.any viewer for pdf show in browser for rotate. -- You received this message because you are subscribed to the Google

[appengine-java] Re: does GAE support between operator?

2010-11-16 Thread Robert Lancer
You can set two filter properties, one for greater than and one for less than. http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/Query.html Ex: Query q = new Query(KIND); q.addFilter(Prop , Query.FilterOperator.GREATER_THAN_OR_EQUAL , startVal);

[appengine-java] Re: GAE or EC2

2010-11-09 Thread Robert Lancer
Well I certainly hope the lockin will end very soon (I've been waiting for over a year), http://code.google.com/cloudportability/ But who knows, I've learned you cant trust Google, they are even trying to kill net neutrality! On Nov 9, 9:08 am, Maxim Veksler ma...@vekslers.org wrote: Hi Ikai,

[appengine-java] Re: Two apps hitting the same datastore

2010-11-07 Thread Robert Lancer
create a rest api and use urlfetch On Nov 7, 5:23 pm, Eyal twoworldsf...@gmail.com wrote: Hi all, I need to have two separate applications hitting the same datastore. One updates it daily, and the other (app engine and GWT) reading from it on a regular basis. How is this done? Is there a way

[appengine-java] Re: Hierarchical Search

2010-10-31 Thread Robert Lancer
Tell me if your looking for something like this http://arachnotube.appspot.com/ - it lets you browse a hierarchy of videos On Oct 31, 4:57 pm, Ben Woodhead benwoodhead1...@gmail.com wrote: Its around 16:55 in the second video link. -- You received this message because you are subscribed to the

[appengine-java] Re: Channel API still not live...

2010-10-25 Thread Robert Lancer
They will notify you if you get picked, they dont activate it for everyone just a few testers. On Oct 25, 10:47 am, stole goran.stoj...@gmail.com wrote: Hello everybody. Following Ikai's instructions I signed up for Channel API trusted tester last Friday (2010/10/22). The API has not yet

[appengine-java] Re: Web Hook - Asynchronous - Where is my response?

2010-10-06 Thread Robert Lancer
You fire the task and the task is retried until the operation is complete, you can see the tasks being retried in the admin console, but there is no hook to when its completed, considering that it may take a day or two to complete based on how many retries are required. On Oct 6, 1:10 pm, Andy

[appengine-java] Re: Web Hook - Asynchronous - Where is my response?

2010-10-06 Thread Robert Lancer
A datastore operation for when the task completes would prob be your best bet. On Oct 6, 3:23 pm, Andy hksduhk...@gmail.com wrote: Thanks for your quick reply Robert. So is there a way to check the task status by task ID or some sort? -- You received this message because you are subscribed

[appengine-java] Re: Namespace design issues

2010-09-24 Thread Robert Lancer
What about the ability to move an entity to a namespace? On Sep 23, 10:57 pm, John Patterson jdpatter...@gmail.com wrote: On 24 Sep 2010, at 02:55, Mouseclicker wrote: API. The need to set and later reset a global setting is dangerous and error-prone. Probably that's what Guillaume mentions

[appengine-java] Re: 1MB URL Fetch limit and blobstore service

2010-09-13 Thread Robert Lancer
Humm, Im not sure this would work but maybe you could use a transfer or send redirect to do the upload since the blob store upload URL is within your app. On Sep 13, 3:08 pm, Lucian Baciu lucianba...@gmail.com wrote: What I meant is actually send POST requests using the URL Fetch API to the

[appengine-java] Re: Oracle sues Google on Java Patents and Copyright

2010-08-14 Thread Robert Lancer
The 1998 suite was more about trademark, since MS created J++, using Sun's Java branding in their completely non Java programming language. On Aug 14, 12:15 pm, Guillermo Schwarz guillermo.schw...@gmail.com wrote: Reminds me of 1998, when Sun sued Microsoft over modifications on Java, which

[appengine-java] VMware + Google App Engine

2010-07-27 Thread Robert Lancer
Since Google IO we haven't heard much about the VMware + GAE partnership, not to rush anybody but an update would be appreciated. -- 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: Are the 2 indexes same?

2010-07-20 Thread Robert Lancer
No they are not, that would actually create two indexes even though your queries against these indexes might be fairly interchangeable. On Jul 20, 6:57 pm, Tapir tapir@gmail.com wrote:     datastore-index kind=Employee ancestor=false         property name=numComments direction=desc /      

[appengine-java] Re: rename a app-id

2010-07-18 Thread Robert Lancer
No, you have to create a new one and transfer everything. On Jul 18, 12:02 am, aswath satrasala aswath.satras...@gmail.com wrote: Hello, Is there any way I can rename my app-id. -Aswath -- You received this message because you are subscribed to the Google Groups Google App Engine for Java

[appengine-java] Re: how should I design my data model for following scenario

2010-07-11 Thread Robert Lancer
I dont fully understand the problem, but you might want to look into using the IN filter option that can take a list of items and return the associated entities, if the list is small enough you can cook up the set operations in memory. On Jul 11, 6:58 am, Parvez parvez.chau...@gmail.com wrote:

[appengine-java] Re: Eclipse/Ant/SDK best practice

2010-07-04 Thread Robert Lancer
Helios has worked perfect for me with the new Google Plugin, I just pointed it to my workspace directory and it picked up all my projects with no problems. On Jul 3, 11:43 pm, Roy roy.smith@googlemail.com wrote: I do all my development in Eclipse, and then use ant for automated test and

[appengine-java] Re: app engine and db server elsewhere...

2010-07-03 Thread Robert Lancer
You can, it just depends how you connecting to the DB, you might want to create a restful interface on your database server that can server data to app engines using the URL fetch service. On Jul 3, 6:43 pm, Jaroslav Záruba jaroslav.zar...@gmail.com wrote: No. On Jul 3, 9:47 pm, emigrant

[appengine-java] Re: GAE and Google Apps

2010-06-06 Thread Robert Lancer
Invite a gmail version of yourself to your app as an admin and use that account to upload. On Jun 5, 9:16 am, i...@ontologycentral.com i...@ontologycentral.com wrote: Hi, I've signed up for Google Apps to be able to use a custom domain name for my GAE applications.  That works now, however,

[appengine-java] Re: Prerelease 1.3.4 SDK ready for download

2010-05-13 Thread Robert Lancer
Yeah, whats with the with OpenID by selecting the OpenID option when creating your application, I hope this doesn't means that all our existing apps will be locked out. On May 13, 2:17 pm, atomi at...@verizon.net wrote: Are there API reference docs for the OpenID support? It seems as though a

[appengine-java] Re: is createFederatedLoginURL() working?

2010-05-12 Thread Robert Lancer
Needs more docs for this. On May 12, 4:54 am, antichrist ttlt...@gmail.com wrote: I also trying to use this. In my case, I want to log in via my apps domain id (ex: exampl...@example.com), So HashSetString attributes = new HashSet();

[appengine-java] Re: is createFederatedLoginURL() working?

2010-05-12 Thread Robert Lancer
Me too, some documentation would be helpful. On May 12, 4:54 am, antichrist ttlt...@gmail.com wrote: I also trying to use this. In my case, I want to log in via my apps domain id (ex: exampl...@example.com), So HashSetString attributes = new HashSet();

[appengine-java] Re: Have to load many objects vs. getObjectById()

2010-04-03 Thread Robert Lancer
You can get many Entities by Key, check out http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/DatastoreService.html#get(java.lang.Iterable) On Apr 3, 4:36 pm, Henning henning2...@hotmail.de wrote: Hello, if I have the keys for many objects and want to

[appengine-java] Re: Best way to perform search on DataStore - Design Question

2010-03-14 Thread Robert Lancer
Haha, like many of us you probably thought that GOOGLE app engine would have decent text search capabilities. It looks like your doing all you can do by creating the inverse table, you may just want to star http://code.google.com/p/googleappengine/issues/detail?id=217 On Mar 13, 8:59 pm,

[appengine-java] Re: initialization of datastore

2010-03-14 Thread Robert Lancer
A query has to specify an entity kind as its minimum parameter, and then doing a count and seeing if its equal to zero for a known entity kind would be the best way. On Mar 13, 1:44 pm, vchalmel groupeprojeten...@gmail.com wrote: hi ! I want to set up an initialization script, and i must, in a

[appengine-java] Re: Not able to write string arrays in data store

2010-03-11 Thread Robert Lancer
have my code with me right now..I will post it in a day or two. Meanwhile, do you have any example of handling two dimensional arrays into two separate lists of ArrayList? -Thanks Ganesh On Mar 10, 5:17 pm, Robert Lancer robert.lan...@gmail.com wrote: Just use two separate lists

[appengine-java] Re: Flash arcade game GAE based

2010-03-08 Thread Robert Lancer
Yeah, I certainly would not use GAE Java for anything that has to be semi real time. Have you checked out Red5.org or Web Orb at themidnightcoders.com? Those are designed to work directly with Flash. On Mar 8, 10:56 am, Ahmed Khalifa derkhal...@gmail.com wrote: thanks a lot .. however, i am

[appengine-java] Re: Made a Facebook Page For App Engine For Java Issues

2010-03-04 Thread Robert Lancer
Locke well said again! I did totally miss that TC article, my bad. But seeing Google exces walk around telling the world how fast they are makes me mad! Have you seen Google's new home internet service? Google execs need to be called out more publicly on this hypocrisy. The main reason I bought

[appengine-java] Re: Made a Facebook Page For App Engine For Java Issues

2010-03-04 Thread Robert Lancer
Jeff please watch this http://www.youtube.com/watch?v=aXJklICrFJI On Mar 4, 9:16 pm, Jeff Schnitzer j...@infohazard.org wrote: On Thu, Mar 4, 2010 at 4:34 PM, Locke locke2...@gmail.com wrote: Really? Are you absolutely certain that it is technically impossible to spin up an app *before*

[appengine-java] Re: Made a Facebook Page For App Engine For Java Issues

2010-03-04 Thread Robert Lancer
to run? You can email me at robert dot lancer @ gmail -Rob On Mar 4, 9:46 pm, Jeff Schnitzer j...@infohazard.org wrote: On Thu, Mar 4, 2010 at 6:31 PM, Robert Lancer robert.lan...@gmail.com wrote: Jeff please watch thishttp://www.youtube.com/watch?v=aXJklICrFJI That reinforces my opinion

[appengine-java] Re: App Engine cold starts and overly aggressive cycling

2010-03-03 Thread Robert Lancer
Me too App ID ArachnoDB loading GData and its dependencies, happens about every 2 minutes on average, I will add in a logger and follow up but I can tell a load request from a normal request. On Jan 15, 6:32 pm, Ikai Lan i...@google.com wrote: Hey everybody, We've been seeing more and more

[appengine-java] Made a Facebook Page For App Engine For Java Issues

2010-03-03 Thread Robert Lancer
Google Please Fix App Engine For Java http://www.facebook.com/pages/Google-Please-Fix-App-Engine-For-Java/372774516220 Enough is enough! Sometimes app engine for java works like a dream, other times your page takes two minutes to load or throws an error. How could google even tolerate a load

[appengine-java] Re: Made a Facebook Page For App Engine For Java Issues

2010-03-03 Thread Robert Lancer
Haha, I agree. But google groups lacks the key ability to post pictures videos... Also a large number of fans on a group titled Google Please Fix App Engine For Java would send a loud message. On Mar 3, 1:11 pm, Corby cep...@gmail.com wrote: Somehow, I suspect that the continual, specific

[appengine-java] Re: Made a Facebook Page For App Engine For Java Issues

2010-03-03 Thread Robert Lancer
yourapp.com landing page somewhere so that it loads an image from yourapp.appspot.com and therefore loads your app. This way your users would see your app responsive all the time. On 3 mar, 15:33, Robert Lancer robert.lan...@gmail.com wrote: Haha, I agree. But google groups lacks the key

[appengine-java] Re: App Engine and Spring slow start up

2010-03-03 Thread Robert Lancer
The problem is one I face without even using spring, google loves to lecture people on how the web should be fast but this doesn't apply to their own app engine platform. Express your frustration at my fb page http://www.facebook.com/pages/Google-Please-Fix-App-Engine-For-Java/372774516220 feel

[appengine-java] Re: Performance Issues

2010-03-03 Thread Robert Lancer
Join the google dosent care about app engine performance club. To see how much google dosent care just check out their own app engine status page. http://code.google.com/status/appengine Isnt it funny how google lectures the whole world about how the web should be faster? Also some things you