I wrote a simple script to test whether I can view the result ("helloworld") through the browser or not. this is on 9.2.0.3 database with 9iAS 1.0.2.2.2. Am I supposed to make virtual directory somewhere? here is the simple procedure that I used.

create or replace procedure sp_hw2
as
begin
htp.htmlOpen;
htp.bodyopen;
htp.p('HelloWorld');
htp.bodyClose;
htp.htmlClose;
end;
/

Thanks.