Client/Server Model
Client is C++ native code, while Server is Java code.
Client supports:
- Windows
- Linux
- AIX
- Sun
- zOS/USS
- zLinux
Client/Server Model topology has 2 options:
- Client and Server on the same machine.
- Client and Server on different machines.
Typical Client/Server Model using default ports
- Client Machine
- Tiff2PdfAgent uses:
- Socket port for local C/C++ tiff2pdf: 8800.
- RMI port to connect to Tiff2PdfServer on Server Machine: 8801.
- To start Tiff2PdfAgent on Client Machine, enter java Tiff2PdfAgent —s <Server Machine name>.
- To submit the job, run client C/C++tiff2pdf on Client Machine and enter tiff2pdf <input tiff file> <output pdf file>.
- Server Machine
- Tiff2PdfServer uses:
- Socket port for local C/C++ tiff2pdf: 8800.
- RMI port to connect to Tiff2PdfAgent on Agent Machine: 8801.
- To start server on Server Machine, enter java Tiff2PdfServer —start.
- Run client C/C++ tiff2pdf on Server Machine and enter tiff2pdf <input tiff file> <output pdf file>.