Per capire veramente i meccanismi interni del protocollo HTTP è possibile utilizzare TcpClient classe:
using (var client = new TcpClient("www.google.com", 80))
{
using (var stream = client.GetStream())
using (var writer = new StreamWriter(stream))
using (var reader = new StreamReader(stream))
{
writer.AutoFlush = true;
// Send request headers
writer.WriteLine("GET/HTTP/1.1");
writer.WriteLine("Host: www.google.com:80");
writer.WriteLine("Connection: close");
writer.WriteLine();
writer.WriteLine();
// Read the response from server
Console.WriteLine(reader.ReadToEnd());
}
}
Un'altra possibilità è quella di activate tracing mettendo il seguente nel tuo app.config
e usa semplicemente WebClient per eseguire una richiesta HTTP:
<configuration>
<system.diagnostics>
<sources>
<source name="System.Net" tracemode="protocolonly">
<listeners>
<add name="System.Net"/>
</listeners>
</source>
</sources>
<switches>
<add name="System.Net" value="Verbose"/>
</switches>
<sharedListeners>
<add name="System.Net"
type="System.Diagnostics.TextWriterTraceListener"
initializeData="network.log" />
</sharedListeners>
<trace autoflush="true"/>
</system.diagnostics>
</configuration>
Quindi è possibile eseguire una chiamata HTTP:
using (var client = new WebClient())
{
var result = client.DownloadString("http://www.google.com");
}
E infine analizzare il traffico di rete in network.log
file generato. WebClient
seguirà anche i reindirizzamenti HTTP.
fonte
2010-01-21 14:01:38
Fantastico esempio, non vedo l'ora di provarlo. Questo è un ottimo modo per visualizzare cosa sta succedendo. Grazie – Jeff