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

learn more… | top users | synonyms

2
votes
1answer
114 views

finding collision point of impact between spheres

in discreet time, I have 2 balls whose positions are determined by numerical method. testing for collision is just (d < r1 + r2), that's the 1st step. the 2nd step is to determine the time of ...
0
votes
0answers
106 views

how to get the time to first byte of a http response

How to get the time to first byte of a HTTP response? I got a python script but I want to calculate using java code. Can I get it using getContent() method?
0
votes
0answers
128 views

Ajax Response nsresult: “0x80004005 (NS_ERROR_FAILURE)”

I have An Error in Ajax Response [Exception... "Failure" nsresult: "0x80004005 (NS_ERROR_FAILURE)" :: line 6" data: no] while Ajax Call Response From UI
0
votes
1answer
154 views

Render content without layout from a rails form with remote => true

I got a form to mark a task as completed: <%= simple_form_for task, :html => { :class => "check-task", :id => ("task" + task.id.to_s) }, :method => :put, :remote => true do |f| ...
0
votes
2answers
154 views

Raspberry pi 'Response IndentationError'

I have been looking at a tutorial on how to send sms texts through the rasp pi. Here is the code that I have and I'm not sure why I have an error. #!/usr/bin/python ...
-1
votes
1answer
52 views

In Solr What is the use of BinaryResponseParser?

I have to use BinaryResponseParser in my application.I dont know what it is the use of BinaryResponseParser. As I searched in web I got one information that "A BinaryResponseParser that sends callback ...
1
vote
1answer
120 views

Jmeter reponse header value processing

I have REST webservice call via Jmeter. After placing the request, I am getting the response back with response headers. To view the response headers value I am using View Results Tree listener. I ...
0
votes
0answers
6 views

how can i convert a struts1 compatible class to strut2 class

public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { }
0
votes
0answers
47 views

Multiple formats of soap message using the same binding in wcf

Suppose I have 2 clients consuming my wcf service. I know that I can modify the the SOAP output response using MessageContracts. But, suppose my first client needs two fields in the SOAP response(eg: ...
0
votes
1answer
43 views

502 bad gateway from mollom captcha

My application uses Mollom captcha on some form-based pages. Suddenly, on one server, the mollom requests are taking excessively long time to return with an image and audio url's. In the meantime, the ...
0
votes
0answers
40 views

Web Service Client returns unreadable response

Getting this response from a web service, I generated a web service client in eclipse using Axis. The response from sampl jsp Result.jsp is in the form of a java.util.list thats converted to a string ...
0
votes
0answers
22 views

Handling update failure

I have a form which sends the value of a text field via ajax to a controller. The controller attempts to update the domain object but validates the user input first. Say that the validation fails (an ...
0
votes
0answers
24 views

How to make Waiting xml until success result

I want this script is gonna waiting response until success, so do not showing invalid result. This is the script... private function verifyXmlResponse($response) { if ($response === False) ...
0
votes
0answers
86 views

How to Parse SOAP Response got using kSOAP library?

I am able to get correct response of a web service using kSOAP library methods androidHttpTransport.call(SoapAction, envelope). But the response which i get from it is not in XML format. ...
3
votes
5answers
347 views

iphone delayed response from server

As soon as, I send request to the server (via NSURLConnection sendSynchronousRequest method), the server receives it in about 2 seconds, it processes and sends back response in another 3-5 seconds. ...
3
votes
2answers
429 views

jqgrid how to show server side messages

I am using jqGrid to show data in tabular format, using JSP and servlet. EDIT I want to show errors from server, when operations like insert, update, delete are performed. (datatype: "xml") JQGrid ...
0
votes
1answer
123 views

How can i get the response of a server using cURL with php?

I have a sender script and a receiver script. The sender sends an xml file , while the receiver gets it and stores it in the database. The sender looks like this : $xml = ...
0
votes
1answer
120 views

Logging Request and Response values for a WCF request in client

I am trying to log the request ad response messages in my client while the client is consuming a thirdparty WebService. Despite of many attempts the log file - MessageLog.svclog never gets created ...
1
vote
1answer
1k views

How to save jmeter Summary Report and other graphs (eg. Response Time Graph ) automatically

Each time when I run Jmeter script I have to save the summary report and graphs manually. I want them to be stored automatically. I tried to write the Summary results to file as ...
0
votes
1answer
61 views

Flask: Why can't I store a cookie without a response?

In the Flask documentation, it gives the following example code: from flask import make_response @app.route('/') def index(): resp = make_response(render_template(...)) ...
-1
votes
3answers
213 views

Unable to print integer value using Response.Write()

I have following code that prints some list. The list is printing but the value of integer variable i is not printing. <% int i = 1; try { foreach (LElement r in LElements) { ...
-1
votes
1answer
51 views

Identifying the response sending time at server end for specific requests [closed]

I want to calculate the time taken by the server to sent the response to client side. Something similar to the waiting time shown by 'Net Panel' in the Firebug Console. However i need a java side ...
0
votes
1answer
132 views

Fixing No PolicyContextHandler for key=javax.servlet.http.HttpServletResponse exception

Am using Jboss 5.1.0 In my bean, I want to get Response object and using this I want to set some values back to the cookie. Below is my code in bean, HttpServletResponse response = null; response ...
0
votes
0answers
34 views

this code results in a blank body

This bit of code seems to not actually be returning anything. no matter if it tests true or false, nor the line outside the if. there is a response. but there is no body in the response. im confusd. ...
1
vote
1answer
45 views

how to send a parameter from php to blackberry/ Java mobile app

I'm new to php. Can someone please guide me. I developing an app for blackberry. I want to send a boolean parameter from my php to java as a response to my java class's request. And then get that ...
1
vote
0answers
30 views

how to modify server relative url in response

I use http.request a URL and put the response to a new response in Nodejs. But the response of the http request has some server relative url inside, for the links, resources etc. how can I make the ...
0
votes
0answers
95 views

sample RTSP SET_PARAMETER response

I was trying to packetize and parse the different rtsp request and responses. Now I am trying with rtsp SET_PARAMETER Requests. I wanted to know how an rtsp set_parameter (success) response looks ...
0
votes
0answers
28 views

Need Message box from IE or OS when a particular string/Char appears on the webpage/s

I brows different websites on my computer. I need a message box appear when a particular string/Char appears on the webpage/s. For Example : On Any webpage if text as " Frank" found then I need a ...
1
vote
3answers
92 views

HTTP get without waiting the reponse

My app connect to a server, and when I quit the app, I have to logout from server. My problem is the response delay : my app doesn't quit enough quickly, I have to wait the response from the server ...
-1
votes
1answer
71 views

A 'HttpGet' request forces a close

I use the following code, and when I click a button it force closes. I want to read the response from a web page and show it in a messagebox or a edittext or anything else. How do I fix this problem? ...
0
votes
2answers
45 views

Timing issue of passing JSON object between functions creates error

My function below makes and AJAX call and since it is an invalid JSON object returned I have to manually parse the results into a valid JSON object (which works). The problem is when I am passing the ...
0
votes
0answers
84 views

Add Data to WebResponse

I sent some data by webrequest POST method. I know how to catch and modify the data, but I can't put it back to response and send it back to the client. I tried 4 ways to do it, but nothing worked. ...
0
votes
1answer
663 views

I can't parse a Jquery ajax JSON response

I am trying to parse the JSON results from an AJAX call, but do to the limitations of the server I am only able to get one large string. There are several elements returned, but the data I need to ...
1
vote
0answers
42 views

Simulate start writting servlet response

We have a servlet that prints a server side generated Excel file to the response output stream. The Excel file is generated by a single method which returns the complete file in a POI Workbook object. ...
1
vote
2answers
88 views

“,” in file name when downloading file

I am downloading a file from a controller. It does not work. It is because of the "," in the filename. If I remove the "," from the name it will work. Is there any work around for this. Should I do ...
0
votes
1answer
133 views

$.ajax in wordpress - Slow and not caching

I'm having troubles with a script, related to wordpress and ajax.. I think it loads really slow, and if I click a clicked link, it takes the exact same time (not caching) What I'm doing is, loading ...
0
votes
1answer
455 views

Extjs / Javascript - wait for MessageBox response before function return

I'm working on a project with Extjs, version 4.0.7 and i have a problem. I have a function which verifies data validity before save. It looks like this: ...
2
votes
1answer
60 views

JSP output ends with NullPointerException after 680 KB

I have a legacy JSP that has scriplets, I am doing testing of it in our application on Websphere 7.0.0.13. The same JSP, with exact same data works correctly in Weblogic 10.3.2. The JSP uses code to ...
1
vote
0answers
146 views

WCF Service response delay

I have a WCF Rest service, what I tested with Fiddler, cause I experienced slow performance on Android mobile devices. I'm not expert in server side, but I see server has latency before writing back ...
0
votes
1answer
747 views

JSP make http get request and get json response

I would like to make a http get request which gets a json response. In that session response I would like to store a value into my session. How is this achievable? Thanks
3
votes
0answers
166 views

Bass-less iOS audio input - fixed by launching JamUp app *first*. Why? [closed]

A user of my live-looping iOS app reported something bewildering to me recently: He's just replaced his 4th-gen iPod Touch with the new iPod Touch, and suddenly, his bass response when using my app ...
1
vote
1answer
222 views

read XML Response from server after POST data

I am sending POST data to PHP webpage from my windows app using VB.net. The code is as follows: Dim data As String = "this is a test data push" Dim wc As New WebClient ...
0
votes
1answer
228 views

Send dialog response vs Feed dialog response

I tried both "send" and "feed" dialogs directly with urls as described in documentation. Feed dialog: Everything works fine; my redirect_uri is: called as is when the "cancel" button is clicked ...
0
votes
1answer
100 views

Android get HTTP response from file stored on device

Is there any way to read http response using classes designed for web communication (for example HttpURLConnection) from file in the device memory? I need this to make easy transition to real ...
1
vote
0answers
64 views

Delayed HTTP response causes session to expire

My site requires creation of PDF reports based on user's request. Upon a request (I've used GET), my CGI generates the PDF first, only then I send the response (along with the PDF) to the browser. In ...
0
votes
1answer
145 views

Tomcat WebDAV is missing Content-Length header

I'm using Tomcat's WebDAV servlet and it seems that I can't get the header "Content-Length" when I'm issuing a PUT request. How do I get the content length of the file I'm "putting"?
2
votes
1answer
118 views

Response.StatusCode is null in nunit testing

i am writing unit test cases. I am trying to write unit test for this method but showing error. How to unit test this method in mvc3 framework and rhino mock. public ActionResult ...
0
votes
0answers
154 views

php soap response header

I am working on a webservise using PHP SOAP, I need the response from the server to look like this: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="ns1" ...
0
votes
1answer
57 views

Android Facebook SDK Response Language

Im developing an Android App which uses the new Facebook 3 SDK. I make requests to the database via FQL to get for example unread Facebook notifications. This works great but only the Language of the ...
1
vote
1answer
171 views

Send ajax request and got response with prototype.js

I try to send to httpbin request with prototype.js My code: function loadTest() { new Ajax.Request('http://httpbin.org/get', { method:'get', // success request onSuccess: ...

1 3 4 5 6 7 29