Re: [appengine-java] Re: countEntities() does not return more than 1000

2010-09-02 Thread Yasuo Higa
I filed an issue: http://code.google.com/p/googleappengine/issues/detail?id=3671 Yasuo Higa On Thu, Aug 26, 2010 at 2:18 AM, tomkarren tkar...@gmail.com wrote: Agreed.  We have an example for a fix that does not correspond to the 1.3.6 low level API spec.  Could you please elaborate? On Aug

[appengine-java] JDO @Version not working properly?

2010-09-02 Thread bcottam
I'm trying to find out if I'm using the @Version annotation properly in my project. I read the code snippets that work from Max Ross: http://gae-java-persistence.blogspot.com/2009/10/optimistic-locking-with-version.html ...but perhaps there's a subtle detail I'm missing. I have a class that gets

[appengine-java] Problem while uploading Blob into Blobstore service

2010-09-02 Thread MANISH DHIMAN
Hello Friend, I am facing a problem while uploading data on Blobstore.It works fine when I use simple servlet and html but when I use GWT it raises exception. Development server raises the following problem: h2HTTP ERROR 404/h2 pProblem accessing /_ah/upload/

[appengine-java] Re: How we can read uncommitted data in same transaction.

2010-09-02 Thread Arnold
Subhash, You may want to use JDO if that is possible. It appears that you can read uncommitted data within the same transaction, I presume because the Entity does not get fetched from the Datastore every time you use PersisistenceManager.getObjectById(). The same may be applicable to JPA. On

Re: [appengine-java] Re: How we can read uncommitted data in same transaction.

2010-09-02 Thread John Patterson
On 2 Sep 2010, at 18:48, Arnold wrote: Subhash, You may want to use JDO if that is possible. It appears that you can read uncommitted data within the same transaction, I presume because the Entity does not get fetched from the Datastore every time you use PersisistenceManager.getObjectById().

[appengine-java] Unable to update

2010-09-02 Thread f...@ncky
Hello, I try do deploy with eclipse and i have that message: Unable to update: java.net.ConnectException: Connection timed out: connect at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(Unknown Source) at

[appengine-java] Using Spring and couldn't find any JSPs in subdirectories -- Solution

2010-09-02 Thread Dustin
Just thought I'd share something I figured out. Spent a good 1/2 day hacking my you-know-what off trying to figure it out. ISSUE: On local dev server, I could easily hit any JSP: $ curl http://localhost:8080/somedir/test.jsp IT WORKS! However, once deployed, $ curl

[appengine-java] 2dGraphics for GAE

2010-09-02 Thread Thomas P.
Hello, I have an application which essentially relies on being capable of rendering 2d graphics on the server side. I was quite shocked as I found out that BufferedImage and Graphics2D are in java classes which are not supported. So, I wanted to ask for help if: - is it possible to add

[appengine-java] Spring WS on Google App Engine

2010-09-02 Thread Shweta Deshpande
Hello, I am trying to build a SOAP web service using Spring and deploy it on App Engine. I followed the instructions in an article to build it. Since there is no support for javax.xml.soap, I used AxiomSoapMessageFactory, and also turned payloadCaching to false. When I run the service and send a

[appengine-java] non wanted callback called by mapreduce ?

2010-09-02 Thread Laurent
[sorry about crossposting] Hi I'm just starting with mapreduce. Examples worked fine, so I started doing my stuff. Strange thing happened and I can't figure out what's going on : no problem with this one : public void map(Key key, Entity value, Context context) { if

[appengine-java] Uncaught exception from servlet

2010-09-02 Thread zachariahyoung
I'm working on trying to get Spring Roo 1.1.0.M3 with Google Web Toolkit 2.1.0.M3 working in Google App Engine for Java 1.3.7. I have even had a hard time getting some of the samples to work. I was hope someone could help me with the follow error and direct me on how I need to fix it. Error

[appengine-java] App Engine Cloud Cover Testing

2010-09-02 Thread mobileQAguru
Hi, I am getting following error when I am trying to run unit tests using clound cover javax.servlet.ServletContext log: Exception while dispatching incoming RPC call com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract

Re: [appengine-java] pm.store() failing silently

2010-09-02 Thread Ikai L (Google)
Does this consistently fail every 1/3 times, or at certain times? Not that it should matter, but how are you creating the PersistenceManager? On Wed, Sep 1, 2010 at 6:21 PM, John demowee...@gmail.com wrote: This one is for App Engine team. Random silent failures, no explanation. I have a

Re: [appengine-java] Uncaught exception from servlet

2010-09-02 Thread Ikai L (Google)
I'm not a Spring Roo expert, but this seems to offer a clue: java.lang.IllegalStateException: Unable to locate the default servlet for serving static content. Please set the 'defaultServletName' property explicitly. Does that property mean anything to you? On Wed, Sep 1, 2010 at 8:11 PM,

Re: [appengine-java] App Engine Cloud Cover Testing

2010-09-02 Thread Ramesh Ottikunta
Hi, The problem described in my first email got solved after adding junit.jar, which seems to added manually to lib folder but now I'm getting following exception on string the New Run: 09-02 12:30PM 23.617 /cloudcover/queueAction/completionNotification/4001 java.lang.NullPointerException

[appengine-java] Re: What is entity detached yet this operation requires it to be attached?

2010-09-02 Thread nksi
I also have a similar problem. in my exsample: @Entity class Test { @Id @Column(name = ID) @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Column(nullable = false) private Boolean isLatest; } # service Test test = TestDao.getByCode(code) test.setIsLatest(false)

[appengine-java] Does JSF Session Bean are supported ?

2010-09-02 Thread hadf
I'm a newbie in JSF and AppEngine technology. I've created a simple form which redirect to a summary page that displays the form data. The trouble is that form data is lost during redirect as if session beans were not supported. So I would like to know how to deal with session data. Here is my

[appengine-java] Re: Uncaught exception from servlet

2010-09-02 Thread zachariahyoung
When will this issue be fixed? This maybe be my issue. http://code.google.com/p/googleappengine/issues/detail?id=1506 JSP spec. App Engine SDK supports is different between API JAR (geronimo-jsp_2.1_spec-1.0.1.jar) and implementation JAR (jasper- runtime-5.0.28.jar). Though

[appengine-java] Re: Does JSF Session Bean are supported ?

2010-09-02 Thread Chris (Google Employee)
Hi Hadrien, You should definitely make sure you've turned on session support in your app: ?xml version=1.0 encoding=utf-8? appengine-web-app xmlns=http://appengine.google.com/ns/1.0; application/application version1/version sessions-enabledtrue/sessions-enabled !-- Configure

[appengine-java] Re: Uncaught exception from servlet

2010-09-02 Thread zachariahyoung
Ikai, I have posted the same issue on the Spring Roo forums. Below is the reply I got from them. With the Roo 1.1 M3 release we have changed the way we map the Spring DispatcherServlet following Spring Framework improvements. We are also using a new MVC resources handler (configured in

[appengine-java] Re: Applets in GAE

2010-09-02 Thread Chris (Google Employee)
Applets should be fine as long as the applet jar file(s) are not too big. (10M) If they are bigger, you'll need to upload and deploy your app via the command line appcfg with option --enable_jar_splitting specified. For networking you should be able to send REST request from your applet to your

Re: [appengine-java] can we use Web-services in Gooogle app engine

2010-09-02 Thread Ronmell Fuentes
Hi. As far as I know and have tried, GAE supports but Rest-type web services only, called RESTLETs. R. Fuentes. 2010/8/23 aptest1 actiprocess apte...@gmail.com Hi, We are planning to use web-services in Google app to communicate with SAP-system. 1.Is Google app engine supports the

[appengine-java] Inheritance

2010-09-02 Thread lisandrodc
Hi! Someone has some code working correctly that uses inheritance? Since in the link: http://code.google.com/intl/es/appengine/docs/java/datastore/relationships.html#Owned_One_to_Many_Relationships He does not say anything in the matter... Regards Lisandro -- You received this message because

[appengine-java] Google app engine not activated

2010-09-02 Thread Saurabh
Hi , I have registered two applications 2 weeks back but still haven't received any mail for my account activation from google.I am not able to deploy my application through eclipse deploy option. Kindly advise how long it takes to get app engine account activation. Thanks Regards, Saurabh --

Re: [google-appengine] Re: Django 1.1 DeadlineExceededError apparently importing modules

2010-09-02 Thread Wesley C (Google)
are you both still experiencing this problem? when did it start occurring (as close as possible to the real time)? has it stopped yet? if so, also tell us when this problem ended. finally can you both send us all your app IDs? thanks! -- wesley - - - - - - - - - - - - - - - - - - - - - - - - -

[google-appengine] non wanted callback called by mapreduce ?

2010-09-02 Thread Laurent
Hi I'm just starting with mapreduce. Examples worked fine, so I started doing my stuff. Strange thing happened and I can't figure out what's going on : no problem with this one : public void map(Key key, Entity value, Context context) { if (value.getProperty(my_boolean).equals(true)) {

[google-appengine] Re: Datastore StringList or multiple rows?

2010-09-02 Thread ogterran
Thanks Robert. The ancestor query works great. Read the documentation but i guess it didn't click I was looking for a children() like function in the parent. I don't think I can put it in the same search list. What if I add a field for type? class PageIndex(db.Model): type =

[google-appengine] Re: How can I query for all the child entities?

2010-09-02 Thread johnterran
Thanks alkis. On Sep 1, 12:30 pm, Alkis Evlogimenos ('Αλκης Ευλογημένος) evlogime...@gmail.com wrote: some_blog = ... for index in BlogIndex.all().ancestor(some_blog):   # do stuff with index The argument to ancestor() can also be the key to the blog. - alkis On Wed, Sep 1, 2010 at

[google-appengine] SearchableModel on bulkupload not creating __searchable_text_index

2010-09-02 Thread johnterran
Hi, When I use bulkupload to upload data that the model is SearchableModel, it does not create the __searchable_text_index. It only updates the fields. When i just do a put(), it creates the __searchable_text_index. i.e. class PageIndex(search.SearchableModel): title =

[google-appengine] Sending SMS

2010-09-02 Thread Jaroslav Záruba
Is it possible to send messages using the same service Google Calendar sends event reminders with? Are there any plans to offer that as a service on GAE? -- 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] Re: Forced to reverify account, which fails

2010-09-02 Thread Eric
As I said a I also get an error submitting the SMS issue form. But only if I post the 'long' comment quoted above. What I did is to only submit a link to this discussion in the comment. Hope this helps and gets resolved soon! Thanks On Sep 1, 8:53 pm, Ikai L (Google) ika...@google.com wrote:

[google-appengine] Re: Django 1.1 DeadlineExceededError apparently importing modules

2010-09-02 Thread Nick Winter
We are seeing the same thing, which we are very familiar with by this point. App id: skrit We get long runs of it, which we can sometimes fix temporarily by redeploying and restarting all instances. Too bad recently for that to work. Most recently, things have been bad starting since 8/30 at

[google-appengine] Re: Django 1.1 DeadlineExceededError apparently importing modules

2010-09-02 Thread Tim Hoffman
Hi Nick One thing you can do to cut down on re-deploying time is deploy multiple versions of the same code base. ie 1-1-a 1-1-b and 1-1-c Make one default, if you get a stuck instance, test one of the other versions, if it comes up then make this the default. This can be done in the dashboard

[google-appengine] Re: Django 1.1 DeadlineExceededError apparently importing modules

2010-09-02 Thread Nick Winter
That's a good idea, Tim; thanks! I've been reading your other documentation on this error--great job helping to figure this out. I laughed when I saw the 11pm doomstarting time you found here: https://docs.google.com/Doc?docid=0Ad1LTa6ONStgZGYzcXhjeHBfMTIwZGs2NWd4ZmYhl=en since that's almost

[google-appengine] Re: Django 1.1 DeadlineExceededError apparently importing modules

2010-09-02 Thread Tim Hoffman
Hi Nick No probs. One thing I have to do is put up a feature request for a way to force an application restart. Preferably from within the app if possible. I at least can tell from within the app if it's failing on import error after a DeadlineExceeded on startup. But even an external appcfg

[google-appengine] Re: How to add email alias to app engine?

2010-09-02 Thread Hugo Visser
*nutch* I still cannot get this to work. I've tried several things. My domain abc.com is a google apps domain. That domain has a domain alias of xyz.com. My account is m...@abc.com. Now I like to send an email from my app as i...@xyz.com. Adding an alias to my account for info works in the sense

[google-appengine] How do you store attachments to inbound mail bound that are 1 MB?

2010-09-02 Thread Ryan
I'd like to store attachments to inbound mail that are larger than 1 MB (specifically images that users can email in) into the blobstore. However, as far as I know, this requires me to use urlfetch, but urlfetch can't process anything over 1 MB. Does anyone have a solution for this? -- You

Re: [google-appengine] Auto generated keys vs UUID

2010-09-02 Thread Nick Johnson (Google)
Hi Jagan, On Tue, Aug 31, 2010 at 9:46 AM, Jagan ksja...@gmail.com wrote: Hi Google, Nick Johnson and others Does Google recommend using UUID (UUID4 to be specific) as key names for entities in GAE instead of auto generated numeric ids? Does this hold good in all use cases in the universe?

[google-appengine] Re: Having lots of DeadlineExceeded errors (, lack of any communication on this has my management questioning the wisdom of adopting appengine)

2010-09-02 Thread Jason C
It may have settled down for you Tim, but we are being hammered by DeadlineExceededError right now. Log time: 8.27a Thursday 2010-09-02 AppID: steprep In the past, this problem seems to be localized to small (presumably) clusters of apps. Can someone please look into our specific cluster?

[google-appengine] Re: Having lots of DeadlineExceeded errors (, lack of any communication on this has my management questioning the wisdom of adopting appengine)

2010-09-02 Thread Jason C
I should have mentioned that in addition to the 30s DEEs, we are also seeing a number of the 10s Request was aborted messages (the ones that occur before any user code executes). j On Sep 2, 9:32 am, Jason C jason.a.coll...@gmail.com wrote: It may have settled down for you Tim, but we are being

[google-appengine] Bulk Delete via the remote api console

2010-09-02 Thread fedex1
Hi, Is there something additional that is needed to delete via the remote api console? Is there some transaction logic needed? I try it and it seems to work, asks for userid and password and makes all the remote_api calls but when it finishes NONE of the items are deleted. For example, after

[google-appengine] user setting file

2010-09-02 Thread Benjamin
Hey guys I want to distribute my apps WAR directory to my users so they can deploy and run their own instances of my app on their own app engine account. That is, they download a zipped copy of my WAR directory, create an app on app engine, edit web.xml and deploy it themselves using the sdk. I

[google-appengine] stuck indexes

2010-09-02 Thread Yi
Hello, I got stuck indexes in my app 4create.appspot.com. can someone please help me clean them up? Thanks Yi -- 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-appeng...@googlegroups.com. To

[google-appengine] New site creation failures?

2010-09-02 Thread JT Olds
Hello all, I just attempted to create a site my-site.appspot.com in the new site creation wizard, and it failed with an internal server error. I went back to my list of sites and it also failed with an internal server error. I waited, then hit reload, and it worked, but by new site was not in the

[google-appengine] Removing and installing GAE SDK for python

2010-09-02 Thread lenic
Hi, I am a newbee and I am in a real mess...:( I had installed GAE SDK in july (it was the latest version then) Python 2.6 and it worked fine and I could develop appspot application. Then I removed GAE SDK yesterday and installed it again,.. Now I can´t open the launcher and get this message in

[google-appengine] Re: SSO with built-in OpenId is possible?

2010-09-02 Thread Nurettin Omer Hamzaoglu
Hi, I've been trying to login google apps domains users to my application. User enters email address and its domain checked from the datastore if the user installed and using the software then user will be sent to google login screens for login. I don't need docs, contacts, etc. api access, just

[google-appengine] Recording Key Events

2010-09-02 Thread b00kworm
This is my first time using GAE, and a crucial part of the app I'm trying to make involves recording the timing of keystrokes (when they are pressed and released). Prior to integrating it with App Engine, I have been using the Tkinter library, but that is not supported. Anyone have any

[google-appengine] Recording Key Events

2010-09-02 Thread b00kworm
This is my first time using GAE, and a crucial part of the app I'm trying to make involves recording the timing of keystrokes (when they are pressed and released). Prior to integrating it with App Engine, I have been using the Tkinter library, but that is not supported. Anyone have any

[google-appengine] Host client's web sites.

2010-09-02 Thread Kurtis
Hello, I love developing with Python and have recently started my own little app on here to see what everyone has been bragging about. So far, I love this system. As I graduate from school, I want to start focusing on professional web development. I'm in the process of comparing different

[google-appengine] app in gwt+gae

2010-09-02 Thread ale
Hi everybody, in my free time (from work/family/friends) I create a webapp using GWT and GAE, and know I'm happy to expose to you. The application is http://www.meandsport.com The site is designed to manage amateur sports leagues, and you can register teams, matches and championships. For

[google-appengine] Re: Can't include javascript file....need help

2010-09-02 Thread salehin
I tried with leading with / and in firebug found both end up as follows http://localhost:8080/static/main.js---status (400) http://localhost:8080/static/main.css --- status(200) and restarted the sdk and same. Any other areas I should check? Thanks. On Sep 2, 3:40 am, Joseph Letness

Re: [google-appengine] Re: Datastore StringList or multiple rows?

2010-09-02 Thread Robert Kluin
Hey Jon, Emails, users, and ip addresses (typically) look pretty different, mixing them is probably not a big deal; So I suggested not creating separate models for emails, IPs, and users names to reduce the number of indexes you might need in the future. For example, if you were have an

[google-appengine] Re: Can't include javascript file....need help

2010-09-02 Thread salehin
Sorry got 404 js On Sep 2, 3:40 am, Joseph Letness joe.letn...@gmail.com wrote: I think the problem might be that you need a leading slash in your href (I don't think that a relative url works in the context of static media) instead of static/abc.css, try /static/abc.css On Sep 1, 11:08 

Re: [google-appengine] Recording Key Events

2010-09-02 Thread Robert Kluin
Your probably going to want to google: javascript timing keystrokes Robert On Wed, Sep 1, 2010 at 16:54, b00kworm b00kworm...@gmail.com wrote: This is my first time using GAE, and a crucial part of the app I'm trying to make involves recording the timing of keystrokes (when they are

[google-appengine] Datastore viewer query by key.

2010-09-02 Thread John Gardner
This is probably obvious, but: I cannot for the life of me figure out how to fetch a known entity by key in the viewer. The GQL reference doesn't specify key syntax, since you can do a db.get(key) from code. I've tried: SELECT * FROM entity where __key__ = string-key SELECT * FROM entity where

[google-appengine] django-dbindexer for advanced queries with NoSQL

2010-09-02 Thread Waldemar Kornewald
Hi, we've started a new open-source project which extends Django's querying capabilities on NoSQL databases (App Engine, MongoDB, etc.), so you can use filters like __month or __iexact even if they're not natively supported by the database. The advantage is that you don't need to deal with writing

Re: [google-appengine] Sending SMS

2010-09-02 Thread Ikai L (Google)
Google Calendar sends messages via email, right? Or do you mean a different service? On Thu, Sep 2, 2010 at 1:08 AM, Jaroslav Záruba jaroslav.zar...@gmail.comwrote: Is it possible to send messages using the same service Google Calendar sends event reminders with? Are there any plans to offer

[google-appengine] Programatically uploading blobs to the datastore

2010-09-02 Thread John Boxall
Hey AppEnginites, I'm trying to programatically uploading blobs to the datastore from my application via a handler that constructs a POST request when its hit: class PostHandler(webapp.RequestHandler): def get(self): upload_url = blobstore.create_upload_url('/upload_photo') u

Re: [google-appengine] Re: Having lots of DeadlineExceeded errors (, lack of any communication on this has my management questioning the wisdom of adopting appengine)

2010-09-02 Thread Ikai L (Google)
Jason, what are you doing in your handler that is hitting DeadlineExceededError? It looks like you're doing an URLFetch. Could the resources you are fetching be slow? On Thu, Sep 2, 2010 at 8:38 AM, Jason C jason.a.coll...@gmail.com wrote: I should have mentioned that in addition to the 30s

Re: [google-appengine] user setting file

2010-09-02 Thread Ikai L (Google)
You can use init-params in servlets: http://www.exampledepot.com/egs/javax.servlet/GetInit.html You can also use properties files: http://www.javaworld.com/javaworld/javaqa/2003-08/01-qa-0808-property.html Another alternative is to make the configurations datastore configurations and have your

Re: [google-appengine] user setting file

2010-09-02 Thread Ikai L (Google)
You can use init-params in servlets: http://www.exampledepot.com/egs/javax.servlet/GetInit.html You can also use properties files: http://www.javaworld.com/javaworld/javaqa/2003-08/01-qa-0808-property.html Another alternative is to make the configurations datastore configurations and have your

Re: [google-appengine] Host client's web sites.

2010-09-02 Thread Ikai L (Google)
The terms don't forbid you from building a service and selling it to users. That clause you are referring to is specifically there to prevent people from layering a thin skin over App Engine and reselling it. We do not forbid (we encourage, actually) anyone from starting a business for App Engine

Re: [google-appengine] New site creation failures?

2010-09-02 Thread Nickolas Daskalou
Hi JT, Is the Google Account you registered on App Engine with part of a Google Apps domain? If so, try visiting: https://appengine.google.com/a/YOUR_DOMAIN Eg: https://appengine.google.com/a/xnet5.con Nick On 02/09/2010, at 4:52 AM, JT Olds jto...@xnet5.com wrote: Hello all, I just

Re: [google-appengine] Datastore viewer query by key.

2010-09-02 Thread Ikai L (Google)
Try this: SELECT * FROM entity where __key__ = KEY('string-key') See the section about Keys here: http://code.google.com/appengine/docs/python/datastore/gqlreference.html On Thu, Sep 2, 2010 at 10:28 AM, John Gardner hux...@gmail.com wrote: This is probably obvious, but: I cannot for the

[google-appengine] Re: Programatically uploading blobs to the datastore

2010-09-02 Thread John McLaughlin
This seems very closely related to: http://groups.google.com/group/google-appengine-python/browse_thread/thread/879821e0d91a61e7# On Sep 2, 11:25 am, John Boxall bisha...@gmail.com wrote: Hey AppEnginites, I'm trying to programatically uploading blobs to the datastore from my application via

[google-appengine] Re: Having lots of DeadlineExceeded errors (, lack of any communication on this has my management questioning the wisdom of adopting appengine)

2010-09-02 Thread Jason C
We're seeing the DEEs come in in batches, and there is not commonality. Some have some url fetch involved, but others do not. j On Sep 2, 12:25 pm, Ikai L (Google) ika...@google.com wrote: Jason, what are you doing in your handler that is hitting DeadlineExceededError? It looks like you're

[google-appengine] Re: Datastore viewer query by key.

2010-09-02 Thread Paweł Gronkiewicz
While we are at it, how do you query a key by it's name? I pretty much need to check if entity exists for a given key name. GQL documentation lacks examples and is really lacking, especially for people with less experience. On Sep 2, 8:48 pm, Ikai L (Google) ika...@google.com wrote: Try this:

[google-appengine] Re: Sending SMS

2010-09-02 Thread James
Check out www.twilio.com On Sep 2, 4:08 am, Jaroslav Záruba jaroslav.zar...@gmail.com wrote: Is it possible to send messages using the same service Google Calendar sends event reminders with? Are there any plans to offer that as a service on GAE? -- You received this message because you are

[google-appengine] Re: Programatically uploading blobs to the datastore

2010-09-02 Thread John Boxall
Hey John, Thanks for the link - it's exactly the same problem. I'll continue the discussion there! Cheers, John On Sep 2, 12:23 pm, John McLaughlin johnmclaugh...@massanimation.com wrote: This seems very closely related

Re: [google-appengine] stuck indexes

2010-09-02 Thread Ikai L (Google)
They've been placed into error. Go ahead and run vacuum on them. On Wed, Sep 1, 2010 at 7:32 PM, Yi yig...@gmail.com wrote: Hello, I got stuck indexes in my app 4create.appspot.com. can someone please help me clean them up? Thanks Yi -- You received this message because you are

Re: [google-appengine] Sending SMS

2010-09-02 Thread Jaroslav Záruba
It also allows sending a reminder via SMS. On Thu, Sep 2, 2010 at 8:18 PM, Ikai L (Google) ika...@google.com wrote: Google Calendar sends messages via email, right? Or do you mean a different service? On Thu, Sep 2, 2010 at 1:08 AM, Jaroslav Záruba jaroslav.zar...@gmail.com wrote: Is it

Re: [google-appengine] Re: Sending SMS

2010-09-02 Thread Jaroslav Záruba
Thank you, I'm looking at it. On Thu, Sep 2, 2010 at 10:23 PM, James jamesk...@gmail.com wrote: Check out www.twilio.com On Sep 2, 4:08 am, Jaroslav Záruba jaroslav.zar...@gmail.com wrote: Is it possible to send messages using the same service Google Calendar sends event reminders with?

[google-appengine] Re: Removing and installing GAE SDK for python

2010-09-02 Thread Tim Hoffman
Hi I Can't help with this specific error, but for starters being newbie, under no circumstances use python 2.6. You should only use 2.5.x T On Sep 2, 3:17 pm, lenic desireel.lars...@gmail.com wrote: Hi, I am a newbee and I am in a real mess...:( I had installed GAE SDK in july (it was the

[google-appengine] Static Images not fully loading.

2010-09-02 Thread Albert
Hi! Sometimes, my static images served through appengine don't finish loading. Parts of it (mostly the bottom parts) are not visible. It's a straight horizontal cut. Imagine a white box blocking the lower part of your image. that's how it looks like However, it seems that my browser thinks that

[google-appengine] Re: Datastore viewer query by key.

2010-09-02 Thread Tim Hoffman
why not db.Model.get_by_key_name. http://code.google.com/appengine/docs/python/datastore/modelclass.html#Model_get_by_key_name T On Sep 3, 4:13 am, Paweł Gronkiewicz pgronkiew...@gmail.com wrote: While we are at it, how do you query a key by it's name? I pretty much need to check if entity

Re: [google-appengine] Static Images not fully loading.

2010-09-02 Thread Robert Kluin
What browser? Do you ever see that on no GAE sites? On Thu, Sep 2, 2010 at 22:12, Albert albertpa...@gmail.com wrote: Hi! Sometimes, my static images served through appengine don't finish loading. Parts of it (mostly the bottom parts) are not visible. It's a straight horizontal cut.