SQL Server
SQL Server
Load MIME from an XML File
See more MIME Examples
Demonstrates the Chilkat Mime.LoadXmlFile method, which reads Chilkat MIME XML from a local file and reconstructs the MIME tree. The only argument is the file path.
Note: The file paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.
Background: The file-based form of
LoadXml, for a MIME tree saved as XML by SaveXml. Round-tripping through XML is a handy way to store or transform a message's structure in a form that ordinary XML tooling understands. A missing file or invalid XML leaves the object unchanged.Chilkat SQL Server Downloads
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @sTmp0 nvarchar(4000)
DECLARE @success int
SELECT @success = 0
-- Demonstrates the Mime.LoadXmlFile method, which reads Chilkat MIME XML from a local file and
-- reconstructs the MIME tree. The only argument is the file path.
DECLARE @mime int
EXEC @hr = sp_OACreate 'Chilkat.Mime', @mime OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
EXEC sp_OAMethod @mime, 'LoadXmlFile', @success OUT, 'qa_data/message_mime.xml'
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @mime, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @mime
RETURN
END
EXEC sp_OAGetProperty @mime, 'ContentType', @sTmp0 OUT
PRINT 'Content-Type: ' + @sTmp0
EXEC @hr = sp_OADestroy @mime
END
GO