If you encounter issues while working with the IntelliJ IDEA plugin, please report them. Internal people can report to JIRA in PFAUT project. Partners or customers can raise a ticket to the Support portal. If possible, add a screenshot or attach the IntelliJ IDEA log file to the message. The log file is located at Help > Show Log in Files/Explorer/Finder; idea.log is the current log file.
Table of Contents | ||
---|---|---|
|
...
Do you have element called "Filter" in one of your logics? Try to give it another name as described in Naming Conventions.
PKIX path building failed: SunCertPathBuilderException
If you get a following exception:
“net.pricefx.restapiclient.PfxClientException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target”
your computer is not able to connect to Pricefx in a secure vay.
Try to visit the pricefx partition using the web browser. If the browser display a problem with the certificate, check the error message. In case the certificate expired, contact our support via Helpdesk.
If your company requires using a proxy server, set up the proxy server also in IDEA. See https://pricefx.atlassian.net/wiki/spaces/KB/pages/1679196175/Install+Studio#Install-Plugin.
if you still cannot connect, your certificate store may be outdated (for older computers). In that case visit the pricefx partition using the web browser. Export the certificate using the browser and import it to the IDEA certificate store in Preferences -> search “Server Certificates”.
IntelliJ IDEA General Troubleshooting
If IntelliJ IDEA is behaving strangely, the last chance is to remove the project related config files:
Invalidate caches: File > Invalidate Cache / Restart > Clear file system cache and Local History.
Close IDEA.
In the MacOS, delete IDEA config files of the project:
Browse to the project folder.
Find the .iml file in the project root and delete it.
Find the .idea folder in the project root and delete it.
Reopen the project in IDEA.
Code Reference Info:
https://www.jetbrains.com/help/idea/viewing-reference-information.html
...