When running an ASP.NET application under fastcgi-mono-server4 under
Windows 7,
any attempt of the server to make HTTP requests fail (EG: HttpWebRequest).
The requests seems to time out without any outgoing traffic (as seen via
Fiddler).
Everything else works fine.  Tested under NGINX and Apache.
XSP4 does not exhibit this problem, but Mod_mono does also.

TEST CODE:

protected void Page_Load(object sender, EventArgs e)
{
  HttpWebRequest imageRequest =
(HttpWebRequest)WebRequest.Create("http://www.google.com/";);
  WebResponse webResponse = imageRequest.GetResponse();
  Response.Write(webResponse.ContentLength);
}


Any thoughts / suggestions?
_______________________________________________
Mono-aspnet-list mailing list
Mono-aspnet-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-aspnet-list

Reply via email to