I have a client application using the Eclipse Workbench framework. I'd like my client app to connect/subscribe to a JMS topic using a certificate provided in the jar file. That is, I'm NOT using the end user's certificate - it's an app cert.
Now the obvious security risk is that anyone can open up my jar file and take out the cert and use it to connect to the JMS queue without using my client app. (That's bad).
You might say, use a password on the certificate and encrypt the password. BUT... The client app would need to decrypt the password before providing it to the JMS connection. And so the decryption code would have to be in the client Jar file, which a bad guy could decompile and get the code that decrypts the password too. So now he has the cert and the password.
Finally, here's my question... Is there a way to tie the application's certificate to the jar file or to the code so that only my client application can use that cert to connect to the JMS queue?
Thanks for reading this far.