(SQL Server) Convert HTML File to XML File
      
      Convert HTML file to XML file. 
		
 
      -- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.
    DECLARE @htmlToXml int
    -- Use "Chilkat_9_5_0.HtmlToXml" for versions of Chilkat < 10.0.0
    EXEC @hr = sp_OACreate 'Chilkat.HtmlToXml', @htmlToXml OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END
    -- Indicate the charset of the output XML we'll want.
    EXEC sp_OASetProperty @htmlToXml, 'XmlCharset', 'utf-8'
    DECLARE @success int
    EXEC sp_OAMethod @htmlToXml, 'ConvertFile', @success OUT, 'test.html', 'out.xml'
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @htmlToXml, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
      END
    ELSE
      BEGIN
        PRINT 'Success'
      END
    EXEC @hr = sp_OADestroy @htmlToXml
END
GO
     |