I have a desktop application that uses RavenDb to retrieve and write data. Some of my clients have a proxy server specified in IE (which is some kind of central proxy server for Windows; Chrome uses the same proxy server) and RavenDb client can not get access to the database server as it does not take proxy server into account. Is there a way to specify a proxy server for RavenDb connections?
Asked
Active
Viewed 118 times
1 Answers
1
You can configure proxy settings in the <defaultProxy>
elements in your app.config file.

Ayende Rahien
- 22,925
- 1
- 36
- 41
-
I think you can do that using `WebProxy` class – Ayende Rahien Feb 23 '15 at 10:15