Example code is for an older version of Server, newer code is available.
<!-- Copyright (c) 2021 ActivePDF, Inc. -->
<!-- ActivePDF Server 2009 -->
<!-- Example generated 03/08/21 -->
<%
Dim strPath, intPSToPDF
strPath = Server.MapPath(".") & "\"
' Instantiate Object
Set oSVR = Server.CreateObject("APServer.Object")
' Add an FTP server to upload the PDF output
' Call AddFTP, FTPHost, FTPUserName, FTPPassword and FTPDirectory
' as many times as needed to upload to multiple FTP locations
oSVR.AddFTP
oSVR.FTPHost = "255.255.255.255"
oSVR.FTPUserName = "ftpuser"
oSVR.FTPPassword = "ftppassword"
oSVR.FTPDirectory = "/folder/folder/"
' Convert the PostScript file into PDF
intPSToPDF = oSVR.PSToPDF(strPath & "PS.ps", strPath & "FTP.pdf")
If intPSToPDF <> 0 Then
ErrorHandler "PSToPDF", intPSToPDF
End If
' To remove just one FTP location call RemoveFTP before next conversion
oSVR.RemoveFTP "255.255.255.255", "/folder/folder/"
' To remove all FTP settings call ClearFTPs
oSVR.ClearFTPs
' Release Object
Set oSVR = Nothing
' Process Complete
Response.Write "Done!"
' Error Handling
Sub ErrorHandler(method, outputCode)
Response.Write("Error in " & method & ": " & outputCode)
End Sub
%>