I have a web service client in C# where I take the object returned by the webservice and pass it on to the following method in order to create an xml file:
XmlSerializer s = new XmlSerializer(typeof(T));
TextWriter sw = new StreamWriter(filename);
s.Serialize(sw, obj);
sw.Close();
However, there are fields that the webservice side claims to send while the resulting xml does not contain these (IU have done 'update service' in VS...). Is there a way to get a dump of the data that the webclient receives at a lower level?