Re: [appengine-java] Re: Incoming Email - DKIM Verification needs AE-support/whitelisting-DNS-lookup

2011-02-03 Thread Peter Ondruska
http://code.google.com/p/googleappengine/issues/detail?id=4501 -- 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

[appengine-java] Re: Incoming Email - DKIM Verification needs AE-support/whitelisting-DNS-lookup

2011-02-02 Thread Peter Ondruska
Is there issue for this? I would love to star it! -- 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: Simulating 500 error code

2010-11-03 Thread Peter Ondruska
def get(self) self.error(500) should work but never triwd myself Ice13ill napsal(a): Is it possible in App engine Java to simulate on development mode (or production mode) the 500 internal server error ? -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Re: alishascardwall.com Forbidden 403 Error

2010-10-19 Thread Peter Ondruska
Try again to delete www mapping to GAE, create mapping to some dummy sites.google.com, and then delete sites and create mapping to GAE. See if that works. It is kind of strange as usually if the mapping is wrong you get error 404 not 403. On Oct 17, 6:17 am, Aditya Yadav aditya.ya...@gmail.com

[appengine-java] Re: alishascardwall.com Forbidden 403 Error

2010-10-16 Thread Peter Ondruska
Go to Google Apps domain control panel a remove www mapping to your GAE application and add it again. On Oct 16, 5:13 am, Aditya Yadav aditya.ya...@gmail.com wrote: I purchased a domain alishascardwall.com for my appid: alishascardwall and removed Sites and enabled www mapping for my appid.

[appengine-java] Re: alishascardwall.com Forbidden 403 Error

2010-10-16 Thread Peter Ondruska
What does nslookup tell about your DNS name: nslookup -q=cname www.kaibo.eu. (replace kaibo.eu with your domain name) On Oct 16, 8:37 am, Aditya Yadav aditya.ya...@gmail.com wrote: Peter, Thanks for the reply. I have already tried that before posting. I went into Google Apps and tried

[appengine-java] Re: alishascardwall.com Forbidden 403 Error

2010-10-16 Thread Peter Ondruska
I presume you do not have anything in your application logs (error 403), do you? On Oct 16, 10:30 am, Aditya Yadav aditya.ya...@gmail.com wrote: C:\Documents and Settings\adityayadav76nslookup -q=cnamewww.alishascardwall.co m *** Can't find server name for address 192.168.1.1: Non-existent

[appengine-java] Re: SDK 1.3.8 released!

2010-10-15 Thread Peter Ondruska
Apparently the newer version of SDK is not available yet. On Oct 15, 3:14 pm, Cyrille Vincey crll...@gmail.com wrote: Am I the only one who cannot download the eclipse 1.3.8 update ? On 15/10/10 14:51, Guillaume Laforge glafo...@gmail.com wrote: Excellent, thank you! The instances view is

[appengine-java] Re: App Engine and IP Addresses

2010-10-11 Thread Peter Ondruska
, Peter Ondruska peter.ondru...@gmail.comwrote: When connecting to IP address you need to use HTTP host header so that GAE knows which application/virtual server you want. On Oct 9, 6:26 pm, Benjamin bsaut...@gmail.com wrote: I've been working on a challenge over the past couple

[appengine-java] Re: App Engine and IP Addresses

2010-10-09 Thread Peter Ondruska
When connecting to IP address you need to use HTTP host header so that GAE knows which application/virtual server you want. On Oct 9, 6:26 pm, Benjamin bsaut...@gmail.com wrote: I've been working on a challenge over the past couple of days and I could really use a knowledge transfer on App

[appengine-java] Re: Tell data store not to selected index properties on bulkupload

2010-10-04 Thread Peter Ondruska
Just define entity properties with indexed=False, e.g. class Authorization(db.Model): domain = db.StringProperty(required=True) code = db.StringProperty(required=True, indexed=False) # update = db.DateTimeProperty(required=True, auto_now_add=True) and then bulkload On Oct 4, 6:26 

[appengine-java] Re: IOException instead of 404

2010-09-21 Thread Peter Ondruska
It is expected behavior to throw IOE if you cannot connect. HTTP status 404 can only be sent after connection succeeded. Peter On Sep 21, 7:08 am, hector hrov...@gmail.com wrote: I'm using the URLFetchService to access some web services from my domain.  Today I was testing the connection to one

[appengine-java] Re: How to implement global address book/list in google app engine

2010-09-14 Thread Peter Ondruska
Sign up for Google Apps and use Contacts API http://code.google.com/p/gdata-java-client/ to manipulate shared contacts. On Sep 13, 11:29 am, Saurabh Saxena saurabhsaxena.saur...@gmail.com wrote: Hi, Can some one help me how to implement global address book or list in google app engine.

[appengine-java] Re: Can't flush response

2010-09-06 Thread Peter Ondruska
It will not work, GAE in production will send response at once. See http://code.google.com/appengine/docs/java/runtime.html#Responses On Sep 6, 10:42 am, Sergio Lopes slo...@gmail.com wrote: Hi everybody I'm trying to use flushBuffer() of HttpServletResponse. I have some use case here where I

[appengine-java] Re: The title of email displays wrongly in localization

2010-08-27 Thread Peter Ondruska
Have try encoding to quoted printable this way: msg.setSubject(MimeUtility.encodeText(_subject, UTF-8, Q)); http://groups.google.com/group/google-appengine-java/browse_thread/thread/7479beb80a97992f/36156bbdee1b9fa2?lnk=gstq=encode+subject#36156bbdee1b9fa2 On Aug 26, 3:23 am, Tony

[appengine-java] Re: Invalidating users session

2010-08-10 Thread Peter Ondruska
http://code.google.com/p/googleappengine/issues/detail?id=3049 On Aug 10, 1:25 pm, Ice13ill andrei.fifi...@gmail.com wrote: Still, it seams that _ah_SESSION objects are not always cleaned automatically... On Aug 7, 12:53 pm, Hariharan Anantharaman hariharan.ananthara...@gmail.com wrote:

[appengine-java] Re: Uploading Data on Development Server(On local machine)

2010-07-31 Thread Peter Ondruska
http://code.google.com/appengine/docs/python/tools/uploadingdata.html Loading Data Into the Development Server If you'd like to test how your data works with the app before uploading it, you can load it into the development server. Use the -- url option to point the tool at the development server

[appengine-java] Update on Datastore Performance Status

2010-07-28 Thread Peter Ondruska
Charging for Datastore CPU usage will be re-enabled on Tuesday, August 3rd http://googleappengine.blogspot.com/2010/07/update-on-datastore-performance-status.html -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this

[appengine-java] Re: Documentation amendment request: allowed sender E-mail addresses

2010-07-15 Thread Peter Ondruska
Raise an issue for that please and send the link, I'd start it right away. On Jul 15, 10:52 am, Ian Marshall ianmarshall...@gmail.com wrote: Is this the right place to make a documentation amendment request? If not, should I raise an issue instead? On Jul 14, 1:48 pm, Ian Marshall

[appengine-java] Re: Documentation request: case sensitivity of sender E-mail addresses

2010-07-15 Thread Peter Ondruska
:-) Raise an issue for that please and send the link, I'd start it right away as well. On Jul 15, 10:52 am, Ian Marshall ianmarshall...@gmail.com wrote: Is this the right place to make a documentation amendment request? If not, should I raise an issue instead? On Jul 14, 2:09 pm, Ian Marshall

[appengine-java] Re: Unnecessary memcache request from jetty SessionManager?

2010-06-08 Thread Peter Ondruska
How I understand memcache: cache.containsKey(some-key) tells you whether there is such key in memcache and cache.get(some-key) retrieves the value for key You could skip asking for existence of the key in memcache only in case you expect to return non-null values (and null being non-existent

[appengine-java] Datastore Performance Growing Pains

2010-06-04 Thread Peter Ondruska
http://googleappengine.blogspot.com/2010/06/datastore-performance-growing-pains.html So until performance has returned to a state we are proud of, and that you are satisfied with, your applications will not be charged for Datastore CPU costs effective on your May 31st bill. When we are convinced

[appengine-java] Re: AppEngine does not shut down application gracefully

2010-05-27 Thread Peter Ondruska
It does not say in docs (yet, maybe an issue should be raised on this) but Google's statement regarding destroy: http://groups.google.com/group/google-appengine-java/browse_thread/thread/e18a454a1479b14a/b011dfa9a17c18c5 On May 27, 8:08 am, dmitrygusev dmitry.gu...@gmail.com wrote: Hi, I wrote

[appengine-java] Re: AppEngine does not shut down application gracefully

2010-05-27 Thread Peter Ondruska
Actually there is an issue already destroy() is never called by the servlet container http://code.google.com/p/googleappengine/issues/detail?id=2164 so just star it to get the docs fixed. On May 27, 8:08 am, dmitrygusev dmitry.gu...@gmail.com wrote: Hi, I wrote a simple servlet to count

[appengine-java] GAE/J 1.3.4 in http://dl.google.com/eclipse/plugin/3.5

2010-05-21 Thread Peter Ondruska
Hello, is there any chance 1.3.4 will make it into Eclipse? Thanks. 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-j...@googlegroups.com. To unsubscribe from this group,

[appengine-java] Re: Billed CPU time by far too high

2010-05-12 Thread Peter Ondruska
Henning, you must have misunderstood Ikai’s answer :-) You were given discount previously and now you are billed as others ;-) On May 12, 1:58 pm, Henning Dierolf henning2...@hotmail.de wrote: Hi Ikai, it's also possible that you were being *underbilled* previously and that  we've corrected

[appengine-java] Re: when session expires in the data store

2010-05-10 Thread Peter Ondruska
()); } } } } On May 8, 8:20 pm, Joe Fawzy joewic...@gmail.com wrote: Hi Peter thanks for your reply and for the link to the other thread it will be great if u posted the code thanks a lot Joe On May 8, 7:50 pm, Peter Ondruska peter.ondru...@gmail.com wrote: expires

[appengine-java] Re: when session expires in the data store

2010-05-08 Thread Peter Ondruska
expires field is long and can be used as Date.getTime(). See http://groups.google.com/group/google-appengine-java/browse_thread/thread/b146bd93c417561c# and if you need hint on code for cleaning up expired sessions let me know. I can post the source. On May 8, 3:54 pm, Joe Fawzy

[appengine-java] Re: Skipping files when deploying?

2010-05-02 Thread Peter Ondruska
code.google.com/appengine/docs/java/config/appconfig.html On May 2, 5:38 pm, Jaroslav Záruba jaroslav.zar...@gmail.com wrote: When deploying a Python app files can be filtered-out from the deployment process (i.e. not uploaded to GAE), as described

[appengine-java] GAE Blog: Making your app searchable using self merge-joins

2010-04-26 Thread Peter Ondruska
http://googleappengine.blogspot.com/2010/04/making-your-app-searchable-using-self.html -- 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

[appengine-java] Re: where is a secure place to put Java keystore for authentication?

2010-04-21 Thread Peter Ondruska
I store keystores in WEB-INF/classes--it is not accessible to public and is accessible context.getRealPath(WEB-INF/classes/keystore) On Apr 21, 4:43 pm, Tristan tristan.slomin...@gmail.com wrote: Hey, I stuck the keystore under an admin only directory but that's not working because normal

[appengine-java] Re: Slow app JVM wake - even with no data store access?

2010-04-20 Thread Peter Ondruska
Actually there are lots of jar files coming with appengine with uncompressed content what could save megabytes of data (http:// groups.google.com/group/google-appengine-java/browse_thread/thread/ 0bce0adc3ace4d94#). But I am not sure what effect this can have on JVM startup in GAE/J--if it is less

[appengine-java] Re: Is it necessary on deployment server to explicitly call HttpSession.setAttribute?

2010-04-19 Thread Peter Ondruska
Actually I would call this a bug in my opinion.. If you create a bug issue I am the second to star it. On Apr 19, 12:20 pm, Thomas mylee...@gmail.com wrote: Hi Vaclav:    Thanks for your reply.    HttpSession is a defined standard interface in JEE. The standard doesn't ask developers for

[appengine-java] Re: Java DB in App Engine

2010-04-10 Thread Peter Ondruska
No, JavaDB will not work. On Apr 10, 4:18 pm, HK harikri...@gmail.com wrote: Hi, Can I use Java DB in my App Engine application? If yes will there be any performance impacts? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

[appengine-java] Re: Singleton class become double instance in GAE

2010-04-05 Thread Peter Ondruska
GAE/J starts as many JVM instances as required. Multiple JVMs ~ multiple Singletons. On Apr 5, 4:48 pm, g3 insight insigh...@gmail.com wrote: We are meeting one strange thing when we do testing on GAE. The problem is that we implemented a GameCenter class as below. It is a singleton class in

[appengine-java] Re: _ah_SESSION index on _expires property

2010-04-03 Thread Peter Ondruska
Ian, it is http://code.google.com/p/googleappengine/issues/detail?id=3049 allow index for _expires on _ah_SESSION On Apr 3, 11:53 am, Ian Marshall ianmarshall...@gmail.com wrote: If you file a feature request, please would you then leave a link to it on this thread? I would like to star it

[appengine-java] Re: How to exclude requests to /stats when viewing appstats?

2010-04-01 Thread Peter Ondruska
Well, then let the filter filter explicitly those url-patterns you want to check stats for. On 1 dub, 16:20, Ice13ill andrei.fifi...@gmail.com wrote: I'm trying to use appstats to view the requests to my app. But i can't exclude the requests to /stats/ as stated in the dev guide: This

[appengine-java] _ah_SESSION index on _expires property

2010-03-31 Thread Peter Ondruska
I am trying to automatically cleanup expired session by deleting records from _ah_SESSION. Instead of iterating through all records I tried to filter on _expires but it does not work because it is not indexed. Manual index creation failed. Is the index missing by design? Peter -- You received

[appengine-java] Re: GAE 1.3.1 java.io.IOException: Truncated quoted printable data when processing a Hotmail email

2010-03-22 Thread Peter Ondruska
Something has gotten broken with recent release because my code used to work fine with Hotmail/Yahoo sent messages. Looks like I have to go through release notes for 1.3.1 and fix processing incoming emails.. :- ( On Mar 21, 11:48 pm, Lucian Baciu lucianba...@gmail.com wrote: The mail processing

[appengine-java] Re: Pls Help: want to send 2000+ emails in one go

2010-03-16 Thread Peter Ondruska
There are limits for Google Apps customers: http://www.google.com/support/a/bin/answer.py?hl=enanswer=166862 On Mar 16, 12:30 am, Ikai L (Google) ika...@google.com wrote: No, it shouldn't be. If it's a billed account (sounds like it is), your per/minute quota is 5,100 recipients:

[appengine-java] Re: Expires header automatically added (bug?)

2010-03-01 Thread Peter Ondruska
Could you provide some code please? On Mar 1, 9:06 am, George Moschovitis george.moschovi...@gmail.com wrote: I do use Expires header as well and it works as expected. For statis resources you define explicit expiration using appengine-web.xml. It did work as expected. Now the Expires

[appengine-java] Re: Expires header automatically added (bug?)

2010-03-01 Thread Peter Ondruska
Well, if you do not like what GAE sets as Expires value, why not set yours? On Mar 1, 11:18 am, George Moschovitis george.moschovi...@gmail.com wrote: Could you provide some code please? What kind of code should I provide? I do NOT set the Expires header in my code, and still GAE

[appengine-java] Re: Expires header automatically added (bug?)

2010-02-28 Thread Peter Ondruska
I do use Expires header as well and it works as expected. For statis resources you define explicit expiration using appengine-web.xml. On Feb 28, 9:45 pm, George Moschovitis george.moschovi...@gmail.com wrote: I noticed that the (live) Google App Engine server automatically adds an Expires

[appengine-java] Re: Google Apps Support in GAE

2010-02-22 Thread Peter Ondruska
:40 pm, Peter Ondruska peter.ondru...@gmail.com wrote: I usehttp://code.google.com/p/gdata-java-client/ On Feb 19, 5:16 pm, g3 insight insigh...@gmail.com wrote: I want to provideGoogleAppssearch and document upload service in my GAE application. Is there any API/Service can

[appengine-java] Re: Google Apps Support in GAE

2010-02-19 Thread Peter Ondruska
I use http://code.google.com/p/gdata-java-client/ On Feb 19, 5:16 pm, g3 insight insigh...@gmail.com wrote: I want to provide Google Apps search and document upload service in my GAE application. Is there any API/Service can support this function in GAE application? -- You received this

[appengine-java] Re: Mail with ODT attachment

2010-02-14 Thread Peter Ondruska
Feature request created as http://code.google.com/p/googleappengine/issues/detail?id=2778 please star it. On Feb 14, 7:56 am, seleronm seler...@gmail.com wrote: Hi, I think it is a good idea. On 2月13日, 午前1:34, Peter Ondruska peter.ondru...@gmail.com wrote: Shall we file a bug report

[appengine-java] Re: Mail with ODT attachment

2010-02-12 Thread Peter Ondruska
Shall we file a bug report for enhancement to include open document formats? What do you think? On Feb 12, 12:05 pm, seleronm seler...@gmail.com wrote: Hi. ODTmight not be able to be used. Please refer to the following links [http://code.google.com/intl/us/appengine/docs/java/mail/

[appengine-java] Re: Using Memcache...

2010-02-04 Thread Peter Ondruska
I use memcache to store Blogger data which if not found in memcache will be fetched and expired in few hours. On Feb 4, 4:00 pm, Fux ufi...@gmail.com wrote: Hi everyone! I have a question, are there any good examples of how Memcache should be used in a real world case? I mean, where should

[appengine-java] Re: Servlet Mapping not working as expected

2010-01-11 Thread Peter Ondruska
You need additional mapping for /sitefeed: servlet-mapping servlet-nameSiteFeedServlet/servlet-name url-pattern/sitefeed/url-pattern /servlet-mapping /sitefeed/* will not match /sitefeed On Jan 11, 11:40 am, Icarus pr.a...@gmail.com wrote: Hi,  I have the following issue :  The below

[appengine-java] Re: Purge _ah_SESSION ???

2010-01-07 Thread Peter Ondruska
Where should I look for this sessionCleanupServlet? On Jan 7, 6:01 am, m seleron seler...@gmail.com wrote: Hi, Though it is likely already to have tried. You might solve the problem by examining sessionCleanupServlet. thanks. On 1月7日, 午後1:18, Jorge athenas...@gmail.com wrote: Is

[appengine-java] Re: How can I test my java app behind proxy ?

2010-01-07 Thread Peter Ondruska
This is not working yet. There is a bug for this, so you may want to star it: http://code.google.com/p/googleappengine/issues/detail?id=544 On Jan 5, 11:20 am, 008 outlookwo...@gmail.com wrote: As title, my network is behind a proxy. I add the following text to appengine-web.xml        

[appengine-java] Re: Datanucleus initialization performance

2010-01-07 Thread Peter Ondruska
Andy, where should I configure class names in configuration file? Is there any documentation where I can take a look? Thanks, Peter On Jan 7, 4:12 pm, datanucleus andy_jeffer...@yahoo.com wrote: Only other thing is, do you specify class names explicitly in persistence.xml ? If not then it will

[appengine-java] Unindexed property

2009-12-23 Thread Peter Ondruska
I have set few properties unindexed like this: @Persistent @Extension(vendorName = datanucleus, key = gae.unindexed, value = true) private Float amount = 1.0f; But I get this exception: org.datanucleus.jdo.metadata.JDOAnnotationReader processMemberAnnotations:

[appengine-java] Re: Unindexed property

2009-12-23 Thread Peter Ondruska
annotation.  If you're using JDO, use javax.jdo.annotations.Extension. On Wed, Dec 23, 2009 at 8:50 AM, Peter Ondruska peter.ondru...@gmail.comwrote: I have set few properties unindexed like this:       �...@persistent       �...@extension(vendorName = datanucleus, key = gae.unindexed

[appengine-java] Blobstore vs Datastore Blob

2009-12-21 Thread Peter Ondruska
Is there any difference apart from API, billing restriction and max size between using Blobstore and Blob in Datastore? For example is it more efficient to store Blobs in Blobstore due to non-existing indexes for properties which would otherwise be present in Blob in Blobstore? Thanks, Peter --

[appengine-java] Re: Processing incoming email

2009-12-17 Thread Peter Ondruska
your issue with CIDs and inline image attachments. If you can, it'd be awesome if you could post some sample code for the group. On Wed, Dec 9, 2009 at 2:02 PM, Peter Ondruska peter.ondru...@gmail.comwrote: Thank you Jeremy, Ikai, and tetest. I was able to finish incoming mail handler

[appengine-java] Re: Billing Setup Started since November 30

2009-12-17 Thread Peter Ondruska
OK. Now I checked and it is billed. Thanks On Dec 17, 12:01 am, Peter Ondruska peter.ondru...@gmail.com wrote: My application is in Billing Setup Started since November 30. Is there anything I should do in order my application to become billed? My card is fine (already did other purchases

[appengine-java] Billing Setup Started since November 30

2009-12-16 Thread Peter Ondruska
My application is in Billing Setup Started since November 30. Is there anything I should do in order my application to become billed? My card is fine (already did other purchases using Checkout since then). -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Re: Introducing App Engine SDK 1.3.0

2009-12-15 Thread Peter Ondruska
Consider this early Xmas present :-) On Dec 15, 10:29 am, Rusty Wright rwright.li...@gmail.com wrote: The Google Boys are cooking!  It hasn't even been 2 weeks since the last release. Jason (Google) wrote: Hi Everyone. We just released version 1.3.0 of the App Engine SDK for both

[appengine-java] Re: Processing incoming email

2009-12-09 Thread Peter Ondruska
Thank you Jeremy, Ikai, and tetest. I was able to finish incoming mail handler in Java and it works fine now. I has been confusing due to changes in 1.2.7 and 1.2.8 releases. Peter On Dec 9, 10:52 pm, Ikai L (Google) ika...@google.com wrote: I've just tested this code out with Yahoo, Gmail and

[appengine-java] Re: Datastore Statistics vs. Quota

2009-12-07 Thread Peter Ondruska
Ikai, how to check/clear session data? Thanks, Peter On Dec 7, 7:53 pm, Ikai L (Google) ika...@google.com wrote: Toby, There's another thing to be aware of: sessions are backed with the datastore. If you have sessions enabled, you may want to write a scheduled task that clears session data.

[appengine-java] Re: Datastore statistics wrong

2009-12-06 Thread Peter Ondruska
Sessions are not enabled (and never were enabled). On Dec 6, 4:26 am, Don Schwarz schwa...@google.com wrote: Do you have HTTP sessions enabled?  They use datastore entities behind the scenes. On Sat, Dec 5, 2009 at 11:52 AM, Peter Ondruska peter.ondru...@gmail.comwrote: I look

[appengine-java] Re: /a/domain.com/ Logic

2009-12-06 Thread Peter Ondruska
Jason, I am interested in the same. Take Google moderator or Google short links as example. On Dec 6, 11:24 am, patrick patrick.duerste...@gmail.com wrote: Hello I'm trying to build an application wich can be deployed to diffrent google apps custmer, and each of them shoud have there own

[appengine-java] Re: Processing incoming email

2009-12-02 Thread Peter Ondruska
, tetest tet...@gmail.com wrote: Hi, Follow this thread: http://groups.google.com/group/google-appengine-java/browse_thread/th...http://groups.google.com/group/google-appengine-java/browse_thread/th... Though something only has to be able to be useful. thanks. On 11月30日, 午後11:34, Peter Ondruska

[appengine-java] Re: Delete task queue

2009-12-01 Thread Peter Ondruska
. Thanks! On Mon, Nov 16, 2009 at 7:52 AM, Peter Ondruska peter.ondru...@gmail.comwrote: OK, seems like a bug to me. Does it make sense to file an issue for this as it is experimental feature or shall I wait until it is more mature? Peter On Nov 13, 9:20 am, Peter Ondruska

[appengine-java] Processing incoming email

2009-11-30 Thread Peter Ondruska
I am following instructions on http://code.google.com/appengine/docs/java/mail/receiving.html to process incoming mail but failing on retrieving content (headers are fine). The getContent() method returns an object that implements the Multipart interface. You can then call getCount() to

[appengine-java] Make application available for Google Apps customers

2009-11-22 Thread Peter Ondruska
This is less technical question and I am not sure if it can be answered. I have a Google App Engine application I would like to be used by Google Apps domains (and publish to Google Enterprise Marketplace to make it available for any Google Apps customers). However when testing I found that if I

[appengine-java] Using the Python bulk exporter tool with a Java application

2009-11-20 Thread Peter Ondruska
Ikai has posted nice recipe on subject: http://appengine-cookbook.appspot.com/recipe/using-the-python-bulk-exporter-tool-with-a-java-application/ -- 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: Delete task queue

2009-11-13 Thread Peter Ondruska
Ikai, the application id is kaibo-www On 11 lis, 22:31, Peter Ondruska peter.ondru...@gmail.com wrote: Ikai, I have updated_queues (queue.xml follows) but thequeueis still there. ?xml version=1.0 encoding=UTF-8? queue-entries xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance

[appengine-java] Re: Delete task queue

2009-11-11 Thread Peter Ondruska
-java-sdk/bin/appcfg.sh update_queues myapp/war This is described here:http://code.google.com/appengine/docs/java/config/queue.html This should take a few minutes to propagate. Ikai On Tue, Nov 10, 2009 at 8:24 AM, Peter Ondruska peter.ondru...@gmail.comwrote: Actually I am

[appengine-java] Delete task queue

2009-11-09 Thread Peter Ondruska
I have defined task queue using queue.xml but later decided not to use it. It still appears in queue list in app engine. How do I delete this task queue? Uploading queue.xml with empty queue-entries? Thanks, Peter --~--~-~--~~~---~--~~ You received this message

[appengine-java] Re: Role: Sr. Oracle PL/SQL Developer - Direct Client Requirement

2009-10-20 Thread Peter Ondruska
Please, would you turn on moderation for new posts. More and more spam is coming, it is really getting annoying. Thanks On Oct 20, 7:53 pm, Suren recruiter.suren...@gmail.com wrote: Hi, This is Surendra with Infowave Systems and presently we have an Immediate Requirement and Let me know if

[appengine-java] Re: Redirect back to non-SSL

2009-09-13 Thread Peter Ondruska
Use a filter to achieve this functionality. On Sep 13, 6:40 am, WY wai...@gmail.com wrote: Hi all, I managed to configure my web.xml file to redirect all pages ending with *.dos to be handled by ssl with the following:    security-constraint         web-resource-collection            

[appengine-java] Re: Gzip encoding used by default ?

2009-09-10 Thread Peter Ondruska
GAE is using gzip encoding. Why would you want to disable? On Sep 10, 10:47 am, fvisticot fvisti...@gmail.com wrote: Can someone confirm that GAE is using gzip encoding by default for jsp. I have written a JSP app and i can see in the header content-encoding gzip. How to disable this gzip