when I create XML for web service in php I return send array to SOAP UI, but SOAP UI create reference in XML automatically
e.g
<s:something name='test' id='ref1'>
<s:something name='h1' />
<s:something name='h2' />
</s:something>
for next same XML
<s:something name='test' href='#ref1'>
what I want is
<s:something name='test'>
<s:something name='h1' />
<s:something name='h2' />
</s:something>
<s:something name='test'>
<s:something name='h1' />
<s:something name='h2' />
</s:something>
I found that it is not an issue…it was automatically giving id=’ref1′ to the element which is repeating….so when href=’#ref1′ comes it means it has to refer from id=’ref1′ element