REMOVE-ATTRIBUTE() on XNODEREF

smani

New Member
Hi,
I need to remove attributes from an XML Node and I used REMOVE-ATTRIBUTE() method. But it doesnot work. Out of 4 attributes , it removes only 1.

w_attributes = w_child:ATTRIBUTE-NAMES.
DO j = 1 TO NUM-ENTRIES(w_attributes):
w_child:REMOVE-ATTRIBUTE(ENTRY(j,w_attributes)).
END.


Can someone help?

Thanks,
 
Back
Top