Hi,
We have the following SQL (Extract of sql):
        exec @result=sp_oacreate 'msxml2.serverxmlhttp',@error out 
        if @result <> 0 exec sp_oageterrorinfo @error 
        --Get the data
        exec @result=sp_oamethod @error, 'open',null,'GET',@url,'false' 
        if @result <> 0 exec sp_oageterrorinfo @error 
        exec @result=sp_oamethod @error,'send' 
        if @result <> 0 exec sp_oageterrorinfo @error 
Where @url is a webpage. This code extract above works with no issue. We now have a proxy server in place with IP address www.xxx.yyy.zzz which has port 80 opened.
My query is how can I ass this proxt server address into the above code so that when the request is made it goes through the proxy server?
Any help / guidance is appreciated.
Thanks
