Warehouse Release 6.04.0360
06/12/2017
The improvements in the 6.04.0360 release are:
OPEN myCloud XML * MODE=r WSDL="soapAcc.wsdl"
SET myCloud LOGRESPONSE "SoapResponse.txt"
After running, the beginning of SoapResponse.txt looks something like this:
2017-06-12 09:28:34.965 length=1066 <?xml version="1.0" encoding="utf-8"?><soap
env:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmln
s:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/
XMLSchema-instance"><soapenv:Header><platformMsgs:documentInfo xmlns: ...
PRINT FILEREAD("/etc/HOSTNAME", "READ")
Prints the entire contents of the file
/etc/HOSTNAME.
CALL FILEWRITE("myTextFile.txt", "WRITE ERASE", TEXTSTR)
The contents of the string TEXTSTR are written to the file
myTextFile.txt, replacing the current contents.
DEFINE src : STRING VALUE "Taurus"
PRINT "To Base16:", XLATETO (src, "Base16")
PRINT "To Base64:", XLATETO (src, "Base64")
PRINT "From Base16:", XLATEFROM("546175727573", "Base16")
PRINT "From Base64:", XLATEFROM("VGF1cnVz", "Base64")
Has this output:
To Base16: 546175727573
To Base64: VGF1cnVz
From Base16: Taurus
From Base64: Taurus
Release 6.04.0360 is available now on all supported platforms.