You can download this HotFix from TIBCO Support Portal (https://support.tibco.com). You will need to provide your TIBCO Support Portal credentials. Once logged in you can the download the hotfix by selecting the “Downloads” -> “Hotfixes” option. Then go to the AvailableDownloads/TRA_Designer/5.12.4/hotfix-03. or use this shortcut https://support.tibco.com/wolken-support/file_structure?itemAttachmentId=1,50,9546,46001
================================================================================
Closed Issues in 5.12.4_HF-003 (This Release)
TRA-5958
DomainUtility.xsd template file has been updated to include the <MaxDeploymentRevision> under the <createDomain> element for admin domain creation.
TRA-6190
Apache CXF jar family has been upgraded to version 3.5.10.
TRA-6152
Visual C++ Redistributable installer has been upgraded to the version 10.0.40219.325
TRA-6267
A fix has been added to address the empty input string error while deploying an application with dynamic encryption key option.
TRA-6181
Apache Cactus has been removed from the TRA 5.12.4
TRA-6397
BouncyCastle-fips jar has been upgraded to 1.0.2.5 version.
TRA-6396
Support for embedded Hawk 6.3.1 has been added.
After upgrading TIBCO Runtime Agent (TRA) from 5.11.x to 5.12.4, the TIBCO Hawk version path isn't automatically updated in the *.tra files located under <TIBCO-HOME>/5.15/bw. This can cause issues with Hawk monitoring of your BW applications.
Solution:=
Manually update the Hawk path using the traUpgradeManager.exe utility. ( Thi utility is present at <TIBCO-HOME>\tra\5.12\bin location).
Identify Paths:
TIBCO Home: <<TIBCO-HOME>>\TRA\5.12 (where TRA 5.12.4 is installed)
Hawk 6.3 Home: <TIBCO-HOME>\hawk\6.3 (your new Hawk installation)
Run Command:
Open a command prompt and execute:
traUpgradeManager.exe -path <TIBCO-HOME> -hawk <TIBCO-HOME>\hawk\6.3
Replace paths with your actual directories.
Verify:
Check tra files in <TIBCO-HOME>/5.15/bw to confirm the Hawk path is updated.
--------------
TRA-6182
Tomcat 9 has been upgraded to patch 9.0.104 version.
Important steps regading this Tomcat 9 patch upgrade:==
Due to backward-incompatible API changes introduced in Tomcat 9, you might encounter an exception while attempting to upload an EAR file to the administrative domain using TIBCO Administrator. To ensure successful EAR file uploads, a specific configuration change is required in the Tomcat server settings.
**Applying the Fix:**
The necessary modification involves adding the `discardFacades="false"` property to the `<Connector>` element within the Tomcat server configuration file. The location of this file depends on whether you are configuring a new domain or an existing one.
**For Newly Created Domains:**
Before creating a new domain, you need to modify the template configuration file. Locate the `tomcat9_server.xml` file at the following path:
<<TIBCO-Home>>\administrator\5.12\template\ directory
Open this file and add the `discardFacades="false"` attribute to the `<Connector>` element. For example:
<Connector port="8080" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" enableLookups="false" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" redirectPort="8443" discardFacades="false"/>
**For Existing Domains:**
For domains that have already been created, you need to modify the server.xml file within the specific domain's directory. Navigate to the following path:
<<TIBCO-Home>>/administrator/domain/<domainname>/tomcat/conf/
Open the server.xml file and add the discardFacades="false" attribute to the <Connector> element. For example:
<Connector port="8080" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" enableLookups="false" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" redirectPort="8443" discardFacades="false"/>
Final Step:
After applying the discardFacades="false" property to the appropriate server.xml file(s), it is crucial to restart all TIBCO components for the changes to take effect and for the EAR file upload functionality to be restored
================================================================================