Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to connect to SQL Server through proxy server

Is it possible to connect to SQL Server server through proxy (http) using SQLSERVER oledb provider?

How can I specify proxy address and port in connection string if it's possible?

What nonstandard methods to bypass proxy you'd recommend if it's not possible?

like image 508
begray Avatar asked Mar 05 '09 18:03

begray


1 Answers

This article seems specific to MS ISA servers, but the theory may hold.

2008

http://msdn.microsoft.com/en-us/library/ms190801.aspx

2005

http://msdn.microsoft.com/en-us/library/ms190801(SQL.90).aspx


edit:

Perhaps a sql 2005 web service would fit your needs? http://technet.microsoft.com/en-us/library/ms345140(SQL.90).aspx

It won't give you normal odbc functionality though. You shouldn't be exposing your SQL server to the internet btw.

Also, see comment.

like image 69
Sam Avatar answered Sep 28 '22 00:09

Sam