Kbase P107992: How to implement secured 4GL sockets using Secure Sockets Layer (SSL) ?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  6/15/2010 |
|
Status: Unverified
GOAL:
How to implement secured 4GL sockets using Secure Sockets Layer (SSL) ?
GOAL:
How to create Secured 4GL sockets ?
GOAL:
How to add SSL 4GL sockets to your application ?
FACT(s) (Environment):
OpenEdge 10.0B
OpenEdge 10.1x
OpenEdge 10.2x
FIX:
Add -ssl connection parameter to the ENABLE-CONNECTIONS() method (server socket) and CONNECT() method (client socket), for example:
Server Socket:
CREATE SERVER-SOCKET hServer.
lRC = hServer:ENABLE-CONNECTIONS('-S zync -ssl') NO-ERROR.
Client Socket:
CREATE SOCKET hSocket.
hSocket:CONNECT('-H localhost -S zync -ssl') NO-ERROR.