utl_http and proxy
victorpJun 28 2006 — edited Feb 26 2007On htmldb.oracle I execute the following:
<br><br>
select utl_http.request('www.google.com','(removed proxy - on our hosted instance, you cannot use web services)') from dual
<br><br>
This returns some html - no problems. If I try without the proxy then it doesnt work which is as expected.
<br><br>
Now within my client hosted sql window I execute the following:
<br><br>
select utl_http.request('www.localaddress.com') from dual
<br><br>
This does not specify a proxy as the address is local or whatever. This returns some html - no problems yet.
<br><br>
Now I want to try a link that does require proxy so I try
<br><br>
select utl_http.request('www.google.com','clientproxy:80') from dual
<br><br>
This returns <html><head><title>Error</title></head><body>The parameter is incorrect. </body></html>
<br><br>
If I enter the proxy in wrong then it times out / don't work so I guess I have the proxy correct. I got the proxy details by going onto database server, opening browser, lan settings, proxy settings. I can access internet fine from this machine so not sure what problem is. Anyone have any ideas where to start / what to look for? thanks
Message was edited by:
sbkenned