GetDevicePoolCompatibility Classic ASP Example
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
set rest = Server.CreateObject("Chilkat_9_5_0.Rest")
set authAws = Server.CreateObject("Chilkat_9_5_0.AuthAws")
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
Response.Write "<pre>" & Server.HTMLEncode( "ConnectFailReason: " & rest.ConnectFailReason) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( rest.LastErrorText) & "</pre>"
Response.End
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
set json = Server.CreateObject("Chilkat_9_5_0.JsonObject")
success = json.UpdateString("appArn","string")
success = json.UpdateString("configuration.auxiliaryApps[0]","string")
success = json.UpdateString("configuration.billingMethod","string")
success = json.UpdateString("configuration.customerArtifactPaths.androidPaths[0]","string")
success = json.UpdateString("configuration.customerArtifactPaths.deviceHostPaths[0]","string")
success = json.UpdateString("configuration.customerArtifactPaths.iosPaths[0]","string")
success = json.UpdateString("configuration.extraDataPackageArn","string")
success = json.UpdateString("configuration.locale","string")
success = json.UpdateInt("configuration.location.latitude",123)
success = json.UpdateInt("configuration.location.longitude",123)
success = json.UpdateString("configuration.networkProfileArn","string")
success = json.UpdateInt("configuration.radios.bluetooth",123)
success = json.UpdateInt("configuration.radios.gps",123)
success = json.UpdateInt("configuration.radios.nfc",123)
success = json.UpdateInt("configuration.radios.wifi",123)
success = json.UpdateString("configuration.vpceConfigurationArns[0]","string")
success = json.UpdateString("devicePoolArn","string")
success = json.UpdateString("test.filter","string")
success = json.UpdateString("test.parameters.string","string")
success = json.UpdateString("test.testPackageArn","string")
success = json.UpdateString("test.testSpecArn","string")
success = json.UpdateString("test.type","string")
success = json.UpdateString("testType","string")
' The JSON request body created by the above code:
' {
' "appArn": "string",
' "configuration": {
' "auxiliaryApps": [
' "string"
' ],
' "billingMethod": "string",
' "customerArtifactPaths": {
' "androidPaths": [
' "string"
' ],
' "deviceHostPaths": [
' "string"
' ],
' "iosPaths": [
' "string"
' ]
' },
' "extraDataPackageArn": "string",
' "locale": "string",
' "location": {
' "latitude": number,
' "longitude": number
' },
' "networkProfileArn": "string",
' "radios": {
' "bluetooth": boolean,
' "gps": boolean,
' "nfc": boolean,
' "wifi": boolean
' },
' "vpceConfigurationArns": [
' "string"
' ]
' },
' "devicePoolArn": "string",
' "test": {
' "filter": "string",
' "parameters": {
' "string": "string"
' },
' "testPackageArn": "string",
' "testSpecArn": "string",
' "type": "string"
' },
' "testType": "string"
' }
success = rest.AddHeader("Content-Type","application/x-amz-json-1.1")
success = rest.AddHeader("X-Amz-Target","DeviceFarm_20150623.GetDevicePoolCompatibility")
set sbRequestBody = Server.CreateObject("Chilkat_9_5_0.StringBuilder")
success = json.EmitSb(sbRequestBody)
set sbResponseBody = Server.CreateObject("Chilkat_9_5_0.StringBuilder")
success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody)
If (success <> 1) Then
Response.Write "<pre>" & Server.HTMLEncode( rest.LastErrorText) & "</pre>"
Response.End
End If
respStatusCode = rest.ResponseStatusCode
Response.Write "<pre>" & Server.HTMLEncode( "response status code = " & respStatusCode) & "</pre>"
If (respStatusCode <> 200) Then
Response.Write "<pre>" & Server.HTMLEncode( "Response Header:") & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( rest.ResponseHeader) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( "Response Body:") & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( sbResponseBody.GetAsString()) & "</pre>"
Response.End
End If
set jResp = Server.CreateObject("Chilkat_9_5_0.JsonObject")
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
i = 0
count_i = jResp.SizeOfArray("compatibleDevices")
Do While i < count_i
jResp.I = i
compatible = jResp.IntOf("compatibleDevices[i].compatible")
Arn = jResp.StringOf("compatibleDevices[i].device.arn")
Availability = jResp.StringOf("compatibleDevices[i].device.availability")
Carrier = jResp.StringOf("compatibleDevices[i].device.carrier")
Architecture = jResp.StringOf("compatibleDevices[i].device.cpu.architecture")
Clock = jResp.IntOf("compatibleDevices[i].device.cpu.clock")
Frequency = jResp.StringOf("compatibleDevices[i].device.cpu.frequency")
FleetName = jResp.StringOf("compatibleDevices[i].device.fleetName")
FleetType = jResp.StringOf("compatibleDevices[i].device.fleetType")
FormFactor = jResp.StringOf("compatibleDevices[i].device.formFactor")
HeapSize = jResp.IntOf("compatibleDevices[i].device.heapSize")
Image = jResp.StringOf("compatibleDevices[i].device.image")
Manufacturer = jResp.StringOf("compatibleDevices[i].device.manufacturer")
Memory = jResp.IntOf("compatibleDevices[i].device.memory")
Model = jResp.StringOf("compatibleDevices[i].device.model")
ModelId = jResp.StringOf("compatibleDevices[i].device.modelId")
Name = jResp.StringOf("compatibleDevices[i].device.name")
Os = jResp.StringOf("compatibleDevices[i].device.os")
Platform = jResp.StringOf("compatibleDevices[i].device.platform")
Radio = jResp.StringOf("compatibleDevices[i].device.radio")
RemoteAccessEnabled = jResp.IntOf("compatibleDevices[i].device.remoteAccessEnabled")
RemoteDebugEnabled = jResp.IntOf("compatibleDevices[i].device.remoteDebugEnabled")
Height = jResp.IntOf("compatibleDevices[i].device.resolution.height")
Width = jResp.IntOf("compatibleDevices[i].device.resolution.width")
j = 0
count_j = jResp.SizeOfArray("compatibleDevices[i].device.instances")
Do While j < count_j
jResp.J = j
arn = jResp.StringOf("compatibleDevices[i].device.instances[j].arn")
deviceArn = jResp.StringOf("compatibleDevices[i].device.instances[j].deviceArn")
instanceProfileArn = jResp.StringOf("compatibleDevices[i].device.instances[j].instanceProfile.arn")
Description = jResp.StringOf("compatibleDevices[i].device.instances[j].instanceProfile.description")
instanceProfileName = jResp.StringOf("compatibleDevices[i].device.instances[j].instanceProfile.name")
PackageCleanup = jResp.IntOf("compatibleDevices[i].device.instances[j].instanceProfile.packageCleanup")
RebootAfterUse = jResp.IntOf("compatibleDevices[i].device.instances[j].instanceProfile.rebootAfterUse")
status = jResp.StringOf("compatibleDevices[i].device.instances[j].status")
udid = jResp.StringOf("compatibleDevices[i].device.instances[j].udid")
k = 0
count_k = jResp.SizeOfArray("compatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup")
Do While k < count_k
jResp.K = k
strVal = jResp.StringOf("compatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup[k]")
k = k + 1
Loop
k = 0
count_k = jResp.SizeOfArray("compatibleDevices[i].device.instances[j].labels")
Do While k < count_k
jResp.K = k
strVal = jResp.StringOf("compatibleDevices[i].device.instances[j].labels[k]")
k = k + 1
Loop
j = j + 1
Loop
j = 0
count_j = jResp.SizeOfArray("compatibleDevices[i].incompatibilityMessages")
Do While j < count_j
jResp.J = j
message = jResp.StringOf("compatibleDevices[i].incompatibilityMessages[j].message")
v_type = jResp.StringOf("compatibleDevices[i].incompatibilityMessages[j].type")
j = j + 1
Loop
i = i + 1
Loop
i = 0
count_i = jResp.SizeOfArray("incompatibleDevices")
Do While i < count_i
jResp.I = i
compatible = jResp.IntOf("incompatibleDevices[i].compatible")
deviceArn = jResp.StringOf("incompatibleDevices[i].device.arn")
deviceAvailability = jResp.StringOf("incompatibleDevices[i].device.availability")
deviceCarrier = jResp.StringOf("incompatibleDevices[i].device.carrier")
CpuArchitecture = jResp.StringOf("incompatibleDevices[i].device.cpu.architecture")
CpuClock = jResp.IntOf("incompatibleDevices[i].device.cpu.clock")
CpuFrequency = jResp.StringOf("incompatibleDevices[i].device.cpu.frequency")
deviceFleetName = jResp.StringOf("incompatibleDevices[i].device.fleetName")
deviceFleetType = jResp.StringOf("incompatibleDevices[i].device.fleetType")
deviceFormFactor = jResp.StringOf("incompatibleDevices[i].device.formFactor")
deviceHeapSize = jResp.IntOf("incompatibleDevices[i].device.heapSize")
deviceImage = jResp.StringOf("incompatibleDevices[i].device.image")
deviceManufacturer = jResp.StringOf("incompatibleDevices[i].device.manufacturer")
deviceMemory = jResp.IntOf("incompatibleDevices[i].device.memory")
deviceModel = jResp.StringOf("incompatibleDevices[i].device.model")
deviceModelId = jResp.StringOf("incompatibleDevices[i].device.modelId")
deviceName = jResp.StringOf("incompatibleDevices[i].device.name")
deviceOs = jResp.StringOf("incompatibleDevices[i].device.os")
devicePlatform = jResp.StringOf("incompatibleDevices[i].device.platform")
deviceRadio = jResp.StringOf("incompatibleDevices[i].device.radio")
deviceRemoteAccessEnabled = jResp.IntOf("incompatibleDevices[i].device.remoteAccessEnabled")
deviceRemoteDebugEnabled = jResp.IntOf("incompatibleDevices[i].device.remoteDebugEnabled")
ResolutionHeight = jResp.IntOf("incompatibleDevices[i].device.resolution.height")
ResolutionWidth = jResp.IntOf("incompatibleDevices[i].device.resolution.width")
j = 0
count_j = jResp.SizeOfArray("incompatibleDevices[i].device.instances")
Do While j < count_j
jResp.J = j
arn = jResp.StringOf("incompatibleDevices[i].device.instances[j].arn")
deviceArn = jResp.StringOf("incompatibleDevices[i].device.instances[j].deviceArn")
instanceProfileArn = jResp.StringOf("incompatibleDevices[i].device.instances[j].instanceProfile.arn")
instanceProfileDescription = jResp.StringOf("incompatibleDevices[i].device.instances[j].instanceProfile.description")
instanceProfileName = jResp.StringOf("incompatibleDevices[i].device.instances[j].instanceProfile.name")
instanceProfilePackageCleanup = jResp.IntOf("incompatibleDevices[i].device.instances[j].instanceProfile.packageCleanup")
instanceProfileRebootAfterUse = jResp.IntOf("incompatibleDevices[i].device.instances[j].instanceProfile.rebootAfterUse")
status = jResp.StringOf("incompatibleDevices[i].device.instances[j].status")
udid = jResp.StringOf("incompatibleDevices[i].device.instances[j].udid")
k = 0
count_k = jResp.SizeOfArray("incompatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup")
Do While k < count_k
jResp.K = k
strVal = jResp.StringOf("incompatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup[k]")
k = k + 1
Loop
k = 0
count_k = jResp.SizeOfArray("incompatibleDevices[i].device.instances[j].labels")
Do While k < count_k
jResp.K = k
strVal = jResp.StringOf("incompatibleDevices[i].device.instances[j].labels[k]")
k = k + 1
Loop
j = j + 1
Loop
j = 0
count_j = jResp.SizeOfArray("incompatibleDevices[i].incompatibilityMessages")
Do While j < count_j
jResp.J = j
message = jResp.StringOf("incompatibleDevices[i].incompatibilityMessages[j].message")
v_type = jResp.StringOf("incompatibleDevices[i].incompatibilityMessages[j].type")
j = j + 1
Loop
i = i + 1
Loop
' A sample JSON response body parsed by the above code:
' {
' "compatibleDevices": [
' {
' "compatible": boolean,
' "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
' }
' },
' "incompatibilityMessages": [
' {
' "message": "string",
' "type": "string"
' }
' ]
' }
' ],
' "incompatibleDevices": [
' {
' "compatible": boolean,
' "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
' }
' },
' "incompatibilityMessages": [
' {
' "message": "string",
' "type": "string"
' }
' ]
' }
' ]
' }
%>
</body>
</html>