2

Our corporate network is blocking https calls outbound and it seems that any call to documentDB is by default a https call so they aren't making it through and the connection gets closed.

I am using the Node.js Azure SDK.

Is there a way to override and force it to be http instead?

RandomDeduction
  • 565
  • 1
  • 5
  • 17

1 Answers1

4

No. This is by design. There is sensitive info being transmitted in these requests, including your keys and data on the return leg. You don't want that stuff going over the wire in clear text.

If you had the .NET SDK you could switch to Tcp protocol. But if they're blocking http outbound (who does that?) then they're probably blocking that too.

Ryan CrawCour
  • 2,704
  • 1
  • 19
  • 25
  • 2
    In today's world of API's, blocking outbound https traffic seems like it would do more harm than good from a security perspective. – BenV Aug 13 '15 at 21:25
  • We are using a outdated version of Websense and one of the bugs is SSL requests do not work. Nice right? Anyway thanks for the clarification and I guess I will just have to until we upgrade. – RandomDeduction Aug 13 '15 at 23:01