Delete elements attribute-values in XML (WSDL) file?

LiliVG

New Member
I want to in my XML (WSDL) file , Remove some of the elements.This is my WSDL file:\[code\] <wsdl:types> ... </wsdl:types> <wsdl:message> ... </wsdl:message> <wsdl:portType name="countrySoap"> <wsdl:operation name="GetCountryByCountryCode"> <wsdl:documentation>Get country name by country code</wsdl:documentation> <wsdl:input message="tns:GetCountryByCountryCodeSoapIn" /> <wsdl:output message="tns:GetCountryByCountryCodeSoapOut" /> </wsdl:operation> <wsdl:operation name="GetISD"> <wsdl:documentation>Get International Dialing Code </wsdl:documentation> <wsdl:input message="tns:GetISDSoapIn" /> <wsdl:output message="tns:GetISDSoapOut" /> </wsdl:operation> ... </wsdl:portType> ....\[/code\]Now I want to delete \[code\]<wsdl:operation name="GetISD">\[/code\] with all of the elements that it has?
 
Back
Top