Tagged Questions

0
votes
2answers
46 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. …
0
votes
3answers
781 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 …
1
vote
2answers
63 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 …
4
votes
5answers
3k views

Is WebRequest The Right C# Tool For Interacting With Websites?

I'm writing a small tool in C# which will need to send and receive data to/from a website using POST and json formatting. I've never done anything like this before in C# (or any language really) so …
3
votes
4answers
1k views

C#: Downloading a URL with timeout

What's the best way to do it in .NET? I always forget what I need to Dispose() (or wrap with using). EDIT: after a long time using WebRequest, I found out about customizing WebClient. Much better.
1
vote
3answers
119 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
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
1answer
16 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 …
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.GetResponse throws an …
1
vote
1answer
48 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 …
1
vote
0answers
44 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#
7
votes
4answers
622 views

Mocking WebResponse’s from a WebRequest

I have finally started messing around with creating some apps that work with RESTful web interfaces, however, I am concerned that I am hammering their servers every time I hit F5 to run a series of …
1
vote
4answers
140 views

HttpWebRequest to URL with dot at the end

Hi, when i do a GET with WebRequest.Create("http://abc/test.") i get 404 because according to fiddler the trailing dot gets stripped away by .NET and the web server needs the dot. how can i prevent …
0
votes
2answers
178 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
56 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 …

1 2 3 4 next
15 30 50 per page