[appengine-java] Re: Consistent timeout when fetching from an unverified source via HTTPS

2011-04-05 Thread Alex Langhart
Some examples to illustrate the bug... This snippet from a servlet's doGet() method displays the returned headers for a redirect as expected. This happens on BOTH the dev server and the production server because it's responding with a redirect to use HTTPS: public void

[appengine-java] Re: Multi value entity SetString

2011-04-05 Thread Cyrille Vincey
Add a @Basic annotation to your SetString property. -- 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: Tips/Pitfalls for total newbies?

2011-04-05 Thread nischalshetty
I've been on GAE from the start of 2010. This thread still seems delicious. Thank you all for posting the wonderful comments. -N On Apr 4, 6:03 pm, Drew Spencer slugmand...@gmail.com wrote: Sounds great Ikai, I'm sure it's going to be a great resource for people in my position. Sorry if my

[appengine-java] Re: JPA/JDO vs low level API

2011-04-05 Thread SkYlEsS
Thanks you so much for all this responses everybody ! -- 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: JSF 2 state saving on server

2011-04-05 Thread sgrueter
Hello Daniel Thanks for the information. After reading the document

[appengine-java] Re: Resize image to exact size using ImagesService

2011-04-05 Thread mscwd01
No one? I guess I'll have to resize it myself then. I'm surprised the Image Service cant do this. On Apr 3, 7:10 pm, mscwd01 mscw...@gmail.com wrote: Hi Is there a way to resize an image to an exact size? I am currently using this: ImagesServiceFactory.makeResize(width, height); However,

Re: [appengine-java] Re: JSF 2 state saving on server

2011-04-05 Thread Derek Berube
Hello, I'm the author of the article that Daniel referred you to and I wanted to provide some clarification on what I meant by appears to handle in the comments regarding the javax.faces.STATE_SAVING_METHOD parameter in the web.xml. Problems that I have had in the past with storing state on

[appengine-java] Re: looking for speakers for talks on App Engines

2011-04-05 Thread Chris Westin
bump On Mar 25, 7:54 am, Chris Westin cwes...@yahoo.com wrote: Hello, I organize the speakers for the SF Bay Area Large-Scale Production Engineering Meetup (http://www.meetup.com/SF-Bay-Area-Large-Scale- Production-Engineering/). For our event on the evening of Thursday April 21st, I'm

[appengine-java] Sending/Receving data to/from my application

2011-04-05 Thread jake189
Hi, I programmed my simple application and located it in google's server. And now, I want to send variables from my client (locates on my computer) to this application, then it performs and send back results to my client. Sending and receiving dont use JSP, can I do it? Because with large

[appengine-java] Re: Sending/Receving data to/from my application

2011-04-05 Thread Didier Durand
Hi, You can simply post (http POST request) and get (http GET request) from your client which can then be a very simple batch java program. You do those http requests on the url of your servlet. That's the simples way I know. regards didier On Apr 5, 3:18 pm, jake189 binhmin...@gmail.com

[appengine-java] Re: cron: AppEngineConfigException: schedule every 5 mins from 00:04 to 23:59 failed to parse

2011-04-05 Thread epure
Ping -- 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 google-appengine-java+unsubscr...@googlegroups.com. For

[appengine-java] Integrating Flex/Flash/Silverlight/AJAX/Android with Java classes in GAE

2011-04-05 Thread Mark Piller
Hey guys, I am not sure what the policy for announcements is on this forum, but I hope many of you will find it relevant. I just wanted to let you know that we released a version of our software which provides runtime integration between various client types and Java classes hosted in GAE. The

[appengine-java] blobstoreService.createUploadUrl - empty blob for every file, even if no file is submitted

2011-04-05 Thread Joachim Gevaert
I have form with some input where I do action to blobstore. form name=templateform id=templateform method=post action=%=blobstoreService.createUploadUrl( /Update) % enctype=multipart/form-data input type=file name=pic1 id=pic1 input type=file name=pic2 id=pic2 input type=file name=pic3

[appengine-java] Can i run a python and java server pointing to the same appspot id but different versions?

2011-04-05 Thread ruskyn
Hi All, I was wondering if this can be done. If so, supposed my datastore uses JDO , how can i provide access to my python counterpart. Apologies if my question sounds bizarre ! -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

Re: [appengine-java] Sending/Receving data to/from my application

2011-04-05 Thread Jeff Schnitzer
Caucho's hessian server implementation runs reasonably well on appengine, and you can find hessian clients in just about any language. Jeff On Tue, Apr 5, 2011 at 6:18 AM, jake189 binhmin...@gmail.com wrote: Hi, I programmed my simple application and located it in google's server. And now, I

[appengine-java] Re: JPA/JDO vs low level API

2011-04-05 Thread Andrew
I couldn't agree more with Jeff. JDO/JPA on GAE is pants for any real project. I am part of a 4 person development team that recently completed a fairly hefty 6 month GAE project built using GAE, GWT and Guice. We used JDO/Datanucleus for the persistence technology which caused significant

[appengine-java] Breakpoint not being hit in Eclipse

2011-04-05 Thread Peter
Folks, I am using Eclipse 3.6. I have installed the App Engine plugin for Eclipse, App Engine SDK, GWT, etc. I just created a sample Web Application Started Project. I am able to run it as Project--Debug As--Web Application. From Firefox, I am able to navigate to http://localhost: and

Re: [appengine-java] Breakpoint not being hit in Eclipse

2011-04-05 Thread Ashwani Gupta
When you are in debug mode, change your perspective to Debug and then try again. On Tue, Apr 5, 2011 at 10:24 PM, Peter ptr...@gmail.com wrote: Folks, I am using Eclipse 3.6. I have installed the App Engine plugin for Eclipse, App Engine SDK, GWT, etc. I just created a sample Web

[appengine-java] How to authenticate from iPhone client to App Engine server

2011-04-05 Thread Peter
Folks, I am planning to develop a client-server application. The client will be an iPhone/Android application. The server will be running on App Engine. I intend to implement only SOAP based services on the server side. One issue that I need to resolve is that of authentication. In the iPhone

Re: [appengine-java] Breakpoint not being hit in Eclipse

2011-04-05 Thread Peter
Thank you for your help. I am already in debug perspective. Regards, Peter -- 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

Re: [google-appengine] Neat way to remove obsolete properties from entities?

2011-04-05 Thread Robert Kluin
Hey Greg, Assuming you are deleting the property definition from the Model, then I think you can also use: your_entity._entity.pop('property_to_delete', None) It is shorter, and probably a little clearer. Robert On Tue, Apr 5, 2011 at 00:17, Greg g.fawc...@gmail.com wrote:

Re: [google-appengine] MS-HR Migration

2011-04-05 Thread Robert Kluin
Hey Greg, You might also check out the Datastore Admin. Some of the Googlers have already done more-or-less what you describe: http://code.google.com/appengine/docs/adminconsole/datastoreadmin.html Otherwise, you could do something like what you describe. Personally I would probably

Re: [google-appengine] google app engine with web2py

2011-04-05 Thread Robert Kluin
You probably need to go through their book: http://web2py.com/book/ I think the Overview explains something about how URLs are routed to controllers. http://web2py.com/book/default/chapter/03#Overview They also seem to have some type of tutorial for using it with App Engine:

[google-appengine] Re: MS-HR Migration

2011-04-05 Thread Greg
On Apr 5, 6:35 pm, Robert Kluin robert.kl...@gmail.com wrote: Hey Greg,   You might also check out the Datastore Admin.  Some of the Googlers have already done more-or-less what you describe:      http://code.google.com/appengine/docs/adminconsole/datastoreadmin.html Awesome! As long as it

[google-appengine] A problem of application ID

2011-04-05 Thread Sara
I used to sign up an App Engine application by a Google Apps account, and then I deleted the Google Apps in order to use a shorter domain name. (I didn’t find the way to change the primary domain name of a Google Apps, so I deleted it and founded a new Google Apps under the shorter domain

[google-appengine] Re: A problem of application ID

2011-04-05 Thread Simon Knott
Hi, Once an application ID has been used it can't be used again, whether it has been deleted or not. See http://code.google.com/appengine/kb/adminconsole.html#delete_app for more information. Cheers, Simon -- You received this message because you are subscribed to the Google Groups Google

Re: RE: [google-appengine] GAE and own domain

2011-04-05 Thread DisruptiveTechnology
The app service is deployed. That works fine. The domain is now pointing to Google Domains and displaying a typical landing page, rather than my app. It was parked before.. The set-up between a domain and GAE really should not take this amount of time. It would help if there was one place

RE: RE: [google-appengine] GAE and own domain

2011-04-05 Thread Brandon Wirtz
Typically it takes us about 8 minutes to go from nothing, to deployed app, accept when Apps For Domains was being flaky last week. From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of DisruptiveTechnology Sent: Tuesday, April 05, 2011 1:26 AM To:

Re: [google-appengine] 24 hours of data on charts

2011-04-05 Thread Simon Knott
I've just noticed that my HR apps have reverted to only showing 24hrs worth of data again. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this

[google-appengine] Re: Huge latencies and so many 500 errors/Deadline Exceeded

2011-04-05 Thread Ice13ill
I have a minor problem: if i want to enable datastore admin (java application) i need to use the python script (appcfg.py), but when i upload the files, i get an error for the appengine sdk jar (which is larger that 10mb). The app is in production so i cant set that app default because it does not

[google-appengine] Re: Huge latencies and so many 500 errors/Deadline Exceeded

2011-04-05 Thread Ice13ill
i get this message: ERROR appcfg.py:1865 Ignoring file 'war/WEB-INF/lib/appengine-api-1.0- sdk-1.4.3.jar': Too long (max 10485760 bytes, file is 16520949 bytes) On Apr 5, 2:19 pm, Ice13ill andrei.fifi...@gmail.com wrote: I have a minor problem: if i want to enable datastore admin (java

Re: RE: [google-appengine] GAE and own domain

2011-04-05 Thread brett donovan
It might be quick without the domain issues...was fine before attempting to hook up the domain. I'm not having much luck with domain records at all..still my domain is not resolving to the app. On Tue, Apr 5, 2011 at 9:59 AM, Brandon Wirtz drak...@digerat.com wrote: Typically it takes us

[google-appengine] GAE points to Google Adsense for Domains

2011-04-05 Thread brett donovan
I previously had a domain parked. I have now attmpted to point this domain at the app, however it still points to the domain parking page. I have google apps set-up, but I cannot seem to find a smart way to problem solve this MX and CNAME records are set. Any ideas? -- You received this

[google-appengine] who can give me a demo using prospective search?

2011-04-05 Thread saintthor
after reading the document, i am not sure what it could do and how to use it. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email

Re: RE: [google-appengine] GAE and own domain

2011-04-05 Thread Stephen Johnson
Well, you haven't given us your app id or domain so hard to help you troubleshoot and you really haven't told us all the steps you've taken, so I'll throw out a couple of random things which you may have tried but here goes: 1.) Did you remember to remove Google Sites from your Apps domain? 2.)

[google-appengine] Re: Post about creating creating a Facebook application with Google App Engine and Google Web Toolkit in Java

2011-04-05 Thread nacho
Excellent post! Thanks for sharing! -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] Re: who can give me a demo using prospective search?

2011-04-05 Thread Kaan Soral
I also didn't understand anything from the documentation but as far as I understand it can't be used as a full-text search. For example I want a full-text search on a specified property of a model, but after reading the doc. 1-2 times I don't think it's built for that, i guess my use case is

[google-appengine] Re: Startup Weekend and Google App Engine

2011-04-05 Thread hector@ISB
A good argument against those VC worries is that GAE's term of service call for Google to support App Engine for at least 3 years even if they decide to kill the service... which is highly unlikely IMHO. https://groups.google.com/d/topic/google-appengine/PdPNmBoX_-s/discussion That should be

RE: [google-appengine] Re: Startup Weekend and Google App Engine

2011-04-05 Thread Brandon Wirtz
Google will use commercially reasonable efforts to continue to operate the Deprecated Version of the Service and to respond to problems with the Deprecated Version of the Service deemed by Google in its discretion to be critical. If you had a service that was growing, Google might keep the

[google-appengine] Re: Announcement: Deprecating Python 2.4 support (App Engine 1.4.3 SDK final release to support it)

2011-04-05 Thread Ben Welsh
I'd like to take this opportunity to +1 Python2.7 support. It's the default distribution in my development OS (Ubuntu) and it's pain to use 2.5, especially getting PIL to play nice. Besides my own little complaints, I think the SSL module is built into newer versions so you'd have fewer people

[google-appengine] Server Error (500) when deploying app

2011-04-05 Thread Ricardo Niederberger Cabral
Right now I get this error whenever I try to deploy my python app. Any ideas? - Scanning files on local disk. Scanned 500 files. Initiating update of app: xyz, version: 1 2011-04-05 21:50:22,199 WARNING appengine_rpc.py:428 ssl module not found. Without the ssl module, the

[google-appengine] Scheduled maintenance read-only downtime

2011-04-05 Thread Wesley C (Google)
NOTICE: users of the high replication (HR) datastore users are unaffected and do not have maintenance, read-only, nor downtime periods so you can effectively disregard this post. From time-to-time, we have to perform scheduled maintenance on App Engine systems. During these times, the datastore

Re: [google-appengine] Server Error (500) when deploying app

2011-04-05 Thread Jeff Schnitzer
Appengine is in a maintenance period. I presume that we are not normally supposed to be able to deploy new code during maintenance intervals. Google: It's not exactly true that HR applications are not affected by the maintenance period; we still can't do deployments... Jeff On Tue, Apr 5,

Re: [google-appengine] Server Error (500) when deploying app

2011-04-05 Thread Wesley C (Google)
yes, jeff, you are quite correct. maintenance periods affect MS datastore users as well as deployments across all apps. I'll make sure the wording is changed for the next one... thanks for your feedback!! -- You received this message because you are subscribed to the Google Groups Google App

Re: RE: [google-appengine] GAE and own domain

2011-04-05 Thread Jeff Schnitzer
On Tue, Apr 5, 2011 at 1:25 AM, DisruptiveTechnology br...@quotesmart.co.uk wrote: The set-up between a domain and GAE really should not take this amount of time. It would help if there was one place which has the information of all actual domain settings and changes to GAE and google apps in

RE: RE: [google-appengine] GAE and own domain

2011-04-05 Thread Brandon Wirtz
I already suffer from the Google all your base are belong to us having them have my DNS too would be to scary. Besides with Homeland hijacking domains with no warning or warrant you are best to use a Registrar and DNS not in the US. -Original Message- From:

Re: RE: [google-appengine] GAE and own domain

2011-04-05 Thread Jeff Schnitzer
Sure, I understand where you are coming from. But you trust Honest Abe's Used Domains more?? I've yet to meet anyone in the domain registry business that doesn't make me reach for my wallet to make sure it's still there. Jeff On Tue, Apr 5, 2011 at 6:42 PM, Brandon Wirtz drak...@digerat.com

[google-appengine] Re: GAE and own domain

2011-04-05 Thread Greg
Particularly Godaddy. The elephant episode was the last straw - I'm now with Namecheap who have a sane user interface, a fraction of the upselling, and a CEO who doesn't try to dress up his big game hunting as a humanitarian act. And they're cheaper. You can transfer active domains without too

Re: [google-appengine] GAE points to Google Adsense for Domains

2011-04-05 Thread Robert Kluin
Hi Brett, Perhaps you've not given the DNS servers time to update. If it still isn't working, flush your DNS cache then investigate with nslookup. Make sure you've got the mapping setup in Google Apps control panel. Robert On Tue, Apr 5, 2011 at 09:56, brett donovan

Re: [google-appengine] Re: Huge latencies and so many 500 errors/Deadline Exceeded

2011-04-05 Thread Robert Kluin
Why would you try to upload a Java app with the Python SDK? You might be interested in: http://code.google.com/appengine/docs/adminconsole/datastoreadmin.html Robert On Tue, Apr 5, 2011 at 07:19, Ice13ill andrei.fifi...@gmail.com wrote: I have a minor problem: if i want to enable

[google-appengine] Small error in datastore admin documentation

2011-04-05 Thread Greg
Hi - The datastore admin page is here: http://code.google.com/appengine/docs/adminconsole/datastoreadmin.html In step 1 of the procedure, I think the code should read: builtins: - datastore_admin: on So add : on to the line. Cheers Greg. -- You received this message because you are

[google-appengine] Datastore Admin

2011-04-05 Thread Greg
Hi - I assume this isn't related to my previous post, but the datastore admin page on my dashboard is blank. Does it take some time after adding the builtin to start working, perhaps the after the daily processing of datastore stats for kind enumeration? Cheers Greg. -- You received this

[google-appengine] Re: Small error in datastore admin documentation

2011-04-05 Thread Greg
I should have mentioned that without this change, appcfg.py says: Error parsing yaml file: Value element 'datastore_admin' for ??? must be type BuiltinHandler. in myapp/app.yaml, line 68, column 1 -- You received this message because you are subscribed to the Google Groups Google App Engine