1
vote
7answers
91 views
What is json,can you explain it to a newbie?
Can you explain it in most simple words?
Best with a demo script.
4
votes
10answers
112 views
JavaScript: How to create an Object and filter on those attributes?
I have a JavaScript array of houses like so,
{
'homes' :
[{
"home_id" : "1",
"address" : "321 Main St",
"city" : "Dallas",
"state" : "TX",
"z …
4
votes
3answers
101 views
Converting Json to Java
Hi all,
I want to be able to access properties from a json string within my java action method. The string is available by simply saying myJsonString = object.getJson(); Below is a …
1
vote
1answer
57 views
How can I use JSON and Perl (HTML::Mason) to create dynamic web page with AJAX?
Hi everyone,
I'm some kind of lost with the way i have to deal with Javascript, JSON and Perl and most of the examples are in PHP which is not helpfull for me.
I have a page (cal …
0
votes
2answers
31 views
AS3 Basic Parsing JSON question
Hey,
I'm having a problem parsing a JSON file in AS3. Im trying to parse multiple JSON arrays, but don't really know how to get to the next after accessing the first one. My JSON …
0
votes
3answers
65 views
How to pass JSON array correctly?
i am trying to create a fade effect with the following...ive been told im nearly there apart from the passing of the json array. At the moment no images are displayed.
//generat …
0
votes
1answer
78 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
3answers
89 views
Simulating a form POST to ASP.NET MVC with javascript
I've had problems trying to send JSON to ASP.NET MVC Controllers. I don't want to accept one string parameter on each controller method and deserialize manually. I have found tha …
1
vote
4answers
38 views
PHP - regex to reformat JSON
Hi,
I've been trying to figure out how to reformat multiple JSON files into a single one using php, but am having a difficult time understanding how to use complex regular express …
1
vote
5answers
68 views
How to return JSON from ASP.NET .asmx?
I have the following test method:
Imports System.Web
Imports System.Web.Services
Imports System.Web.Services.Protocols
<WebService(Namespace:="http://tempuri.org/")> _
…
0
votes
3answers
13 views
Need Ajax Json submission to allow single and double quotes
I have this where edit_FName & edit_LName represent asp.net textboxes:
$.ajax({
type: "POST",
url: document.URL + "/EditName",
data: "{fNam …
1
vote
2answers
30 views
Can silverlight serialize annonymous objects?
Can silverlight 3 serialize annonymous objects?
0
votes
3answers
48 views
JSON response not working?
I'm new to JSON/jQuery, and I'm trying various JSON-AJAX examples. Unfortunately, my simple code doesn't seem to be working.
Here is my JS/jQuery in testjs.js:
$(document).rea …
0
votes
4answers
59 views
JavaScript: How do I create JSONP?
I have a two domains, example1.com and example2.com
From example1.com, I would like call a JSON API I have on example2.com. Knowing that this is not allowed, it occurred to me - t …
-1
votes
1answer
20 views
Webservice to convert file to base64 string
Is there a webservice available that will take a url of a file e.g. http://example.com/images/image.jpg and return a base64 encoded string of that file preferably in json format?
