Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SVC2023.1

...

Set the following property to accept the Parasoft End User License Agreement (please read the EULA at https://www.parasoft.com/license):

Code Block
titleEULA
parasoft.eula.accepted=true

...

You can copy and paste the following JSON examples into your REST API endpoint to help you get started. Change the host, port, and any feature settings to match your license. To accept the EULA, update the "accepted" field to true. The EULA must be accepted to use the product. You can read the EULA at https://www.parasoft.com/license.

Code Block
titleNetwork License Using License Server - Virtualize and SOAtest
{
    "eula" : {
        "accepted" : false
    },
    "license" : {
    "licenseServer": {
      "host": "<your-LS-host>",
      "port": <your-LS-port>
    },
    "virtualize": {
      "enabled": true,
      "useNetwork": true,
      "network": {
        "edition": "performance_server_edition"
      }
    },
    "soatest": {
      "enabled": true,
      "useNetwork": true,
      "network": {
        "edition": "server_edition"
      }
    }
  }
}

...

Note

In the example above, the EULA has not been accepted. You will need to manually change \"eula\":{\"accepted\":false} to \"eula\":{\"accepted\":true} to accept the EULA. You must accept the EULA to use the product. Please read the EULA at https://www.parasoft.com/license.

To verify the product is licensed:

...