Hi,
I'm using Node js to connect to Service Bus Topics and I'm having problems to get the Topic information programmatically. I'm trying to use fiddler to debug the problem. In order to see the node js traffic I'm setting the proxies in the command line shell
to : https_proxy=http://127.0.0.1:8888
http_proxy=http://127.0.0.1:8888
NODE_TLS_REJECT_UNAUTHORIZED=0
but in fiddler I can only see the tunneling to https.
My question is how do I change the traffic to the Service Bus to HTTP so I can monitor it with fiddler.
Also, if you think about other ways i can debug calls to Service Bus it will be helpful.
Thanks.