[appengine-java] Re: DataStore Statistics not updated for at least 2 days

2011-07-17 Thread lp
magic. the statistics have been updated. thanks mr google. -lp -- 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/-/HvDe2orXucgJ. To post

[appengine-java] Re: Cannot to read the file under /WEB-INF/classes/

2011-07-17 Thread Martin Newstead
I have a config file in WEB-INF/conf and I pass the location using an init-param (called propfile) to a servlet. Then in the servlet I use propFile = getServletConfig().getInitParameter(propfile); base = getServletContext().getRealPath() + FS; where FS is

[appengine-java] Re: Experimental blobstore api returning null keys on blob creation

2011-07-17 Thread tempy
That's exactly my issue, starred, thanks Tom. This has been a high priority issue for 3 months now, and still open! On Jul 17, 4:41 am, Tom Fishman tom.fish...@dishcrunch.com wrote: Assuming you're talking about new blobs, please check this

[appengine-java] Re: HashMap within an Embedded Class

2011-07-17 Thread objectuser
I think this is pretty much busted. Within top-level entity, it's fine. In and embedded entity, I get the error in the OP. -- 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: How to ensure two entities are updated WITHOUT using transactions?

2011-07-17 Thread mscwd01
Okay, so after testing this, I have one issue. If the second update fails (in the afterCompletion method) there is no way to rollback the transaction to prevent the first update (adding 10 to userGameCredits object) taking effect - as the transaction is no longer active at this point. Am I missing

[appengine-java] appspot.com without www domain names - but not a general word to remember and refer to -

2011-07-17 Thread dreamer
Hi, My apps url is http://schoolk12.appspot.com/;. I had hard time remembering this URL, for sure I can not expect general user to remember this. So I have to have www domain name. I din't have any intention of buying domain name any time soon.I am hoping App engine+GWT+Datastore - really

Re: [appengine-java] appspot.com without www domain names - but not a general word to remember and refer to -

2011-07-17 Thread Wilson MacGyver
I actually like appspot.com. If you dislike it, you can always get a domain name and mount it on google apps. Or register a domain name and redirect it yourself. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this

Re: [appengine-java] appspot.com without www domain names - but not a general word to remember and refer to -

2011-07-17 Thread jMotta
You must be kidding, right? They're already giving you a free domain name with all possible services without charge anything and you request a domain easy to remember. Why don't you buy one? You've said that you could pay for this service, go on! *Jayr Motta* Software Developer * * I'm on

[appengine-java] Re: appspot.com without www domain names - but not a general word to remember and refer to -

2011-07-17 Thread dreamer
=Why don't you buy one? One extra requirement, takes long way in larger scope. What I mean is, for sure if app engine widely becomes popular, appspot.com may become normal word for non tech folks. but there are already popular words available like cloud , sky, which straight away can be

Re: [appengine-java] Re: appspot.com without www domain names - but not a general word to remember and refer to -

2011-07-17 Thread jMotta
I think you got the whole internet thing wrong. When you have a business, doesn't matter for your users if it's written in Java or ASM, they just care if it works or won't. So, if it will be appengine or anything else it's much more a choice from you than from anyone else. In other words, your

[appengine-java] Re: appspot.com without www domain names - but not a general word to remember and refer to -

2011-07-17 Thread dreamer
I agree. For existing businesses possibly they carry their domain. (app engine for business). But App Engine gives platform gives opportunity for creating new businesses. Having www domain is good, but having easy to remember free domain also does not hurt. On Jul 17, 9:17 am, jMotta

[appengine-java] calling rest api

2011-07-17 Thread Vik
Hie In my code i am looking to call rest api to send some sms to a sms gateway. How can i do it from my app engine code for java ? Please advise Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org -- You received this message because you are subscribed to the

Re: [appengine-java] Re: appspot.com without www domain names - but not a general word to remember and refer to -

2011-07-17 Thread Jeff Schnitzer
Shrug. Given that any domain chosen cannot have google as part of it (G doesn't want to convey any kind of public endorsement of our applications), appspot seems about as good as any. Sure cloud.com would be nice but I'm pretty sure the people already using cloud.com have other ideas on the

[appengine-java] Re: dev_appserver.sh to allow restricted classes

2011-07-17 Thread gabriel munteanu
Hi, I want to debug a js application in rhino on appengine. on localhost, i want to debug it with rhino's debugger, but i cannot as it uses a jframe class for the windowstuff, and dev_appserver.sh spits an error with restricted class. is there a flag or any other way to load restricted classes

[appengine-java] Re: How to ensure two entities are updated WITHOUT using transactions?

2011-07-17 Thread Nichole
Good point, I rewrote the code below to better use the available connections and improve the pattern. Regarding update 1 being committed and update 2 failing, the first is already committed, yes. I think one has to use a retry for the 2nd update (using the task queue structure) for the 2nd

[appengine-java] Help...How to convert png to jpg? Every time got black/orange background...

2011-07-17 Thread Zhenyu Wang
String iUrl = http://upload.wikimedia.org/wikipedia/commons/5/5c/Torchlight_help.png;; URLFetchService fetchService = URLFetchServiceFactory.getURLFetchService(); HTTPResponse fetchResponse = fetchService.fetch(new URL(iUrl)); byte[] oldImageData = fetchResponse.getContent(); Image oldImage =

Re: [appengine-java] calling rest api

2011-07-17 Thread Khor Yong Hao
Should you trying to use URL Fetch, issue a HTTP request to your rest api URL? On Mon, Jul 18, 2011 at 1:20 AM, Vik vik@gmail.com wrote: Hie In my code i am looking to call rest api to send some sms to a sms gateway. How can i do it from my app engine code for java ? Please advise

Re: [appengine-java] calling rest api

2011-07-17 Thread Vik
yes basically i want to use http req to call the api which will return a xml response. Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Mon, Jul 18, 2011 at 11:14 AM, Khor Yong Hao fyh...@gmail.com wrote: Should you trying to use URL Fetch, issue a HTTP