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
require 'win32ole'
# Get current path
strPath = File.expand_path(File.dirname(__FILE__)) + "\\"
# Instantiate Object
oSVR = WIN32OLE.new("APServer.Object")
# Enable extra logging in the activepdflogs folder
oSVR.DebugMode = true
# Convert XPS file into PDF
intXPSToPDF = oSVR.XPSToPDF(strPath + 'XPS.xps', strPath + 'Debug.pdf')
if intXPSToPDF != 0
puts "Error in XPSToPDF: #{intXPSToPDF}"
end
# Release Object
oSVR = ''
# Process Complete
puts "Done!"