Hi, I'm deploying our 12c migrated app on client machines. We chose fsal.
Clients are mostly windows 11 , 64 bit. and they all have jre installed
After installing the weblogic server root cert in my jre cacerts keystore, command line java -jar frmsal.jar -url “https://…” works on my machine. It is a custom root cert (used by the client for intranetto only apps) , so it is not pre-installed in client machines cacerts.
I'd like the process to be smooth for the clients, so I was following some hints from this forum, about making a bundle with launch4java , but I'm not able to make it work … Can you point me to some detailed instructions?
I think what I need is an automated package to do this:
- Deploy frmsal.jar in a client machine folder
- Either one of this options:
- Add the root .cer to the jre 64 bits cacerts file (C:\program files\
- Include a full jre in the bundle with already signed cacerts
- Deploy a shortcut for my app with the java -jar frmsal.jar -url “…”
Thanks