Hello!
I have a small problem i cant handle with.
I'v just installed ORACLE 10g EXPRESS EDITION (the free and small one). I worked on 9i before. I wanted to create a simple package and acces it with my Firefox web browser.
CREATE OR REPLACE PACKAGE test AS
PROCEDURE home;
END test;
/
CREATE OR REPLACE PACKAGE BODY test AS
PROCEDURE home IS
BEGIN
Htp.HtmlOpen;
Htp.BodyOpen;
Htp.BodyClose;
Htp.HtmlClose;
END home;
END test;
/
GRANT EXECUTE ON test TO PUBLIC;
{compiled succesfully}
When i write in my webbrowser adress:
it says that access is Forbidden. He sees that page but do not have access to it. Why? I havent such a problem before.
Adress is good, privileges also i think. Whats the problem in this? I remember that in 9i there was need to create a descriptor but it was with apache server installed. Here i think apache is not necessary for such a purposes. But still i cant see the page i request.
Sorry for bad english. I would be gratefull for any help. Thanks.
I have a small problem i cant handle with.
I'v just installed ORACLE 10g EXPRESS EDITION (the free and small one). I worked on 9i before. I wanted to create a simple package and acces it with my Firefox web browser.
CREATE OR REPLACE PACKAGE test AS
PROCEDURE home;
END test;
/
CREATE OR REPLACE PACKAGE BODY test AS
PROCEDURE home IS
BEGIN
Htp.HtmlOpen;
Htp.BodyOpen;
Htp.BodyClose;
Htp.HtmlClose;
END home;
END test;
/
GRANT EXECUTE ON test TO PUBLIC;
{compiled succesfully}
When i write in my webbrowser adress:
it says that access is Forbidden. He sees that page but do not have access to it. Why? I havent such a problem before.
Adress is good, privileges also i think. Whats the problem in this? I remember that in 9i there was need to create a descriptor but it was with apache server installed. Here i think apache is not necessary for such a purposes. But still i cant see the page i request.
Sorry for bad english. I would be gratefull for any help. Thanks.