Hi All,
Through BizTalk I am getting the following xml file as output :
<?xml version="1.0" encoding="utf-8"?>
<ns0:Employess xmlns:ns0="http://MyProject.Test">
<Employee>
<FirstName> </FirstName>
<LastName>Sajwan</LastName>
</Employee>
<Employee>
<FirstName>Prakash</FirstName>
<LastName> </LastName>
</Employee>
</ns0:Employess>
Now I want to remove space from <FirstName> </FirstName> and <LastName> </LastName> element if it contains space.
I also want to remove namespace from the xml file.How it is possible ?
Could we do it in encoding stage in custom pipe