0
votes
0answers
11 views

ASMX Webservice - The test form is only available for requests from the local machine

I have an ASMX webservice with two functions. One sends a JSON object to the server and stores it in a file, while the other function retrives the JSON object from the server. The webservice works ...
0
votes
1answer
30 views

Building complete JSON in grails

My controller looks like this: def save() { js { def color = new Color(params) color.save() def result if (!color.hasErrors()) { result = ...
0
votes
1answer
33 views

Can't obtain a response from WCF service

i have a trouble when i try to call a web service made in WCF, this service is calling by Mac os x app. this is the code soapMessage = @"{name:\"Sergio\"}"; NSURL *url = [NSURL ...
0
votes
1answer
63 views

Android using JSON to register and get results from web service - PHP

I made an android application last year, it worked fine, i've been reassigned to develop the application. But the registration of a user has stopped working. The reason why, I havnt a clue. Here is ...
1
vote
1answer
33 views

SyntaxError: invalid label parsing json response

Im getting this response back from jquery from my WS request. { "SkyWinResponse": { "statuscode": 0, "message": "ok\n ", "rowsaffected": 1, "results": { ...
0
votes
3answers
58 views

jQuery $.ajax method displays error status

the webservice looks like using System;<br/> using System.Collections.Generic;<br/> using System.Linq;<br/> using System.Web;<br/> using System.Web.Services;<br/> ...
0
votes
1answer
23 views

org.json.JSONException: Value <?xml of type java.lang.String cannot be converted to JSONObject

I have a method from which I am fetching the data from webservice using http post in android. my code is, public class PropertyRequestService { static String result; PropertiesList localProperty = ...
0
votes
1answer
49 views

Is it still not recommded to use implementation of java collection and map in web services [closed]

I'm deciding on whether to use implementation of java collection and map or stick to arrays in webservices. Postings on Google all seem to suggest sticking to array but those postings were all from ...
1
vote
1answer
27 views

Square brackets with mergJSON in LiveCode - what am I doing wrong?

The web service I'm connecting to returns its JSON in response to a query, thus: [{ "dob":"25/12/68", "firstname":"Mary", "lastmoddate":1368519205101, "lastname":"Smith", ...
1
vote
3answers
67 views

How to send JSON data as parameter from Android to Jersey RESTful Service

I am creating a login function for my Android app which will be connected to a Jersey RESTful web service. As part of the service call I will be sending a JSON object, but my problem now is that I do ...
0
votes
1answer
37 views

Jackson: JsonMappingException deserializing Arrays of JSON objects

I have a Jersey webservice producing the following JSON: {"ConfigData":[{"@name":"Admin Component Version","@value":"version 1","@type":"String"},{"@name":"Component Version","@value":"version ...
-2
votes
1answer
18 views

PHP Based Web Service [closed]

I would like to create a webservice in PHP. That provides me some information about a client. Here is my problem. I want the user to be authenticated before returning any data. So here is my ...
0
votes
1answer
11 views

Testing a Json web service Post operation on Internet explorer

I know I can test POST web service operations on fiddler, but I want to be able to test directly on IE. How do I do a post on a RESTful service call, passing in a JSON object using only IE?
0
votes
0answers
76 views

PhoneGap, jQueryMobile, JSON, ASP.NET WebService ASMX

I'm creating a mobile app for/with PhoneGap. I am trying to load external data through a ASP.NET Web Service created it by myself. The Web Service works correct when I run the local with the Ripple ...
0
votes
2answers
45 views

Pass an array to .net webservice in ios sdk

I like to call the json web service through my iphone app. I try to pass the array like as follow: NSArray *keys = [NSArray arrayWithObjects:@"key",nil]; NSArray *objects = [NSArray ...
1
vote
0answers
26 views

using google analytic withing a REST api

We have a REST API, and would like to track its usage using Google Analytics. The webserver is built using PHP, and returns a JSON. The http headers are set to JSON. Any thoughts on how I could do ...
2
votes
1answer
23 views

Returning gzipped content on a Sinatra app

I have a Sinatra app inside a RoR3 app. I defined a Sinatra module and added the following redirect in my RoR3 routes match '/v2', MySinatraModule, :anchor=>false My Sinatra app is serving all ...
0
votes
1answer
73 views

Unable to map json string to java object using jackson API

I am writing a web service (server + client). I am able to make a service and it returns me the following json { "cities": { "city": [ { "name": "New Delhi", ...
1
vote
1answer
30 views

got stuck converting MySql output in JSON array with php

I am making an iphone app. a part of that app allows users to search for a company on location. I have a MySql database containing the companies that can be searched for, and a php file on my website ...
0
votes
1answer
49 views

Simple Json from RESTful query - unable to Deserialize

I am REST/JSON newbie and I am querying Feedzilla API for news articles, with keyword syria: http://api.feedzilla.com/v1/categories/26/articles/search.json?q=syria public FZResult Search(string ...
0
votes
1answer
41 views

android parse JSON object

On a web service I a, getting a json as follows in android application. I would likes to make a loop table view in android with lists object. Please help me how to make the loop. I successed by making ...
0
votes
1answer
19 views

Designing a Data-Driven JSON API

I'm currently working on an API that accepts a large batch of data and performs a few different kinds of analysis on the data. Rather than forcing clients to pass in their data once for each sort of ...
0
votes
0answers
18 views

How to Get EntireWeb Partner Id

Im doing a Project to fetch the result from different search engines and extracting common results I searched and Choose Google, Bing and EntireWeb. I succeeded with the Google and Bing by getting ...
0
votes
2answers
120 views

Recover base64 image from a web service in Android

I'm developing an app in android which connects to a web service in php. The users can send pictures, or better said, will be able to send pictures cause I'm stuck on it, to other users. Right now ...
0
votes
0answers
60 views

Node.js SOA with JSON web-services - configuration

I am starting research on how to implement Node.js SOA (service oriented architecture) with JSON web-services. As a small sub-question, I need an approach/framework/system to make universal ...
0
votes
1answer
50 views

Getting error with my json parser class

I am making an android application in which i have to use jsonparser class. but it continously return null json object plz help me out. One thing more json parser class is called from ...
0
votes
1answer
38 views

Trouble in getting data from webserver

I wrote this code to read and write data from webserver (mysql databse) and then all the data will be show on my andriod application. In this regard i used php services for reading and writing the ...
0
votes
3answers
74 views

encode/replace blob with base64 in php array

Iam currently building an HTML5 app which gets its data json encoded from a php webservice. I also have small images stored in the database and would like to return them as base64 encoded with the ...
0
votes
0answers
31 views

Parse content using json [closed]

I want to parse content using json. I am able to parse it but it is not parsing full text. it is parsing only half of the text. This is my code String content = object.getString("content"); ...
0
votes
1answer
217 views

How to parse android-php json webservice response

I am new to android and studying a bit. I am in a hard duty to pass json objects between android and php. I have this code to send json object to send json object to server. Its pretty working well. ...
0
votes
3answers
38 views

json ,webservice “undefine error”

function authonticate() { $.ajax({ type: "POST", url: "http://lp18mobile.azurewebsites.net/LP18WS.asmx/AuthonticateUser", contentType: "application/jsonp; ...
0
votes
1answer
65 views

Cross Domain webservice not working with Jquey/Json

When we run the code we are getting an error "undefined". We have deployed our webservice Project in: http://letsplay18ws.azurewebsites.net/LP18ws.asmx We are unable to find what is the wrong ...
0
votes
1answer
64 views

serializing a json response using web service

As I'm new to knockout, web services and all this things, I'm trying to populate a dropdownlist using knockout js and a web service. the Html code is <body> <select data-bind="options: ...
2
votes
5answers
540 views

Which is more secured and why json or xml

I want to implement web services in Java EE whose response is going to be a json. This is my first attempt for doing so but before that I just want to know are there any security issues with json ...
0
votes
1answer
34 views

Webservice path in jquery /json

When I give my local path in Jquery it is working.Eg. url: "/LP18WS.asmx/AuthonticateUser", But when I change it to online path Eg. url: ...
0
votes
2answers
65 views

Error in JSON list deserialize

I'm developing a GWT web application with a RESTful web service. The web service's results are deserializing to POJO with Jackson 1.8. It's work fine with simple fields. However, it fails when it try ...
0
votes
2answers
332 views

Kendo UI grid - not populating with JSON data

I've been struggling trying to get a simple web service/test page working using the Kendo UI grid. My web service is returning a string of JSON data: [{"ord_number":"116347 ...
0
votes
1answer
34 views

Json Data Not mapped in the backend service

I have a Spring MVC web application and I have the following web service. @RequestMapping(value = "/newBill", method = RequestMethod.POST) public @ResponseBody ModelMap acceptNewBill(@ModelAttribute ...
0
votes
0answers
18 views

Position of the key “__type” in a JSON WCF service being consumed on iPhone

I'm trying to consume a webservice made by my client on the iPhone. It was used, from what they told me, using WCF. The problem is that I need to send a bunch of parameters to a method, and one of ...
0
votes
0answers
12 views

Extract data from WMS or WFS flow

I want to get a wms or a wfs flow and extract data to store it in a database or something else in JSON format. Which technology can I use to do that ? Thanks
0
votes
2answers
95 views

ASP.Net web service always return XML not JSON

Currenly i use asp.net web service but when i call web service method by ajax call it always return XML not json i try ASP.Net web service won't return JSON - Always XML but its also not work ...
1
vote
1answer
82 views

Post data on web server with web service

Hello I am tying to save data on web server with a web service implemented in PHP. I am trying below code to do it. I am getting response from server but the data is not getting saved to server. I ...
-2
votes
0answers
18 views

Webservice for iPhone application [closed]

How do I create a webservice plus API for my iPhone application using json do I need to have an hosting account to start what are the steps?
0
votes
1answer
50 views

Getting data from web service

I have a problem with getting data from already created REST web service(by someone else) I just have Java Server Page. I need to connect somehow to this service get data(it sends data in JSON format) ...
0
votes
1answer
87 views

java.lang.ClassCastException when reading the json file using java

I want to read a .json file called (results.json) using java and extract the values of the array by the key 'title'. This is my .json file [ { "title": { "0": "UNIQUE SIGNED ...
0
votes
0answers
62 views

Android SOAP Call webservice.asmx

first time post in this area. Hope Im in the correct spot. I am trying to make a small app that will connect to a webservice. Typically we pass up a JSON object in C# to get a JSON return from our ...
0
votes
1answer
30 views

How to communicate between programs on same machine?

My setup is as follows: one master program (written in Python) acts as main application that retrieves data, which is saved to a SQLite DB (and then further processed later on). This data is gathered ...
0
votes
1answer
61 views

How to access as JsonNode from session | ${user.get()}

I'm creating a simple session object (JsonNode) JsonNode me = mapper.readValue(result, JsonNode.class); HttpSession session = request.getSession(true); session.setAttribute("user", me); The trying ...
-2
votes
1answer
61 views

How to use Twiter Rest Api in Android [closed]

Need to find a basic code which shows how to to use Rest Web service in Android and then parse Json responce to show the data. Appreciate if some one can share a code,
0
votes
0answers
98 views

Post JSON over HTTPS

In the past I have successfully called a JSON webservice over HTTP But, now I have to make a JSON POST over HTTPS. I have tried using the code that works for HTTP and simply changed the url that is ...

1 2 3 4 5 23