hi,
I am getting Xml from third Party.(Working in C#)
After Removing Special characters from xml I send it to WCF Method Using Jquery Ajax method.
But i am Unable to make hit to service method for some user Xml.
special character i remove :
str = str.Replace("\"", """);
str = str.Replace("&", "&");
str = str.Replace("<", "<");
str = str.Replace(">", ">");
str = str.Replace("'", "'");
Can anybody suggest what thing i am missing.????
...
Go to the complete details ...