0
votes
3answers
29 views
PHP json_decode on a 32bit server
Hi, im writting a twitter mashup service. When i receive the json data, some of the twit ids are greater than 2147483647 (which is the maximum allowed integer on 32bit servers).
I …
0
votes
6answers
61 views
Error at json: “missing ] after element list” or just “undefined”
Hello!
I have a json like:
{"156644":{ "name":"name1",
"street":"street1",
"city":"city1"
"68656":{ "name":"name2 ",
"street":"street2",
…
0
votes
3answers
34 views
How to access a member of a class which is inside another object from JSON using PHP
I have a JSON String like this
$test='{"var1":null,"var3":null,"status":{"code":150,"message":"blah blah"}}';
I want to access the status code in the function.
this is what i tr …
0
votes
2answers
98 views
PHP json_decode question
hi,
i'm trying to use json_decode to combine a few json objects and then re-encode it. my json looks like:
{
"core": {
"segment": [
{
"id" …
0
votes
2answers
48 views
php - combining json with json_decode
Hi,
I'm trying to combine multiple JSON objects into a single one in PHP. I'm iterating through the JSON objets, decoding them, parsing out the parts I want to keep, and storing t …
0
votes
1answer
102 views
How to do Ruby object serialization using JSON
I have a structure of simple container classes like so (in pseudo ruby):
class A
attr_reader :string_field1, :string_field2
...
end
class B
attr_reader: int_field3, :string …
0
votes
4answers
359 views
c# How to retrieve Json data into an array
Hi!
I have found different libraries that can parse Json data, but i did not find any documentation on how to get the data into an C# array or list.
I got this Json data:
{"001": …
3
votes
2answers
141 views
LINQ and JSON.NET when the property names vary
I am attempting to parse some JSON content in to C#. For the simpler cases I am having great success with JSON.NET and really appreciate the clean approach offered by the LINQ prov …
2
votes
4answers
133 views
Help with JSON format
I'm using a JSON example off the web, as seen below.
{
"menu": "File",
"commands": [
{
"title": "New",
"action":"CreateDoc"
},
{
…
0
votes
2answers
96 views
access json object and array
Here is my JSON data :
{"Liste_des_produits1":[{"Added_Time":"28-Sep-2009 16:35:03","prod_ingredient":"sgsdgds","prod_danger":["sans danger pour xyz"],"prod_odeur":["Orange"],"pr …
3
votes
2answers
184 views
How to decode and cast JSON string in Flex?
I'm using as3corelib to decode/encode JSON strings. In my little experiment I want to encode
an object (UserInfo) to JSON string and decode it back to the object, however it seems …
0
votes
2answers
80 views
PHP json_decode notation issue
I am having an issue dealing with the notation used in a JSON file I am trying parse. Some of the nodes have . (periods) in the names which escapes object-notation
($json = $artic …
2
votes
4answers
191 views
json decode in php
I have the following json string and I want to retrieve just the email address from it. How do I do it in php?
{"communications":{"communication":[{"@array":"true","@id":"2310138 …
0
votes
3answers
114 views
Set the maximum recursion depth while serializing a Django model with Foriegn key to JSON
Hi,
I have a Django model created for Google's App Engine,
Model A():
propA = ReferenceProperty(B)
Model B():
propB = ReferenceProperty(C)
Model C():
propC = ReferencePro …
1
vote
1answer
414 views
ASP.NET JSON Web Service Response format
I have written one simple web service which get product list in JSONText which is string object
Web Service code is below
using System;
using System.Collections.Generic;
using …
