
May 9th, 2003, 09:11 AM
|
 |
Hello World :)
|
|
Join Date: Mar 2003
Location: Hull, UK
|
|
|
Jython and CGI
Not having used Jython much I wouldnt know about developing in Jython. but if your trying to use Jython for CGI just use, #!/usr/bin/env jython. It works for me.
for example:
#!/usr/bin/env jython
print 'content-type: text/plain\n'
print 'yo, from jython'
if your talking about developing applets in Jython, then you dont need to configure apache at all as applets run client side. You'd have to check up on this though. If im wrong let me know!
Mark
|