Your data will be transferred to the AOP cloud servers if you are not using an on-premise installation of AOP.
-
Download the AOP installation package using the appropriate link below and extract it.
Cloud Package: https://s3-eu-west-1.amazonaws.com/apexofficeprint/cloud/aop_cloud_v20.3.1.zip
On Premises Package - Linux: https://s3-eu-west-1.amazonaws.com/apexofficeprint/linux/aop_linux_v20.3.1.zip
On Premises Package – Windows: https://s3-eu-west-1.amazonaws.com/apexofficeprint/windows/aop_win_v20.3.1.zip
Smart Materials Web 10.1 does only support AOP version 20.3.1.
For more information see https://www.apexofficeprint.com/docs/index.html?#18-signup-and-download.
-
Copy the install_aop.sql script from <SMat_Web_Install_folder>\additional_scripts to the AOP installation folder, for example, …aop_cloud_v20.3.1\v20.3.1\apex\apex_version_20.x.
-
Start SQL*PLUS and connect as BIR_SPMAT user.
-
Run install_aop.sql.
-
Navigate to the …aop_cloud_v20.3.1\v20.3.1\db directory.
-
Run install.sql.
-
Start SQL*PLUS and connect as SYS user.
-
Execute the following statement:
BEGIN
DBMS_NETWORK_ACL_ADMIN.create_acl(acl => 'AOP.xml',
description => 'Access control list for the AOP service',
principal => 'BIR_SPMAT',
is_grant => TRUE,
privilege => 'connect',
start_date => NULL,
end_date => NULL);
DBMS_NETWORK_ACL_ADMIN.add_privilege(acl => 'AOP.xml',
principal => 'APEX_190100',
is_grant => TRUE,
privilege => 'connect',
start_date => NULL,
end_date => NULL);
DBMS_NETWORK_ACL_ADMIN.assign_acl(acl => 'AOP.xml',
HOST => 'api.apexofficeprint.com',
lower_port => NULL,
upper_port => NULL);
END;