Author |
Message |
Topic: WMB 7, WS-Security, cannot retrieve key |
jinie
Replies: 6 Views: 5405
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Oct 01, 2014 11:58 pm Subject: "solved" |
I solved this, though I'm not sure what i did to solve it
After many tries i finally deleted everything (Execution group, WMB workdir, db parms, policy set, etc) and started over, and following ... |
Topic: WMB 7, WS-Security, cannot retrieve key |
jinie
Replies: 6 Views: 5405
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 29, 2014 11:30 am Subject: WMB 7, WS-Security, cannot retrieve key |
Is the keystore / truststore accessible to the broker's service id? (check file permissions)
Yeah, just to be sure i copied it to a temporary directory, and set full access to it. Still ... |
Topic: WMB 7, WS-Security, cannot retrieve key |
jinie
Replies: 6 Views: 5405
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 29, 2014 9:18 am Subject: WMB 7, WS-Security, cannot retrieve key |
check the documentation again. I don't believe you can use default::keystorepass. The part before the :: might be mandatory as per description in the documentation... meaning you can't change it to wh ... |
Topic: WMB 7, WS-Security, cannot retrieve key |
jinie
Replies: 6 Views: 5405
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 29, 2014 4:09 am Subject: WMB 7, WS-Security, cannot retrieve key |
Hi.
I'm trying to setup WMB 7 as a WS Security provider, and have followed the tutorial on setting it up, with one exception - i would like it to run with EG level keystores/truststores instead of ... |
Topic: Specify TLS certificate for TCP/IP Client Output Node |
jinie
Replies: 11 Views: 8013
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 09, 2013 11:51 pm Subject: Specify TLS certificate for TCP/IP Client Output Node |
Looks like my only option (for now) is to code it by hand in Java or PHP.
I'll raise a PMR on the issue, and perhaps try to broaden the scope of it a bit, since we often need support specifying a d ... |
Topic: Specify TLS certificate for TCP/IP Client Output Node |
jinie
Replies: 11 Views: 8013
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 09, 2013 5:24 am Subject: Specify TLS certificate for TCP/IP Client Output Node |
No dice.
C:\Program Files\IBM\MQSI\7.0>mqsicreateconfigurableservice TBRK -c TCPIPClient -o myTCPIPClientService -n SSLKeyAlias -v mykey
BIP8984W: Configurable service object name 'TCPIPC ... |
Topic: Specify TLS certificate for TCP/IP Client Output Node |
jinie
Replies: 11 Views: 8013
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 09, 2013 5:02 am Subject: Specify TLS certificate for TCP/IP Client Output Node |
I'm on 7.0.0.6
Didn't you read about the SSL key alias in the InfoCentre?
Using an SSL key alias
A key alias identifies the key that is to be used for the SSL connection, if the keystore fo ... |
Topic: Specify TLS certificate for TCP/IP Client Output Node |
jinie
Replies: 11 Views: 8013
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 09, 2013 4:35 am Subject: Specify TLS certificate for TCP/IP Client Output Node |
I'm on version WMB 7.0
I read the articles, but i can't seem to find any examples/settings that allows me to do what i want.
I have around 40 different TLS certificates that each corresponds to ... |
Topic: Specify TLS certificate for TCP/IP Client Output Node |
jinie
Replies: 11 Views: 8013
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 09, 2013 2:29 am Subject: Specify TLS certificate for TCP/IP Client Output Node |
Hey
I'm creating a flow for delivering Apple iOS push notifications for multiple customers/apps.
My initial thought was to use a TCP/IP Client Output Node along with a keystore containing all ce ... |
Topic: Execution group keystore, how to access ? |
jinie
Replies: 7 Views: 6180
|
Forum: IBM MQ Java / JMS Posted: Thu Jul 18, 2013 3:19 am Subject: Execution group keystore, how to access ? |
ExecutionGroupProxy myEG = ExecutionGroupProxy.getLocalInstance();
String mykeyStoreFile = myEg.getRuntimeProperty(EG_COMIBMJVMMANAGER_KEYSTOREFILE_PROPERTY);
Thank you for your f ... |
Topic: Execution group keystore, how to access ? |
jinie
Replies: 7 Views: 6180
|
Forum: IBM MQ Java / JMS Posted: Wed Jul 17, 2013 12:11 am Subject: Execution group keystore, how to access ? |
Using the EG level keystore and password is more secure, and accessing those properties through the CMP/MBAPI/IBAPI and getting the local instance of the BrokerProxy or EGProxy and then accessing the ... |
Topic: Execution group keystore, how to access ? |
jinie
Replies: 7 Views: 6180
|
Forum: IBM MQ Java / JMS Posted: Wed Jul 10, 2013 12:39 pm Subject: Execution group keystore, how to access ? |
Mind you, those are v9 constants that may not (and do not appear to be) defined for 6.1.
Presumably you're not actually using 6.1, presumably you're really using v7 or v8.
Why are you trying to ... |
Topic: Execution group keystore, how to access ? |
jinie
Replies: 7 Views: 6180
|
Forum: IBM MQ Java / JMS Posted: Wed Jul 10, 2013 11:38 am Subject: Execution group keystore, how to access ? |
I've created and configured a keystore according to
public static KeyStore loadKeystore(){
KeyStore store = null;
try{
store = KeyStore.getInstance("JKS&quo ... |