Author |
Message |
Topic: Singeltons created in Java Plugin not accessible to JCN |
jcraw62
Replies: 2 Views: 2974
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jul 11, 2007 10:17 am Subject: Singeltons created in Java Plugin not accessible to JCN |
I am instantiating a singelton in the contructor of a Java plug-in. The plug-in appears to load OK but when I attempt to retreive the instance in a JCN it is not loaded.
Is this because plugins an ... |
Topic: Use of evaluateXPath() with namespaces |
jcraw62
Replies: 10 Views: 15135
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 27, 2006 2:35 pm Subject: Use of evaluateXPath() with namespaces |
Thanks. This really needs to be better documented.
Just as ...
MbXPath xp = new MbXPath("/aaa/other:aaa/bbb");
allows me to reference elements in the default namespace, i.e. /aaa or /bbb I s ... |
Topic: Use of evaluateXPath() with namespaces |
jcraw62
Replies: 10 Views: 15135
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 27, 2006 11:17 am Subject: Sample from red book works (sort of) but... |
Jeff,
here is the example which after modifying it I was able to get working.
<aaa xmlns='http://mydomain.com/namespace1'
xmlns:other='http://mydomain.com/namespace2'>
<other ... |
Topic: Use of evaluateXPath() with namespaces |
jcraw62
Replies: 10 Views: 15135
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 20, 2006 9:41 am Subject: Results posted |
Jeff,
thanks but no success.
The 1st produces zero chapters. The 2nd,3rd,4th producre MB exceptions.
List chapters1= (List)msg.evaluateXPath("'/http://broker.www.njsp.org/services/brokerPubS ... |
Topic: Use of evaluateXPath() with namespaces |
jcraw62
Replies: 10 Views: 15135
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 20, 2006 9:04 am Subject: Problem revisted |
Thanks for all the input. I added Trace nodes to my flow as suggested.
Not sure why but it seems like the 1st example from Friday's posting now produces no "chapters". This is consistent with the ... |
Topic: Use of evaluateXPath() with namespaces |
jcraw62
Replies: 10 Views: 15135
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Mar 17, 2006 12:11 pm Subject: Use of evaluateXPath() with namespaces |
The following code works with the message below, i.e 2 chapters are returned:
MbMessage msg = assembly.getMessage();
List chapters= (List)msg.evaluateXPath("/pub:document/chapter");
MbElement c ... |