DataFlex
DataFlex
Load MIME from XML
See more MIME Examples
Demonstrates the Chilkat Mime.LoadXml method, which reconstructs a MIME tree from Chilkat's MIME XML. The only argument is the XML string.
Background: Chilkat can represent a MIME tree as XML — headers as elements, parameters as attributes — which is convenient for inspecting or editing structure with XML tools. This is the inverse of
GetXml: it rebuilds the full MIME object from that representation. Invalid XML leaves the current object unchanged.Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoMime
String sXmlText
String sTemp1
Move False To iSuccess
// Demonstrates the Mime.LoadXml method, which reconstructs a MIME tree from Chilkat's MIME XML.
// The only argument is the XML string.
Get Create (RefClass(cComChilkatMime)) To hoMime
If (Not(IsComObjectCreated(hoMime))) Begin
Send CreateComObject of hoMime
End
// Chilkat MIME XML (as produced by GetXml).
Move "<mime><contentType>text/plain</contentType><body>Hello.</body></mime>" To sXmlText
Get ComLoadXml Of hoMime sXmlText To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoMime To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComContentType Of hoMime To sTemp1
Showln "Content-Type: " sTemp1
End_Procedure