1
vote
3answers
39 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 …
0
votes
2answers
29 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
27 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
23 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
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
35 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 …
2
votes
1answer
122 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 …
2
votes
2answers
106 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
227 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
3answers
302 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 …
0
votes
2answers
56 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 …
0
votes
2answers
153 views
View WebRequest XML
Hello,
I'm having a strange issue - I saw a similar post on this forum, but it didn't have an answer.
Long story short, I am sending an HttpWebRequest using C# to a web service (s …
1
vote
4answers
122 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 …
0
votes
2answers
24 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 …
0
votes
4answers
38 views
WebRequest retreived site loads different then original
Hello,
I am using WebRequest to retreive a html page from the web and then displaying it using Response.Write.
The resulting page looks different from the original mostly in font …
