I have worked with XSLT in the past, but never within Process Integration. I have the below xml and am attempting to grab the conversationId out of the xml for my mapping. But due to the namespace, ns0:, I am having trouble getting this value. In my prior work with XSLT, I never worked with namespaces. Any help would be greatly appreciated.
XML
<?xml version="1.0" encoding="UTF-8"?>
http://integration.nexuse2e.org/BackendDeliveryInterface/">
<choreographyId/>
<businessPartnerId/>
<actionId/>
<conversationId>123456</conversationId>
<messageId/>
<payload>
</ns0:processInboundMessage>
value-of select
<xsl:value-of select="ns0:processInboundMessage/ns0:conversationId"/>
I've tried with the namespace, without, still can't retrieve the value. Unfortunately, I have to have the namespace in there.
Thanks!