Do more with
namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
{
var xmlFile = args[0]; // File to post
var webClient = new System.Net.WebClient();
webClient.UploadFile("http://www.someserver.com/", "POST", xmlFile);
}
}
}
Premium Content
You need an Expert Office subscription to comment.Start Free Trial