I have a quick question,

lets say I have this two lines of code:

Code:
this.myWebClient.Headers.Set(HttpRequestHeader.ContentType, "text/xml");
string response = this.myWebClient.UploadString("apps/jws", "POST", xdoc.OuterXml);
xdoc and myWebClient have both been initialized.

What would beginning of the string the web client uploads to the server look like?