Example code is for an older version of Server, newer code is available.
# Copyright (c) 2021 ActivePDF, Inc.
# ActivePDF Server 2009
# Example generated 02/27/21
require 'win32ole'
# Get current path
strPath = File.expand_path(File.dirname(__FILE__)) + "\\"
# Instantiate Object
oSVR = WIN32OLE.new("APServer.Object")
# Set 40-bit encryption on PDF output
# 40-bit encryption supported in Acrobat 3+
oSVR.SetOutputSecurity('userpass', 'ownerpass', true, true, true, true)
# Convert the PostScript file into PDF
intPSToPDF = oSVR.PSToPDF(strPath + 'PS.ps', strPath + 'Security40.pdf')
if intPSToPDF != 0
puts "Error in PSToPDF: #{intPSToPDF}"
end
# Release Object
oSVR = ''
# Process Complete
puts "Done!"