An error occurred in the secure channel support

Hi there, I’ve been using an API for a few years to send SMS messages via a text message company.

When I try to send these messages on my domino 8.5 server I get the error “An error occurred in the secure channel support”.

This is my code

Dim xmlreq As Variant

Dim strReturn As String



Set xmlReq = CreateObject("MSXML2.ServerXMLHTTP")

xmlReq.open "POST", "https://www.textmagic.com/app/api?username=xxxxxxx&password=xxxxxxx&cmd=account"

xmlReq.Send(Null)

strReturn = xmlReq.responseText

The strange thing is, if I run this code via domino designer 8.5 on my desktop it’s OK. If I run it via domino designer 8.5 on my windows 2003 server I get the error message. I think it may be to do with a change in protocol on the site that domino 8.5 on windows 2003 does support? IT’s not my server, if I put this API into google chrome I get a response but not internet explorer 8.5. ANy ideas, do I need to upgrade my server.

Subject: Google

Try googling “An error occurred in the secure channel support”

It comes up with multiple possible causes/solutions.

Subject: done that

Hi barry, thanks for the reply. Yes I did do that, I think it’s to do with SSLv3 as it’s works on my 2012 server. I just can’t seem to get MSXML2.ServerXMLHTTP to communicate using TLS instead of ssl3.0