Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

http acces (???)

Status
Not open for further replies.

kicaj

Programmer
Apr 17, 2006
1
PL
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top