<!-- Copyright (c) 2021 ActivePDF, Inc. --> <!-- ActivePDF Server 2013 --> <!-- Example generated 04/14/21 --> <% Dim strPath, results strPath = Server.MapPath(".") & "\" ' Instantiate Object Set oSVR = Server.CreateObject("APServer.Object") ' Setup the FTP request supplying credentials if needed oSVR.AddFTPRequest "127.0.0.1", "/folder" oSVR.SetFTPCredentials "user", "pass" ' Set which files will upload with the FTP request ' To attach a binary file use AddFTPBinaryAttachment oSVR.FTPAttachOutput = true oSVR.AddFTPAttachment strPath & "file.txt" ' Path and filename of output oSVR.OutputDirectory = strPath oSVR.NewDocumentName = "ftp.pdf" ' Start the print job Set results = oSVR.BeginPrintToPDF() If results.ServerStatus <> 0 Then ErrorHandler "BeginPrintToPDF", results, results.ServerStatus End If ' Here is where you can print to activePDF Server to create ' a PDF from any print job, set your application to print to ' a static activePDF Server printer or call oSVR.NewPrinterName ' to dynamically create a new printer on the fly ' This example simply calls oSVR.TestPrintToPDF for testing purposes Set results = oSVR.TestPrintToPDF("Hello World!") If results.ServerStatus <> 0 Then ErrorHandler "TestPrintToPDF", results, results.ServerStatus End If ' Wait(seconds) for job to complete Set results = oSVR.EndPrintToPDF(30) If results.ServerStatus <> 0 Then ErrorHandler "EndPrintToPDF", results, results.ServerStatus End If ' Options available to clear or remove FTP requests are only ' needed if the object remains instantiated. oSVR.RemoveFTP "127.0.0.1", "/folder" oSVR.ClearFTPAttachments oSVR.ClearFTPs ' Release Object Set oSVR = Nothing ' Process Complete Response.Write "Done!" ' Error Handling Sub ErrorHandler(method, oResult, errorStatus) Response.Write("Error with " & method & ": <br/>" _ & errorStatus & "<br/>" _ & oResult.details) Response.End End Sub %>