DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.

DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Capability as SslOffload in Network.java static class CapabilityNetscalerElement when checking for canHandleLbRules will check for SSL rule and respond accordinglyLoadBalancingRule will have a new static class LbSslCert and will have a list List<LbSslCert> for holding the certificate(s)LoadBalancerTO will have a new parameter for passing certificate information and an array SslCertsTO[] for holding the certificates.The loadbalancign rule will have a new subclass for SSL certs
| Code Block | ||||
|---|---|---|---|---|
| ||||
// rule for SSL certificates
public class LoadBalancingRule {
....
public static class LbSslCert()
{
String cert;
String key;
String password;
boolean _revoke;
public LbSslCert(cert,key,password) {}
}
public void setSslCerts(List<SslCert> certs){}
public void getSslCerts(List<SslCert> certs){}
...
}
|
...