I\'m trying to figure out how to properly serialize my XmlDocument and send it via a HTTPWebRequest object.
Here\'s what I have thus far:
Stream reques
I'm doing this now with UPS, instead of building the documents in XML, I just used string builders like so:
... in code:
AddNode("name", "value");
...in class:
private StringBuilder sb;
public void AddNode(string name, string value)
{
sb.Append("<" + name + ">" + value + "" + name + ">");
}
I personally think it's better, because it reduces the server load.