I have an xml document with null attributes and elements… how do i remove these from the document in webMethods
Document example
[COLOR=#008080]<?xml version="1.0"?>
<LOAN_PRODUCT_DATA>
<LOAN_FEATURES NameDocumentsDrawnInType=“” AssumabilityIndicator=“” BalloonIndicator=“1” />
<Loan_data/>
</LOAN_PRODUCT_DATA>
I want the above xml to be converted to
<?xml version="1.0"?>
<LOAN_PRODUCT_DATA>
<LOAN_FEATURES BalloonIndicator=“1” />
</LOAN_PRODUCT_DATA>
[/COLOR]
#Flow-and-Java-services#webMethods#Integration-Server-and-ESB