0
votes
0answers
2 views
efficient creation of json from mysql output - grouping within uniques
I believe I have been writing some inefficient code here, but can't seem to figure out a more efficient way of writting it.
This often happens with json output, though I've had the issue with some …
0
votes
3answers
19 views
Parsing JSON like data interchange format
I'd like to use a data interchange format that uses no quotation marks. Maybe something based on JSON:
{param:value,param:value,param:{[{param:value,param:value}, {param:value,param:value}]}}
How …
1
vote
2answers
29 views
Looping javascript get requests
I've got a javascript 101 question.
I'm using a nice graphing library (flot), and plotting multiple graphs on a single page. Each graph is a div, with a attribute set that tells the graph where to …
0
votes
1answer
8 views
ARC SPARQL Endpoint - Get results in json
Hi, can anyone help me to figure out how to get query results back in json or xml etc when using the Arc sparql endpoint?
I am using the following code to get the result of my query:
…
0
votes
1answer
10 views
Jersey implementing ContextResolver<JAXBContext> in Spring
So I am writing a Spring(2.5( + Jersey(1.1.4.1) and trying to create a JSONConfiguration using a ContextResolver. Here is the code:
package com.rhigdon.jersey.config;
import …
3
votes
2answers
21 views
Json.net deseralize to a list of objects in c# .net 2.0
Hi,
I'm trying to deseralize some json into a collection (list), but I'm not sure which method will return a list of objects, or do I have to loop through something and copy it to my own list?
Can …
0
votes
2answers
31 views
Marshall/Unmarshall a JSON to a Java class using JAXB
I am successfully marshaling a POJO into JSON using JAX-RS and JAXB annotations.
The problem is that when I am trying to use the same for un-marshalling my request it doesn’t work. As far as I can …
0
votes
1answer
26 views
How to Obtain Whole JSon file posted along with $.post in Asp.net
Hi Everyone,
I am posting json data to the asp.net server page along with the $.post method. But Is there any way to obtain whole data and convert it into anon object.
This is jQuery Code :
var …
0
votes
1answer
41 views
JSON output not properly parsed by JQuery?
As it stands, I have some JQuery along these lines -
ph=function(i){
$.each(i,function(po){
id=po.id;url="/"+id;t=$('<div id='+ id +' class=entry></div>');
t.html('<div …
1
vote
2answers
58 views
How can I access data from a Ruby on Rails application externally?
I'm trying to work with the data in my Rails application from within a separate Ruby script.
I read this forum post in which some people suggest that the best way to work with your data is to …
0
votes
2answers
50 views
jquery copy json object
I'm iterating through a set of json data which carries results of a few database tables. Amongst other data I have a RateTable ...erm... table, and a Resources table. The RateTable has a property name …
0
votes
9answers
110 views
JSON use in Javascript
I have been mis-interpreted. I have created a JSON Object in PHP. I just need access to that object in Javascript. thats all.
i just learned that many of my problems can be solved by using JSON. now …
0
votes
4answers
66 views
Best way to escape javascript string? (json?)
Using C# .net I am parsing some data with some partial html/javascript inside it (i dont know who made that decision) and i need to pull a link. The link looks like this
…
3
votes
3answers
53 views
How to handle large file uploads via WCF?
I am looking into using WCF for a project which would require the ability for people to upload large files (64MB-1GB) to my server. How would I handle this with WCF, possibly with the ability to …
0
votes
2answers
20 views
routes.rb explicitly choose template
I would like to create one .erb file to be the output for a number of tiny actions that are just returning JSON. So with routes similar to:
map.json 'contacts_json', :controller => 'contacts', …
