Restart SSL Channels
post
/management/weblogic/{version}/serverRuntime/restartSSLChannels
Restart all SSL channels on which the server is listening. This could be necessary because of some change that the server is not aware of, for instance updates to the keystore.
Request
Path Parameters
-
version(required): string
The version of the WebLogic REST interface.
Header Parameters
-
X-Requested-By(required): string
The 'X-Requested-By' header is used to protect against Cross-Site Request Forgery (CSRF) attacks. The value is an arbitrary name such as 'MyClient'.
Security
-
Admin: basic
Type:
basic
Description:A user in the Admin security role.
Response
200 Response
Returns the following fields:
Examples
Invoke the restartSSLChannels action.
This example uses the POST method to invoke the restartSSLChannels action.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{}" \ -X POST http://localhost:7001/management/weblogic/latest/serverRuntime/restartSSLChannels
Example Response
HTTP/1.1 200 OK Response Body: {}Back to Top