| About easyPDF SDK Loader
Object
|
What is the easyPDF SDK Loader Object?
The easyPDF SDK Loader Object is a helper object to
enable easyPDF SDK on server-side environment.
If easyPDF SDK is used in server environment (either directly or
indirectly), you need to access easyPDF SDK through this object,
instead of accessing them directly. The Loader object
eliminates many of the server-side configuration that you would
otherwise have to deal with.
Instead of this way:
Set oPrinter =
Server.CreateObject("easyPDF.Printer.5")
Set oPrintJob = oPrinter.PrintJob
Do it this way:
Set oLoader =
Server.CreateObject("easyPDF.Loader.5")
Set oPrinter =
oLoader.LoadObject("easyPDF.Printer.5")
Set oPrintJob = oPrinter.PrintJob
Before using the easyPDF SDK Loader object, you need to take a
few easy steps described below to configure Windows Service
setting.
Create and initialize an easyPDF SDK user
account:
- Log on to the computer as the Administrator and create a new
user account that will automate easyPDF SDK. In our example, this
account is named easyPdfUser. Create a password
for this user account, and select Never expire so
that the password does not have to be changed.
- Add the easyPdfUser account to the
Administrators group.
IMPORTANT!
- YOU MUST log on to the
easyPdfUser at least once to initialize the
account, including printer driver setting, or easyPDF SDK will not
run properly.
- If you decide to use an exising account rather than creating a
new account as described above, make sure to also log on
to that user account at least once after easyPDF SDK is
installed for the first time, or printer driver information will
not be initialized properly.
Configure Windows Service setting:
- Log on to the computer as the Administrator.
- From Control Panel, launch Administrative
Tools.
- From Administrative Tools, launch
Services.

- Select and double-click on BCL easyPDF SDK 5
Loader to bring up the BCL easyPDF SDK 5 Loader
Properties dialog.
Note: If you do not see it in the list, please run
the easyPDF SDK installer again and perform repair.
- Click the Log On tab. Select This
account and type the username and password for
easyPdfUser .

- Click OK to close the property dialog box and
return to the main Services window.
- Start the BCL easyPDF SDK 5 Loader .

- Close the Services window.
<<