Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

VB.NET UWP/WinRT Examples

Web API Categories

ASN.1
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Azure Cloud Storage
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Compression
DKIM / DomainKey
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
Socket/SSL/TLS
Spider
Stream
Tar Archive
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(VB.NET UWP/WinRT) Geolocation of IP Address

To get information about an IP address, there are various public web services that can be queried. I would also guess that paid-for services exist. In any case, it's likely the service is accessible via a REST API. This example demonstrates a few public geolocation API's, each of which may have limitations on the number of queries per hour/day/etc.

Also, please note that this example was created on 23-Sep-2016. As time goes by, the public services referenced by this example may have changed or disappeared entirely. Make sure to do your research before assuming this example will work. The intent of this example is to give a flavor of what might be possible.

Chilkat Universal Windows Platform (UWP) / WinRT Downloads

Chilkat for the Universal Windows Platform (UWP)

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

' The IP address used in this example is 104.40.211.35
Dim ipAddress As String = "104.40.211.35"


' First we'll try the service at freegeoip.net.
' They have a limit of 10,000 queries per hour, and also 
' provide free source code to run your own server.

Dim rest As New Chilkat.Rest

' Connect to freegeoip.net
Dim bTls As Boolean = False
Dim port As Integer = 80
Dim bAutoReconnect As Boolean = True
Dim success As Boolean = Await rest.ConnectAsync("freegeoip.net",port,bTls,bAutoReconnect)
If (success = False) Then
    Debug.WriteLine(rest.LastErrorText)
    Exit Sub
End If


' Query the IP address to return JSON.
Dim responseJson As String = Await rest.FullRequestNoBodyAsync("GET","/json/104.40.211.35")
If (rest.LastMethodSuccess <> True) Then
    Debug.WriteLine(rest.LastErrorText)
    Exit Sub
End If


' Just in case we are still connected..
Dim maxWaitMs As Integer = 10
Await rest.DisconnectAsync(maxWaitMs)

Dim json As New Chilkat.JsonObject
json.Load(responseJson)
json.EmitCompact = False

Debug.WriteLine(json.Emit())

' The JSON we get back looks like this:
' {
'   "ip": "104.40.211.35",
'   "country_code": "US",
'   "country_name": "United States",
'   "region_code": "WA",
'   "region_name": "Washington",
'   "city": "Redmond",
'   "zip_code": "98052",
'   "time_zone": "America/Los_Angeles",
'   "latitude": 47.6801,
'   "longitude": -122.1206,
'   "metro_code": 819
' }

' Examine a few bits of information:
Debug.WriteLine("country name = " & json.StringOf("country_name"))
Debug.WriteLine("country code = " & json.StringOf("country_code"))


' -----------------------------------------------------
' Now to use ip-api.com, which is mostly the same..

success = Await rest.ConnectAsync("ip-api.com",port,bTls,bAutoReconnect)
If (success = False) Then
    Debug.WriteLine(rest.LastErrorText)
    Exit Sub
End If


' Query the IP address to return JSON.
responseJson = Await rest.FullRequestNoBodyAsync("GET","/json/104.40.211.35")
If (rest.LastMethodSuccess <> True) Then
    Debug.WriteLine(rest.LastErrorText)
    Exit Sub
End If


' Just in case we are still connected..
Await rest.DisconnectAsync(maxWaitMs)

json.Load(responseJson)
json.EmitCompact = False

Debug.WriteLine(json.Emit())

' The JSON we get back looks like this:
' This is very strange, because the two services don't agree.
' {
'   "as": "AS8075 Microsoft Corporation",
'   "city": "Amsterdam",
'   "country": "Netherlands",
'   "countryCode": "NL",
'   "isp": "Microsoft Corporation",
'   "lat": 52.35,
'   "lon": 4.9167,
'   "org": "Microsoft Azure",
'   "query": "104.40.211.35",
'   "region": "NH",
'   "regionName": "North Holland",
'   "status": "success",
'   "timezone": "Europe/Amsterdam",
'   "zip": "1091"
' }


' Examine a few bits of information:
Debug.WriteLine("country name = " & json.StringOf("country"))
Debug.WriteLine("country code = " & json.StringOf("countryCode"))

 

© 2000-2022 Chilkat Software, Inc. All Rights Reserved.