0
votes
2answers
44 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
57 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 …
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....
1
vote
3answers
106 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
1answer
43 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
42 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#
0
votes
2answers
35 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 …
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 …
1
vote
2answers
50 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
2answers
28 views
Returning value from AJAX request in a global variable
Hi all,
Sorry if this question is duplicated but I couldn't solve my problem from other solutions.
I've got this code in a sepate file included in my main index:
var getSuggest …
2
votes
2answers
134 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 …
0
votes
2answers
72 views
IIS/Cache problem?
I have a program that checks if a file is present every 3 seconds, using webrequest and webresponse. If that file is present it does something if not, ect, that part works fine. I …
2
votes
1answer
145 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
1answer
51 views
SoapExtensions are used only for ASP.NET
Hello,
I'm trying to implement a SoapExtension for log purposes (print the xml soap request) on an .NET 2.0 client application (not ASP.NET).
I first tried a simple console applica …
0
votes
2answers
292 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 …
