Forum Discussion
Jonathan_Scholi
Mar 23, 2012Cirrostratus
Yes. In Java you can do something like:
String[] clientSSLProfileNameArray = new String[] {"(Name of the profile goes here)"};
LocalLBProfileString key = new LocalLBProfileString();
LocalLBProfileString cert = new LocalLBProfileString();
key.setValue( "Name of the key goes here"+ ".key");
cert.setValue( "Name of the cert goes here"+ ".crt");
iControlInterfaces.getLocalLBProfileClientSSL().create(clientSSLProfileNameArray, new LocalLBProfileString[] {key}, new LocalLBProfileString[] {cert});