Link to home
Start Free TrialLog in
Avatar of basirana
basirana

asked on

URL call

We having following procedure which we want to call from url.

I have tried calling http://<hostname>.domain.com:8080/pls/<schema>/hello_world

But it does not work. What I need to configure? What should be my url?

CREATE OR REPLACE PROCEDURE ggadm.hello_world
AS
BEGIN
   NULL;
   OWA_UTIL.mime_header ('text/html');
   HTP.prn ('
<HTML>
<HEAD>
<TITLE>Hello World From PL/SQL</TITLE>
</HEAD>
<BODY>
Hello World From PL/SQL
</BODY>
</HTML>
'  );
END;

Open in new window


Thanks
ASKER CERTIFIED SOLUTION
Avatar of Wasim Akram Shaik
Wasim Akram Shaik
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of basirana
basirana

ASKER

Thank you