<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.6000.16890" name=GENERATOR></HEAD>
<BODY>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2>Hi Gissur,</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2>Here is the tilecache.wsgi script I'm 
using:</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2># In Apache2's config:<BR>#&nbsp; WSGIScriptAlias 
/tilecache /data/tilecache/tilecache.wsgi</FONT></SPAN></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2>import os, sys<BR>tilecachepath, wsgi_file = 
os.path.split(__file__)<BR>if not tilecachepath in 
sys.path:<BR>&nbsp;&nbsp;&nbsp; 
sys.path.append(tilecachepath)</FONT></SPAN></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2>from TileCache.Service import Service, 
wsgiHandler</FONT></SPAN></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2>cfgfiles = (os.path.join(tilecachepath, 
"tilecache.cfg"))</FONT></SPAN></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2>theService = {}<BR>def wsgiApp (environ, 
start_response):<BR>&nbsp;&nbsp;&nbsp; global theService</FONT></SPAN></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2>&nbsp;&nbsp;&nbsp; cfgs&nbsp; = 
cfgfiles<BR>&nbsp;&nbsp;&nbsp; if not 
theService:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; theService = 
Service.load(cfgs)<BR>&nbsp;&nbsp;&nbsp; return wsgiHandler(environ, 
start_response, theService)</FONT></SPAN></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2>application = wsgiApp</FONT></SPAN></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2>The script assumes to be in the tilecache dir, along the 
tilecache.cfg file.</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=224595309-28012010><FONT face=Arial 
color=#0000ff size=2>Hope this helps.</FONT></SPAN></DIV><BR>
<DIV class=OutlookMessageHeader lang=es dir=ltr align=left>
<HR tabIndex=-1>
<FONT face=Tahoma size=2><B>De:</B> tilecache-bounces@openlayers.org 
[mailto:tilecache-bounces@openlayers.org] <B>En nombre de </B>Gissur 
Þórhallsson<BR><B>Enviado el:</B> jueves, 28 de enero de 2010 
4:30<BR><B>Para:</B> tilecache@openlayers.org<BR><B>Asunto:</B> [Tilecache] 
Tilecache under mod_wsgi<BR></FONT><BR></DIV>
<DIV></DIV>Hello,
<DIV><BR></DIV>
<DIV>I'm setting up a tilecache instance and wanted to try using 
mod_wsgi.&nbsp;</DIV>
<DIV>The thing is that I'm running python 2.6 and have other things that depend 
on that version of python otherwise I'd just use mod_python.</DIV>
<DIV><BR></DIV>
<DIV>I've got apache 2.2 running on a windows 2003 server already - and mod_wsgi 
up and running. I just have no idea how to plug tilecache into that.</DIV>
<DIV><BR></DIV>
<DIV>Has anybody had any experience running tilecache under mod_wsgi? Any 
pointers?</DIV>
<DIV><BR></DIV>
<DIV>Kind regards from Iceland,</DIV>
<DIV>Gissur Þórhallsson</DIV>
<DIV><BR></DIV></BODY></HTML>