HTTP Response is a message within a request/response sequence, according to HTTP specification. May also refer an HttpResponse class in software frameworks and libraries that automates relevant functionality

learn more… | top users | synonyms

0
votes
1answer
10 views

Reading and Writing to ChannelBuffer is not working properly

I want to read the binary data stored in the ChannelBuffer object contained in an HttpResponse. I have tried with the below code to read and save from the ChannelBuffer, but it is not working. What is ...
0
votes
3answers
24 views

Error in HttpURLConnection - openConnection

I am having the following java function for check the website responce code: URL u = null; try { u = new URL("http://bforball.com"); HttpURLConnection huc = ( HttpURLConnection ) ...
0
votes
1answer
21 views

The Source Attachment Does Not Contain DefaultRequestDirector.class Android

I am newbie on Android and I am developing an app that connects a php page. However, when I debug my code it gives a Source not found Last time it gave it for DefaulRequestDirector.class; however, it ...
0
votes
3answers
34 views

Android URL access crashes [duplicate]

I am trying to access a URL with my Android App, but i keep getting an error. I tried with a new blank project also, to check if i ain't writing the program properly. The code is the following: ...
0
votes
0answers
35 views

Codeigniter rest issue with backbone

I just started using rest library wrote by Phil Sturgeon. I started using it by writing some simple examples. I short of get 'post' and 'get' work, but not for put and delete. I have some questions ...
0
votes
0answers
11 views

How do you add headers to httpcontext in unit testing?

I am working with a method that generates an HTMLContext for use in my tests. Whenever I try to add headers to the httpresponse object, i get the error "This operation requires IIS integrated pipeline ...
0
votes
2answers
54 views

click-spam protection with Jquery and Ajax?

I want to make a validation (click-spam-protection), if a user clicks on too much links in some seconds. Lets say I want to restrict one href button of the same type to activate a counter that ...
0
votes
1answer
26 views

Remote post to webpage from windows service

NOTE: This question has been edited what was originally asked I'm developing a windows service that, daily, queries a web service for data, compares that to currently existing data and then posts ...
0
votes
1answer
73 views

sending data in Post Method from Android Client to Java Servlet

I implement client server code with java android. the problem is I couldn't be able to connect to servlet. Where is my problem? Here is my code: android code: .... HttpClient client=new ...
2
votes
1answer
34 views

XlsxWriter object save as http response to create download in Django

XlsxWriter object save as http response to create download in Django, Pls help me thanks in advance.
1
vote
2answers
44 views

Sending Excel file to User working with Chrome and IE but not firefox(Get file with no extension)

I am generating and excel file using the OpenXML library and sending it to the user. It works very well with Chrome and IE but when i tried it with Firefox i came upon a problem. When saving the file ...
1
vote
1answer
62 views

Wrong data returned from NSURLResponse when trying to invoke web service method

im rather new at this.. i got a tomcat server running and i have a web service method there that when invoked, returns a string. when i try to use NSOperationQueue *backgroundQueue = ...
1
vote
2answers
95 views

Struts2 ActionContext and Response for chaining actions

I have a pretty complex problem about struts2 chaining actions, thanks in advance for your patience reading my problem. I will try my best to describe it clearly. Below is my struts.xml: <?xml ...
0
votes
3answers
71 views

PrintWriter output to jsp page inside body tag

This is the code to print to my jsp page. However I have other code in the page. When I call this function I want it to print the message right after where it is called. I can't check for sure because ...
0
votes
3answers
49 views

Response.Redirect from a page inside a folder of web solution?

In my solution i have a folder FIRE in which i have a page.I am using respose.redirect to handle my error to another page Error.aspx. I am writing catch (System.Exception ex) { ...
0
votes
1answer
22 views

405 (POST not allowed) HttpException when trying to apply HttpResponse.Filter

We are getting a 405 error and the following exception from IIS7 when attempting to apply a ResponseStreamFilter to HttpResponse.Filter: HttpException: The HTTP verb POST used to access path ...
0
votes
1answer
80 views

Access token exception instagram with working access token?

I'm having trouble with an HTTP Request from my scala code. https://api.instagram.com/v1/tags/training?access_token=workingaccesstoken gives ...
0
votes
0answers
20 views

curl: 200 response after timecondition met, but no data

I am trying to query the server if the file I'd like has not been renewed. For that I am (beside etag) trying to use CURLOPT_TIMECONDITION. Like so: ...
0
votes
1answer
52 views

Why does HttpURLConnection.getResponseCode() throws IOException?

I can see that getResponseCode() method is just a getter Method that returns the statusCode already set by the a connect action that happened before. So in this context why does it throw an ...
1
vote
1answer
35 views

PDF files generated in Azure VM downloaded as 0 byte files

I'm generating PDF files using Prince XML in an Azure VM (by a web role) using C#, MVC3 and .NET 3.5. Action methods that are tagged with a PdfFilter() attribute forward the HTML to Prince XML; once ...
0
votes
0answers
30 views

just getting a partial of result from server, httpGet, android,java

I am learning Anroid now and I am working on how to fire a request and receive a result from server. What I am doing is // Button Click Event btnLogin.setOnClickListener(new ...
0
votes
1answer
25 views

HttpResponse not working

In the below code the execution is not reaching beyond HttpResponse statement.The Toast before it is displayed but not the one after it.There is no exception.Can anyone tell me why? I am getting this ...
3
votes
1answer
63 views

How Does Spring MVC handle responses

I use Spring MVC and webflow. There are time where I am obliged to write to the response object directly. Specifically I have a keep-alive class that continuously sends an empty response back to the ...
1
vote
1answer
30 views

What does view-response.js in Chrome do?

When loading a page (200 OK response header), I received an error in the HTTP response add-on for Firefox: [Exception... "File error: Not found" nsresult: "0x80520012 (NS_ERROR_FILE_NOT_FOUND)" ...
0
votes
0answers
30 views

Unexpected HEAD request error in NodeJS

I have a node.js server and client using node.js api, and when I was trying to send a HEAD request to the server, got an error says { [Error: socket hang up] code: 'ECONNRESET' } Meanwhile, a PUT ...
0
votes
2answers
36 views

How to detect where server closed the connection? [duplicate]

There is an error on server side code ( PHP ), I know the file but it's extremely hard to debug as there are no any error messages. All what I see is response header returns: Connection:close. No logs ...
1
vote
2answers
40 views

java parse_str alternative - for http response [duplicate]

Facebook server side login sends response in the format: access_token=USER_ACCESS_TOKEN&expires=NUMBER_OF_SECONDS_UNTIL_TOKEN_EXPIRES Is there a way to parse this conveniently in Java, other ...
0
votes
2answers
40 views

Stop downloading the data in nodejs request

How can we stop the remaining response from a server - For eg. http.get(requestOptions, function(response){ //Log the file size; console.log('File Size:', response.headers['content-length']); // ...
0
votes
4answers
46 views

error posting data to webservice

I want to post data using JSON. But i am not able to achieve this. This is my java code: package com.bandapp; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import ...
1
vote
1answer
45 views

Klarna checkout returning http_status_code 500 Internal Server Error in response

I am trying to implement klarna checkout using the codes provided by them here. Implementing the process as is directed by this link -> https://docs.klarna.com/en/getting-started I am using the ...
2
votes
0answers
44 views

with servicestack how can i prevent cookies being added to the response?

I can remove the cookies after the fact, with this: public override void Configure(Funq.Container container) { ResponseFilters.Add((req, res, dto) => { ...
1
vote
1answer
162 views

Imgur API version 3 uploading examples?

I'm trying to add this functionality to a C# Windows app I have in development, for uploading images to Imgur. Unfortunately it has to be Imgur, as that site is the requirement. Problem is whatever ...
1
vote
3answers
42 views

How to get the response over HTTP

I am sending HTTP request. I need to save the HTTP response to that request. This is the request URL : ...
2
votes
0answers
66 views

Unable to interact with university server to fetch exam results within Android application

I am having a tough time while trying to interact with the servers of my university in order to fetch exam results within my android application. What I wanted to be done: I want to send the ...
0
votes
0answers
78 views

C# http request cookies or redirect error

I am trying to use C# code to log into a site. It has been working but than recently I can't get it to work and I can't figured out did the website changed the cookie setting or is my redirect method ...
2
votes
1answer
83 views

Spring MVC gives HTTP 406 for application/octet-stream

I am using Spring Web MVC and have written a controller that shall return binary data to a plugin in a web-page that show 3D content. This plugin uses STK files for it's models, so I have set-up my ...
0
votes
0answers
44 views

How to make Dynamic buttons in Android that pools data from php link on click?

I get these far. With my code I can generate dynamic buttons from one of my php scripts. Now i want those dynamic buttons to generate clickable list from my other php script. In scrip there are data ...
0
votes
0answers
32 views

How to get the raw response and URL from HttpResponseDecorator

The REST Client of HTTP Builder returns a HttpResponseDecorator. How can I get the raw response out of it (for logging purposes)? EDIT (some code might be handy): withRest(uri: domainName) { ...
0
votes
1answer
29 views

How can I stop node.js 422 (unprocessable entity) redirects showing an intermediary page

When I do this: app.post('/account', function(req, res){ // attempt to validate input and insert user into db signUpUser(req.body, function(success){ if(success){ // ...
1
vote
2answers
68 views

Django Tastypie add Content-Length header

I am quite new in Django development. I have a Resource and Model: Model class Player(models.Model): pseudo = models.CharField(max_length=32, unique=True) ModelResource class ...
1
vote
0answers
18 views

response.expectedContentLength allway return -1

i have a connection use NSURLConnection, i want to draw a progress for this connection but when i try to print current received data and total data length, something went wrong ...
1
vote
1answer
34 views

How to load an internet inputstream faster?

I'm developing an Android app which communicates with a web service. The webservice gets me some geometry files and because of that those files can get really really large. Because you can't wait 1-3 ...
0
votes
0answers
59 views

Ajax response text, generated by Zope, doesn't reach the client in some cases

I have a Zope/Plone server which has a browser (let's call it thebrowser) which sends signed requests to a ReSTful web service, receives XML, transforms it to HTML and delivers it to the client via ...
0
votes
1answer
64 views

How to access HttpResponse of an Asp.net page from a different Class?

I have an ASP.Net page (namely Default.aspx). On load of this page, an object of a global class (namely GlobalFunctions.cs) is created, and then a function is called. protected void Page_Load(object ...
0
votes
0answers
14 views

Web Page is clocking after streaming rtf file

I'm streaming an RTF file in a Java tapestry web application final HttpServletResponse response = cycle.getRequestContext().getResponse(); ResponseOutputStream output = new ...
1
vote
1answer
42 views

Setting the response error in authentication handler

I'm writing a Web API in using the MVC 4 Web API framework. I'm using BASIC authentication with a custom authentication message handler inheriting from DelegatingHandler. Everything is working ...
0
votes
0answers
22 views

Intent started in AsyncTask doesn't reflect variable value

I'm trying to do a username screen in an android app to prevent dup's before going on to a registration activity. The potential name is sent by httpPost and queried against the database, and the ...
0
votes
0answers
41 views

Returning entire subrequest response as real response within Nginx module

I'm developing an extension to the 'Auth Request' (http://mdounin.ru/hg/ngx_http_auth_request_module/) Nginx add-on module - a module that operates during the Nginx access phase. My extension to this ...
0
votes
2answers
85 views

Caching images returned from a web api service

No matter what I do I can't get images returned from a web api too cache, I am seeing a request to the server every time I request the image. I have tried many permiations for the header setting, ...
4
votes
2answers
108 views

Use HttpResponse to upload data in Silverlight

How to use asynchronous bidirectional binary upload and download of data in Silverlight? I need to upload my binary file to the server and then > Get the answer also as binary file from server My ...

1 2 3 4 5 18