[google-appengine] Re: No Search Solution?! WOW.

2022-03-07 Thread Jim
As I'm sure you are aware, GAE Standard has the Search service, but this is being phased out and no replacement is available on GAE Flex. The lack of an integrated Search offering kinda blows a hole in the entire "server-less platform" vision. On Monday, March 7, 2022 at 10:05:57 AM UTC-6

[google-appengine] Managing Google Cloud Platform Projects - Someone else project is listed in my account???

2022-02-16 Thread Jim Range
Today someone else's project popped up in my "No Organization" list of projects in the google cloud console. There is a message that I am an authorized user of this strangers project. The owner of the project, Hassan Kibiti, lives in Nairobi, Kenya. I live in Chicago, IL USA and I do not know

Re: [google-appengine] Pull Queue Deprecation?

2020-01-11 Thread Jim
tails: > https://cloud.google.com/appengine/docs/standard/java/taskqueue/pull/migrating-pull-queues > > Please let us know if Cloud Pub/Sub doesn't solve your needs in this area, > so we can improve our decisions for future features. > > On Fri, Jan 10, 2020 at 11:10 AM Jim > > wrote: &

[google-appengine] Pull Queue Deprecation?

2020-01-10 Thread Jim
I have an app running on Google App Engine Standard using the Java 8 runtime, and it uses both push and pull queues extensively. When I'm using the Google Cloud Platform management console I interact with my Push and Pull Queues under the "Cloud Tasks" UI option, but all of my code

[google-appengine] Re: When/Where to create index and add documents for Search API - Java

2018-12-29 Thread Jim
Are you using Cloud Datastore? If so, you can use Datastore Callbacks and define "put" and "delete" callback functions on specific kinds. Whenever an entity is put or deleted your callback functions will be called and you can do your index updates there.

[google-appengine] Re: Datastore String length limit of 1,500 bytes when using JDO

2017-03-03 Thread Jim
code I am unable to store large values under either indexing condition. I have my class annotated to turn indexing off like this: @Persistent @Extension(vendorName="datanucleus", key="gae.unindexed", value="true") private String meterOptions; Jim On Thur

[google-appengine] Datastore String length limit of 1,500 bytes when using JDO

2017-03-02 Thread Jim
When I attempt to write a Datastore string longer than 1,500 bytes via JDO I get the following error: "String properties must be 1500 bytes or less. Instead, use com.google.appengine.api.datastore.Text, which can store strings of any length." I've annotated my class to turn indexing off on

[google-appengine] Re: FTP alternative

2017-02-13 Thread Jim
Louise, @Jim: the application on the VM is not a GAE app then? Correct, in our setup it is running on an Amazon EC2 instance; we put it together back before the days of GCE VMs. The app itself is Java using Apache Commons FTPClient. Yes, it is a lot of work for something so simple

[google-appengine] Re: FTP alternative

2017-02-09 Thread Jim
"More future-oriented people might resent having to use an FTP server" Ha, well said. We have a few regularly scheduled FTP pulls that we need to get so we have a VM instance start up on a schedule, execute the FTP downloads, push the data to our GAE app, then the VM shuts itself down.

[google-appengine] Re: Doing Totals/aggregates

2017-01-27 Thread Jim
Another option is to use map-reduce against your datastore tables for aggregation of truly 'big' data sets. It's nowhere near as flexible as some of the other options mentioned here, but if your requirements are fairly static it works great and will allow you to keep your data in one place.

[google-appengine] Re: How to design a daily job for bulk inserts of data

2016-09-19 Thread Jim
I concur with Evan re: backend instances. I also suggest that you make copious use of tasks. In your step #3, rather than actually inserting each row into Cloud SQL, I would drop an individual task onto a push queue for each row insert, and then have another process which fires for each task

[google-appengine] Re: Create a module for App Engine in Eclipse?

2016-05-31 Thread Jim
of database changes and sending of email updates. The cron would fire URL requests which would be web calls but without any user interface. Jim On Monday, May 30, 2016 at 3:04:57 PM UTC-5, Kirtan Thakkar wrote: > > > Hi, I am a newbie in app engine. Trying to create my first app engine

[google-appengine] Help a Noob create an endpoints project in eclipse

2016-03-19 Thread Jim Craft
then worry about the Web/Android/iOS app. Any help/pointers/etc. would be appreciated! Cheers! Jim PS: I'm reasonably comfortable with Eclipse and Java SE but this realm is all very new to me. -- You received this message because you are subscribed to the Google Groups "Google App E

[google-appengine] Re: Help a Noob create an endpoints project in eclipse

2016-03-19 Thread Jim Craft
Hi Zeehad, Thanks ... I have been through that tutorial. It does not, however, explain how I might do the same thing from within Eclipse. Cheers! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop

[google-appengine] Re: Help a Noob create an endpoints project in eclipse

2016-03-19 Thread Jim Craft
Hi Cesar, Thanks! Jim On Friday, March 18, 2016 at 3:33:11 PM UTC-6, Cesar Alvarado Peragallo wrote: > > > Hi Jim > > Here a great article to start > http://rominirani.com/2014/01/10/google-cloud-endpoints-tutorial-part-1/ > > PS : I build EndPoint with Golang instea

[google-appengine] Re: Help a Noob create an endpoints project in eclipse

2016-03-18 Thread Jim Craft
cation Settings, Application ID: helloworld, Version: 1, and other HRD settings. When I click on Run I get in the Console a "Usage: [options] and that is followed by the Options list. I've tried various different settings/adjustments/configs to no avail. Hopefully someone has

[google-appengine] GAE Java bug? Intermittent 500 errors enqueuing tasks inside datastore transaction

2016-01-29 Thread Jim
fourteen_days)); I tried posting this to https://code.google.com/p/googleappengine/issues but haven't received any feedback or help. Is anyone else seeing similar behavior? Can someone from Google help me with this? Jim -- You received this message because you are subscribed to the Google

[google-appengine] Log Viewer shows only Log Level and Datetime Stamp; no log details visible

2016-01-22 Thread Jim
Hi, Starting just a few minutes ago the Log Viewer stopped working for me. I see a record for each log entry, but all it shows me is the log level and the datetime stamp of the entry. The log details are not shown. Is anyone else seeing this behavior? Jim -- You received this message

[google-appengine] Re: Geospatial/geolocation queries from GAE (or other Cloud products)?

2016-01-05 Thread Jim
Our needs involve displaying embedded maps in our app with location markers overlayed on the map. A given app can have 50,000 or more markers (every house in a town) so we can't simply display them all at once. So, we use a tile-based approach that renders only (roughly) the tiles that are

[google-appengine] Re: Task Queue Latency

2015-12-03 Thread Jim
customers due to platform > issues. At the end, my clients blame my company not to Google for these > problems... > > Thanks, > > Rene Marty > > El jueves, 3 de diciembre de 2015, 13:09:28 (UTC-3), Jim escribió: >> >> David, thanks I think you're right that looks

[google-appengine] Re: Task Queue Latency

2015-12-03 Thread Jim
. On Wednesday, December 2, 2015 at 6:05:45 PM UTC-6, David Fischer wrote: > > I think this is the status for this event: > https://status.cloud.google.com/incident/appengine/15024 > > On Wednesday, December 2, 2015 at 11:55:04 AM UTC-8, Jim wrote: >> >> Can

[google-appengine] Re: Task Queue Latency

2015-12-02 Thread Jim
y regular peaks at the beginning turn into irregularity > since I've been experiencing issues with task queues. > > John > > On Tuesday, December 1, 2015 at 8:03:25 AM UTC-8, Jim wrote: >> >> Hello, >> >> Has anyone else noticed a lot of latency in Task Queues with

[google-appengine] Re: Task Queue Latency

2015-12-01 Thread Jim
nerating errors or anything. > > On Tuesday, December 1, 2015 at 8:03:25 AM UTC-8, Jim wrote: >> >> Hello, >> >> Has anyone else noticed a lot of latency in Task Queues within the past >> few days? We've noticed that our push queues are backing up with >>

[google-appengine] Task Queue Latency

2015-12-01 Thread Jim
h up again. Anyone else seeing similar behavior? Jim -- 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-appengine+unsubscr...@googl

[google-appengine] Re: Stolen website on Google sub domaine? What should I do?

2015-11-10 Thread Jim
people's attention with a "DMCA Takedown Notice" which can be submitted to the ISP of the offending party. The DMCA prescribes the process which the ISP must follow to investigate and handle your claim. Jim https://www.copyrightalliance.org/2012/03/in-plain-english-a-quick-guide-to-dmc

Re: [google-appengine] Re: how do you get a serving url for google cloud storage (gcs) object

2015-08-24 Thread Jim Gilliam
Thanks Ryan. It works. Do you know where this is documented in GAE ? On Mon, Aug 24, 2015 at 6:58 AM, Ryan (Cloud Platform Support) rbruy...@google.com wrote: Salutations James, You need to run 'blobstore.create_gs_key' then pass the results to the get_serving_url.

[google-appengine] Re: Is it necessary to perform backup data and stored them in non Google server

2015-07-19 Thread Jim
in particular, give me a high degree of confidence that I'm not going to need to restore data due to issue #2 above. But the other scenarios still potentially exist. Jim On Sunday, July 19, 2015 at 12:50:41 AM UTC-5, yccheok wrote: Currently, I had built several apps on the top of Google App

[google-appengine] Re: How to server video content fast

2015-07-04 Thread Jim
doing something else so that he/she doesn't experience the load time as a delay? On Friday, July 3, 2015 at 3:56:07 AM UTC-5, Ankur Jatt wrote: Hello Jim, Well when I saw the response time from GAE than its same around from 15ms-80ms. ANd the response metrics I attached, plz have a look

[google-appengine] Re: How to server video content fast

2015-07-02 Thread Jim
or even in your browser while it loads a viewer for that mp4 content? Jim On Thursday, July 2, 2015 at 11:25:23 AM UTC-5, Ankur Jatt wrote: Currently I'm using below class to serve videos: class VelfieVideoHandler(blobstore_handlers.BlobstoreDownloadHandler): def get(self, blobKey

[google-appengine] Re: How to send emails using Mail Service

2015-05-10 Thread Jim
Once you get the mail api working, you can send message from 'ad...@mydomain.com' by first setting that account up as a 'developer' of your app (Administration/Permissions). Adding an account as a Developer of your app initiates a confirmation email from GAE, so you'll need access to that

[google-appengine] Re: how to convert ppt slides to images in google app engine, i am using apache POI, which in turn uses java.awt and bufferedimage classes that is not supported in google app engine

2015-04-12 Thread Jim
We've made limited use of POI on GAE, but as you say the classes that use the java.awt package will not work. We just need to read/write Excel and Word documents for which it works fine. Have you looked at Google Computer Engine? I imagine you can get the full POI library to work there (you

[google-appengine] Re: Can I use an alias to send emails with the mail api?

2015-02-10 Thread Jim
that make our Google accounts GApps accounts by default? Thanks On Tuesday, February 10, 2015 at 4:18:24 AM UTC+8, Jim wrote: I'm not certain of every circumstance where this will work, but this is how we do it: If you set up nor...@mydomain.com as a Developer on your project then you'll

[google-appengine] Re: Can I use an alias to send emails with the mail api?

2015-02-09 Thread Jim
I'm not certain of every circumstance where this will work, but this is how we do it: If you set up nore...@mydomain.com as a Developer on your project then you'll be able to send emails from that address. You can just setup a Google Accounts account for nore...@mydomain.com and then invite

Re: [google-appengine] App Engine Java Map Reduce Completion Callback

2015-02-06 Thread Jim
this: https://github.com/GoogleCloudPlatform/appengine-mapreduce/blob/master/java/example/src/com/google/appengine/demos/mapreduce/entitycount/ChainedMapReduceJob.java On Thu, Jan 29, 2015 at 10:21 AM, Jim jeb6...@gmail.com javascript: wrote: Hello everyone, I've just started working with Java Map

[google-appengine] App Engine Java Map Reduce Completion Callback

2015-01-29 Thread Jim
point me in the right direction? If the callback method is no longer available, I'm thinking a custom output method would be the right place to capture my final output and drop to the task queue. Any other ideas? Thanks for your help, Jim -- You received this message because you

[google-appengine] Re: Communicating with GCE (PHP)

2015-01-18 Thread Jim
sorry, the channels api isn't going to work for you on a GCE instance, although you could just use a socket queues will work for you (pull from your GCE instance) On Sunday, January 18, 2015 at 1:17:02 PM UTC-6, Jim wrote: you could have a process on your GCE instance that periodically

[google-appengine] Re: Communicating with GCE (PHP)

2015-01-18 Thread Jim
you could have a process on your GCE instance that periodically polls for messages in a queue, or when your GCE instance starts you could open a channel and listen for events On Saturday, January 17, 2015 at 1:40:19 PM UTC-6, Bryan Goldberg wrote: I have a fresh install of an Ubuntu Compute

[google-appengine] Re: Maintain a connection: Restaurant and Client

2015-01-02 Thread Jim
check out the Channels API https://cloud.google.com/appengine/docs/python/channel/ On Friday, January 2, 2015 12:00:48 PM UTC-6, Saturnino Mateus wrote: Hello guys! I'm making an a application for restaurant orders with Google App Engine with Python. I need to maintain a connection with

[google-appengine] Re: Please help me get my site going on app engine

2014-10-09 Thread Jim
PK is correct, Google App Engine is a platform for programmers. I suggest you check out jAlbum here: http://jalbum.net/en/ I've used it in the past to publish photo albums and found it to be very easy-to-use and full of nifty features. It will generate web pages of your photos for you and

[google-appengine] Re: How can I make App engine stay alive and wait for reading new log files

2014-09-21 Thread Jim
what does a few extra seconds matter? presumably you have time lags while your 250MB log segments are being collected, and you're going to have time lag as BigQuery indexes the data after you upload it, and you're going to have time lag while you upload the 250MB files. So you have a few

[google-appengine] Re: App Engine 60 seconds backend processing?

2014-09-15 Thread Jim
In addition to breaking your application down into front and back ends, you can utilize Task Push Queues. I highly recommend this approach for anything that can be done asynchronously. On Monday, September 15, 2014 9:53:27 AM UTC-5, Alejandro Castillo wrote: Hi All, I'm thinking about

[google-appengine] Re: App Engine 60 seconds backend processing?

2014-09-15 Thread Jim
I forgot to mention... Task Queue Push requests are not subject to the 60 second timeout limit. They have a much longer limit... 10 minutes if I remember correctly. On Monday, September 15, 2014 5:49:18 PM UTC-5, Jim wrote: In addition to breaking your application down into front and back

[google-appengine] Re: Sample program to Upload a csv file to Google cloud Storage bucket

2014-07-11 Thread Jim
what language are you using? On Wednesday, July 9, 2014 5:28:31 PM UTC-5, Sagar Ganapaneni wrote: Hi, i have tried various examples available over the internet, but not successful in uploading a file to GSC bucket. I am able to read the files but not write. Please share the sample

[google-appengine] Re: Following a course and have been told to use Google App engine to display a message in the browser - don't know where to start. Guidance?

2014-06-20 Thread Jim
you want what programmers call a Hello World program: https://developers.google.com/appengine/docs/python/gettingstartedpython27/helloworld On Sunday, June 8, 2014 2:55:52 PM UTC-5, george. wrote: Very annoyed TBH as the course didn't say anything about how I'm meant to this, provide

[google-appengine] Re: What does the Docker updates bring?

2014-06-11 Thread Jim
At this point it doesn't Docker images are compatible with Compute Engine instances, not App Engine On Wednesday, June 11, 2014 11:04:00 AM UTC-5, Kaan Soral wrote: I'm wondering how the Docker integration affect AppEngine/usage -- You received this message because you are subscribed

Re: [google-appengine] A comparison between Digital Ocean $5 plan and App Engine B$ instance type.

2014-02-20 Thread Jim
, February 20, 2014 5:30:23 PM UTC+8, Pertti Kellomäki wrote: On Thu, Feb 20, 2014 at 5:23 AM, Tapir tapi...@gmail.com wrote: On Thursday, February 20, 2014 7:58:54 AM UTC+8, Jim wrote: It seems that some people want Infrastructure as a Service and they don't put much value on the Platform

Re: [google-appengine] A comparison between Digital Ocean $5 plan and App Engine B$ instance type.

2014-02-19 Thread Jim
Hello Rafa, I have been watching this thread wondering if you might chime in :-) This has been hashed over here many times before. It seems that some people want Infrastructure as a Service and they don't put much value on the Platform as a Service architecture that Google has created here.

[google-appengine] Python application not found

2014-02-11 Thread Jim CaJacob
I'm just getting started using App Engine and Launcher. I have created an application (from the Launcher) and run it successfully locally, and the application's folder is created within the specified path. When I Deploy from Launcher, I get an application not found 404 error. Any suggestions.

[google-appengine] Re: App engine and Apache POI

2014-01-24 Thread Jim
We use Apache POI in a limited way with App Engine. As long as you stay away from functions that want to use the local file system and I've heard you'll get errors if you try to use any of the graphics-related functions. We're just doing basic spreadsheet manipulation... opening existing

Re: [google-appengine] Re: Snapchat

2014-01-24 Thread Jim
I think we beat that horse to death! Good luck to you as well. On Thursday, January 23, 2014 1:56:05 PM UTC-6, Rafael Sanches wrote: Jim, No comments on your comment. Have you read it in facebook headquarters? :) What would you do if you put all your savings in your startup and there's

Re: [google-appengine] Re: Snapchat

2014-01-23 Thread Jim
among other things. Paying more now so you don't get fired in the future might not be the best option for a startup. cheers, rafa On Wed, Jan 22, 2014 at 5:24 AM, Jim jeb6...@gmail.com javascript:wrote: Rafa, You are correct that I have a lot of large corporate experience, working

Re: [google-appengine] Re: Snapchat

2014-01-22 Thread Jim
conversation. If you believe your customers will demand a solution that is engineered for scalability and resiliency and fault-tolerance, then running in distributed data centers is essential. Maybe not back in the 1970's, but in this century and decade anyway. Jim On Tuesday, January 21, 2014

Re: [google-appengine] Re: Snapchat

2014-01-21 Thread Jim
, Jan 20, 2014 at 1:44 PM, Jim jeb6...@gmail.com javascript:wrote: I've seen many variations of this statement, Google App Engine is expensive!, and it always strikes me as a bit off. I supppose it depends on your perspective and your requirements. For the past three years I've been running

Re: [google-appengine] Re: Snapchat

2014-01-21 Thread Jim
of. On Tuesday, January 21, 2014 1:58:56 PM UTC-6, Rafael Sanches wrote: Jim, In 2014 a good engineer can create your own cloud infrastructure with 10 machines like the ones I suggested. Again, I am not saying that I don't like appengine. In fact, I love it and that's why I stick with it. I am

[google-appengine] Re: Snapchat

2014-01-20 Thread Jim
I've seen many variations of this statement, Google App Engine is expensive!, and it always strikes me as a bit off. I supppose it depends on your perspective and your requirements. For the past three years I've been running a small start-up building a SaaS analytics application. For the

[google-appengine] Re: ODBC for the Datastore?

2014-01-07 Thread Jim
I don't think you're going to find anything like that for GAE Data Store; the Data Store is a NoSQL database technology, and ODBC, while technically a very flexible specification that can be adapted to address a wide range of database technologies, really evolved hand-in-hand with SQL

[google-appengine] Re: Transitioning from Java to App Engine

2013-12-10 Thread Jim
We use GAE/J in conjunction with Google Web Toolkit as the UI framework and we're very happy with it. With GWT you do all of your development in Java and the toolkit compiles your client-side code down into a browser-specific Javascript application. It has most of the standard UI controls you

[google-appengine] Re: What is the most efficient way to compute a rolling median on appengine?

2013-11-21 Thread Jim
missed your comment... this is what we're doing, except we avoid the 1MB limitation by storing the data sets in blobs and store the pointer to the blob in the entity record On Wednesday, November 13, 2013 1:20:21 PM UTC-6, Kaan Soral wrote: A single datastore entity can hold up to 1MB's

[google-appengine] Re: What is the most efficient way to compute a rolling median on appengine?

2013-11-21 Thread Jim
average. On Tuesday, November 19, 2013 9:23:59 PM UTC-5, Jim wrote: Are you doing a time-series type analysis where you need the rolling median value for a specific entity, or do you need the median value across a range of entities? On Tuesday, November 12, 2013 2:07:34 PM UTC-6, Mathieu

[google-appengine] Re: What is the most efficient way to compute a rolling median on appengine?

2013-11-19 Thread Jim
Are you doing a time-series type analysis where you need the rolling median value for a specific entity, or do you need the median value across a range of entities? On Tuesday, November 12, 2013 2:07:34 PM UTC-6, Mathieu Simard wrote: Since there is no appengine solution available such as

[google-appengine] Re: ROFLMFAO DynamoDB From Amazon

2013-11-08 Thread Jim
I agree with your comments about using both IAAS and PAAS. Our application does a lot of back-end processing using AWS clusters that we can spin up/down on demand for our more intensive batch-oriented analytic updates which happen once a week. Our user interface runs on GAE written in Java

Re: [google-appengine] Re: major MEMCACHE changes started October 5th

2013-10-09 Thread Jim Gilliam
Alex, Basically, GAE had a price increase by making shared memcache unusable. You have to signup for the premium memcache at 12 cents a GB-hour to get back to the way it use to work. This was dishonest of GAE and they have not even announced that they essentially deprecated the shared memcache

Re: [google-appengine] Re: major MEMCACHE changes started October 5th

2013-10-08 Thread Jim Gilliam
I am using about 30 megs of memory cache for 1200 items -- not very much imo. In the past I have used as much as 100 megs without seeing excessive purges. Hard to code against parameters which are not documented and possibly even change based on unknown factors. At this point, you can even

[google-appengine] Re: call SOAP webservice from external application

2013-10-03 Thread Jim
Is the app engine app yours? If so perhaps you could expose your service as a RESTful service rather than SOAP since you don't have a SOAP client library on your arduino platform. The REST service will be much simpler to consume with basic HTTP programming methods. On Thursday, October 3,

[google-appengine] Re: When will we have Google App Engine for .Net

2013-09-11 Thread Jim
we have a saying in the US when pigs fly On Tuesday, September 10, 2013 11:02:14 AM UTC-5, Prashanth Tondapu wrote: Hi, I am a big fan of Google and Google services. I am a .net developer and have developed a website www.auditiononline.in. This is primarily based on Youtube embed

[google-appengine] Re: Finding all the locations in a given radius with GQL

2013-08-29 Thread Jim
box search. Jim On Wednesday, August 28, 2013 7:26:19 AM UTC-5, Ranjeet sengar wrote: Hi, Im developing my first application on app engine and first post here, so please be gentle :) Im developing an application where I store location information in the datastore.Im trying to fetch all

[google-appengine] Re: Connecting and querying from external MSSQL Server?

2013-08-27 Thread Jim
If you're truly married to MS SQL you'll need to expose a web service that fronts your MS SQL database and call it from your GAE code. Google also now offers a MySQL-based SQL Cloud service that would be easier to get to through native language libraries in much the same way you can access the

Re: [google-appengine] Re: GAE BILLING IS SERIOUSLY MESSED UP

2013-08-16 Thread Jim Gilliam
Brian, The UI is good. The problem is that transactions are not completing. When the first ACH debit to my checking account was declined on August 8th, after working for months, I called the bank. They told me that no such ACH debit was presented to them and they declined nothing. The message

Re: [google-appengine] Re: Delete Entire Namespace ... Entity Still Persist ... What does eventual consistency really mean?

2013-06-25 Thread Jim Gilliam
Wolfram -- Thank you for the response. I will do as you suggest ... access the stale group with a GET to clear up the stale replica. Also, in rare cases, we have seen a get for a single row in the datastore, return an old result and the current result randomly, many days after the item was

Re: [google-appengine] Re: blob upload failing with error code 503 -- servivce unavailable

2013-06-21 Thread Jim Gilliam
I agree ... the problem was fixed around 3pm yesterday as far as I know. It kind of freaked us out ... one of the biggest outages we have ever seen with GAE, about 5 hours I think. Thanks so much On Fri, Jun 21, 2013 at 1:49 PM, John Lowry jlo...@google.com wrote: Jared, I have again

[google-appengine] Re: Package name error in app engine connected android project after endpoint library generation

2013-04-12 Thread Jim Cunningham
I got and fixed the same problem today. Make sure you are using the new SDK 1.7.7 in App Engine when you build the cloud endpoints client library. Details: I had downloaded SDK 1.7.7 a few days ago. After getting this problem today I checked the configuration (Properties Google AppEngine)

[google-appengine] Re: Email sent but not received on other side

2013-03-19 Thread Jim
It may be related to the SPF record: http://support.google.com/a/bin/answer.py?hl=enanswer=33786 On Wednesday, August 1, 2012 1:54:31 PM UTC-5, Dia Al-Karbalai wrote: I have this google apps email and I am bcc'ing some people and I send it out, I get no bounce-back messege and no error.

[google-appengine] Re: Google app-engine, SOAP service endpoint, data store

2013-03-17 Thread Jim
There are some good java libraries for creating and consuming soap web services. I have a java app running on app engine which consumers a soap web service; all the binding code was auto-generated from the wsdl so it was really a snap to create. I imagine creating your own end-point wouldn't

[google-appengine] Re: Best strategy

2013-03-12 Thread Jim
had significant cold start times and could be a pig, especially with the Django framework. But like I said, that was over four years ago and I'm sure things have changed a lot since then. On Monday, March 11, 2013 4:38:02 PM UTC-5, victo...@gmail.com wrote: Thanks for the reply Jim

Re: [google-appengine] Best strategy

2013-03-11 Thread Jim
what about a project where you have extensive UI requirements and want to use Google Web Toolkit? what about a project where you want to make use of the vast array of commercial and open source Java code that exists already? what about a project where you may want to port to an in-house

Re: [google-appengine] gae mapreduce problem

2013-03-07 Thread Jim Morrison
@googlegroups.com. Visit this group at http://groups.google.com/group/google-appengine?hl=en. For more options, visit https://groups.google.com/groups/opt_out. -- Jim -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group

Re: [google-appengine] Run Map Reduce on non-default versions?

2013-03-01 Thread Jim Morrison
=en. For more options, visit https://groups.google.com/groups/opt_out. -- Jim -- 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-appengine+unsubscr

Re: [google-appengine] Run Map Reduce on non-default versions?

2013-03-01 Thread Jim Morrison
in a separate queue do you pass in the queue_name to the pipeline.start() command, just like with the normal Pipeline API? Yes. On Friday, March 1, 2013 9:48:11 AM UTC-8, Jim Morrison wrote: As long as you start the mapreduce on a non-default version it will continue to run in the non-default

Re: [google-appengine] NDB Parallel Tasklets

2013-01-30 Thread Jim Morrison
/google-appengine?hl=en. For more options, visit https://groups.google.com/groups/opt_out. -- Jim -- 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

Re: [google-appengine] Can't add a domain using my google apps account (paid subscription in the trial period)

2013-01-18 Thread Jim Morrison
. -- Jim -- 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@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options

[google-appengine] Where do I find the HRD Migration Tool?

2013-01-17 Thread Jim Morgan
/appengine/docs/adminconsole/migrationto migrate appengine from M/S to HRD and I get to step 3, under Using the Migration Tool. I can't find the referred to menu choice anywhere on the appengine console page. I admit that the appengine stuff is new to me, but what am I missing? TIA, Jim -- You

Re: [google-appengine] Re: Console issues?

2013-01-15 Thread Jim Briggs
Similar problems. No instances are accessible and deployments fail. Latest error due to an error reading the deployed files. On Tuesday, January 15, 2013 1:20:04 PM UTC-5, Joakim wrote: This is causing my instances to fail to start within 60 seconds. I currentyl have zero instances, and

Re: [google-appengine] Re: GAE keeps starting new instances causing lots of user facing loading requests

2013-01-10 Thread Jim Briggs
I've been having the same problem for a couple weeks under extremely low load. I'm wondering what the commonality is and how widespread the problem is. On Thursday, January 10, 2013 11:14:29 AM UTC-5, Francois Masurel wrote: Same thing happening a few minutes later :

[google-appengine] Re: GAE keeps starting new instances causing lots of user facing loading requests

2013-01-09 Thread Jim Briggs
I'm having the same problem and have been having it for at least a week. Instances get started while other instances are not being used. I wonder what the commonality is between your and my problem. I'm also using a custom domain. I've tried different configurations of idle instances and

[google-appengine] Re: Code reviews

2012-10-05 Thread Jim Morrison
://groups.google.com/d/topic/appengine-code-reviews/w2z1KaD27Ao/discussion What do you guys think? -- alex -- Jim -- 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@googlegroups.com

[google-appengine] Google app cron job

2012-10-02 Thread jim
hours/schedule /cron /cronentries as timing is not critical, just thought that runnng this at night will ease the load on the google infrastructure. Any ideas as to a different schedule ? or does this look ok ? thx jim -- You received this message because you are subscribed to the Google

Re: [google-appengine] Need advice on what to do POST HRD migration

2012-09-10 Thread Jim McCabe
the old app, how can I see that an alias exists? Jim On Friday, 24 August 2012 13:00:31 UTC-7, Takashi Matsuo (Google) wrote: On Sat, Aug 25, 2012 at 1:35 AM, n3phele n3p...@gmail.com javascript:wrote: I have a question about what do to *after* migration to the HRD data store. After

Re: [google-appengine] Need advice on what to do POST HRD migration

2012-09-10 Thread Jim McCabe
Engine app, Google immediately removed the mapping of my custom domain the old app. This made it possible for me to map the domain to the new app, no problem at all! Jim -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view

Re: [google-appengine] Catching bounced emails

2012-08-14 Thread Jim Morrison
/-/ZtqTOzhxdmAJ. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en. -- Jim -- You received

[google-appengine] Re: Sending SMS

2012-07-02 Thread Jim
I've been very pleased with twilio.com They have a REST api for sending SMS messages, and it also does VoIP On Monday, July 2, 2012 6:19:02 AM UTC-5, sharad biradar wrote: Hi, Can we send SMS from Google app engine to cell phone. -- You received this message because you are subscribed

Re: [google-appengine] Re: GAE over GGC

2012-06-19 Thread Jim Morrison
from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en. -- Jim -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post

Re: [google-appengine] Re: GAE over GGC

2012-03-26 Thread Jim Morrison
this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en. -- Jim -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group

[google-appengine] Did last-modified header supported for static files in GAE noe?

2012-02-03 Thread Jim
Thanks -- 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@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options,

[appengine-java] DeferedTask Enquiry

2012-01-05 Thread Jim
Hi There, I am new to the GAE environment and was keen to get some project completed using this environment. I have a project which should use the Jazzy spell checker to spell check some text in addition to other actions. When I run this code locally it runs fine however, when I deploy it, it

[google-appengine] Re: WTF again. Why so many GAE group posts are moved into American-porn group?

2011-11-23 Thread Jim Douglas
Greg, Not sure if you would have noticed this; it seems to affect all of us. Here's your profile: http://groups.google.com/groups/profile?enc_user=Zv7tuxCy4JMQo8Z2z60KpjGFZb6i Very disconcerting to see messages attributed to me that I didn't post. On Nov 22, 10:54 am, Gregory D'alesandre

[google-appengine] Re: Blobstore -creation running very slow

2011-11-19 Thread Jim Gilliam
another puzzling thing about this query ... it is only really slow when the offset is 0 (or a very low value) it runs less a second when the offset is larger, like 1000 is there something strange when you are trying to find the most recent blobs created, even if the creation happened hours (or

Re: [google-appengine] Re: HRD migration tool now available!

2011-11-10 Thread Jim
I'd like to verify this: I've taken one app through the migration process following all the steps in the instructions. It looks like there's one more step: delete the original app. That way I get an application slot back and there's no confusion about which apps are active. The

[google-appengine] Re: 1.6.0 Prerelease SDKs are out

2011-11-02 Thread Jim
I'd like that, too.Even if I have to delete all the data before doing the transfer, it'd be much easier than moving my small apps. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

[appengine-java] Stable JSF 2.0 and Ajax Configuration on App Engine

2011-08-08 Thread Jim
Does anyone have a JSF 2.0 configuration on App Engine that is stable. I have wasted weeks of effort trying to find a combination that is stable. With every combination that I try it works on the development server but does not work when deployed to App Engine. I am convinced it is all related

[appengine-java] Re: Vs: Stable JSF 2.0 and Ajax Configuration on App Engine

2011-08-08 Thread Jim
Thanks for the great reply. I will give your recommendations a try. I do have a filter that I am using to check for a Google user session so I can probably put that code in there as well. I have a couple of questions: 1. With the 2.1 JSF do you still need to override the JNDI loading? 2. JSTL

  1   2   >