1
vote
2answers
17 views
.net request.GetResponse() is giving me a ProtocolViolationException when header last-modified contains string “Fri, 20 Nov 2009 15:53:16 E. Australia Standard Time” ?
Hi,
Q1 - Is this a bug in .net, or is the webserver I'm using for testing ( Mongoose ) not server up the header field Last-Modified in the format it should?
So in C# VS2008 if I …
0
votes
2answers
28 views
HttpWebRequest.Address vs HttpWebResponse.ResponseUri
Whats the difference between these two properties?
To put into context, I am determining if a redirect occurs if our ResponseUri != RequestUri.
While a redirect occurs regardless …
1
vote
2answers
35 views
How to set response filename without forcing saveas dialog
I am returning a stream in some response setting the appropriate content-type header. The behavior i'm looking for is this:
If the browser is able to render content of the given …
0
votes
2answers
32 views
Truncated Response for Web page with 0x00 character
Hello,
I write a program wich download web pages. It works fine for most of web pages but i have found some pages where it doesn't work.
These pages contains 0x00 characters.
I' …
0
votes
2answers
123 views
Catch unhandled SocketException during asynchronous HttpWebResponse read
All the asynchronous calls to HttpWebRequest.BeginGetResponse/EndGetResponse and HttpWebResponse.GetResponseStream().BeginRead/EndRead are made from try/catch blocks, however, thes …
2
votes
2answers
42 views
Simple server and client request/response in C#
OK. I just want to know if this can be done.
I'm using C# asp.net language.
I want to send a structure to a webserver from a webpage (much like you you can pass a structure to …
0
votes
1answer
43 views
Why is the content being corrupted when writing to response stream
I'm trying to write out to the response stream - but it is failing, it is corrupting the data somehow...
I want to be able to write a stream stored somewhere else to the HttpWebRe …
0
votes
2answers
55 views
WebResponse to HttpResponseBase. Is it possible?
Hi,
In a controller action, I am manually sending a form to a remote URL using WebRequest. I successfully receive a WebResponse containing an html page to display. I would like to …
1
vote
3answers
90 views
WebClient vs. HttpWebRequst/Response
It seems to me that most of what can be accomplished with HttpWebRequst/Response can also be accomplished with WebClient class. I read somewhere that WebClient is high-level wrappe …
1
vote
2answers
76 views
How to get the webpage source code using C#
ok. I know about the WebRequest and the WebResponse objects. The problem is that i do not really want to get the source code of the webpage, i only want to check to see if the li …
0
votes
1answer
52 views
Cookies are required to use this site. HttpWebRequest/HttpWebResponse Cookies
I am using the following code to make a HttpWebRequest and render the XML from the response stream.
`
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url);
req.Accept …
0
votes
3answers
202 views
How to login to wordpress programmatically?
I need to perform some action in wordpress admin panel programmatically but can't manage how to login to Wordpress using C# and HttpWebRequest.
Here is what I do:
private void bu …
0
votes
1answer
33 views
Does HttpResponse work in a “using” block with out a explicit response.close()
Hi all,
I was trying to get clarification on this :
Method-1:
Dim request = CreateRequest(uri) //some uri
Dim response = DirectCast(request.GetResponse, HttpWebResponse)
respons …
0
votes
1answer
128 views
HttpWebRequest POST and Cookies
Hi am trying to make an application that post data to a joomla login page but the only thing i get back is cookies is not enabled.
Function GetPage(ByVal Url As String) As String
…
0
votes
5answers
474 views
Why is this WebRequest code slow?
I requested 100pages that all 404. I wrote
{
var s = DateTime.Now;
for(int i=0; i < 100;i++)
DL.CheckExist("http://google.com/lol" + i.ToString() + ".jpg"); …
