Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
6k views

What exactly is the 'Waiting for response' msg on Firebug's Net tab?

As sou can see from the screenshot most of the time spent is waiting for a server response (thats the purple coloured area). What exactly is that server response time? Is the server too slow? Is my ...
3
votes
0answers
68 views

How to handle iPhone application crash issue due http response code is 404? [closed]

How to handle the server response in iPhone application,if server response is not 200.I am facing the application crash issue.In the wireshark tool testing team is able to see that server response ...
2
votes
1answer
55 views

How to localize server-side responses on the client side in iphone programming?

I am using Chinese in my app. I have made a Localizable.string file in English and one in Chinese. I am doing it OK, and everything is working fine, but there are some string responses from the ...
2
votes
1answer
122 views

Simple node.js server to return success or error

This is should be pretty simple, but I can't seem to get it to work as I intended. I just want a client submit a form with an email address, and node.js server looks up db and return success or error ...
2
votes
1answer
233 views

How to interpret server response for in-App purchase verifying receipt request?

I am using in App purchases in my application. I am sending a request to the server for verifying the transaction receipt for the purchased product using the following method: ...
2
votes
3answers
1k views

Checking FTP status codes with a PHP script

I have a script that checks responses from HTTP servers using the PEAR HTTP classes. However, I've recently found that the script fails on FTP servers (and probably anything that's not HTTP or HTTPS). ...
1
vote
2answers
132 views

How to get the status after using HttpServletResponse.setStatus

I have a Http Upload Servlet (http-post) and a user can upload an XML file along with some form fields. I have put on some validation checks to see if there was a bad request (eg. null value). So I ...
0
votes
1answer
25 views

Android Server Response [closed]

How can i search in a php server. How to parse the response or results from the server? How to display the search results one by one and how can i select each result seperately.
0
votes
3answers
42 views

Is there an easy way to parse this text & xml server response with PHP?

I'm using PHP and since this server response is not pure XML I've been struggling with trying to turn the responses into variables/arrays for use. I'm only concerned with the variable contained in ...
0
votes
3answers
104 views

Handle Server Response in Android

In my application I am fetching data using webservices.But when the server is down or not in active state it gives response code 500 and my application force close. Please guide me how to handle this ...
0
votes
2answers
230 views

My AJAX call is not returning anything but isn't failing either

I have this html: <input type="text" id="text"/> <input type="button" id="submit" value="Submit" /> <div id="twitter_update_list"> </div> and this javascript: var xmlHttp; ...