[google-appengine] The Link To WebApp3 NonPublic Repository

2019-04-17 Thread Marcus Eagan
can do about the repository and what's going on with the documentation. Thanks, Marcus -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google

[google-appengine] Re: Connecting from app engine instance to compute engine instance directly

2017-12-05 Thread Marcus Mosttler
Does anyone know if there has there been any updates on getting the ability to connect from GAE Standard to a GCE instance? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it,

Re: [google-appengine] Re: State of Java 8 on App Engine (not the flexible env)

2017-03-01 Thread Marcus Demnert
As mentioned in GCP Podcast episode #58 by end of Jan (https://groups.google.com/forum/#!topic/google-appengine/Zn7X3D7o584), Java 8 on Standard can be expected during this spring. Den onsdag 1 mars 2017 kl. 14:52:03 UTC+1 skrev Attila-Mihaly Balazs: > > +1 on this! Google seems to have

[google-appengine] Re: Batch Query App engine datastore with AND expression

2015-07-16 Thread Marcus Masekowsky
): Hi Marcus, I know this won't give you anything more than what you already have, but can you try running your second query queryBatchString, but without the filter for the date field? And could you copy the string for queryBatchString? Because looking at how you build it, your keys

[google-appengine] Re: Batch Query App engine datastore with AND expression

2015-07-16 Thread Marcus Masekowsky
, 16. Juli 2015 20:45:45 UTC+2 schrieb Marcus Masekowsky: I found the solution. I used the wrong syntax. Thanks for your help: Correct is: String queryBatch = select from + C1.class.getName() + where + Model.KEY_FIELD + == :keys + + C1.C1_DATE_FIELD + :date Am Dienstag, 14. Juli

[google-appengine] Re: Batch Query App engine datastore with AND expression

2015-07-16 Thread Marcus Masekowsky
Ok, I solved it. Solution is to hard code it in query like this: select from C1 where key == :keys date 1436905284198 Am Donnerstag, 16. Juli 2015 21:41:56 UTC+2 schrieb Marcus Masekowsky: now I am asking me how to pass the second parameter value to the query: select from C1 where key

[google-appengine] Re: Batch Query App engine datastore with AND expression

2015-07-13 Thread Marcus Masekowsky
long (Calendar Timemillis). Now I want to select all Entities with their Key in my keyList AND date currDate. Am Sonntag, 12. Juli 2015 19:50:27 UTC+2 schrieb Marcus Masekowsky: Hi, I am trying to add a AND-Expression to a GAE batch query to filter Entities: Currently I am doing

[google-appengine] Batch Query App engine datastore with AND expression

2015-07-12 Thread Marcus Masekowsky
: AND encodedKey == :keys What is wrong or what can be done better. Are AND-Expressions not allowed in Bbatch Queries? Thanks Marcus -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving emails

[google-appengine] Re: I can't install docer images with gcloud preview app setup-managed-vms

2014-11-18 Thread Marcus Stade
I get these same errors despite having followed the instructions and used the older boot2docker iso. Is there anyway of getting more descriptive error messages? On Tuesday, November 11, 2014 9:01:22 PM UTC, Johan Euphrosine (Google) wrote: Hi, There is an ongoing issue w/ the SDK support

Re: [google-appengine] Re: I can't install docer images with gcloud preview app setup-managed-vms

2014-11-18 Thread Marcus Stade
On Tue, Nov 18, 2014 at 10:16 AM, Marcus Stade marcus...@gmail.com javascript: wrote: I get these same errors despite having followed the instructions and used the older boot2docker iso. Is there anyway of getting more descriptive error messages? On Tuesday, November 11, 2014 9:01:22 PM UTC

Re: [google-appengine] Re: I can't install docer images with gcloud preview app setup-managed-vms

2014-11-18 Thread Marcus Stade
It's still going, but I can present you with a partial log. Do you mind giving me an email where I can send it to off the list? On Tuesday, November 18, 2014 6:34:35 PM UTC, Johan Euphrosine (Google) wrote: Hi Marcus, can you post the full log somewhere? On Tue, Nov 18, 2014 at 10:27 AM

Re: [google-appengine] Re: I can't install docer images with gcloud preview app setup-managed-vms

2014-11-18 Thread Marcus Stade
I sent you the full log, hopefully it makes more sense to you than it does to me. Many thanks for the help! On Tuesday, November 18, 2014 6:55:45 PM UTC, Johan Euphrosine (Google) wrote: Oh sure, just send it to pro...@google.com javascript: On Tue, Nov 18, 2014 at 10:53 AM, Marcus Stade

[google-appengine] Re: GAE With Python From Scratch

2012-08-21 Thread Marcus Kemper
Yes, go over to www.udacity.com and take cs253. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/nHz7aYscSg4J. To post to this group, send email to

[google-appengine] Re: cannot log into dashboard

2010-10-06 Thread Marcus
Hi, I have the same problem. When logging in to: https://appengine.google.com/ I only get the introduction (https://appengine.google.com/start), I have 2-3 apps running, and can't adminster them at the moment. Ideas ? Thanks Marcus On Oct 5, 10:56 pm, Ron ronsterc...@gmail.com wrote

[google-appengine] Re: cannot log into dashboard

2010-10-06 Thread Marcus
Sorry, my bad. Solved by using: appengine.google.com/a/yourdomain.xyz. thanks Marcus On Oct 6, 1:53 pm, Marcus mar...@alexit.se wrote: Hi, I have the same problem. When logging in to: https://appengine.google.com/ I only get the introduction (https://appengine.google.com/start), I

[appengine-java] Re: Date, Calendar question (multiple instances of web application behaviour) clarification

2010-07-26 Thread Marcus Brody
it. What exactly is the problem you're trying to solve? On Sun, Jul 18, 2010 at 11:23 PM, Marcus Brody mhrab...@gmail.com wrote: Good day, I would like to ask about following. How is java.util.Date synchronized in case there is more than 1 instance of my web application. Example

[appengine-java] Re: Active transactions

2010-07-21 Thread Marcus Brody
and such, your crearPartido method has somehow too many arguments try to make it more simple. step by step. On Jul 22, 12:37 am, lisandrodc lisandr...@gmail.com wrote: Hi!Marcus, now I use your pattern for transactions: The code of the method: public void crearPartido(Long idEqLocal, Long idEqVisitante

[appengine-java] Date, Calendar question (multiple instances of web application behaviour) clarification

2010-07-19 Thread Marcus Brody
Good day, I would like to ask about following. How is java.util.Date synchronized in case there is more than 1 instance of my web application. Example: WebAppInstance01 : I create somewhere new Date() at the same time WebAppInstance02: I create somewhere new Date() Is there some time shift ?

[appengine-java] is there any solution/idea how blacklist IP in realtime ?

2010-07-19 Thread Marcus Brody
Hello, I was looking for some solution which would allow me realtime blacklist IPs. I didnt find any. Realtime I mean without manually getting IP and change dos.xml and upload it. A man can upload dos.xml to bann certain IPs. Can this be done somehow (anyhow) programmatically, even using home

[appengine-java] Re: Active transactions

2010-07-19 Thread Marcus Brody
Hi lisandrodc, please carefully read all documents http://code.google.com/appengine/docs/java/datastore/ and http://www.datanucleus.org/products/accessplatform_1_1/guides/jdo/daolayer_design.html Also many people cannot read spanish, if you would write in english you may get more answers. I

[appengine-java] Re: Active transactions

2010-07-19 Thread Marcus Brody
try follow this pattern for transactions public void doSomthingWithEntity(T entity) { PersistenceManager pm = getPersistenceManager(); Transaction transaction = pm.currentTransaction(); try { transaction.begin(); //

[appengine-java] Re: rename a app-id

2010-07-19 Thread Marcus Brody
create new app with your desired ID and forward all request :P On Jul 18, 3:34 pm, aswath satrasala aswath.satras...@gmail.com wrote: I do not want to delete the app.  I have user data. -Aswath On Sun, Jul 18, 2010 at 6:57 PM, jacek.ambroziak jacek.ambroz...@gmail.comwrote: Not really,

[appengine-java] Re: is there any solution/idea how blacklist IP in realtime ?

2010-07-19 Thread Marcus Brody
Jul 2010, at 20:09, Marcus Brody wrote: I am missing something ? So you guys are sitting in web console and watch how many requests came from given IP address ? This has to be done automatically ... somehow. -- You received this message because you are subscribed to the Google

[appengine-java] Re: Sending mail in transaction

2010-07-13 Thread Marcus Brody
-in handler to check whether the mail has been sent successfully or not. This is an ugly workaround but there is nothing else that comes to my mind. On 12 Jul., 22:54, Marcus Brody mhrab...@gmail.com wrote: dflorey and Pieter, thank you for the links, I will look into it asap. On Jul 12, 10

[appengine-java] Re: Sending mail in transaction

2010-07-12 Thread Marcus Brody
a task will be re-executed only if it fails (throws an exception). On Sat, Jul 10, 2010 at 6:43 PM, Marcus Brody mhrab...@gmail.com wrote: Hello, I would like to ask, if there is some way how to send mail only in case that some db transaction will be successful. I am not very

[appengine-java] Re: Sending mail in transaction

2010-07-12 Thread Marcus Brody
you can detect a second invocation of a task. Maybe if you combine this with specific catch blocks for mail exceptions? On Mon, Jul 12, 2010 at 10:07 PM, Marcus Brody mhrab...@gmail.com wrote: Pieter, although this looks easy its not that easy, I am aware that I can queue a mail

[appengine-java] send mail to person + BCC to all admins (strange behaviour)

2010-07-12 Thread Marcus Brody
, or is it problem in my code ? Thank you, Marcus -- 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, send email to google

[appengine-java] Re: Breaking change in data store?

2010-07-11 Thread Marcus Brody
to Key object and then make checks before accessing getName() or getID() (only 1 can be set) If I am right this has nothing to do with downtime issue. Hope this helps you, Marcus On Jul 8, 11:39 am, Marc Guillemot mguille...@yahoo.fr wrote: Hi, yesterday my application worked just fine. Today

[appengine-java] Re: Sending mail in transaction

2010-07-11 Thread Marcus Brody
to execute gdata insert requests in a transaction as they may return with a timeout. It would be very nice if google would provide the standard services in an idempotent manner. On 10 Jul., 18:43, Marcus Brody mhrab...@gmail.com wrote: Hello, I would like to ask, if there is some way how

[google-appengine] JPA @Lob

2010-05-22 Thread Marcus
, I agree that I should not save a string greater than 500 characters in a varchar column. However, when using the @Lob annotation, and persisting the entity, I get the below StackTrace. Any ideas how to avoid this ? Kind Regards Marcus java.lang.NullPointerException

[google-appengine] Pondering move to GAE

2010-05-19 Thread Marcus
when trying to access the admin panel for appspot.com it asked me for SMS verification again, how often does this happen ? I'm sure I have a million more questions, but let's start with these. Thanks in advance for your answers. Kind Regards Marcus -- You received this message because you

[google-appengine] Re: Problem with timeouts on get_by_key_name

2009-04-08 Thread Marcus
Thanks! I will try and add retry functionality. On Apr 6, 11:50 pm, Jeff S j...@google.com wrote: Hi Marcus, The error rate makes me think these are transient errors, so it should be safe to retry. Be sure to catch the specific exception, since there are other reasons that a datastore

[google-appengine] Re: Problem with timeouts on get_by_key_name

2009-04-08 Thread Marcus
Thanks! I will try and add retry functionality. On Apr 6, 11:50 pm, Jeff S j...@google.com wrote: Hi Marcus, The error rate makes me think these are transient errors, so it should be safe to retry. Be sure to catch the specific exception, since there are other reasons that a datastore get

[google-appengine] Problem with timeouts on get_by_key_name

2009-04-02 Thread Marcus
Hello! I am getting some timeouts in my app. My app uses get_by_key_name along with alot of other database accessing. I get around 5-10 timouts each day and it is always get_by_key_name that times out, never any other database acceses. Why could this be? Is there a way to protect the app from