Example code is for an older version of Server, newer code is available.
<!-- Copyright (c) 2021 ActivePDF, Inc. -->
<!-- ActivePDF Server 2009 -->
<!-- Example generated 03/03/21 -->
<%
Dim strPath, intPCLToPDF
strPath = Server.MapPath(".") & "\"
' Instantiate Object
Set oSVR = Server.CreateObject("APServer.Object")
' Enable extra logging in the activepdflogs folder
oSVR.DebugMode = true
' Convert PCL file into PDF
intPCLToPDF = oSVR.PCLToPDF(strPath & "PCL.pcl", strPath & "Debug.pdf")
If intPCLToPDF <> 0 Then
ErrorHandler "PCLToPDF", intPCLToPDF
End If
' Release Object
Set oSVR = Nothing
' Process Complete
Response.Write "Done!"
' Error Handling
Sub ErrorHandler(method, outputCode)
Response.Write("Error in " & method & ": " & outputCode)
End Sub
%>