response

C++ libcurl http response code issues

Hello everyone, This issue/quirk/side-effect is driving me crazy. Near the bottom the code, the response code of the HTTP interaction is passed by reference into responseCode_. However it often comes out as 0 even though the site can otherwise be accessed, and returns too quickly to be a timeout... All variables are defined, the code b...

Synchronize an array with javascript

Hello, I wonder if there is a way to synchronize objects/methods in JavaScript in a similar way that you do it in Java. I am developing an interface for the new WebSocket in html5 and need a way to match outgoing requests with incoming responses. Therefor I'm saving the requests (with an unique id) in an array on the client side and then...

WCF wrap variable complex types for REST

Hey all, I'm implementing a lo-REST API and looking to return either XML or JSON. Building it in .NET WCF. I like the design of both Flickr and Last FM APIs which wrap their variable complex types in a simple response ala: <lfm status="ok"> <user> <name>RJ</name> <realname>Richard Jones </realname> <country>UK</countr...

unable to get response headers using apache httpclient 3.0.1

Hello, I have created a sample application in Java with sending POST request to a asp.net web page "mypage.aspx". This apsx page sending back some response and 1 headers to check its valid or not. Aspx page set headers like Response.AddHeader("my-source", "lmenaria.com"); In my Java program: Header[] headers = method.getResponseHe...

django calling no request view function in template

Hello, I am making some view functions to calculate the rank of one user in a community. My problem is that i want to display the rank afferent to each user, in its profile, and i don't know how, since i don;t have a request and a render_to_response (cause i guessed they are not needed) my code: def calculate_questions_vote(request): ...

Get Server IP address from JSP Request/session object

How can I get the IP address of the server from a JSP page? Right now, all I can do is request.getLocalName(), which returns the server name, not the IP address? ...

Asp.net Download file on mobile platform

Hi all, I've some files stored in a SQL database. When a user visits a url with the given ID, the BLOB data is retrieved from the database to the webbrower via: Byte[] myData = b.BlobContent; Response.Clear(); Response.ContentType = "application/octet-stream"; Response.AddHeader("content-disposition", "attachment; filename=" + fileNam...

how to intercept and modify HTTP responses on server side?

Hi, I am working with a client/server application which uses HTTP, and my goal is to add new features to it. I can extend the client by hooking my own code to some specific events, but unfortunately the server is not customizable. Both client and server are in a Windows environment. My current problem is that performance is awful when ...

Get response from server with Javascript after Javascript request

Hi, My Javascript function request to a aspx page. İts Code : var xhr = ("XMLHttpRequest" in window) ? new XMLHttpRequest() : new ActiveXObject("Msxml3.XMLHTTP"); xhr.open("GET", = 'http://www.example.net/abc.aspx', true); xhr.send(""); After this Request I want to send a response back from this page and catch in client side...

Web service contains additional string tag

I am getting a web service response as below. It has additional XML tag and string tag in the response. I was not able to load this response into XMLDocument object in Dot Net. I have asked web service provider to remove those tags before sending response. But they said that this is the web service standard. Is it how web service suppose...

jquery $.get(...) one at a time

i have a page with many actions on it, which triggers with $.get, but i want to run one at a time, rather then all triggering at once, that is lots of load time.. so what is the solution for me on this? well before you give answer.. i dont want to trigger based on time, i want to trigger after each request is completely done from ajax, ...

Update ASP.NET page after Excel Export.

I'm using Response.Write, Response.End to export to Excel/Word/csv. Is there a way to do this and also be able to change text on the page at the same time? For example, I have a controls within an UpdatePanel which I want to make visible/invisible. ...

Generate an e-mail to be downloaded by client and sent from their outlook account

One of the requirements for the application that I'm working on is to enable users to submit a debugging report to our helpdesk for fatal errors (much like windows error reporting). I've been told that e-mails must come from a client's mail account to prevent the helpdesk getting spammed and loads of duplicate calls raised. In order to...

Firebug error: failed to load source for localhost/folder/foo.ashx on a POST in the RESPONSE tab

Firebug 1.5.4 has been correctly displaying the response returned by my webservice in its RESPONSE tab: Console...HTML...CSS...Script...DOM...[Net] Headers....Post....[Response]....HTML But for some reason, now, instead of displaying the response, it is now showing an error message that I don't understand: Failed to load source ...

XML Parsing error not well formed. The problem is in the variable content, workaround?

Working on an API but I've run into a problem. This specific part of the response (in XML) returns a URL. Here's the error I'm getting: XML Parsing Error: not well-formed <item_to_page_url>http://cnn.com/.../?hpt=C2&amp;replytocom=11119#respond&lt;/item_to_page_url&gt; First off, I added an ellipses to shorten the length of that for...

Slow request processing in rails, 'waiting for server' message.

I have a quite big application, running from inside spree extension. Now the issue is, all requests are very slow even locally. I am getting messages like 'Waiting for localhost" or "waiting for server" in my browser status bar for 3 - 4 seconds for each request issued, before it starts execution. I can see execution time logged in log f...

Django With Apache - Double Content In Response

hi there i use an apache to run my django instances. my apache doubles the django output. so in developement i get this: my response text but on apache "production", this: my response text my response text my vhost config look like this: <VirtualHost *> ...

How to move multiple rectangles as collision response?

I'm trying to make a game (using irrlicht engine with c++) where you can trap your enemy using boxes. But I just don't get how to detect what should be moved when a collision between the user and one or more boxes is detected. Another thing is that there will also be some objects called bricks which will be able to block movements. Sinc...

Utility to simulate simple http responses

I'm doing quite a lot of work with a javascript messaging system at the moment and end up making lots of use of netcat scripts to monitor and simulate as yet unimplemented server responses. Does anyone know of a utility that can easily manage this sort of thing for prototyping purposes other than setting up a full webserver? ...

How to optimize the response time for following Oracle 10g query?

How to optimize the response time for the following query: SELECT /*+parallel */ cc.customer_id AS customer_id, cc.title1 AS title1, cc.forename1 AS forename1, cc.forename2 AS forename2, cc.surname1 AS surname1, cc.surname2 AS surname2, cc.company_flag AS company_flag,...