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

learn more… | top users | synonyms

1
vote
1answer
82 views

Symfony2 response - Clear cache headers on back button

I have an issue with clearing my cache when back button is pressed. My header information is saying i'ts loaded from cache: Status Code:200 OK (from cache) My response is set to: $response = new ...
-2
votes
1answer
76 views

jQuery/AJAX mysteries [closed]

I´m stuck with this AJAX problem I can´t get my head around. Everything seems fine, except it doesn´t work. What I´m doing is a simple jQuery.ajax GET request to my own server. Firebug and the server ...
0
votes
1answer
55 views

C# ReceiveAsync response corrupt

Adding random data into response. This happens on all sites and pages, and for each particular page these data is fixed. Example: Connection: close X-Powered-By: PHP/5.4.11 1fb4 <!DOCTYPE ...
0
votes
0answers
21 views

exec function blocks other requests during the execution

I can't get http response when a exec or system function is excuting. A specific request launch the exec function sudo find / -name toto, this take a while During the execution, the client send any ...
1
vote
1answer
84 views

Response.End() and CompleteRequest()

what is the advantage and disadvantage for each of Response.End() and CompleteRequest()? where I should and where I shouldn't use them ? I looked for this Q but I didn't get proper answer .
0
votes
0answers
88 views

Sending response back to Http Request using WCF & MSMQ

For over a week, i'm searching some information regarding the aforesaid title but didn't help. I'm totally new in WCF, worked my way up understanding the ABC's of it. Got some programs developed. My ...
0
votes
3answers
105 views

Error Parse JSON Response String Android

I have a response String from an API service like this : {"id":"login","status":"true"} and This is the way to parse Response String to get Value from Key "Status" JSONObject ...
0
votes
0answers
39 views

Why is incomingMessage.connection.remoteAddress undefined for a http.request response callback in Node.js?

When you receive a request from http.listen(), you can get the Remote Address from request.connection.remoteAddress, even though this property does not show up (??) in the Eclipse V8 debugger. ...
1
vote
2answers
441 views

Download file from gridview rowcommand

I've written out the below code to handle a file download which should occur on Gridview.RowCommand. It works in other places where I've used it (linkbutton outside of a gridview or similar control). ...
3
votes
2answers
68 views

Simple HTTP Server in C - How to response to Browser?

my server is sending a sample response header with body to a request: static char* not_found_response_template = "HTTP/1.1 404 Not Found\n" "Content-type: text/html\n" "\n" ...
0
votes
1answer
60 views

Send File to Client from UserControl behind UpdatePanel

I have a user control on an ASP.Net page (that is using Master Pages) inside an UpdatePanel. This control has several functions, including buttons. The control works fine, except for one link where ...
0
votes
2answers
83 views

node.js - socket.io index.html does not respond

If I start the server and go to localhost:4000, the server gives out the index.html. But the index.html does not load its style.css and does not connect to the server. But if I double click the local ...
0
votes
0answers
77 views

Assign response string to webbrowser control in c# for smart phone

HttpWebRequest myHttpWebRequest1 = (HttpWebRequest)WebRequest.Create("http://www.google.de"); HttpWebResponse myHttpWebResponse1 =(HttpWebResponse)myHttpWebRequest1.GetResponse(); using (Stream stream ...
0
votes
0answers
19 views

The maximum allowable request-response delay according the standard

What is the acceptable http request-response delay? I have a client-server application that takes 0.4 milliseconds as request-response delay. is this delay acceptable according to the standard?, ...
-1
votes
4answers
259 views

How to output the response HTML data by an jQuery AJAX request?

I have an online shop with a shopping cart. The cart, which is a <table>, refreshes its content after adding an article to the cart. I use jQuery's AJAX method which receives HTML ...
0
votes
2answers
243 views

response.getOutputStream() throws IllegalStateException when called for the first time

I'm trying to Download a pdf from a MySQL-DB ( I get it as a Blob, and up to that point everything works just fine. But when I try to get the ServletOutputstream to send it to the client the programm ...
0
votes
0answers
50 views

Why does Rails route require `defaults: {format: :<mimetype>}` even when using matching extension for a custom response format?

Why does a custom Rails response (eg. format.kml) require the response type to be explicitly specified in the route? (but only if the response is used in an action other than index)? I'm returning ...
0
votes
0answers
226 views

Angular.js $response async update of $scope variable

This is my first attempt at working with Angular.js after using Backbone.js for some projects. I used Yeoman to get the initial angular scaffolding setup as well as to manage various dependencies etc. ...
1
vote
0answers
26 views

JSON response for API - several each statements for jquery [duplicate]

I figured out the issue.. and I am still having issues.. here is how the JSON looks. How do I get the array from toprefs when there is no name for the different arrays? Below is the JSON: -{ ...
0
votes
1answer
159 views

Converting an image from HTTP response into byte array in Grails?

I have a Grails action inside a controller. In this action I use: def url = "http://www.somedomain.com/image/test.jpg" def requestFactory = new SimpleClientHttpRequestFactory() def request = ...
0
votes
0answers
62 views

How to write a stream-oriented servlet response filter?

I have an XSLT filter which transforms XML output from a servlet to HTML. The filter uses a CharResponseWrapper to extract the response as a string and then run it through the filter. This works fine ...
0
votes
0answers
186 views

expressj : Cant render headers after they are sent to the client

I am working on the simple login form and after login(successfully), i wish to render a list of products. But the login form itself does not get rendered. Here is what i have in app.js app.get ( ...
0
votes
1answer
73 views

Response.Flush writes HTML for page on Windows Vista, 7, 8 but not on Server 2008

I'm generating a CSV from a link on the page and sending it back to the user. I wish to maintain the page context. This code works flawlessly for IE, Chrome and Firefox on my 2008 Dev box, however ...
0
votes
1answer
51 views

Send empty soap body response from WCF operation of type void

We are recreating a webservice based on a third party WDSL using a .NET WCF service project. The client is however expecting a response for all operations even when they are of a void type. The empty ...
0
votes
0answers
54 views

Cancel navigation and call another function in c#

I'm trying to solve a problem in c# for mobile device. I have a basic web browser which has to show only one page. If I click on a link at this page and in response of it, I cancel navigation there, ...
3
votes
2answers
196 views

java.lang.IllegalStateException content - disposition

I am trying to use content - disposition to save something from server to client computer. When I click on button in jsp, dialog opens and I choose to save file. File is saved but I get this ...
1
vote
1answer
31 views

does 'response.clear()' remove content and header?

I need to know if Response.Clear() just clear content or it also remove the headers? in other word if I use Response.Clear(), do I also need to use Response.ClearHeader() or not ?
1
vote
1answer
93 views

Servlet response should be cached but isn't

I am trying to cache the servlet response but somehow it is not working (Firebug is giving me 200 OK each time i refresh the page). This is the code I added in the servlet: ...
0
votes
0answers
27 views

python socket & HTTP server response: sending non-text files via http protocol [duplicate]

Im trying to write my own little HTTP-server on python. At this moment it successfully sends to browser only text/html pages. Now i want it to sent images (favicon.ico for example), but i dont know ...
0
votes
1answer
117 views

Response string is blank in loopj for Android

Here is the code that I have used for Async Http requests using loopj. AsyncHttpClient loopjClient = new AsyncHttpClient(); PersistentCookieStore loopjCookieStore = new ...
6
votes
2answers
116 views

Node js, no response returned while using connect-memcached

Hi I'm using compoundjs and connect-memcached. Below is the content in my envirionment.js file: module.exports = function (compound) { var express = require('express'); var MemcachedStore = ...
1
vote
1answer
191 views

AJAX - get response body in success and error

I am apologize for the stupid question, but I need your help. I need to get information about response inside AJAX. $.ajax({ type: "POST", url: '/register', data : ...
0
votes
0answers
61 views

grails: cache-headers - use “cache: false” - not expected effect

Maybe I will describe briefly point by point what is the problem: I generated a new project (grails 2.2.1), I installed the plugin cache-headers. I create simple domain class: User class User { ...
0
votes
0answers
15 views

Cross domain http status header

I want to get the status response header of the any url I enter.could not find a way to do that due to single origin policy(and cross domain restrictions).. but sites like ...
0
votes
0answers
18 views

FB send widget is bound on wrong URL

I have problem with FB send button. I place button as widget on my web page with some url like http://www.address.com/page/mypage1, but after that i renamed the page from mypage1 to mypage2 so, now ...
2
votes
1answer
75 views

PHP mail() method and response callback not working

Script below is purpose to send email to registrant and response success back to page for certain action if mailed, somehow if I added-in php mail() method, the callback response would not working ...
1
vote
5answers
90 views

Node.js script would break when requesting HTTP responses from a site that does not exist

Using Node.js, when one requests a HTTP response, in optimal circumstances, the request comes back with a HTTP response. However, sometimes the request breaks because the site, for example, has a 404 ...
3
votes
3answers
318 views

UIWebView capturing the response headers

I searched/googled a lot but could not get the answer on how to capture HTTP response headers in UIWebview. Say I redirect to user to registration gateway(which is already active) in UIWebview on App ...
2
votes
2answers
207 views

how to put data in session variable and get the data in different page in vaadin?

I think I should use the application scope session to deal with that. But I do not have any experience about that. I tried different ways I got from the internet like: HttpServletRequest request; ...
-4
votes
1answer
93 views

Getting different http response in browser and in jmeter or java [closed]

Can any one suggest me why im getting different http response in jmeter/java program as compare to browser. In jemeter i had tried by adding headers but still not working sampel url ...
0
votes
1answer
84 views

Ajax Response for a JSON Data

I am using AJAX to cal my struts action class and it's storing some data in session. public String myMethod(){ session.put("DATA", JSON_STRING); //JSON formatted string return "forward"; } ...
1
vote
0answers
58 views

Return total number of rows found while paging in JAX-RS resource

I am creating a Jax-RS resource. I would like to return the total number of records in the response. I am using a named query and a header function to add a specific "Count" variable like following: ...
0
votes
1answer
65 views

Wordpress when sending a WP_Ajax_Response the response is not received

I'm searching for days now for a solution to my problem. When I send a WP_Ajax_Response the clientside is not receiving it. I checked all possible tips on internet but still I can't get it working. ...
0
votes
2answers
145 views

yii ajax response right syntax

I have action for AJAX request in YII: public function actionSomeCheck() { if($_GET['foo'] == 'bar') { echo CJSON::encode(array('status'=>'ok')); } echo ...
0
votes
2answers
37 views

A bit confused on how to respond to rail 3's remote link_to's…

I use rails remote => true on form's all the time. In jquery I use the 'ajax:before' and 'ajax:success' to pick up the events on the page and in the controller I do the following to respond to ajax ...
2
votes
2answers
163 views

Response comments added to the wrong parent document

I have a view data source that uses a view key to access documents and show them in a repeat with var "posts". within the repeat I have a document data source with var "post" that gets's the the unid ...
0
votes
2answers
358 views

ASP.NET Response.Redirect() issue not working at false parameter

Have trouble with the Response.Redirect() and getting the error: Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack I've googled and found some ...
0
votes
1answer
53 views

sql query speed. Time response to long

I have problem with my mysl query. Response time is to long. My query: SELECT SQL_CALC_FOUND_ROWS t.id, l.id_produkt_lista, z.nr_zam, k.nazwa_fv, p.nazwa, p.opis, ...
0
votes
1answer
72 views

What could cause the response body to be cut off (on client-side)?

I am writing a python language plugin for an active code generator that makes calls to our Rest API. After making many attempts to use the requests library and failing, I opted to use the much lower ...
0
votes
0answers
25 views

Is there an existing library or example for mapping django response objects to models?

I'm writing a dynamic proxy to be used as a test harness for a number of REST services. It will work by exposing endpoints for each proxied service that match the URI structure of the target, then ...

1 2 3 4 5 29