Questions tagged [getresponse]

139 questions
0
votes
1 answer

Cant connect to server, getResponseCode() returning-1

Hi guys I am working in a download manager projetct. I was testing some link and is working fine, however I found a problem This two links below was from emupardise, I will be using then only to show my point. If I use this code: String…
Lucas
  • 3
  • 1
0
votes
1 answer

Save results of GetResponse to XML file

I have succeffuly connected to the service using the code below but I need to save the response to the XML file results.xml. Dim xml As New System.Xml.XmlDocument() xml.Load("c:\testfile.xml") Dim req = WebRequest.Create("????") …
user2516387
  • 91
  • 2
  • 4
  • 8
0
votes
1 answer

Codenameone getResponseData

I have the following code... // register new user ConnectionRequest r = new ConnectionRequest(); r.setUrl(sUrlWebSvc); r.setPost(true); r.addArgument("Rest", "1"); // r.addArgument("Req", "Register"); // R =…
0
votes
1 answer

How do I save a string response using HttpWebRequest on Windows Phone?

Im trying to get the string response from this request: void GetRequestStreamCallback(IAsyncResult asynchronousResult) { HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState; // End the operation …
0
votes
1 answer

python http page without heads

i have to search for a specific url, through a large number of ips. I've written a script in python that checks if port its open, and then checks if the url exist using httplib, and it's working great! My problem is that i've been getting too many…
TadeoArmenta
  • 154
  • 6
  • 16
0
votes
1 answer

Autosubscribe to GetResponse on custom form

I have a custom form (not using getresponse form builder) and want to integrate GetResponse API to auto subscribe email leads. I do not want to use any of the getresponse form or landing page builders. Just want to integrate using API or something…
0
votes
1 answer

How server responds to device for GET request for updating a pass

For getting the Latest Version of a Pass, GET request to webServiceURL/version/passes/passTypeIdentifier/serialNumber. What server do to respond to this request ? This is code I use: if (strtoupper($_SERVER['REQUEST_METHOD']) === "GET" &&…
malinchhan
  • 767
  • 2
  • 8
  • 28
0
votes
0 answers

Error 404 while executing GetRequest() for a listing directory on FTP with proxy

I can tell you in advance that my URL is ok. Recently we've moved our server applications and the urrent systems have a nice proxy. So, i think that the proxy is being the problem, but no idea in how to solve, the most strange thing is, with…
0
votes
1 answer

C# httpwebrequest vs browser delay with google distancematrix

When I issue the GetResponse under .Net 4.0, Windows 7 64bit for this The response time is about 30 seconds. If I usse the same call with IE9 or Firefox, the response time is almost immediate. the C# code is ... var webRequest =…
BedfordNYGuy
  • 383
  • 2
  • 9
0
votes
1 answer

webrequest getresponse invalid url program hangs

I have some problem with my webrequest... when I have an invalid url, my program hangs :/ I read on the internet that it has something to do with GetResponse and I have to use BeginGetResponse (async) ? I tried various code with async, but does not…
keno
  • 93
  • 3
  • 11
0
votes
1 answer

PHP GetResponse API and CF7 connection

Im trying to take data from Contact Form 7 WordPress plugin and pass it with json to GetResponse API I have a php file that pull the data and send it, and its looks like this I'm getting the CF7 email of confirmation but im not getting GetResponse…
Iliya Reyzis
  • 3,618
  • 2
  • 19
  • 32
0
votes
1 answer

How to Request.GetResponse() Amazon-hosted websites

I'm trying to get a response (check if a URL exists) for a number of Amazon-hosted retail sites. Using HttpWebRequest.GetResponse(), I can get a response from Amazon's own site, however, I can't for its hosted sites - specifically…
dotnetnoob
  • 10,783
  • 20
  • 57
  • 103
0
votes
0 answers

getResponseHeader('last-modified'); does not change value

var page = 'data/appointments/App.html'; var lM; function checkModified(){ $.get(page, function(a,a,x){ var mod = x.getResponseHeader('last-modified'); alert (lM); alert…
telexper
  • 2,381
  • 8
  • 37
  • 66
0
votes
1 answer

RestClient getResponse() work on android 2.3 but not work on 4.0.4

I have this code for get data from web String LOGIN_URL = "http://www.mywebsite.com/services/login.php"; RestClient client = new RestClient(LOGIN_URL ); client.AddParam("email", tbEmail.getText().toString()); …
spajdo
  • 901
  • 9
  • 20
0
votes
1 answer

Get Response data using HarLib in Java

Is anyone familiar using HarLib in Java? I'm trying to get the "response" data from a .HAR file and output it to screen. There is a getResponse() method in the HarEntry class, however I'm not sure how to implement it based on the example on the main…
Stray C.
  • 1
  • 1
  • 2
1 2 3
9
10