Tagged Questions
2
votes
1answer
37 views
unable to get post object models in my template
i have a student model with name,age,email fields.i have created a form StudentForm for this an create a view like this
def student(request):
form=Studentform(request.POST)
if request.method=='POST':
...
0
votes
1answer
32 views
Submit json response not read correctly
I have this code:
sendData: function(){
var me = this;
this.getForm().submit({
url: me.action,
method: 'POST',
success: function(form,action){
...
0
votes
0answers
37 views
Securing JSON response through ajax in javascript (for(;;);)
I've been reading and I know there are similar questions, but I found no answer of what I'm looking for.
So it's about, for(;;); while(1); before the json string is outputted by an Ajax response.
...
0
votes
1answer
40 views
iframe JSON response prompt download in IE
Have an iframe where files are uploaded, and the iframe responds with a JSON response
How is it possible to force IE not to prompt for download? Could it be done with some extra headers on the server ...
-6
votes
0answers
33 views
ANDROID JAVA; HTTPS send data within the url, recieve JSON response [closed]
I'm programming in java for android a piece of code that submits data directly to a https server through the url:
...
0
votes
1answer
35 views
Parsing Json to handle and direct a user to view controller. Objective C
I have a Login screen and I POST username and password to a login page.
The webservice gives me 2 responses if the Login user details are correct I get a response of back from the request.
...
0
votes
1answer
50 views
REST Response - What's “expected” in an HTML response vs JSON or XML
General question re. what's "expected" when sending an HTML response vs JSON or XML for example for the same data.
Say I've got an array of USER information. With JSON or XML I'd just convert that ...
0
votes
4answers
84 views
Does a http response parser exist in C#?
{"sentences":[{"trans":"událost","orig":"event","translit":"","src_translit":""}],"dict":[{"pos":"podstatné jméno","terms":["událost","případ","příhoda","soutěž","sportovní ...
0
votes
2answers
37 views
Strange JSON response (“ ”=> ,) in rails app
I'm getting a json response from the forecast.io api with
JSON.parse(open("https://api.forecast.io/forecast/api-key/latitude,longitude").read)
And it looks like this
{"latitude"=>58.5942,
...
0
votes
3answers
145 views
Error Parse JSON Response String Android
I have a response String from an API service like this :
{"id":"login","status":"true"}
and This is the way to parse Response String to get Value from Key "Status"
JSONObject ...
1
vote
0answers
26 views
JSON response for API - several each statements for jquery [duplicate]
I figured out the issue.. and I am still having issues.. here is how the JSON looks. How do I get the array from toprefs when there is no name for the different arrays? Below is the JSON:
-{
...
0
votes
1answer
98 views
Ajax Response for a JSON Data
I am using AJAX to cal my struts action class and it's storing some data in session.
public String myMethod(){
session.put("DATA", JSON_STRING); //JSON formatted string
return "forward";
}
...
0
votes
1answer
91 views
What could cause the response body to be cut off (on client-side)?
I am writing a python language plugin for an active code generator that makes calls to our Rest API. After making many attempts to use the requests library and failing, I opted to use the much lower ...
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
1answer
168 views
Backbone.js .save() JSON response attribute issue
So my issue is this.
Using backbone to save something in a MYSQL Database.
When I call this.model.save() I am getting a very weird issue.
The model will save the JSON response as an object and will ...
0
votes
0answers
84 views
Getting a JSON error response from file uploading
I have been struggling with a JSON error for some time now. The code I currently have for the uploading is,
addFile: function ( e ) {
if (e.files) caller = e; else {
caller = ...
-4
votes
1answer
109 views
json response error from website: {“status”:“error”,“error”:“Include 'id' or 'slug' var in your request.”} [closed]
To check whether i'm getting json api response from website, i gave "http://www.exm.com/api/get_recent_posts" in the browser then got the json response from website for recently posted jobs, then ...
0
votes
1answer
88 views
Autocomplete JSON response not working
im getting response in json (can check in firebug), but this wont parse the json response and no results displayed. what m i doing wrong? i could'nt find anything on doc ...
-2
votes
1answer
138 views
Understand how data extraction at inner levels from JSON (Facebook API Response) is done (both as Object & as Array) [closed]
I want to understand the process of extraction of data from inner levels of JSON (both as object & as Array) with example as below multi-level JSON Facebook API response : (I've tried lot of ways, ...
0
votes
0answers
102 views
How to set URL for getting json response in android [closed]
For parsing the content website and retrieving it in android app i used this link http://www.example.com/jobs/?json=get_recent_posts i'm able to get recent jobs from website, but i need "job ...
0
votes
2answers
82 views
parsing an ordered JSON response results into an unordered Object
I'm retrieving a JSON response from a server which is already sorted by "sort_id".
responseText ==>
{
"status": 1,
"complete": 1,
"list": {
"178432351": {
"item_id": ...
0
votes
2answers
46 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
1answer
814 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 ...
0
votes
1answer
889 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
0
votes
1answer
166 views
error in converting string response to a json array - android
I am using ASYNC task to interact with internet using HTTPPost ...
here's the java code
private void viewMyprofile(String username) {
System.out.println("in view my profile");
class ...
1
vote
2answers
1k views
Extjs JSON response
I have a form, which sends data to the server. I process the form with a PHP script, which can return 3 differents JSON strings:
One
exit("{\"success\":\"false\", \"msg\":\"Las claves no ...
1
vote
1answer
34 views
REST call status when one of the operation fails
I have a Student add REST api call. This allows candidate data as well as file attachment.
Lets say, candidate is added successfully and but the document was not uploaded for some reason.
what should ...
1
vote
3answers
828 views
Spring 3.1, JSON response ModelAndView
This is my first post. I'm sorry for my english...
I have problem with postJSON and returning partial view with ModelAndView.
My controller:
@RequestMapping(method=RequestMethod.POST, value = ...
0
votes
0answers
95 views
Parse JSON Response in grails
I sent a response for one action as JSON. Now in a filter I want to parse this response and get some variables from it. Here is my action:
def testJson(){
withFormat{
json{
...
-1
votes
1answer
76 views
Accessing values in JSON response - error generated - json.JSON.typeMismatch(JSON.java:100)
I have the following response:
{
"data": [
{
"name": "This is a test 123",
"start_time": "2013-12-02T18:00:00+0530",
"end_time": "2013-12-02T20:00:00+0530",
...
0
votes
1answer
27 views
know the type of the response
I want know the type of the response of an action controller (json, html, xml)
before the instructions:
respond_to do |format|
format.html{
...
end
Is possible?
Thanks
1
vote
2answers
92 views
What is the standard response for successful http request for json format without body?
I had some trouble with the title, sorry.
I'm having a discussion with a server gal from my work, we're developing iphone application
on REST json standard, now the discussion is, that she said that ...
0
votes
1answer
399 views
Blackberry how to get Json Response (java)
I want to get a JSON response on the simulator. How can I read JSON from the server?
public void run()
{
HttpConnection httpConn;
ConnectionFactory connFact = new ConnectionFactory();
...
0
votes
1answer
107 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
92 views
getting JSON response from localhost
I want to get JSON response from my localhost where I have created a .php file which is returning the JSON response.. It works well except for localhost. My apache server and myPhp server are working ...
1
vote
0answers
163 views
Jersey response very slow
I am using jersey for REST service, and during measuring request time I encountered a delay in the response which seems to come from jersey itself.
While the computation of the request is about 8 ...
14
votes
5answers
5k views
Standard JSON API response format?
Out of curiosity, are there any emerging standards or best-practices when structuring JSON responses from an API? Obviously every application's data is different, so that much I'm not concerned with, ...
0
votes
0answers
191 views
ksoap2 responds in json?
I'm having a bit of a problem. I am receiving a XML response from a server, but when I put it in a string and I print it, it comes out as JSON, I am baffled. I've checked the server response through a ...
1
vote
2answers
368 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/";
...
1
vote
1answer
295 views
How to send json response from controller to jQuery and inspect it?
I have this problem : I'm checking user email in controller and sending json successfull response if it is already taken and add css styling of input, also I need to prevent submit and add some ...
-7
votes
2answers
136 views
Need json response in php to print the values [closed]
I get some json response like below
{"email":"example@example.feccom","firstName":"MYFIRSTNAME","lastName":"MYLASTNAME"}
by using a api link http://api.example.com/User_Account.json
please help me ...
4
votes
2answers
199 views
JSON output null in Firefox/Opera, correct in Chrome
Note: I'm not considering this is Drupal problem so I post it here on SO.
We created a Drupal module that is supposed to return JSON. E.g. calling /foo/json returns the JSON. This is all fine in ...
0
votes
1answer
577 views
NuSoap create JSON response
Today I have been created a simple WebServices Server with SOAP using "Nusoap" library. The response data of course in XML format.
My Server code:
<?php
require_once "nusoap.php";
function ...
3
votes
1answer
356 views
IE7 JSON Response: Object Expected.. Works in Chrome and FireFox
This is the last thing I have to do before I can send my beloved webapp into the wild, but of course IE7 is being difficult with me!!
I am using the JQuery Form plugin to upload data to my server. A ...
0
votes
1answer
140 views
JSON Response coming null secondtime in iPhone
In connectionDidFinishLaunching method ,
I am writing this ,
in ViewWillAppear
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[NSURLConnection connectionWithRequest:request ...
1
vote
1answer
658 views
Response encoding in Spring
I've got problem with character encoding of my http responses. I read many tips, tutorials etc., but I can't resolve my problem. We are using Spring MVC with Hibernate and ExtJS as view technology. ...
0
votes
0answers
211 views
How do I set a JSON response and retrieve that with jQuery form plugin?
In my server I've got the following code:
response.getWriter().write(myJsonString);
response.setContentType("application/json;charset=UTF-8");
response.setHeader("Cache-Control", "no-cache");
return ...
0
votes
1answer
212 views
django file upload from json
Hi i have given the complete code for my file upload .But in my views i am just trying to return a response and get the alert on the UI.But none of the return statements are working.How to rectify ...
0
votes
1answer
101 views
jquery can't decode json with c-cedilla
jQuery is failing to parse what appears to be a valid json response that includes the french C-cedilla character.
The jQuery json request is this:
$.ajax({
url: "retrieve",
dataType: 'json',
...
2
votes
1answer
777 views
how to force spring to return “text/html” instead of “application/json”?
I have a file attachment plug-in (AJAX File Upload plugin from Valums) that requires the return json to be of type "text/html". The web application I'm developing utilizes the Spring Framework, which ...



