[XML-SIG] XML, python & CGI.

Lars Marius Garshol larsga@garshol.priv.no
06 Apr 2000 15:03:15 +0200


* scongdon@lucent.com
| 
| However I cannot figure out how to put this command into a cgi
| script so the output from my command line command, produces the
| final webpage. All I get is a server error. or no output at all

The problem is almost certainly that your CGI script is running in a
different environment with different environment variable settings
(PATH and CLASSPATH). One way to work around that would be to have
your Python script exec a shell script that first sets these to the
correct values and then runs XT.

--Lars M.