...
| Code Block |
|---|
Map<String, String> mapServer = [
"https.keystore":"srcpath/test/resources/certs/GroovyWS_Test_to/Server.jks",
"https.keystore.pass":"groovyws",
"https.truststore":"",
"https.truststore.pass":""
]
server = new WSServer(myServiceUrl)
server.setSSL(mapServer)
server.setClientAuthentication(false)
server.start()
|