Re: [appengine-java] Re: Could not fetch URL with URLFetchService but with HttpClient

2010-01-03 Thread m seleron
Hi, I'm sorry for being not able to explain adequately. I tried. cfm?fuseaction=Reports.SetReport ^ I think that this sign is a cause in the development where the Exception occurs. However, even if this sign is included I do not think that production garish

[appengine-java] Re: XMPP getPresence response not valid?

2010-01-03 Thread Sahil Mahajan
Thanks using getPresence(recipientJid, fromJid).isAvailable()) solved the problem On Jan 3, 10:43 am, timzon jerome.bre...@gmail.com wrote: Yes, sorry for not providing an update earlier. My problem was that I was not passing the From Jabber Id initially used tosendtheinvitet0 .isAvailable.

[appengine-java] Re: problem in XMPP sendMessage()

2010-01-03 Thread Sahil Mahajan
using getPresence(recipientJid, fromJid).isAvailable()) solved the problem found answer in http://groups.google.com/group/google-appengine-java/browse_thread/thread/13802bcecc63da4b/e5c17cc17e58d859?lnk=gstq=xmpp+send+invitepli=1 On Nov 30 2009, 12:51 pm, Sahil Mahajan sahilm2...@gmail.com

[appengine-java] Querying by Category class

2010-01-03 Thread Itzik Yatom
I consider to use the built in Category class for implementing tags for one of my datastore classes. Something like: . import com.google.appengine.api.datastore.Category; . @Persistent protected ListCategory tags; . My question is how do I filter objects by a tag value, for example I want to get

[appengine-java] SUBSTRING function for JPA

2010-01-03 Thread Wong
SUBSTRING function for JPA is not working. entityManager.createQuery(SELECT SUBSTRING(v.name, 1, 3) from Venue v) return v.name but NOT the substring. Anyone has any idea? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

[appengine-java] HIPAA compliance

2010-01-03 Thread Pion
http://www.slideshare.net/bess.ho/google-health-architecture-api (slide 28) shows that Google Health is using Google App Engine. Is Google App Engine HIPAA (Health Insurance Portability and Accountability Act - http://en.wikipedia.org/wiki/HIPAA) compliance ? -- You received this message

[appengine-java] https on my domain

2010-01-03 Thread Pion
http://code.google.com/appengine/kb/general.html#httpsapps says, Can I use SSL (HTTPS) on App Engine with my Google Apps domain? All secure traffic with Google App Engine must be served from your appspot.com domain (https://your-app-id.appspot.com). If you are serving your app off of a Google

[appengine-java] Re: https on my domain

2010-01-03 Thread Pion
http://www.slideshare.net/bess.ho/google-health-architecture-api (slide 28) shows that Google Health is using Google App Engine. I just registered to Google Health. After logging in, the url of the Google Health is https://health.google.com/health/p/ -- notice the https and no *.appspot.com How

[appengine-java] Amazon SDB / Other API's :- Has anyone tried using it in GAE/J ?

2010-01-03 Thread newbie100
Hi, Now that there is JAXB support, I was wondering if anyone has used any of the Amazon API's (Java Client Bindings), specifically SimpleDB, from a GAE/J application. Thanks. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

[appengine-java] Re: Request Too Large

2010-01-03 Thread Max
I am still getting that error com.google.apphosting.api.ApiProxy$RequestTooLargeException: The request to API call datastore_v3.Put() was too large. at com.google.apphosting.runtime.ApiProxyImpl.doSyncCall (ApiProxyImpl.java:212) at

Re: [appengine-java] unable to delete cron job

2010-01-03 Thread yjun hu
?xml version=1.0 encoding=UTF-8? cronentries/ On Sun, Jan 3, 2010 at 2:54 PM, Jeff Schnitzer j...@infohazard.org wrote: It's not really intuitive behavior. It's basically summed up in this bug: http://code.google.com/p/googleappengine/issues/detail?id=2530 Jeff On Sat, Jan 2, 2010 at

[appengine-java] Re: strange question about Ehcache

2010-01-03 Thread yjun hu
anybody here? On Thu, Dec 31, 2009 at 3:28 PM, yjun hu itswa...@gmail.com wrote: my project works with spring+ struts2+Encache, and it works fine on my local machine, but when i deploy to GAE, it got one error when run Ehcache It seems that project can not * initialize class

[appengine-java] Re: strange question about Ehcache

2010-01-03 Thread yjun hu
ok! i deploy my app to server with ehcache 1.6.0 replace, and it works fine now it seems gae does not support ehcache 1.7.1 On Mon, Jan 4, 2010 at 10:29 AM, yjun hu itswa...@gmail.com wrote: anybody here? On Thu, Dec 31, 2009 at 3:28 PM, yjun hu itswa...@gmail.com wrote: my project works

[appengine-java] Re: HIPAA compliance

2010-01-03 Thread Doug
From reading the Google Health FAQ I think the answer to your question is no, but they don't need to be. Is Google Health covered by HIPAA? Unlike a doctor or health plan, Google Health is not regulated by the Health Insurance Portability and Accountability Act (HIPAA), a federal law that

[appengine-java] Re: Spring application context initialization on every request

2010-01-03 Thread zhiw...@gmail.com
have a look at this link: http://groups.google.com/group/google-appengine-java/browse_thread/thread/603cc766d1e1c3d4/88913abfcb6351e8 On Dec 31 2009, 6:17 pm, Naim mdnh...@gmail.com wrote: Hi, I have deployed a small application on appengine using Spring framework. But I have noticed, if my

[appengine-java] Re: strange question about Ehcache

2010-01-03 Thread asianCoolz
are u using jpa ? if yes, are you annotating your jpa entity with cache? -- 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-j...@googlegroups.com. To unsubscribe from this group,

[appengine-java] log4j logging everything as INFO even though I'm doing log.error(xxx);?

2010-01-03 Thread Tb
Hi, I switched to log4j in my app because of the (supposed) ease to send out emails with log traces but it's not coming out right in the GAE log console. Every error seems to come out as INFO which is pretty confusing... Am I missing something? -- You received this message because you are

Re: [appengine-java] Re: strange question about Ehcache

2010-01-03 Thread yjun hu
i'm using jdo,and now it run okay after i replace with ehcache 1.6.0 On Mon, Jan 4, 2010 at 12:45 PM, asianCoolz second.co...@gmail.com wrote: are u using jpa ? if yes, are you annotating your jpa entity with cache? -- You received this message because you are subscribed to the Google

[google-appengine] Re: How to test my application with local database

2010-01-03 Thread Nickolas Daskalou
You can't use MySQL or any other traditional RDBMS with App Engine, you'll need to use Google's Datastore: http://code.google.com/appengine/docs/java/datastore/ On Jan 2, 7:04 pm, mobject mobj...@gmail.com wrote: Hello, I would like to test my app with local db before deploying to APPEngine

[google-appengine] Re: How to test my application with local database

2010-01-03 Thread David Sowerby
You may also find this useful, it describes setting up a datastore test environment http://code.google.com/appengine/docs/java/howto/unittesting.html On Jan 3, 9:01 am, Nickolas Daskalou n...@daskalou.com wrote: You can't use MySQL or any other traditional RDBMS with App Engine, you'll need

[google-appengine] Re: Possible to remove white background from image?

2010-01-03 Thread Sudhir
Might not work that way even if its possible... if the image has white inside it (like someone's teeth) they go transparent too. Sudhir On Jan 3, 5:10 am, trung tr...@phamcom.com wrote: Is it possible to remove the white background from a PNG image in order to make it look transparent? Has

[google-appengine] Re: Anyone operate a heavy-traffic large-scale web service on app engine?

2010-01-03 Thread Michael
I have around 4 million requests per day. The cost is $65 per week. In my opinion, at present App Engine is too expensive for sites with free business model. On Jan 3, 8:59 am, dhruvg dhruv.g...@gmail.com wrote: I am just curious. If anyone does, could you please provide some statistics (number

[google-appengine] Index building CPU time

2010-01-03 Thread jd
Hi, I am in the process of importing data into my application and notice about 10x clock time CPU usage - that is each 30 second task uses about 300 seconds of CPU quota. I assume that this is mainly used indexing my entities - each has about 70 properties indexed (a geospatial map block index).

[google-appengine] Re: Index building CPU time

2010-01-03 Thread jd
Hadn't seen this thread which answers some of my questions http://groups.google.com/group/google-appengine/msg/ad4d1d2a14361797 On Jan 3, 8:10 pm, jd jdpatter...@gmail.com wrote: Hi, I am in the process of importing data into my application and notice about 10x clock time CPU usage - that is

[google-appengine] New index returns no results

2010-01-03 Thread jd
Hi, I have a pre existing index PropertyA[ASC], PropertyB[DSC] which works for my query query.addFilter(PropertyA, FilterOperator.EQUAL, valueA); query.addSort(PropertyB, SortDirection.DESCENDING); this works fine. Now I have added another equality clause query.addFilter(PropertyA,

Re: [google-appengine] Index building CPU time

2010-01-03 Thread Barry Hunter
2010/1/3 jd jdpatter...@gmail.com: If I modify an Entity to set a property from unindexed to indexed will a new implicit index be created?  Will I have to re-put the entities to include them in the index? Yes you will. Only when perform the put, will the the Entity be added to that single

[google-appengine] Re: howto restrict application to serve requests by domain?

2010-01-03 Thread Claude Vedovini
Hi Andy, I would say the best to do this is to use some sort of authentication. Your calling application could authenticate its requests by passing the hash of a token mixing a secret, a timestamp and the request itself, the answering application need then to validate this token. Of course this

[google-appengine] GAE / BigTable articles

2010-01-03 Thread Ice13ill
Hello, can anyone tell me where can I find some articles or documentation (link, blog, etc) about the google BigTable or G. App Engine Datastore, regarding the management/administration aspect... ? -- You received this message because you are subscribed to the Google Groups Google App Engine

[google-appengine] Re: GAE / BigTable articles

2010-01-03 Thread Jorge
Here is a set of articles: http://code.google.com/appengine/articles/datastore/overview.html And here is a blog: http://gae-java-persistence.blogspot.com/ Hope that helps, Jorge Gonzalez On Jan 3, 12:35 pm, Ice13ill andrei.fifi...@gmail.com wrote: Hello, can anyone tell me where can I find

[google-appengine] Re: Anyone operate a heavy-traffic large-scale web service on app engine?

2010-01-03 Thread dhruvg
Thanks for the responses. Also, I have a question about reliability - with 4 million requests/day did you ever face any issues with gae being down/crashing or being insecure? Any precautions you took? Thanks, On Jan 3, 4:18 am, Michael m...@mzlab.net wrote: I have around 4 million requests per

[google-appengine] Re: Anyone operate a heavy-traffic large-scale web service on app engine?

2010-01-03 Thread Lolman
There's been a bit of downtime, but it is mostly reliable. On Jan 3, 3:48 pm, dhruvg dhruv.g...@gmail.com wrote: Thanks for the responses. Also, I have a question about reliability - with 4 million requests/day did you ever face any issues with gae being down/crashing or being insecure? Any

[google-appengine] forum plugin for python google app engine

2010-01-03 Thread manuelaraoz
Hi!! I want to make a forum hosted on google app engine. Do you know about a forum plugin, addon or open source project for doing a simple forum? Thanks! Manuel -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

[google-appengine] Blobstore upload with empty file

2010-01-03 Thread Hazzadous
Having a little trouble using blobstore when file form fields are empty. I'm getting Server Error and nothing useful by the way of debugging from this error or in the logs. Handler as per http://codepad.org/TKnI0WuQ and live version at http://rafikirecords-sandbox.appspot.com/upload_form Can

[google-appengine] Re: Upload data from local SQL Server instance?

2010-01-03 Thread johnwlockwood
You can use the bulkloader.py without knowing any python. Just follow the instructions at http://code.google.com/appengine/docs/python/tools/uploadingdata.html#Downloading_and_Uploading_All_Data It will behave like any other command line application, it just happens to be written in python. On

[google-appengine] Re: use_library('django', '1.1') conflict with template extend tag

2010-01-03 Thread james_027
hi everyone does anyone here knows this issue? thanks On Jan 2, 10:45 pm, james_027 cai.hai...@gmail.com wrote: hi all, before I put use_library('django', '1.1') in my main.py may template is working fine. I have a handler that calls a template with

[google-appengine] Re: Anyone operate a heavy-traffic large-scale web service on app engine?

2010-01-03 Thread james_027
you got a nice web app there, may I know what is it? On Jan 3, 8:18 pm, Michael m...@mzlab.net wrote: I have around 4 million requests per day. The cost is $65 per week. In my opinion, at present App Engine is too expensive for sites with free business model. On Jan 3, 8:59 am, dhruvg

Re: [google-appengine] Re: Measures taken to speed index building

2010-01-03 Thread Eric Ka Ka Ng
Totally agree what Sudhir is suggesting. I think there are at least 2 things the index building can be improved 1. currently the index building is still a little bit buggy, sometimes I (and I believe some others) would have indexes being stuck in building state, when I believe there were errors

[google-appengine] Re: Need Help with Datastore Query

2010-01-03 Thread Ms. Jen
Thanks everyone for your replies! Happy New Year. Hi Wesley - You rock, your solution worked. Now I want to know why it worked. ;o) Here is the code that is rendering my edit band page per your suggestion: def get(self): band_edit = Band.gql('') for band in band_edit:

[google-appengine] Re: Need Help with Datastore Query

2010-01-03 Thread Ms. Jen
Oh, never mind on my last message dated Jan 3 at 5:19pm. On my localhost, the query only ran for the only entity I had, but when I deployed it, I got 6 bands and not just the band by the id I wanted. Back to drawing/hacking board. -- You received this message because you are subscribed to the

[google-appengine] How to determine if a response is over time?

2010-01-03 Thread Steven Lee
from my error log, I found some time response.getOutputStream() return null, I am not sure if it is because of overtime, or other reason. java.lang.NullPointerException at org.mortbay.io.ByteArrayBuffer.wrap(ByteArrayBuffer.java:151) at

[google-appengine] Re: templates, Django is just different syntax code in HTML

2010-01-03 Thread Kelly A
Robert, Generally the designers I work with find conditional statements, variable management and loop statements confusing and they would rather concentrate on the physical layout and style of the interface. Most XSLT I have been exposed to does not expose the aforementioned constructs to the

[google-appengine] Re: templates, Django is just different syntax code in HTML

2010-01-03 Thread Kelly A
John, In my example div class=gae:if=field.required / would never happen, as that would not be a legal XML construct; also a decision construct would never be exposed up in the HTML/XML of the layout. The intent is to completely remove the logical operations from the interface the designers use

[google-appengine] Anchor tags in server code

2010-01-03 Thread killer barney
Is there any way of accessing the anchor tags in the python code behind? For example: http://www.google.com/#q=search It seems like no data is stored in the request object regarding what anchors are in the url. I'm using django on top of app engine, in case that changes anything. -- You

Re: [google-appengine] Anchor tags in server code

2010-01-03 Thread Matt McDonald
On Sun, Jan 3, 2010 at 11:51 PM, killer barney ajcha...@gmail.com wrote: Is there any way of accessing the anchor tags in the python code behind? For example: http://www.google.com/#q=search It seems like no data is stored in the request object regarding what anchors are in the url. I'm

[google-appengine] Re: Need Help with Datastore Query

2010-01-03 Thread Ms. Jen
Ok, the results of an evening spent reading docs, searching for answers, and otherwise beating my head against the GAE wall, is the following: If I pass the band name (band.band_name) on the URL, I am able to search for it in the datastore with: band_edit = Band.gql(WHERE band_name = 'id') And