I've a C# windows application (not asp.net) that needs to upload
simple XML files to a URL on a website.
I've tried WebClient such as
WebClient Client= new WebClient();
Client.UploadFi le(url,filePath );
but get error (405) Method not allowed.
I've got write permissions set on the remote folder. Do I need
identity impersonate=tru e?
I know how to set this in a web config in asp.net but not in a C#
windows application.
Any suggestions.
John South
WhereCanWeGo.co m
simple XML files to a URL on a website.
I've tried WebClient such as
WebClient Client= new WebClient();
Client.UploadFi le(url,filePath );
but get error (405) Method not allowed.
I've got write permissions set on the remote folder. Do I need
identity impersonate=tru e?
I know how to set this in a web config in asp.net but not in a C#
windows application.
Any suggestions.
John South
WhereCanWeGo.co m
Comment