0
votes
2answers
16 views
C#: Using CookieContainer with WebClient class
I've previously used a CookieContainer with HttpWebRequest and HttpWebResponse sessions, but now, I want to use it with a WebClient. As far as I understand, there is no built-in me …
0
votes
3answers
19 views
which scenario in http transaction is occurred ?
In http transaction for request and response which scenario is occurred ?
client (web browser) open connection and send it's request and connection open (keep alive) until server …
0
votes
0answers
13 views
Using HttpWebRequest with dynamic URI causes “parameter is not valid” in Image.FromStream
I'm trying to obtain an image to encode to a WordML document. The original version of this function used files, but I needed to change it to get images created on the fly with an a …
1
vote
3answers
47 views
Why am I running out of bytes for the stream while performing an HTTP POST?
This is driving me nuts:
WebRequest request = WebRequest.Create(url);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.C …
0
votes
2answers
26 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 …
0
votes
1answer
33 views
HttpWebRequest does not include “Pragma: no-cache” header when doing a POST
I'm using an HttpWebRequest that has a CachePolicy of HttpRequestCacheLevel.Reload. When doing a GET the "Pragma: no-cache" header is in the request (as tracked through Fiddler). B …
0
votes
2answers
46 views
URL encoding issue - HttpWebRequest doesn’t work, Firefox does
I'm trying to call a rest webservice provided by a lims system (basically a chemistry lab database + interface). It was working great until some > ascii characters showed up (sp …
1
vote
3answers
25 views
HttpWebRequest.EndGetRequestStream issue in Silverlight
I am using HTTPWebRequest to post data to a webserver in Silver light 3.0, here is my code
public void MakePostRequest()
{
// Create a new HttpWebRequest obj …
0
votes
1answer
17 views
401 Error using HTTPWebRequest with Active Directory Authentication in DotNetNuke
Has anyone successfully used the System.Net.HTTPWebRequest with Active Directory authentication in a DotNetNuke website? I have looked around and found several references to HTTPWe …
2
votes
2answers
38 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 …
2
votes
5answers
122 views
HttpWebRequest not passing Credentials
I'm trying to use HTTPWebRequest to access a REST service, and am having problems passing credentials in, see code below. I've read that NetworkCredential doesn't support SSL, and …
1
vote
1answer
21 views
Set proxy data for an app
I have a few .NET apps which use the HttpWebRequest. My gut says i can create a config or manifest file and set the proxy data in there and .NET will automatically load it. But i d …
1
vote
3answers
90 views
c# HttpWebRequest POST’ing failing
So i'm trying to POST something to a webserver.
System.Net.HttpWebRequest EventReq = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create("url");
System.String Content = "i …
1
vote
2answers
73 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
27 views
HttpPostRequest Text+File in vb.net
Hi, HttpPostRequest with Files only in VB2008 is easy:
Using wc As New System.Net.WebClient()
wc.UploadFile("http://server.de/exemple.php", "c:\test.png")
End Usin …
