Files can be added to the private (local) or public marketplace.

Private Marketplace

Any CTP user with system-level access can upload files to your private marketplace.

To upload your first asset:

  1. Click the Upload a Private Asset button on the left side of the page.


  2. Complete the file upload dialog, then click OK.
 
To upload additional assets:
  1. Click the Upload a Private Asset link in the top right side of the page.
  2. Complete the file upload dialog, then click OK.

Public Marketplace

If you want to add files to the public marketplace (available across the Parasoft user community), please submit them to your Parasoft representative. Parasoft reviews and approves all submissions to prevent insecure or illegal/pirated software from being uploaded to the public marketplace.

Uploading Archives Including Virtual Assets and Data Repositories

You can upload archives (zip, tar, tar.gz) that include multiple virtual assets and associated data repositories to a private Marketplace. Team members can then easily deploy the virtual assets and data repositories to the Virtualize server and Data Repository server of their choice.

Archives that are automatically created during CTP system export are already configured for such sharing.

If you are manually preparing archives, note the following:

Uploading Large Files (MySQL Database Only)

If you are using a MySQL database and are receiving error messages when uploading large (e.g., over 10 MB) files to Marketplace, increase the MySQL size limits as follows:
  1. Find the my.cnf/my.ini file for your installation of MySQL. For MySQL 5.7, see http://dev.mysql.com/doc/refman/5.7/en/option-files.html. For other versions, see the appropriate manual at http://dev.mysql.com/doc/index.html.
  2. Edit the file to use the parameter settings outlined below.
  3. Restart the MySQL Service
 
 
[mysqld]
innodb = ON
innodb_log_file_size = 5242880000 // This must be set to be 10x the largest content being loaded for the public marketplace.
max_allowed_packet = 1G
innodb_file_per_table = 1
innodb_file_format = Barracuda
 
[mysql]
max_allowed_packet = 1G
 
[client]
max_allowed_packet = 1G