Re: [ADVANCED-DOTNET] HttpWebRequest Question

2002-07-10 Thread Jeff Roberts
Chris, I have the file in a byte array and want to write to a web server ! Is there any other types of PUT's for this ? thank you You can read messages from the Advanced DOTNET archive, unsubscribe from Advanced DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [ADVANCED-DOTNET] HttpWebRequest Question

2002-07-10 Thread Christopher Dix
Jeff Roberts wrote: > Is it possible to write/overwrite a file on a web server with > the HttpWebRequest Class ? I am currently using > HttpWebRequest to read a file from a web site and need to > know if I can also write the file, given I have permission to > do so. I know I can't seek, but can

Re: [ADVANCED-DOTNET] HttpWebRequest Question

2002-07-10 Thread Ivan Zderadička
erty, the usage depends on authentication scheme used, you can also directly set required headers in the request using Headers collection property. Regards Ivan -Original Message- From: Jeff Roberts [mailto:[EMAIL PROTECTED]] Sent: 9. července 2002 16:25 To: [EMAIL PROTECTED] Subject: [

Re: [ADVANCED-DOTNET] HttpWebRequest Question

2002-07-10 Thread Csaba Gero
the file. After that you can call GetRequestStream() and write the file to the returned stream. Csaba -Original Message- From: Jeff Roberts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 09, 2002 4:25 PM To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET] HttpWebRequest Question Is it possibl

[ADVANCED-DOTNET] HttpWebRequest Question

2002-07-09 Thread Jeff Roberts
Is it possible to write/overwrite a file on a web server with the HttpWebRequest Class ? I am currently using HttpWebRequest to read a file from a web site and need to know if I can also write the file, given I have permission to do so. I know I can't seek, but can I write ? Is there any way