On August 27, 2002 02:32 pm, Fionn Behrens wrote: > On Tue, 27 Aug 2002 16:47:42 -0400 > > Geoffrey Talvola <[EMAIL PROTECTED]> wrote: > > Fionn, > > > > Do regular servlets work? You said PSP files fail, and HTML files work, > > but you didn't say whether or not regular Python Servlets work. > > I dont use them at that site or even that URL. I just use AddHandler to > have psp files handled by (mod_)webkit.
Ahh, that's probably the cause. Webkit expects the uriPath of the servlet to be passed to it in the PATH_INFO cgi var rather than in the SCRIPT_NAME var. When you set the handler like that it might pass SCRIPT_NAME. You need to set up a <location /WK> directive with the handler set to webkit, and then use rewrite rules like those on the wiki page. Tavis ------------------------------------------------------- This sf.net email is sponsored by: Jabber - The world's fastest growing real-time communications platform! Don't just IM. Build it in! http://www.jabber.com/osdn/xim _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
