Hi,I need to write a PL/SQL which needs to be communicated with web, how i can do that, is there any command that i can use.
ThanksSuna
Hi,
With UTL_HTTP, you can write PL/SQL programs that communicate with Web (HTTP) servers. UTL_HTTP also contains a function that can be used in SQL queries. The package also supports HTTP over the Secured Socket Layer protocol (SSL), also known as HTTPS, directly or through an HTTP proxy. Other Internet-related data-access protocols (such as the File Transfer Protocol (FTP) or the Gopher protocol) are also supported using an HTTP proxy server that supports those protocols.
For more Info on this visit
http://download-west.oracle.com/docs/cd/B14117_01/appdev.101/b10802/u_http.htm#1011560
ThanksTim