0
votes
1answer
31 views
Threading Web requests handled in Main?
I'm writing an application in C#, and I am creating multiple BackgroundWorker threads to grab information from webpages. Despite them being BackgroundWorkers, my GUI Form is becomi …
1
vote
2answers
51 views
C# maintaining session over HTTPS on the client
I need to login to a website and perform an action. The website is REST based so I can easily login by doing this (the login info is included as a querystring on the URL, so I dont …
1
vote
3answers
98 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 …
0
votes
1answer
16 views
Get Credential from App Pool for WebRequest
How do I use the App Pools Crendentials to authenticate a WebRequest?
I have a web site that call a page from itself, but I keep getting 401....
0
votes
2answers
34 views
How to get the response stream on a non 201 status code
I'm having some problem's grabbing a response stream from a request that returning status code 422.
HttpWebResponse objResponse = (HttpWebResponse)wr.GetResponse();
The wr.GetRe …
1
vote
1answer
42 views
problem with making Web Request in Silverlight
Hey,
I am making restful requests in my silverlight app, I want to get information that might be pushed to the page so i continously make the request to get the updated data, doing …
1
vote
0answers
38 views
Consuming java written webservices without adding web reference in c#
how to Consume java(apache axis) written webservices without adding web reference(in visual studio) in c#
1
vote
2answers
47 views
Obtaining information from Webpage - displaying it in an Iphone app
Is it possible to pull information from a website and display it in an iphone application?
I am looking to pull the current temperature and barometric pressure for an airport from …
0
votes
3answers
753 views
POST Data to PHP Page Using C# in Place of Form URL
Hello!
I have an C# cart application that needs to POST some data to a PHP page and redirect the user to that page to view the data. Everything is working fine! So, what is the …
0
votes
1answer
15 views
2 valid requests and then timeout
Here is my code. It iterates all files from database and try to get the length of the web file. It works only 2 times. After that it gives timeout. If i restart the application it …
2
votes
1answer
144 views
WebRequest: How to find a postal code using a WebRequest against this ContentType=”application/xhtml+xml, text/xml, text/html; charset=utf-8”?
I first posted this: HttpWebRequest: How to find a postal code at Canada Post through a WebRequest with x-www-form-enclosed?.
Following AnthonyWJones suggestions, I changed my cod …
0
votes
2answers
278 views
C# Post XML to URL not working
First of all, I am a WEB NOOB. Which probably explains this question. Anyway, when I use the web page test app to post xml to a url, everything works fine. Here is the pertinant …
2
votes
2answers
132 views
How many concurrent outbound HttpWebRequest calls can be made in ASP.NET / IIS7?
I'm writing an ASP.NET web application which will run on Windows Server 2008 (IIS7).
Each page's codebehind will need to make at least one synchronous web service call to an exter …
2
votes
3answers
361 views
HttpWebRequest or WebRequest - Resume Download ASP.NET
I would like to know if there is a way to know if a server supports resume download functionallity and if supported, how do I send a request to resume?
I was looking for a solutio …
1
vote
4answers
130 views
Write a C# script to test hundreds of domain names
A client has given me a spreadsheet of hundreds of domain names.
My task is to determine the following about each:
Which domains are connected to a web server / website.
Of thos …
