Dear Joo-Yung, I think once you get webware up and running I think you will find that it is one of the absolute best web environments to work with.
Looking at what you have so far your http.conf is almost configured correctly. What you have done is added a new location which actually points to the webkit service, this will work correctly, however in order to run your servlets you need to specify both the webware location and the correct context (in your application.conf file). Therefore http://localhost/webware/ will point to the default context, and http://localhost/webware/Examples/ will point to the Examples context. To get around having to include the webware location within your url you will have to either use redirects or include something like this: Action application/py-serverpages /webware/ AddType application/py-serverpages .py In your apache conf file. The reason that I think you are getting the error page when you goto http://localhost/webware is that you must not have in index.py or index.html page in your default context. Webkit does not do directory listing the way that apache does, so webware does not know what to process, hence the error. Although I am not sure why adding the a at the end of your url would get you to the examples context. Hope this helps, if not keep asking we'll provide more help. Jose -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of YOON. Joo-Yung Sent: Friday, January 02, 2004 11:02 AM To: [EMAIL PROTECTED] Subject: [Webware-discuss] [Q] First Running Hi, all, I just installed and tested the first running by http://localhost/webare. It acts strange! The apache says Moved Permanently The document has moved to .//. But, I do http://localhost/webware/a then my browswer shows the famous Examples pages. Actually there is no such thing as 'a' in my /http/webware directory. I use mod_webkit2 in the latest apache2. And my httpd.conf is LoadModule webkit_module modules/mod_webkit.so <Location /webware> WKServer localhost 8086 SetHandler webkit-handler </Location> Could any decent Webwarer help me see my "Hello, World!" under webare? Thanks in advance, Joo-Yung from Korea ------------------------------------------------------- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tutorials. Learn everything from the bash shell to sys admin. Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss ------------------------------------------------------- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tutorials. Learn everything from the bash shell to sys admin. Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
