Sign in
Mariya Atanasova's Blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
No tags have been created or used yet.
Archive
Archives
July 2008
(1)
January 2007
(1)
November 2006
(1)
June 2006
(4)
March 2006
(1)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Mariya Atanasova's Blog
FtpWebRequest commands and how they work
Posted
over 5 years ago
by
mariya
1
Comments
Currently, the user is allowed to specify the following commands: APPE, DELE, RETR, SIZE LIST, NLST, MKD, PWD. RMD, RENAME, STOR, and STOU. This is done by setting the FtpWebRequest.Metod property to one of the values of the WebRequestMetods.Ftp.Members...
Mariya Atanasova's Blog
Forcing HttpWebRequest to use Kerberos authentication
Posted
over 6 years ago
by
mariya
0
Comments
First, let me state that I am not recommending to only use a certain type of authentication in your applcations. It is not secure to do so. However, in some cases, it is convenient to be able to do so - mainly for verification or for debugging purposes...
Mariya Atanasova's Blog
FtpWebRequest and the PWD, SIZE and MDTM methods
Posted
over 7 years ago
by
mariya
1
Comments
As you may have already noticed, the FtpResponseStream does not contain the result of PWD, SIZE and MDTM methods. You can get those from the FtpWebResponse properties To get the result of the PWD method (WebRequestMethods.Ftp.PrintWorkingDirectory...
Mariya Atanasova's Blog
Using System.Net tracing to determining if SSL connection has been established with the server
Posted
over 7 years ago
by
mariya
3
Comments
For a detailed blog article on how to use System.Net Tracing go here http://blogs.msdn.com/dgorti/archive/2005/09/18/471003.aspx Please note that this feature is available in versions of the .Net Framework 2.0 (and above). In this concrete example...
Mariya Atanasova's Blog
RemoteEndPoint: Identifying the client from the server side
Posted
over 7 years ago
by
mariya
3
Comments
Variant 1 : When using TcpListener class for our server there are 2 ways to get the underlying client TcpClient client = listener.AcceptTcpClient(); IPEndPoint remoteEP = ( IPEndPoint ) client.Client.RemoteEndPoint; or Socket client...
Mariya Atanasova's Blog
Sending e-mail using SmtpClient and Gmail
Posted
over 7 years ago
by
mariya
11
Comments
The sample below used SmtpClient to send e-mail from your gmail account using your gmail username and password. using System; using System.Net; using System.Net.Mail; namespace GMailSample { class SimpleSmtpSend { static...
Mariya Atanasova's Blog
FtpWebRequest: Does the slash matter?
Posted
over 7 years ago
by
mariya
2
Comments
For those of you who are curious: there is indeed a difference when we use the following uris as parameters for our FtpWebRequest class: ftp://server/ParentDirectory ftp://server/ParentDirectory/ (Note the slash at the end) Let’s say we want...
Mariya Atanasova's Blog
Changing to the root directory with FtpWebRequest
Posted
over 7 years ago
by
mariya
8
Comments
Many customers ask us how they can use the CWD command with our FtpWebRequest. The answer is: you cannot use the command directly, but you can modify the uri parameter to achieve the same result. Let's say you're using the following format: String...
Page 1 of 1 (8 items)