Forum Discussion
TNeuschwanger
Champion Level 3
13 years agoJust a few minutes more and I wouldn't have needed to post the question... 
sslResponse0 = context.testCase.testSteps[methodName].testRequest.response.SSLInfo.getCipherSuite();
log.info 'sslResponse0=' + sslResponse0;
sslResponse1 = context.testCase.testSteps[methodName].testRequest.response.SSLInfo.getPeerCertificates();
log.info 'sslResponse1=' + sslResponse1;
use the following for more information contained in the "SSL Info" tab...
java.lang.String getCipherSuite()
java.security.cert.Certificate[] getLocalCertificates()
java.security.Principal getLocalPrincipal()
java.security.cert.Certificate[] getPeerCertificates()
java.security.Principal getPeerPrincipal()
boolean isPeerUnverified()

sslResponse0 = context.testCase.testSteps[methodName].testRequest.response.SSLInfo.getCipherSuite();
log.info 'sslResponse0=' + sslResponse0;
sslResponse1 = context.testCase.testSteps[methodName].testRequest.response.SSLInfo.getPeerCertificates();
log.info 'sslResponse1=' + sslResponse1;
use the following for more information contained in the "SSL Info" tab...
java.lang.String getCipherSuite()
java.security.cert.Certificate[] getLocalCertificates()
java.security.Principal getLocalPrincipal()
java.security.cert.Certificate[] getPeerCertificates()
java.security.Principal getPeerPrincipal()
boolean isPeerUnverified()