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

Excel 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

 

 

 

(Excel) SOAP WS-Security Username Authentication

Demonstrates creating SOAP XML for WS-Security Username Authentication. The client user name and password are encapsulated in a WS-Security <wsse:UsernameToken>.

Download Excel Class Modules

Chilkat Excel Class Modules

' Generate this XML with the code that follows:

' 	<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
' 	 <soap:Header>	     
' 	  <wsse:Security xmlns:wsse="http://schemas.xmlsoap.org/ws/2003/06/secext">
' 	   <wsse:UsernameToken wsu:Id="sample" 
' 	       xmlns:wsu="http://schemas.xmlsoap.org/ws/2003/06/utility">
' 	    <wsse:Username>sample</wsse:Username>
' 	    <wsse:Password Type="wsse:PasswordText">oracle</wsse:Password>
' 	    <wsu:Created>2004-05-19T08:44:51Z</wsu:Created>
' 	   </wsse:UsernameToken>
' 	  </wsse:Security>
' 	  <wsse:Security soap:actor="oracle" 
' 	      xmlns:wsse="http://schemas.xmlsoap.org/ws/2003/06/secext">
' 	   <wsse:UsernameToken wsu:Id="oracle" 
' 	       xmlns:wsu="http://schemas.xmlsoap.org/ws/2003/06/utility">
' 	    <wsse:Username>myUsername</wsse:Username>
' 	    <wsse:Password Type="wsse:PasswordText">myPassword</wsse:Password>
' 	    <wsu:Created>2004-05-19T08:46:04Z</wsu:Created>
' 	   </wsse:UsernameToken>
' 	  </wsse:Security>
' 	 </soap:Header>
' 	  <soap:Body>
' 	   <getHello xmlns="http://www.oracle.com"/>
' 	  </soap:Body>
' 	</soap:Envelope>
' 

' First build the outer housing:
Dim xml As Chilkat.Xml
Set xml = Chilkat.NewXml
xml.Tag = "soap:Envelope"
Dim success As Boolean
success = xml.AddAttribute("xmlns:soap","http://schemas.xmlsoap.org/soap/envelope/")
xml.UpdateChildContent "soap:Header",""
success = xml.UpdateAttrAt("soap:Body|getHello",True,"xmlns","http://www.oracle.com")

' Get the current date/time in a string with this format: 2004-05-19T08:46:04Z
Dim dt As Chilkat.CkDateTime
Set dt = Chilkat.NewCkDateTime
success = dt.SetFromCurrentSystemTime()

bLocal = False

created = dt.GetAsTimestamp(bLocal)

' Now build each UsernameToken block:
Dim wsse1 As Chilkat.Xml
Set wsse1 = Chilkat.NewXml
wsse1.Tag = "wsse:Security"
success = wsse1.AddAttribute("xmlns:wsse","http://schemas.xmlsoap.org/ws/2003/06/secext")
success = wsse1.UpdateAttrAt("wsse:UsernameToken",True,"wsu:Id","sample")
success = wsse1.UpdateAttrAt("wsse:UsernameToken",True,"xmlns:wsu","http://schemas.xmlsoap.org/ws/2003/06/utility")
wsse1.UpdateChildContent "wsse:UsernameToken|wsse:Username","sample"
success = wsse1.UpdateAttrAt("wsse:UsernameToken|wsse:Password",True,"Type","wsse:PasswordText")
wsse1.UpdateChildContent "wsse:UsernameToken|wsse:Password","oracle"
wsse1.UpdateChildContent "wsse:UsernameToken|wsu:Created",created

Dim wsse2 As Chilkat.Xml
Set wsse2 = Chilkat.NewXml
wsse2.Tag = "wsse:Security"
success = wsse2.AddAttribute("soap:actor","oracle")
success = wsse2.AddAttribute("xmlns:wsse","http://schemas.xmlsoap.org/ws/2003/06/secext")
success = wsse2.UpdateAttrAt("wsse:UsernameToken",True,"wsu:Id","oracle")
success = wsse2.UpdateAttrAt("wsse:UsernameToken",True,"xmlns:wsu","http://schemas.xmlsoap.org/ws/2003/06/utility")
wsse2.UpdateChildContent "wsse:UsernameToken|wsse:Username","oracle"
success = wsse2.UpdateAttrAt("wsse:UsernameToken|wsse:Password",True,"Type","wsse:PasswordText")
wsse2.UpdateChildContent "wsse:UsernameToken|wsse:Password","oracle"
wsse2.UpdateChildContent "wsse:UsernameToken|wsu:Created",created

' Insert the UsernameToken blocks:

Set xHeader = xml.GetChildWithTag("soap:Header")
success = xHeader.AddChildTree(wsse1)
success = xHeader.AddChildTree(wsse2)

' Show the XML:
Debug.Print xml.GetXml()

 

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