Hi,
I have a tomcat/mysql website that I would like to move over to Google app engine does anyone know of a good tutorial outlining this? Or can anyone make some suggestions on how to do this?
we're managing some web sites for our clients on our servers, some running Windows Server 2003 R2 and others running 2008 R2. In Windows Server 2008 R2, we can disable completely .NET framework usage for some application pools, which is great since most of our websites are still using classic ASP.
After some issues with classic ASP applications…
So IIS likes to shut down apppools that aren't in use. While this makes sense, I would like to have certain apppools conterminously running, but I don't want to just disable the automatic app pool restart as some of the settings (e.g., maximum memory limit) are good to have.
I know that Microsoft announced the IIS Application Warmup module as…
We have an enterprise application with a front end written in Microsoft Access 2003 that has evolved over the past 6 years. The back end data, and a fair amount of back-end logic is contained within several Microsoft SQL Server databases. This front end app consists of around 180 forms, and over 120,000 lines of code, and interacts with VB.Net…
Hi,
I'm a little bit confused regarding the autorelease pools when programming for the iPhone. I've read a lot and the oppionions seem to me from "Do-NOT-use" to "No problem to use".
My specific problem is, I would like to have a class which encapsulates the SQLite3 Access, so I have for example the following method:
…
I have been trying to resolve my issue of spiking cpu caused by php-fpm processes. I've reduced the php-fpm config settings to:
pm = ondemand
pm.max_children = 12
pm.start_servers = 2
pm.min_spare_servers = 2
pm.max_spare_servers = 10
pm.max_requests = 500
php_admin_value[memory_limit] = 128M
Problem still exists.…
I'd been searching for a way to do cookie based authentication/sessions in Google App Engine because I don't like the idea of memcache based sessions, and I also don't like the idea of forcing users to create google accounts just to use a website. I stumbled across someone's posting that mentioned some signed cookie…
Hi,
I'm using the MailService feature of Google App Engine in my
application. It works fine in one application without any issues.
But the same code doesn't work in another app. I'm not able to figure
it out. Please help. Following is the piece of code that I use to
send mail.
…
I am trying to dynamically display an image that I am storing in the google datastore as a Blob. I am not getting any errors but I am getting a broken image on the page that I view.
Any help would be awesome!
I have the following code in my grails app
domain class has the following
…
Im getting this error:
FileLoaderLoadException: Cannot import resource
"app/config/security.yml" from "/app/config/config.yml".
The file security.yml is on the right path. This is my security.yml file:
jms_sapp/confiapp/config/security.yml
secure_all_services: false
…
On Windows XP
Just downloaed and unzipped google app engine java sdk
to C:\Program Files\appengine-java-sdk
I have jdk installed in
C:\Program Files\Java\jdk1.6.0_20.
I ran the sample application by
appengine-java-sdk\bin\dev_appserver.cmd…
I am running into an issue I had before; can't find my reference on how to solve it.
Here is the issue. We encrypt the connection strings section in the app.config for our client application using code below:
config =…
This is using the web app framework, not Django.
The following template code is giving me an TemplateSyntaxError: 'for' statements with five words should end in 'reversed' error when I try to render a dictionary. I don't…
On Google App Engine to query the data store with Python, one can use GQL or Entity.all() and then filter it. So for example these are equivalent
gql = "SELECT * FROM User WHERE age >= 18"
db.GqlQuery(gql)
and
query…
Is it possible (and does it make sense) to use the JDO Level 2 Cache for the Google App Engine Datastore?
First of all, why is there no documentation about this on Google's pages? Are there some problems with it? Do we…
Hello,
I am relatively new to python and app engine, and I just finished my first project.
It consists of several *.py files (usually py file for every page on the site) and respectively temple files for each py file.…
Yo!
When I download my app from the iStore, the latest test version installed to my phone gets over written. Does anyone know how to have two versions of the same app side by side?
On a test project, I edited the…
I'm developing a simple GAE application that crawl some data from a given site and present it formatted in html\css.
What i would like to do now is to offer the "Export to PDF feature" trasforming the formatted…
I must hand in a mostly static database-driven website on a topic on my choice by the end of June as both a hosted version live on the internet and a stored version on a cd-rom. "Ease of launching" is one of…
Google App Engine models, likeso:
from google.appengine.ext.db import Model
class M():
name = db.StringProperty()
Then in a Jinja2 template called from a Django view with an in instance of M passed…
I am trying to build something "portlet server"-ish on the google app engine.
(as open source)
I'd like to use the JSR168/286 standards, but I think that the restrictions of
the app engine will make it…
I use the following method to send email in the Google App Engine servlet :
void Send_Email(String From,String To,String Message_Text)
{
Properties props=new Properties();
Session…
I use the GRAPH API with django for Facebook wall postings. Since yesterday, the wall posts only show on the Facebook web app but not the Facebook iPhone app. I tried Yelp, and their…
That does the TombstonedTaskError mean? It is being raised while trying to add a task to the queue, from a cron-job:
Traceback (most recent call last):
File…