Using XPATH is my Java code.Please see.
Hi,
Why is my xpath giving null for the the flwg
Code: ( text )
<Configuration>
<Listener.Whiteboard>
<AQListener>
<Product>A</Product>
<Message.Class>XMLMessage</Message.Class>
<Database>
<URL></URL>
</Database>
</AQListener>
</Listener.Whiteboard>
</Configuration>
Java Code:
1) wbCL.initialise(m_config.getNode("/Configuration/Listener.Whiteboard"));
2)privatevoid initialise(Node confignode){
XPath xpath = XPathFactory.newInstance().newXPath();
Node listenerconfignode = (Node)xpath.evaluate("AQListener",confignode, XPathConstants.NODE);
}
Am I missing something?
Please help as this a PROD issue that has come up.
Thanks,

