cancel
Showing results for 
Search instead for 
Did you mean: 

DB2 Sender Item Naming Issue

Former Member
0 Kudos

I have a call to a DB2 system with a JMS sender communication channel. The issue I am having is that when it returns a record set, there are two items on that set that have the same name.

An example of the output XML would be like this:

<ns:...>

<row>

<example/>

<something/>

<example/>

<somethingelse/>

</row>

</ns:....>

Is there anyway to make a datatype that can have both elements in it on the XI side? Because it wont let me create two elements with the same name.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hey

you mean on receiver side you want the output to be like this ?

<ns:...>

<row>

<example>something</example>

<example>somethingelse</example>

</row>

</ns:....>

if yes then just set the min occurs =max occurs =2 for <example>

Thanx

Ahmad

Former Member
0 Kudos

Sorry, that was a stupid question.... thanks anyways Ahmad. I just got confused with something else.

-Paul

Answers (0)