Set Up MFE Connection with REST API

  1. Use the following command, with appropriate modifications, to create the MFE connection for Converged Application Server.
    curl -v -X POST \
        --user <username>:<password> \
        -H X-Requested-By:MyClient \
        -H Accept:application/json \
        -H Content-Type:application/json \
        -d '{
      "serverName": "<mfe_name>",
      "managementIP": "<mfe_ip>",
      "managementPort": <management_port>,
      "secondaryPort": <secondary_port>,
      "sslEnabled": true
    }' \
        "http://<adminserver_host>:<port>/management/weblogic/latest/edit/customResources/IntelligentMediaConnector/customResource/mediaFlowEngines/"

    Do not put quotation marks around the value of the sslEnabled parameter.