Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

DataFlex Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
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
Misc
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
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(DataFlex) Parse a URL into its Component Parts

Demonstrates how to parse a URL into it's component parts.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoUrl
    String sUrlStr
    Boolean iSuccess
    String sTemp1
    Integer iTemp1
    Boolean bTemp1

    Get Create (RefClass(cComChilkatUrl)) To hoUrl
    If (Not(IsComObjectCreated(hoUrl))) Begin
        Send CreateComObject of hoUrl
    End

    Move "https://www.amazon.com/Anarchy-State-Utopia-Robert-Nozick/dp/0465051006/ref=sr_1_1?s=books&ie=UTF8&qid=1430344305&sr=1-1&keywords=nozick#frag123" To sUrlStr

    Get ComParseUrl Of hoUrl sUrlStr To iSuccess
    // Assume success..

    Showln "URL: " sUrlStr
    Get ComHost Of hoUrl To sTemp1
    Showln "Host: " sTemp1
    Get ComPort Of hoUrl To iTemp1
    Showln "Port: " iTemp1
    Get ComHostType Of hoUrl To sTemp1
    Showln "HostType: " sTemp1
    Get ComSsl Of hoUrl To bTemp1
    Showln "Ssl: " bTemp1
    Get ComPath Of hoUrl To sTemp1
    Showln "Path: " sTemp1
    Get ComQuery Of hoUrl To sTemp1
    Showln "Query: " sTemp1
    Get ComFrag Of hoUrl To sTemp1
    Showln "Frag: " sTemp1
    Showln "----"

    Move "http://matt:secret@www.chilkatsoft.com:8080/somepath.asp?test=123&size=2" To sUrlStr

    Get ComParseUrl Of hoUrl sUrlStr To iSuccess
    // Assume success..

    Showln "URL: " sUrlStr
    Get ComHost Of hoUrl To sTemp1
    Showln "Host: " sTemp1
    Get ComPort Of hoUrl To iTemp1
    Showln "Port: " iTemp1
    Get ComHostType Of hoUrl To sTemp1
    Showln "HostType: " sTemp1
    Get ComSsl Of hoUrl To bTemp1
    Showln "Ssl: " bTemp1
    Get ComLogin Of hoUrl To sTemp1
    Showln "Login: " sTemp1
    Get ComPassword Of hoUrl To sTemp1
    Showln "Password: " sTemp1
    Get ComPath Of hoUrl To sTemp1
    Showln "Path: " sTemp1
    Get ComQuery Of hoUrl To sTemp1
    Showln "Query: " sTemp1
    Get ComFrag Of hoUrl To sTemp1
    Showln "Frag: " sTemp1


End_Procedure

 

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