Setting the port number of the JVM remote debugger of the plug-in server
System administrators can set the port number of the JVM remote debugger of the plug-in server by using the Eclipse Amlen REST API POST method.
The following example shows a POST method to set the port number of the JVM remote debugger of the plug-in server by using cURL:
  
curl -X POST \
   -H 'Content-Type: application/json'  \
   -d  '{ 
           "PluginDebugPort": 8000
        }
 '  \
http://127.0.0.1:9089/ima/v1/configuration/ The following shows an example response to the POST method.
{        
  "Version": "v1",
  "Code": "CWLNA6011",
  "Message": "The requested configuration change has completed successfully."
}
The following example shows restarting the protocol plug-in server:
  
curl -X POST \
   -H 'Content-Type: application/json'  \
   -d  '{ 
           "Service": "Plugin"
        }
 '  \
http://127.0.0.1:9089/ima/v1/service/restart
The following example shows an example response to the POST method to restart the protocol plug-in server:
{        
  "Version": "v1",
  "Code": "CWLNA6011",
  "Message": "The requested configuration change has completed successfully."
}