Sub CheckAccount
Dim xm As xml2map
xm.Initialize
Dim XML_value As String = $"<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Header><ResponseHeader xmlns="https://192.168.0.99/API"><Text>OK</Text></ResponseHeader></soap:Header><soap:Body><AccountResponse xmlns="https://192.168.0.99/API"><AccountResult>Available</AccountResult></AccountResponse></soap:Body></soap:Envelope>"$
Dim phrasedata As Map
phrasedata = xm.Parse(XML_value)
Log(phrasedata.get("AccountResult"))
End Sub