Sample code for 30+ languages & platforms
Classic ASP

POST JSON to REST API with non-us-ascii Chars Escaped

See more REST Examples

Demonstrates how to POST to a REST API with non-usascii chars within JSON Unicode escaped.

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0

success = 0

set rest = Server.CreateObject("Chilkat.Rest")

' Connect using TLS.
bAutoReconnect = 1
success = rest.Connect("chilkatsoft.com",443,1,bAutoReconnect)

' Load JSON containing the following Korean text.

'  {
'    "BillAddr": {
'       "Id": "239615",
'       "Line1": "류리하",
'       "Line2": "류리하류리하",
'       "City": "류리하류리하",
'       "Country": "US",
'       "CountrySubDivisionCode": "AK",
'       "PostalCode": "류리하"
'     }
' }

set json = Server.CreateObject("Chilkat.JsonObject")
json.EmitCompact = 0
success = json.LoadFile("qa_data/json/korean.json")
If (success = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( json.LastErrorText) & "</pre>"
    Response.End
End If

success = rest.AddHeader("Content-Type","application/json; charset=UTF-8")

set sb = Server.CreateObject("Chilkat.StringBuilder")
success = json.EmitSb(sb)
success = sb.Encode("unicodeescape","utf-8")

Response.Write "<pre>" & Server.HTMLEncode( sb.GetAsString()) & "</pre>"

' The StringBuilder contains this:

' {
'   "BillAddr": {
'     "Id": "239615",
'     "Line1": "\ub958\ub9ac\ud558",
'     "Line2": "\ub958\ub9ac\ud558\ub958\ub9ac\ud558",
'     "City": "\ub958\ub9ac\ud558\ub958\ub9ac\ud558",
'     "Country": "US",
'     "CountrySubDivisionCode": "AK",
'     "PostalCode": "\ub958\ub9ac\ud558"
'   }
' }

set sbResp = Server.CreateObject("Chilkat.StringBuilder")
success = rest.FullRequestSb("POST","/echo_request_body.asp",sb,sbResp)
If (success = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( rest.LastErrorText) & "</pre>"
    Response.End
End If

' Show the response. 
Response.Write "<pre>" & Server.HTMLEncode( "Json Response: " & sbResp.GetAsString()) & "</pre>"

%>
</body>
</html>