Fix VB6 Secure Channel Support Error
Budget: £5 – £10 GBP
I'm encountering an issue in my Visual Basic 6 (VB6) application where I'm receiving an error related to secure channel support when attempting to send a POST request.
Here's the code snippet I'm using:
```
strUrl = "https://www.findapart.ie/schedule/breakerpro.php"
PostData = "data[StockID]=111111&data[Action]=DELETE"
Set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "POST", strUrl, False
xmlhttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
xmlhttp.setRequestHeader "Content-Length", Len(PostData)
xmlhttp.send (PostData)
xmlhttp.responseText
```
- Environment: This application is running on Windows 10.
- Machine Specific: I'm not sure if this problem is specific to one machine or affecting multiple machines.
- Other Methods: I haven't tried any other methods to send the POST request.
I need help diagnosing and fixing this issue. Ideally, you're experienced with VB6 and have a strong understanding of network programming and secure channels.
Here's the code snippet I'm using:
```
strUrl = "https://www.findapart.ie/schedule/breakerpro.php"
PostData = "data[StockID]=111111&data[Action]=DELETE"
Set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "POST", strUrl, False
xmlhttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
xmlhttp.setRequestHeader "Content-Length", Len(PostData)
xmlhttp.send (PostData)
xmlhttp.responseText
```
- Environment: This application is running on Windows 10.
- Machine Specific: I'm not sure if this problem is specific to one machine or affecting multiple machines.
- Other Methods: I haven't tried any other methods to send the POST request.
I need help diagnosing and fixing this issue. Ideally, you're experienced with VB6 and have a strong understanding of network programming and secure channels.