0
votes
0answers
12 views

Well formed json data doesn't shown in autocomplete ui, where did i go wrong?

There is js and php files, php for autocomplete job from mysql query as json. I check returned json data and it is well formed. Why autocomplete does'nt show returned data. Dropdown has shown empty ...
0
votes
0answers
15 views

Can't understand how to use response in POST request with autocomplete

I try to figure out querying with post in autocomplete jquery ui. Bu i'm stucked in post request and handle with response. I found exact answer to how to post data but confused about handling ...
0
votes
1answer
217 views

AFNetworking POST cannot return json data

I want to make a request with POST method and after that I want them to return the json data or NSDictionary, but they can only return the string when it succeed Like NSString *response = [operation ...
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 ...
3
votes
3answers
108 views

$_POST persistency using an AJAX call

I am trying to set up a comment system, in which when the users sends the comment it is displayed on their screen as if it were already stored on the database. My question is: what would happen if the ...
1
vote
0answers
55 views

Send a post URL and saving the unique Key from the response and send POST using Key recieved from first response

My knowledge is very limited but im at a complete loss of how to begin this or what commands to use while scripting this, I was hoping that it could be done in javascript, its sending the POST data to ...
0
votes
1answer
92 views

How can I handle, using RestKit in iOS, a RESTful server sending JSON without rootkey?

I successfully POST to a RESTful service but it is sending back the follow json response; T restkit.network:RKObjectLoader.m:202 bodyAsString: {"Successful":true,"Message":"We have received 9138 ...
0
votes
0answers
378 views

Sending SOAP request with PHP and cUrl getting no response

I am trying to a SOAP request to web service. I am not getting anything back, not an error, nothing. Here is how I am sending the post: $action = "http://tourico.com/webservices/SearchHotels"; ...
1
vote
2answers
354 views

Can't get an http JSON response in the post http request

I'm try to receive http response in the folowing code: public void httpRes (){ try { HttpClient client = new DefaultHttpClient(); String postURL = "http://validate.jsontest.com/"; ...
-3
votes
1answer
77 views

getting responses from a django view with ajax

I have an online order form and im trying to post it with ajax. But i have a problem with getting validation responses from view. I'm trying to validate min order value , payment type etc. So I need ...
0
votes
1answer
311 views

Get POST response data within Greasemonkey script

I want to get reponse data send by a Jetty Server via POST within a Greasemonkey script. New data is send every few seconds. How can I directly access the data, that is displayed in Firebug ...
0
votes
0answers
1k views

Java post XML as Request / get Xml as Response with Authentication parameters of ID, USERNAME, PASWORD

I am trying to make a java http post to with a xml and want to get the results from the URL("http://www.hotelspro.com/xf_test_3.0/hp_xml_request_parser.php?xml=xml"); Service Providers Document says ...
0
votes
1answer
266 views

post more than one data in asp.net with C# and get back the response

I'm trying to post data at "http://www.indianrail.gov.in/cgi_bin/inet_srcdest_cgi_time.cgi" using asp.net with C#. The problem is that the code that i am using is not able to post more than one data. ...
0
votes
1answer
454 views

How to get a response page after submit on csharp?

There is a page in remote web-site, where one can enter input values in forms, click a button and get a result in output form. I want to send a request to the page with filling necessary input forms, ...
0
votes
3answers
430 views

how to send POST without waiting response C#

how to send POST without waiting response in C#? How can I do it? Help please!
0
votes
0answers
216 views

Http Post Request in Android won't return appropriate data?

Okay, so I was trying to send Http Post Requests to this one site, and I sniffed the sent request with wireshark thus getting the text data from the post request of this site. I used this in a stock ...
0
votes
1answer
472 views

Android KSoap2 Response from server array is empty

I have searched and cannot find a similar question so am hoping someone could shed some light on the matter. I want to send an array using KSoap and I do this as follows: First I construct the ...
1
vote
4answers
726 views

Sending GET & POST requests in Java or other without responses

Is it possible to make GET & POST requests in Java or another language such that you don't care about what is returned? As in just sending the requests but not wanting to receive any responses?
0
votes
1answer
1k views

iOS http post response to NSDictionary or NSArray

I'm making a HTTP Post and I would like to know how to convert the response to NSDictionary, or NSArray. Here's my code: NSString *post = [NSString stringWithFormat: @"SomeData=text", text]; ...
1
vote
2answers
322 views

Help with Ajax post to action method

I am a new to MVC an need a little help. In my view I make an ajax post as below. function PostCheckedPdf(e) { var values = new Array(); $('input:checked').each(function () ...
1
vote
4answers
522 views

using POST response in php

I'm setting up a simple paypal button. When clicked, I need to write the order into my db and then redirect it via POST to paypal. The database part works just fine, however the POST to paypal ...
2
votes
1answer
976 views

401 response when do a POST using scribe oauth java

This does NOT happen when I use it with a GET. i.e. this DOES NOT WORK: ProxyAuthenticator pa = new ProxyAuthenticator(); Authenticator.setDefault( pa ); OAuthService service = new ...
2
votes
3answers
5k views

jQuery not handling JSON response from AJAX POST

Updated: I'm posting HTML FORM data but expecting to receive JSON data. I am not trying to POST JSON data. I am trying to get a JSON response back from doing a HTML FORM POST request. I have ...
1
vote
2answers
254 views

Is it possible to ignore the response from a webserver after a POST command?

I am writing a program in JAVA to POST a large number of XML Documents to a specific web address, in addition to a great deal of other data handling that is slightly unrelated to this question. The ...
0
votes
1answer
271 views

Ajax post, repsonse not recieved

Currently i am doing a jquery post to fetch some data from the server. In standard circumstances a large json is returned. The first time this call runs it requires a large amount of processing ...
0
votes
1answer
888 views

jquery post request/response cross-domain

is it possible to make cross-domain jquery post request and get back a response. anyone know the format? if not, does anyone know what else I can use on the client side in order make the request and ...
4
votes
1answer
2k views

JQuery POST request transforming into OPTIONS. Why?

I explicitly specify a POST and I don't see the post data in the Request and more over specifies it has a OPTIONS. The response should be a HTML specifying matching users to Query in table format. I ...
0
votes
1answer
425 views

Javascript - How do I capture and respond to a post?

I am developing an application to respond to a punch out, but am missing something. I can create the reponse XML document fine, but the receiving end is not seeing my response. I have found hundreds ...
1
vote
1answer
828 views

how to get form action response without ajax in a good way?

I know how to get an AJAX response: $.post( '/action', { actiontodo: 'insert' } function (data) { alert(data); } ); Int the action.php (server side): <?php if ...
1
vote
1answer
972 views

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 ...
2
votes
3answers
2k views

replace page with jquery $.post response

I'm using jquery's $.post like this: $.post("/searchresult", $("#searchDiv").serialize(), function(data) { //??? }); The "data" parameter has all the html code of the result page I want. The ...
4
votes
0answers
380 views

POST response taking too long

Client side Ajax Javascript code is using XMLHttpRequest to send a POST request, but I'm getting like a 0.5 second delay in getting the response and I'm trying to find out why, since I'd like it to be ...