Chilkat Online Tools

CreateRemoteAccessSession VB6 Example

AWS Device Farm

' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

Dim rest As New ChilkatRest
Dim success As Long

Dim authAws As New ChilkatAuthAws
authAws.AccessKey = "AWS_ACCESS_KEY"
authAws.SecretKey = "AWS_SECRET_KEY"

' Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
authAws.Region = "us-west-2"
authAws.ServiceName = "devicefarm"
' SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
success = rest.SetAuthAws(authAws)

' URL: https://devicefarm.us-west-2.amazonaws.com/
' Use the same region as specified above.
success = rest.Connect("devicefarm.us-west-2.amazonaws.com",443,1,1)
If (success <> 1) Then
    Debug.Print "ConnectFailReason: " & rest.ConnectFailReason
    Debug.Print rest.LastErrorText
    Exit Sub
End If

' The following code creates the JSON request body.
' The JSON created by this code is shown below.

' Use this online tool to generate code from sample JSON:
' Generate Code to Create JSON

Dim json As New ChilkatJsonObject
success = json.UpdateString("clientId","string")
success = json.UpdateString("configuration.billingMethod","string")
success = json.UpdateString("configuration.vpceConfigurationArns[0]","string")
success = json.UpdateString("deviceArn","string")
success = json.UpdateString("instanceArn","string")
success = json.UpdateString("interactionMode","string")
success = json.UpdateString("name","string")
success = json.UpdateString("projectArn","string")
success = json.UpdateInt("remoteDebugEnabled",123)
success = json.UpdateString("remoteRecordAppArn","string")
success = json.UpdateInt("remoteRecordEnabled",123)
success = json.UpdateInt("skipAppResign",123)
success = json.UpdateString("sshPublicKey","string")

' The JSON request body created by the above code:

' {
'   "clientId": "string",
'   "configuration": {
'     "billingMethod": "string",
'     "vpceConfigurationArns": [
'       "string"
'     ]
'   },
'   "deviceArn": "string",
'   "instanceArn": "string",
'   "interactionMode": "string",
'   "name": "string",
'   "projectArn": "string",
'   "remoteDebugEnabled": boolean,
'   "remoteRecordAppArn": "string",
'   "remoteRecordEnabled": boolean,
'   "skipAppResign": boolean,
'   "sshPublicKey": "string"
' }

success = rest.AddHeader("Content-Type","application/x-amz-json-1.1")
success = rest.AddHeader("X-Amz-Target","DeviceFarm_20150623.CreateRemoteAccessSession")

Dim sbRequestBody As New ChilkatStringBuilder
success = json.EmitSb(sbRequestBody)
Dim sbResponseBody As New ChilkatStringBuilder
success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody)
If (success <> 1) Then
    Debug.Print rest.LastErrorText
    Exit Sub
End If

Dim respStatusCode As Long
respStatusCode = rest.ResponseStatusCode
Debug.Print "response status code = " & respStatusCode
If (respStatusCode <> 200) Then
    Debug.Print "Response Header:"
    Debug.Print rest.ResponseHeader
    Debug.Print "Response Body:"
    Debug.Print sbResponseBody.GetAsString()
    Exit Sub
End If

Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)

' The following code parses the JSON response.
' A sample JSON response is shown below the sample code.

' Use this online tool to generate parsing code from sample JSON:
' Generate Parsing Code from JSON

Dim arn As String
Dim deviceArn As String
Dim instanceProfileArn As String
Dim Description As String
Dim instanceProfileName As String
Dim PackageCleanup As Long
Dim RebootAfterUse As Long
Dim status As String
Dim udid As String
Dim j As Long
Dim count_j As Long
Dim strVal As String

Dim Arn As String
Arn = jResp.StringOf("remoteAccessSession.arn")
Dim BillingMethod As String
BillingMethod = jResp.StringOf("remoteAccessSession.billingMethod")
Dim ClientId As String
ClientId = jResp.StringOf("remoteAccessSession.clientId")
Dim Created As Long
Created = jResp.IntOf("remoteAccessSession.created")
Dim DeviceArn As String
DeviceArn = jResp.StringOf("remoteAccessSession.device.arn")
Dim Availability As String
Availability = jResp.StringOf("remoteAccessSession.device.availability")
Dim Carrier As String
Carrier = jResp.StringOf("remoteAccessSession.device.carrier")
Dim Architecture As String
Architecture = jResp.StringOf("remoteAccessSession.device.cpu.architecture")
Dim Clock As Long
Clock = jResp.IntOf("remoteAccessSession.device.cpu.clock")
Dim Frequency As String
Frequency = jResp.StringOf("remoteAccessSession.device.cpu.frequency")
Dim FleetName As String
FleetName = jResp.StringOf("remoteAccessSession.device.fleetName")
Dim FleetType As String
FleetType = jResp.StringOf("remoteAccessSession.device.fleetType")
Dim FormFactor As String
FormFactor = jResp.StringOf("remoteAccessSession.device.formFactor")
Dim HeapSize As Long
HeapSize = jResp.IntOf("remoteAccessSession.device.heapSize")
Dim Image As String
Image = jResp.StringOf("remoteAccessSession.device.image")
Dim Manufacturer As String
Manufacturer = jResp.StringOf("remoteAccessSession.device.manufacturer")
Dim Memory As Long
Memory = jResp.IntOf("remoteAccessSession.device.memory")
Dim Model As String
Model = jResp.StringOf("remoteAccessSession.device.model")
Dim ModelId As String
ModelId = jResp.StringOf("remoteAccessSession.device.modelId")
Dim Name As String
Name = jResp.StringOf("remoteAccessSession.device.name")
Dim Os As String
Os = jResp.StringOf("remoteAccessSession.device.os")
Dim Platform As String
Platform = jResp.StringOf("remoteAccessSession.device.platform")
Dim Radio As String
Radio = jResp.StringOf("remoteAccessSession.device.radio")
Dim RemoteAccessEnabled As Long
RemoteAccessEnabled = jResp.IntOf("remoteAccessSession.device.remoteAccessEnabled")
Dim RemoteDebugEnabled As Long
RemoteDebugEnabled = jResp.IntOf("remoteAccessSession.device.remoteDebugEnabled")
Dim Height As Long
Height = jResp.IntOf("remoteAccessSession.device.resolution.height")
Dim Width As Long
Width = jResp.IntOf("remoteAccessSession.device.resolution.width")
Dim Metered As Long
Metered = jResp.IntOf("remoteAccessSession.deviceMinutes.metered")
Dim Total As Long
Total = jResp.IntOf("remoteAccessSession.deviceMinutes.total")
Dim Unmetered As Long
Unmetered = jResp.IntOf("remoteAccessSession.deviceMinutes.unmetered")
Dim DeviceUdid As String
DeviceUdid = jResp.StringOf("remoteAccessSession.deviceUdid")
Dim Endpoint As String
Endpoint = jResp.StringOf("remoteAccessSession.endpoint")
Dim HostAddress As String
HostAddress = jResp.StringOf("remoteAccessSession.hostAddress")
Dim InstanceArn As String
InstanceArn = jResp.StringOf("remoteAccessSession.instanceArn")
Dim InteractionMode As String
InteractionMode = jResp.StringOf("remoteAccessSession.interactionMode")
Dim Message As String
Message = jResp.StringOf("remoteAccessSession.message")
Dim remoteAccessSessionName As String
remoteAccessSessionName = jResp.StringOf("remoteAccessSession.name")
Dim remoteAccessSessionRemoteDebugEnabled As Long
remoteAccessSessionRemoteDebugEnabled = jResp.IntOf("remoteAccessSession.remoteDebugEnabled")
Dim RemoteRecordAppArn As String
RemoteRecordAppArn = jResp.StringOf("remoteAccessSession.remoteRecordAppArn")
Dim RemoteRecordEnabled As Long
RemoteRecordEnabled = jResp.IntOf("remoteAccessSession.remoteRecordEnabled")
Dim Result As String
Result = jResp.StringOf("remoteAccessSession.result")
Dim SkipAppResign As Long
SkipAppResign = jResp.IntOf("remoteAccessSession.skipAppResign")
Dim Started As Long
Started = jResp.IntOf("remoteAccessSession.started")
Dim Status As String
Status = jResp.StringOf("remoteAccessSession.status")
Dim Stopped As Long
Stopped = jResp.IntOf("remoteAccessSession.stopped")
Dim i As Long
i = 0
Dim count_i As Long
count_i = jResp.SizeOfArray("remoteAccessSession.device.instances")
Do While i < count_i
    jResp.I = i
    arn = jResp.StringOf("remoteAccessSession.device.instances[i].arn")
    deviceArn = jResp.StringOf("remoteAccessSession.device.instances[i].deviceArn")
    instanceProfileArn = jResp.StringOf("remoteAccessSession.device.instances[i].instanceProfile.arn")
    Description = jResp.StringOf("remoteAccessSession.device.instances[i].instanceProfile.description")
    instanceProfileName = jResp.StringOf("remoteAccessSession.device.instances[i].instanceProfile.name")
    PackageCleanup = jResp.IntOf("remoteAccessSession.device.instances[i].instanceProfile.packageCleanup")
    RebootAfterUse = jResp.IntOf("remoteAccessSession.device.instances[i].instanceProfile.rebootAfterUse")
    status = jResp.StringOf("remoteAccessSession.device.instances[i].status")
    udid = jResp.StringOf("remoteAccessSession.device.instances[i].udid")
    j = 0
    count_j = jResp.SizeOfArray("remoteAccessSession.device.instances[i].instanceProfile.excludeAppPackagesFromCleanup")
    Do While j < count_j
        jResp.J = j
        strVal = jResp.StringOf("remoteAccessSession.device.instances[i].instanceProfile.excludeAppPackagesFromCleanup[j]")
        j = j + 1
    Loop
    j = 0
    count_j = jResp.SizeOfArray("remoteAccessSession.device.instances[i].labels")
    Do While j < count_j
        jResp.J = j
        strVal = jResp.StringOf("remoteAccessSession.device.instances[i].labels[j]")
        j = j + 1
    Loop
    i = i + 1
Loop

' A sample JSON response body parsed by the above code:

' {
'   "remoteAccessSession": {
'     "arn": "string",
'     "billingMethod": "string",
'     "clientId": "string",
'     "created": number,
'     "device": {
'       "arn": "string",
'       "availability": "string",
'       "carrier": "string",
'       "cpu": {
'         "architecture": "string",
'         "clock": number,
'         "frequency": "string"
'       },
'       "fleetName": "string",
'       "fleetType": "string",
'       "formFactor": "string",
'       "heapSize": number,
'       "image": "string",
'       "instances": [
'         {
'           "arn": "string",
'           "deviceArn": "string",
'           "instanceProfile": {
'             "arn": "string",
'             "description": "string",
'             "excludeAppPackagesFromCleanup": [
'               "string"
'             ],
'             "name": "string",
'             "packageCleanup": boolean,
'             "rebootAfterUse": boolean
'           },
'           "labels": [
'             "string"
'           ],
'           "status": "string",
'           "udid": "string"
'         }
'       ],
'       "manufacturer": "string",
'       "memory": number,
'       "model": "string",
'       "modelId": "string",
'       "name": "string",
'       "os": "string",
'       "platform": "string",
'       "radio": "string",
'       "remoteAccessEnabled": boolean,
'       "remoteDebugEnabled": boolean,
'       "resolution": {
'         "height": number,
'         "width": number
'       }
'     },
'     "deviceMinutes": {
'       "metered": number,
'       "total": number,
'       "unmetered": number
'     },
'     "deviceUdid": "string",
'     "endpoint": "string",
'     "hostAddress": "string",
'     "instanceArn": "string",
'     "interactionMode": "string",
'     "message": "string",
'     "name": "string",
'     "remoteDebugEnabled": boolean,
'     "remoteRecordAppArn": "string",
'     "remoteRecordEnabled": boolean,
'     "result": "string",
'     "skipAppResign": boolean,
'     "started": number,
'     "status": "string",
'     "stopped": number
'   }
' }