I have written a really simple wcf rest service which seems to work fine when I make requests to it through fiddler but I cannot get it to work when calling ... |
I am using jQuery to consume a web service I built, the input is currently serialized JSON, as well as the output via jQuery AJAX.
I'd like to make the service more ... |
I am currently developing a web-frontend for a web service. I am using jQuery 1.5.1 as JS-Framework and Firebug for debugging purpose.
First of all, I have tested the web service with ... |
I have a REST end of my API at the following address : http://test.jll.aplikacje-dedykowane.pl/rest/warehouse/all . Now I'm trying to return the JSON data prepared at this page but I'm ... |
I am trying to get my application working by using REST, WCF and JSON (new to all those technologies). I have the 'GET' working fine. It is the 'POST' ... |
I know the question is a little vague, but I'm not sure how to explain it.
I'm building a sencha-touch app that will be communicating ... |
Here's my code, I am using Jquery
var flickrUserId = '83822067@N00';//My flickr Id
var flickrApiKey = '4a241b15bac1fd0cc86bdce2f092b81d';
$.getJSON('http://api.flickr.com/services/rest/?&method=flickr.people.getPublicPhotos&api_key=' + flickrApiKey + '&user_id=' + flickrUserId + '&format=json&jsoncallback=?',
... |
|
I have a wcf webservice that is exposed through wsHTTPBinding and basicHTTPBinding. The latter specifies it's endpoint address as being "/basic" as in the following:
<endpoint ...
|
we are just in the beginning of a new project. We want to use Grails on server side and GORM pages(for html pages rendering and JQuery support) and GWT(for rich gui ... |
I am trying to use the Bing Maps REST service to get information about a city's location using a city's name. While the query string returns a response when I enter ... |
I'm new to JSON and APIs (everything like that).
I am trying to test out the API over at Hot UK Deals (http://www.hotukdeals.com/rest-api), for a future development.
I have an API ... |
I am developing a REST client which will talk to a project management service called attask.
Their REST API is convenient because it returns simple JSON that is easy to ... |
I have a web application that uses AJAX to grab JSON data from the server. It requires that the user first log in with their browser so that a cookie can ... |
I am designing a Restful web service for an internal corporate application, and am curious how to merge JSON and "web content" requests.
The web application, like all good corporate applications, has ... |
Code: $.ajax({ url: path + "resources/sample", type : "PUT", ... |
This is what I'm trying to achieve1. I have a REST webservice which returns JSON object2. I created a stand alone html page which includes a script.3. The content of the scripts are$(document).ready(function() { jQuery.getJSON('http://localhost:9081/JaxbandRest/rest/todo',function(data) { alert(data.todo[1].summary); console.log(data); });});As per my ... |
I've tried to call json and also RESTful web services deployed withApache Axis like see below but never getting any defined responseback... Any help?$.ajax({ type: "POST", url: "http://localhost:8080/.../getIt?userId=1&output=json", ... |