A response is a general term for a message which is sent as an answer for previously made request.

learn more… | top users | synonyms

0
votes
0answers
9 views

324 ERR_EMPTY_RESPONSE when streaming dynamically generated file with Flask

I have a Flask app that works great on my local machine. My app does the following: Gets some data from MySQL Renders a template with that data to make a chunk of text (does not write to disk) ...
0
votes
0answers
12 views

vb6 http get method returns the same response

I have code: ... MsgBox GetHTMLSource("http://...par1=" & 1 & "&par2=" & 2) ... Function GetHTMLSource(ByVal sURL As String) As String Dim xmlHttp As Object Set xmlHttp = ...
0
votes
0answers
7 views

How to get the content of this xml soap response in variables in php?

This is my code. Im a novice. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
12 views

Cakephp response object routing?

I am using Cake 2.3 I have an app that allows users to add products and upload files associated with that product. I have encountered a problem with using response objects, as seen here: ...
0
votes
0answers
11 views

google adwords php soap response is null

I have a problem with my google adwords api. I do a request and i get a null response. I'm using v201209 my code: $user = new AdWordsUser(NULL, $email, $password, $developerToken, ...
0
votes
1answer
33 views

wso2 bpel appending two or more responses to single output variable?

consider i have two responses in XML. i need to append two XML responses and map that appended XML to output variable. response1: <response1>abc</response1> response2: ...
-2
votes
0answers
7 views

Gabor filter AM FM Response [closed]

In a 2D Gabor Filter, There is a correspondence like: Increasing/Decreasing the amplitude -> something changes to the spatial response & the frequency response Increasing/Decreasing the ...
0
votes
1answer
28 views

Respond with javascript to an HTML request?

Is it possible to respond to an HTML request with javascript? By this I mean that I don't want the page to be refreshed and plus execute some javascript code. I wonder if this is possible by changing ...
0
votes
0answers
11 views

Error while fetching user profile from facebook api

I am integrating Facebook with my application. However, i succeed to log-in user but when i try to fetch user profile data; it shows following error. {"error": {"message":"(#10) Application does not ...
-6
votes
0answers
17 views

ANDROID JAVA; HTTPS send data within the url, recieve JSON response [closed]

I'm programming in java for android a piece of code that submits data directly to a https server through the url: ...
0
votes
1answer
21 views

Parsing Json to handle and direct a user to view controller. Objective C

I have a Login screen and I POST username and password to a login page. The webservice gives me 2 responses if the Login user details are correct I get a response of back from the request. ...
0
votes
1answer
25 views

Return generated pdf using spring MVC

I am using Spring MVC .I have to write a service that would take input from the request body, add the data to the pdf and returns the pdf file to the browser. The pdf document is generated using ...
0
votes
0answers
34 views

Response.Write on shared hosting

On my asp.net site, I build about 2-3 MB csv file and then try to send it as Response, so I do: StringBuilder sb = new StringBuilder(); sb.AppendLine("Name\tType\tNumber\tStatus"); ...
0
votes
0answers
23 views

Best data structure for dealing with asynchronous request and response?

I'm a newbie at Java. I'm dealing with a proprietary data-warehousing system which can only communicate through it's own proprietary API. To insert data into the system using the API we have to use ...
0
votes
1answer
20 views

Swiftmailer sending just one email

I have a form which sends the forms contents to an email address, but I now also want to send a response to the email address filled in the form, I tried many different things but only one email gets ...
0
votes
2answers
44 views

Issue in json request response, getting blank response(SOLVED by using ASIHTTP Library)

I am stuck with an issue in simple request response in iOS, I am getting blank response in request a url with one post parameter, where the url as it is perfectly working in android and webbrowser ...
0
votes
1answer
35 views

C# Windows Azure Mobile Services - Get response from server after insert

I try to insert an object into a table on windows azure mobile services and get the "request.response". But I have no real idea of how do that. Update : I catch something when I did something worng ...
1
vote
3answers
54 views

Get image src from ajax response

I'm trying to change an image source with an image path I'm getting from a php handler with ajax. What I'm catching is: "img/blah.jpg" This is my ajax: $('.name').click( function() { //var e = ...
1
vote
1answer
36 views

Google App Engine: Response “Content-Length” header is always 0

I followed the Google App Engine tutorial and I'm having a bit of trouble with adding content to the response object in the guestbook class. class Guestbook(webapp2.RequestHandler): def post(self): ...
0
votes
1answer
26 views

http response coming back obfuscated

I am making a call to a clients api, and it comes back like this "user_firstname": "à¸à¸£à¸±à¸à¸à¸²à¸à¸´", "user_lastname": "ศรีà" I have no idea what to do with this. I have tried every kind ...
0
votes
0answers
12 views

Facebook Ad Campaign Budget Update Fails

We are able to update ad campaign name using Facebook Ads API, but when we are trying to update any budget for the same campaign, we are getting "User request limit reached" error. What may be the ...
0
votes
1answer
40 views

Passing servlet response to servlet request without client — needed for Java SSO (Single-Sign-On) authentication

Note: This question is specifically for Java but I suppose it can apply to nearly any server-side language. I have a login page with a form that submits to an application's servlet for ...
0
votes
0answers
15 views

Closing a Window after Writing File to Response

i have some problems with my window-controller, after clicking the save button the window should close, but it doesnt. i dont know whats is wrong with code. Hier is my c# code protected void ...
0
votes
1answer
33 views

Can someone tell me why I am not getting a response to MSXML2.ServerXMLHTTP.6.0 in classic asp?

Can someone tell me why I am not getting a response? <% RssURL = "https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=nrcGOV" Set xmlHttp = ...
0
votes
1answer
27 views

dojo.xhrPost server response

I get my server response using dojo xhrPost but I get back the whole site. How can I get only a part of response let's say one div's content. function ajaxrefresh() { dojo.xhrPost({ // ...
1
vote
1answer
99 views

JQuery AJAX call throws Access-Control-Allow-Origin Error

I'm working on a project where after using $.ajax to make a GET request, I receive an Access-Control-Allow-Origin error. However, the GET request is sent to the server and the response is the ...
0
votes
0answers
19 views

about Jquery and fushioncharts and ie

I have a question with javascript, this is the index_main.asp <frameset rows="*" cols="25%,75%" id="body1" frameborder="NO" border="0" name="TopMain"> <frame name="Left" ...
0
votes
0answers
54 views

file download using C# and ASP, issue in mobile web browser testing

I am trying to build a web page that downloads a video file, its working but I have issues in my android smartphone. having 2 forms: Index and frmDownloadFile Index.aspx public partial class ...
0
votes
1answer
40 views

KSOAP2 Handling complex response (vector)

I'm struggeling on getting a complex type (list) out of my response for three days now, but always getting a ClassCastException D/SOAPEnvelope(1552): Error: java.lang.ClassCastException: ...
0
votes
1answer
21 views

Remotipart getting ajax response

i am using Remotipart to upload files. The Rails-Controller handles the file but i cant figure out how to get the following ajax response. Here is my js code. $file.children(".description").html( ...
0
votes
1answer
87 views

how to get the size of chunk in http response using java if transfer encoding is chunked

How to know the size of the chunk of HTTP response if transfer encoding is chunked.I am unable to get the logic. Please help me.And provide me some sample java code to get the size of chunk.I read in ...
0
votes
1answer
144 views

Unable to scrape website: URL returned a bad HTTP response code

I noticed that this has been asked before, but no one else has yet to receive an answer, so I'll try my best to ask too. In the last several months, my Wordpress website, http://geekvision.tv/ , has ...
0
votes
1answer
35 views

Null response from salesforce soap api create call

I have inherited some php salesforce api code that is mostly working. The basic task is to sync information between salesforce and a website. I have a cron job that pulls everything necessary from ...
1
vote
0answers
36 views

Unable to decode content with header X-Content-Type-Options: nosniff java

here is my code to get the capcha html but im getting the response which is totally not understandable, can anyone help me? when i run this below code, im getting the output printed in different ...
0
votes
1answer
33 views

REST Response - What's “expected” in an HTML response vs JSON or XML

General question re. what's "expected" when sending an HTML response vs JSON or XML for example for the same data. Say I've got an array of USER information. With JSON or XML I'd just convert that ...
1
vote
1answer
43 views

How o identify Internal server error motivations from asp in TIdHttp using Delphi 7

That´s a simple question, When I receive a Internal Server Error, from HTTP protocol, running a ASP script for example I receive the motivations for that error. On ASP I receive the line where the ...
0
votes
0answers
83 views

Android: EOFException on empty response

I'm using the following code. (ServiceResponse is an object just to wrap the response) protected ServiceResponse executeHttpPostRequest(URL url, Map<String, String> parameters) throws ...
0
votes
0answers
7 views

Web Services response

Is it a good practice for returning request information along with the web services response? Is there any recommendation for keeping the response short i.e. avoiding redundant tags in the xml ...
0
votes
4answers
61 views

Does a http response parser exist in C#?

{"sentences":[{"trans":"událost","orig":"event","translit":"","src_translit":""}],"dict":[{"pos":"podstatné jméno","terms":["událost","případ","příhoda","soutěž","sportovní ...
2
votes
2answers
96 views

Express/Node.js : Render custom javascript as response

In my application, I need to provide an API (something like the Google Maps javascript API), through which I can send some custom javascript (with some session and request related information) as the ...
0
votes
1answer
22 views

LoadRunner picking up 3 values in xml response

Having a response to my request loooking like this: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns3:hentDokumentForventningerResponse ...
0
votes
0answers
30 views

Hotels tripadvisor tripAdvisorReviewCount from expedia API

i am calling Expedia serviceClient.getList(serviceRequest); response returns everything about hotel expect tripAdvisorReviewCount.it always return 0 for tripAdvisorReviewCount field.According ...
0
votes
2answers
34 views

Strange JSON response (“ ”=> ,) in rails app

I'm getting a json response from the forecast.io api with JSON.parse(open("https://api.forecast.io/forecast/api-key/latitude,longitude").read) And it looks like this {"latitude"=>58.5942, ...
0
votes
2answers
40 views

Cant process SOAP response

I have this code: SOAPConnectionFactory sfc = SOAPConnectionFactory.newInstance(); SOAPConnection connection = sfc.createConnection(); MessageFactory mf = ...
0
votes
0answers
29 views

How can I check if somebody answers my call in Android

I can call some to with this code: private void makePhoneCall(String number) { try { Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:" + ...
0
votes
0answers
21 views

Google chrome doesn't capture the response header when the console window is closed

I've been working on this task for two weeks now and it's really frustrating me that when I fix one thing then just another error pops out. I have to put a lot of context here so anyone reading the ...
0
votes
0answers
63 views

Java - Changing Servlet Response from Filter

I'm trying to append a certain string to every response that is sent back to the client. For this, I use a filter which looks as follows: public class OutFilter implements Filter { @Override ...
1
vote
0answers
99 views

Android consuming RESTful WCF webservice

I'm trying make a request to a RESTful WCF webservice with two methods, but I'm having problem to access the method with a complex type parameter, its return a HTML formated error message instead a ...
0
votes
1answer
53 views

How to access error response body with AngularJS

my head is spinning cause of the following issue. I'm accessing my webservice (running on my localhost:4434) with AngularJS and if something goes wrong, the webservice sends a response 400 containing ...
0
votes
1answer
36 views

How AWS Load balancer affects response time?

i am implementing some api for Real Time Bidding, it requiers me to implement an http server. but to keep it running i have to respond within 100ms, it also can get up to 50,000 requests per second so ...

1 2 3 4 5 29