teamBadMonkey
Programmer
I've looked around, but haven't found much info on using digital certificates in ASP. My situation - I need to develop an interface to a remote server. They've issued a digital cert (a .p12 file) and I've installed it.
I can put a URL into a browser on the production server - - and all behaves as expected. There's a popup for the digital cert, but after hitting ok, I get the data I'm looking for.
However - I need to automate this process.
set httpObj = CreateObject("Microsoft.XMLHTTP")
httpObj.open "GET", url, false
httpObj.send
This hangs until a timeout. I've seen stuff about using setOption(option, value) to set the path to the certificate, properly installing the cert on IIS...but I'm getting a bit lost at this point.
The machine runs Win2003 server. If anyone has experience in this area, I'd really appreciate some help.
Steve
I can put a URL into a browser on the production server - - and all behaves as expected. There's a popup for the digital cert, but after hitting ok, I get the data I'm looking for.
However - I need to automate this process.
set httpObj = CreateObject("Microsoft.XMLHTTP")
httpObj.open "GET", url, false
httpObj.send
This hangs until a timeout. I've seen stuff about using setOption(option, value) to set the path to the certificate, properly installing the cert on IIS...but I'm getting a bit lost at this point.
The machine runs Win2003 server. If anyone has experience in this area, I'd really appreciate some help.
Steve