SetGlobalProperty PowerScript function
Description
Sets the value of an SSL global property.
Controls
SSLServiceProvider object
Syntax
|
1 |
<span>sslserviceprovider</span>.<span>SetGlobalProperty</span> ( <span>property, </span><span>value </span>) |
|
Argument |
Description |
|---|---|
|
sslserviceprovider |
Reference to the SSLServiceProvider service |
|
property |
The name of the SSL property you want For a complete list of supported SSL properties, see your EAServer documentation or the |
|
value |
String value of the SSL property. |
Return Values
Long. Returns one of the following values:
-
0 Success
-
-1 Unknown property
-
-2 Property is read only
-
-3 Invalid value for property
-
-10 An EAServer or
SSL failure has occurred -
-11 Bad argument list
Usage
The SetGlobalProperty function allows PowerBuilder
clients that connect to EAServer through
SSL to set global SSL properties.
Any properties set using the SSLServiceProvider interface
are global to all connections made by the client to all EAServer servers. You can override
any of the global settings at the connection level by specifying
them as options to the Connection object or JaguarORB object.
Only clients can get and set SSL properties. Server components
do not have permission to use the SSLServiceProvider service.
Examples
The following example shows the use of the SetGlobalProperty function
to set the value of the cacheSize property to 300:
|
1 |
SSLServiceProvider ssl |
|
1 |
long rc |
|
1 |
... |
|
1 |
this.GetContextService("SSLServiceProvider", ssl) |
|
1 |
rc = ssl.<span>SetGlobalProperty</span>("cacheSize", "300") |
|
1 |
... |