tags:

views:

138

answers:

2

Hi,

I'm trying to send parameters to a web site, with no success. Can anyone please show me a way of how to do it? an example of one way of doing it in ASP for instance is like that:

Response.Write(http://ads.hevre.co.il/External_Leads_insert_fullDetails.asp?afid=2512&Firstname="AAA"&Exfield1="BBB"&"&phone="321321321"&Exfield2="DDD"&zip="32121")

any suggestions of how to implement it in oracle forms??

thanks in advance,
Alon Kogan.

+1  A: 

You can call a web page and get the response using UTL_HTTP, which is available in Oracle 9i, 10g and 11g. I recommend you create a PL/SQL package on the database and call it from your form.

"The UTL_HTTP package makes Hypertext Transfer Protocol (HTTP) callouts from SQL and PL/SQL. You can use it to access data on the Internet over HTTP."

Jeffrey Kemp
A: 

Hi Jeffrey,

Thnx for the fast response.

Will it fit for Oracle Forms 6i ver.? if so, how can i get that object/library?

regards,

Alon Kogan.

It's a standard supplied database package - I know it's supplied in Oracle 9i, 10g and 11g. See my edited response above.
Jeffrey Kemp
What database version are you using?
Jeffrey Kemp