Classic ASP
Classic ASP
Send Bytes on a Socket Connection
See more Socket/SSL/TLS Examples
Demonstrates how to send a mixture of binary (non-text) and text bytes on a socket connection.Chilkat Classic ASP Downloads
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
set socket = Server.CreateObject("Chilkat.Socket")
' Connect to some host:port
ssl = 0
maxWaitMillisec = 20000
port = 5555
success = socket.Connect("test.com",port,ssl,maxWaitMillisec)
If (success <> 1) Then
Response.Write "<pre>" & Server.HTMLEncode( socket.LastErrorText) & "</pre>"
Response.End
End If
' We wish to send a 0x00 byte followed by the us-ascii string "10800"
set bd = Server.CreateObject("Chilkat.BinData")
success = bd.AppendByte(0)
success = bd.AppendString("10800","utf-8")
' Send the entire contents of bd.
success = socket.SendBd(bd,0,0)
If (success <> 1) Then
Response.Write "<pre>" & Server.HTMLEncode( socket.LastErrorText) & "</pre>"
Response.End
End If
%>
</body>
</html>