Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved


Chapter 8 Connection Factory : tibemsConnectionFactory : tibemsConnectionFactory_SetSSLProxy

tibemsConnectionFactory_SetSSLProxy
Function
Purpose
Set a connection factory’s parameters for connecting through an SSL proxy.
C Declaration
tibems_status tibemsConnectionFactory_SetSSLProxy(
    tibemsConnectionFactory factory,
    const char* proxy_host,
    tibems_int proxy_port);
COBOL Call
CALL "tibemsConnectionFactory_SetSSLProxy"
     USING BY VALUE factory,
           BY REFERENCE proxy-host,
           BY VALUE proxy-port,
           RETURNING tibems-status
END-CALL.
 
factory has usage pointer.
Parameters
 
The connection factory establishes SSL communication through a web proxy at this host. Supply a simple hostname, a fully qualified hostname with domain name, or an IP address (dot notation).
Remarks
An SSL proxy lets an EMS application create an SSL connection to an EMS server, even though a firewall separates the application from the server. The proxy usually runs within the firewall’s DMZ.
A connection factory contacts the SSL proxy, requesting an SSL connection to the server. The proxy authenticates the application program, and mediates the initial SSL negotiation between application and server. After the SSL connection is established, the application and server use it to communicate directly with one another.
See Also
tibemsConnectionFactory_GetSSLProxyHost on page 261
tibemsConnectionFactory_GetSSLProxyPort on page 262
tibemsConnectionFactory_SetSSLProxyAuth on page 281

Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved