At 10:21 PM 10/9/2001 +0200, Thomas Kumlehn wrote: >If I Launch.py ThreadedAppServer, ALL requests end up >with invalid marshal data.
I'm CCing the discussion list because this one comes up a lot. You are likely trying to hit the app server directly, like so: http://localhost:8086/webkit.cgi/ But that sends an HTTP request from your web browser direct to the app server, which does not serve HTTP. You need to instead hit a web server, like Apache, which has been configured to talk to the app server. http://localhost/webkit.cgi/ That should fix your problem. If it doesn't, let us know. >If I use AsyncThreadedHTTPServer again, most of it >works fine, except the Docs context: Async is deprecated. I'll take a look at the Docs/ context for the next release. Thank you for the report. Please send future reports direct to [EMAIL PROTECTED] Webware is more than me. -Chuck _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
