Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
118 views

Simple XML HttpRequest question

I'm trying to launch a request for some data from an external website w/ an API. If I copy paste the request into my web-browser it works fine. Example such as ...
2
votes
1answer
543 views

KeepAliveException when using HttpWebRequest.GetResponse

I am trying to POST an attachment to CouchDB using the HttpWebRequest. However, when I attempt "response = (HttpWebResponse)httpWebRequest.GetResponse();" I receive a WebException with the message ...
2
votes
1answer
1k views

WebRequest.GetResponse locks up?

When writing the below my code locks up on GetResponse. Why? try { WebRequest myWebRequest = WebRequest.Create(strURL); WebResponse myWebResponse = ...
1
vote
1answer
319 views

How can I get a response from a server in WP7?

I'm trying to send a request with the HttpWebRequest class on WP7, but I don't get any response... Here is my code: using System; using System.Collections.Generic; using System.Linq; using ...
1
vote
2answers
127 views

Get the Session info from Request.GetResponse()

I have an aplication that loads many asp.net pages and in every loop I need to take some information from the Sesion of the loaded page. How can I do that? example: WebRequest request = ...
1
vote
2answers
320 views

Why does SQL Server CLR procedure hang in GetResponse() call to web service

Environment: C#, .Net 3.5, Sql Server 2005 I have a method that works in a stand-alone C# console application project. It creates an XMLElement from data in the database and uses a private method to ...
1
vote
1answer
563 views

I have a question about httpConnection and getResponseCode on BlackBerry

if I try to connect jpeg Camera, this connection works right. But When I connect to a Mjpeg (jpeg-stream) Camera, I can't show "System.out.println("onreturn oncesi" + ...
0
votes
1answer
46 views

Why isn't my intellisense listing HttpWebRequest.GetResponse method?

using System; using System.Net; using System.Xml.Linq; namespace PhoneApp1 { public class ABC { //constructor public ABC() { } void abc() ...
0
votes
2answers
104 views

WebClient DownloadString Error: “The underlying connection was closed: An unexpected error occurred on a send.”

I have the following code that I'm trying to retrieve the HTML document. Not sure why it wouldn't work. Here's what I captured from Live HTTP Headers: request# POST ...
0
votes
1answer
90 views

HttpWebResponse windows service vs console application

I have some problem that I can't handle for two days. In console app this code works fine ...
0
votes
1answer
256 views

Internal 500 error in WCf service get response method

Below is my request i get a 500 internal server error at getresponse string requestData = "<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\"><s:Header><h:HeaderItem ...
0
votes
2answers
948 views

KSoap soapEnvelope bodyIn and getResponse() problem

I am using the following code to call a method by soap. It is working perfectly. private static final String SOAP_ACTION = "http://tempuri.org/GetAuthenticateUser"; private static final String ...
0
votes
1answer
296 views

Time out Exception when invoking GetResponse()

I create a WebRequest to post some HTML content to another web server. When I use normal text content, it works, but when I post HTML content I get a time out error when invoking GetResponse(). ...
0
votes
0answers
501 views

HttpWebRequest.GetResponse TIMEOUT? C# NetCf3.5

i've this code: string StreamUrl = _DestinationStreamUrl + "/" + gLoginString + "/" + Command + "?http," + StreamParam + ",csv&winmob=" + ClassGlobalClass.VersioneJack; Uri uri = new ...
0
votes
4answers
2k views

c# httpwebrequest getResponse() freezes and hangs my program

I was trying to use httpwebrequest to use a rest like service on a remote server and from the first execution itself, my code was hanging the program. Then I tried it as a console application to make ...
0
votes
1answer
1k views

HttpWebRequest.GetResponse: “The underlying connection was closed: An unexpected error occurred on a receive.”

I've written a C# Windows service (.NET Framework 3.5, C# 3.0) that posts files & HTML form information to a remote server, and then stores the XML server response in a database. Here is the main ...
0
votes
2answers
127 views

How to send email after one hour of the joining in getresponse.com

HI all, I have an account in getresponse.com I want to send emails to the members in my mailing list after one hour of their joining. Please tell me how can i do this
0
votes
1answer
101 views

How to send a mail from getresponse.com when user submits a form in my website?

I have a form. When a user submits the form after filling it, I have to send a mail to the user by using getresponse.com and also the user email should be added to my mailing list. I have an account ...
0
votes
1answer
311 views

Why does my Windows Form app timeout when repeatedly hitting IIS 7 externally?

I've got a very simple Windows Form app that hits an IIS 7 site about 2000 times in the space of a few seconds (using threads). When I run that app on the server itself, using either localhost or the ...
0
votes
0answers
376 views

HttpWebRequest gives a SocketException with error code 10050

I'm pulling my hairs off since two days now because I'm trying to download an image from a website using HttpWebRequest. When I call the method "GetResponse" of that class, I get the WebException ...
0
votes
2answers
482 views

Dynamic assembly generated on HttpWebRequest.GetResponse()

It appears our application has an assembly leak. I noticed that on any calls where a web service call is invoked using the HttpWebRequest object a dynamic assembly is loaded on the call ...
0
votes
1answer
660 views

Optimizing HttpWebResponse - GetResponse

I'm using the following lines of code to read the response of an asynchronous HttpWebRequest. This seems to be the largest amount of time spent in a particular operation. Is there anything I can ...