Tagged Questions

27
votes
9answers
1k views

Why do people want to deliver both Json and XML as output to their REST interfaces?

I understand why "REST framework" vendors want to provide the support for returning both Json based representations and XML based representations, but why do people want to return both from the same ...
18
votes
8answers
32k views

Spring 3 JSON with MVC

Is there a way to build Spring Web calls that consume and produce application/json formatted requests and responses respectively? Maybe this isn't Spring MVC, I'm not sure. I'm looking for Spring ...
17
votes
8answers
7k views

What should a JSON service return on failure / error

I'm writing a JSON service in C# (.ashx file). On a successful request to the service I return some JSON data. If the request fails, either because an exception was thrown (e.g. database timeout) or ...
16
votes
9answers
13k views

How do I expose data in a JSON format through a web service using Java?

Is there an easy way to return data to web service clients in JSON using java? I'm fine with servlets, spring, etc.
14
votes
7answers
3k views

Choosing between JSON and XML

Previously I used XML soap for data exchange in my web services, But switched to json for another project. Now I cant seem to find a reason to go back to XML, primarily because of the response size ...
14
votes
3answers
25k views

JSON character encoding

I am writing a webservice that uses json to represent its resources, and I am a bit stuck thinking about the best way to encode the json. Reading the json rfc (http://www.ietf.org/rfc/rfc4627.txt) it ...
13
votes
3answers
5k views

Is there a JSON parser for VB6 / VBA?

I'm trying to consume a web service in VB6. The service (which I control) currently can return a SOAP/XML message or JSON. I'm having a really difficult time figuring out if VB6's SOAP type (version ...
12
votes
3answers
3k views

Is there a WSDL-like mechanism for JSON?

My company is using SOAP for web services. Despite my efforts to convince my peers to use JSON, we still ended up using SOAP. WSDL was one of the main reasons (another is their unfamiliarity with ...
10
votes
6answers
40k views

Loop through JSON object List

I am returning a List<> from a webservice as a List of JSON objects. I am trying to use a for loop to iterate through the list and grab the values out of the properties. This is a sample of the ...
9
votes
2answers
65 views

does JSON have a schema

Do JSON \ RESTfull Web services have a schema equivilent to a wsdl? If the answer is no, then how do 2 sides agree on a shared format? If the answer is yes, are there any tools to auto generate ...
8
votes
3answers
426 views

Node.js as a JSON forwarder

I'm new to Node.js but I wanted to use it as a quick web server which would simply take in a request uri and then run a query on an internal service which returns a JSON stream. I.e. something like ...
8
votes
7answers
804 views

Techniques to reduce data harvesting from AJAX/JSON services

I was wondering if anyone had come across any techniques to reduce the chances of data exposed through JSON type services on the server (intended to supply AJAX functions) from being harvested by ...
8
votes
3answers
4k views

Forcing ASP.net webservice to return JSON

I have an ASP.net web service that I'm using for a web application which returns a either XML or JSON data to me, depending on the function I call. This has been working well thus far, but I've run ...
7
votes
2answers
468 views

JSON String returned from SOAP web service containing no records for table

I have a SOAP web service(.asmx) implemented using the .NET framework that returns me a JSON String in this form: ...
7
votes
1answer
236 views

Why do ASP.NET JSON web services return the result in 'd'?

I wrote some ASP.NET web services that use JSON encoding, a la: [WebInvoke()] [OperationContract] public int SetInformation(int recordid, string data) { return 42; } and the returned JSON is: ...
7
votes
1answer
144 views

Is application/json-p text/json-p already implementable?

I've read http://www.json-p.org/ which states a safer and stricter subset of JSON-P. The most critical piece of this proposal is that browser vendors must begin to enforce this rule for script ...
7
votes
2answers
1k views

Call .NET Webservice with Android

I know this question has been asked here before, but I don't think those answers were adequate for my needs. We have a SOAP webservice that is used for an iPhone application, but it is possible that ...
7
votes
1answer
3k views

Is it possible to make JSON requests using Fiddler's Request Builder?

I keep getting a Request format is invalid. Here's the raw http that get's sent: POST http://x.x.x.x/ws/MyWebService.asmx/TestEvent HTTP/1.1 contentType: "application/json; charset=utf-8", ...
7
votes
4answers
10k views

C# Web Service won't output JSON, only XML

I'm trying to use jQuery and JSON with a C# Web Service that I wrote. No matter what, the following code will only output in XML. Webservice Code [WebMethod] [ScriptMethod(ResponseFormat = ...
7
votes
5answers
11k views

How to implement custom JSON serialization from ASP.NET web service?

What options are there for serialization when returning instances of custom classes from a WebService? We have some classes with a number of child collection class properties as well as other ...
6
votes
4answers
6k views

REST/JSON Web Services Java EE Framework

I'm will build a web service. I'd rather like REST/JSON than SOAP. Anybody can tell me what is the best Java EE framework for that? Thanks!
6
votes
4answers
1k views

Spring, Jackson and Customization (e.g. CustomDeserializer)

Being still a little unfamiliar with Spring, I have encountered a problem that makes it necessary implementing my a custom deserialzer for Jackson. The procedure is described in a small tutorial, ...
5
votes
4answers
363 views

Feed data into database from Android app via web service

I am working on an Android code that on click of a button inserts data in a remote database via a web service. My web service code is pretty simple. It just takes in one parameter which is the android ...
5
votes
1answer
278 views

Should I expose web methods via ASP.NET MVC actions or WCF?

I want to be able to Ajax-ly retrieve JSON data from some kind of web service. (The web service calls will be wrapping a call to SQL, processing the DataSet returned, and returning a JSON ...
5
votes
2answers
2k views

How do I upload a file with metadata using a REST web service?

I have a REST web service that currently exposes this URL: http://server/data/media where users can POST the following JSON: { "Name": "Test", "Latitude": 12.59817, "Longitude": ...
5
votes
2answers
5k views

asmx web service returning xml instead of json in .net 4.0

i have just upgraded a test copy of my site to asp.net 4.0 and have noticed a strange issue that only arises when i upload the site to my server. the site has an asmx web service that returns json, ...
5
votes
7answers
4k views

How do I build a JSON object to send to an AJAX WebService?

After trying to format my JSON data by hand in javascript and failing miserably, I realized there's probably a better way. Here's what the code for the web service method and relevant classes looks ...
5
votes
1answer
1k views

JSON and jQuery.ajax

im trying to use the jQuery UI autocomplete to communitate with a webservice with responseformate JSON, but i am unable to do so. My webservice is not even executed, the path should be correct since ...
5
votes
7answers
848 views

How to prevent direct access to my JSON service?

I have a JSON web service to return home markers to be displayed on my Google Map. Essentially, http://example.com calls the web service to find out the location of all map markers to display like ...
5
votes
4answers
664 views

Web services API design: XML elements vs. attributes

I'm designing an API for a web service and I can't decide between using XML attributes, elements or a mixed architecture. Let me show you an example. Let's assume I have an object called Domain. This ...
5
votes
1answer
316 views

How should one provide links in RESTful service using a non-XML data representation?

I've been doing a lot of reading lately about how to implement truly RESTful WS's. A lot of people have linked to the article here which details several constraints that implementers should bare in ...
5
votes
3answers
3k views

How do I consume a web service in Objective-C?

I have a web service developed in ColdFusion that I am trying to consume on the iPhone. The web service returns JSON which should be fairly simple to read. However, I have been unable to find a good ...
5
votes
3answers
2k views

Returning JSON AND XML format from a .NET 3.5 WCF web service (REST)

I have an existing web service that returns XML responses and I would like to add some new methods that return JSON. Do I have to create a separate web service that returns in JSON or can I have a ...
5
votes
1answer
652 views

Extend the exception thrown from ASP.NET when calling a Webservice from JQuery

I'm using JQuery to load controls dynamically in an ASP.NET development environment using JSON and WebServices. Within this solution I have a business logic layer which has a built in validation ...
5
votes
2answers
2k views

SOAP web services in erlang

Is there any good erlang library for creating / accessing SOAP web services? Maybe also handling plain XML is quite difficult. Is Json a good alternative? Any lib for that? My goal is interop with ...
5
votes
5answers
2k views

How do I expose data in a JSON format through a web service using Rails?

Is there an easy way to return data to web service clients in JSON using Rails?
4
votes
2answers
393 views

Converting SOAP XML to JSON in using .Net based Web services

I am developing an Mobile Web App. I consume a SOAP XML based web service. But based on this thread Why is it not a good idea to use SOAP for communicating with the front end (ie web browser)?, I am ...
4
votes
3answers
512 views

Block non-Android users calling JSON service

My Android application is calling a JSON service via HTTP and I would like to only allow my application to call the service and block others. What is the best way to do it? One way I can think of is ...
4
votes
1answer
3k views

Call external json webservice from asp.net C#

I need to make a call to a json webservice from C# Asp.net. The service returns a json object and the json data that the webservice wants look like this: "data" : "my data" This is what I've come ...
4
votes
3answers
1k views

ASP.NET WebService is Wrapping my JSON reponse with XML tags

I'm not sure where I'm going wrong of what I'm missing. I'm building an ASP.NET 2.0 (on the .Net 3.5 framework) Web application and I am including a webservice. Note that this is not an MVC project. ...
4
votes
3answers
330 views

Can't consume ASP.NET Web Service from jQuery

Here's an interesting problem: I have some jQuery that looks like this: $(document).ready(function() { $.ajax({ type: "POST", url: ...
4
votes
2answers
2k views

.NET ASMX - Returning Pure JSON?

I am going nuts here. I've looked at the following entries and none of them are correcting the aberrant behavior I am seeing: ...
4
votes
4answers
1k views

Avoid iPhone constant polling a web-service?

I have an iPhone application that needs to be updated as soon as a change is made to the server. How can I have the server "push" data to the iphone rather than the iphone constantly polling the web ...
4
votes
2answers
10k views

A circular reference was detected while serializing an object of type System.Globalization.CultureInfo

I'm using jquery to call a webservice which returns a dataset with a couple of tables in it. This was working ok until i needed to set up my webmethod to accept a parameter. I reflected this on the ...
4
votes
3answers
5k views

ASP.NET - What is the correct approach to JSON based web services with jQuery?

What is the correct way to convert ASP.NET SOAP-based web services to JSON-based responses? ...And then call these from jQuery? What are "best practices" when integrating jQuery based AJAX and ...
3
votes
3answers
223 views

Looking for a REST with JSON client library

I need to connect to an endpoint that serves out JSON via REST interfaces. I can't really find anything that combines these 2 technologies in a coherent manner. I am looking for a library that will ...
3
votes
1answer
71 views

Asp.Net Returning Custom Object in json

I have a class CodeWithMessage that I want to return from my webservice as json. The class is defined as such namespace UserSite //Classes For my site { namespace General { public ...
3
votes
3answers
81 views

Should a JSON response return a base64-encoded file?

I'm creating a web service that will return XPS documents that are "queued" by other users. I'd like to minimize the number of requests, therefore I was thinking of combining the resulting queued ...
3
votes
1answer
164 views

Ideal way to pull data (JSON) from a service using Monotouch and iOS?

I have an iPhone app which is pulling just about all it's data from ASP.NET MVC services. Basically just returning JSON. When I run the app in the simulator, the data is pulled down very fast etc.. ...
3
votes
3answers
185 views

How do I get JSON data in a plain c# program from a ASP.net MVC program?

I am a newbie in asp.net MVC. I want to create a plain c# client program that consumes json returned from a asp.net mvc progam. What is the best method for retrieving the json data from the asp.net ...

1 2 3 4 5 11