0
votes
1answer
13 views
Javascript WebRequest Invoke/Cache problem
Hello,
I am using ASP .Net 3.5 and trying to invoke a WebService using javascript and Sys.Net.WebRequest.
The service gets invoked for the first time and everything is fine until I try to refresh.
…
0
votes
3answers
50 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 becoming unresponsive.
…
1
vote
2answers
79 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't need to set the …
1
vote
3answers
140 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 = "id=" + Id;
…
0
votes
1answer
21 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....
2
votes
3answers
155 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 external server using …
1
vote
1answer
56 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 something like
…
0
votes
2answers
37 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.GetResponse throws an …
0
votes
2answers
22 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 process again 2 …
1
vote
0answers
55 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
193 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 (stubs were created by …
1
vote
2answers
64 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 the …
0
votes
3answers
858 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 problem??
Since we …
3
votes
4answers
207 views
Sending gzipped data in WebRequest?
I have a large amount of data (~100k) that my C# app is sending to my Apache server with mod_gzip installed. I'm attempting to gzip the data first using System.IO.Compression.GZipStream. PHP receives …
2
votes
1answer
172 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 code following his …
