We are researching the possibility to migrate some web JSF applications from Payara 5 to Tomcat 9 (TomEE 8). We are using Java 11 and Java EE 7/8. Our applications connect to a backend server using RMI. At the moment, with Payara 5, when the code that connects us to the backend server fails (exception is thro…
Tag: payara
JAX-RS and RegEx @Paths with spaces
Spaces in URIs are allowed if they’re encoded, as discussed here. JAX-RS (Jersey on Payara) doesn’t seem to allow spaces defined in the path regex pattern. The above regex should match the encoded ABC%20XYZ, but it doesn’t. Request: Internally, Payara throws a 404: Removing %20 (space) succe…
Upload file to payara5 docroot
I’ve installed payara5 on ubuntu and going to upload file to docroot.i need to know if there is such a capability in payara Answer Payara doesn’t support uploading individual files. It’s an application server and supports only uploading whole application packages. But you can upload files to…