| Home | Previous Lesson: Communication Drivers Next Lesson: Transport Object Properties |
Transport object is Class object (Non Visual) used in the server application to listen requests from PowerBuilder clients. You can create multiple instances of this object on the server and set each object driver to a different one, say one is WinSock and another NamedPipes. This allows the server to listen from clients using different drivers. If there are many client connections and want to boost performance, you can create multiple instances of Transport object and assign each instance to a different port.
The usage of this object is similar to the Connection object.
If you are creating only one instance of the Transport object, then make sure the driver specified in Transport object is same as the one in the Connection object.
| Home | Previous Lesson: Communication Drivers Next Lesson: Transport Object Properties |