0
votes
1answer
29 views

Call ASP.NET Web Service from JQuery

I am new to JQuery and I want to simply create a JQuery client for calling an ASP.NET web service. Here is my HTML web-page (with JQuery in it): <html xmlns="http://www.w3.org/1999/xhtml"> ...
0
votes
0answers
19 views

Display PDF and Download with jQuery on Phonegap [duplicate]

I have a REST service that attaches a PDF with its response. For example: http://localhost:8080/backend/rest/getPDF I would like to display this PDF in my page (I'm using Phonegap) and allow the ...
2
votes
1answer
48 views

Dynamic web page with RESTful content provider

Maybe it's a newbie question so sorry in adavnce :) I'm having a REST API that returns JSON objects. I'm trying to build a web-site with 2 page: First page presents a table that presents article ...
1
vote
0answers
24 views

Turn key replacement for Iframe system

Not really sure how to ask this question because I have a feeling it might start a debate. Currently my company uses <iframes> to embed an e-shop on affiliate sites but they want to make the ...
0
votes
2answers
61 views

jQuery get data from REST service

i have implemented REST service which is hosted on address http://localhost:8080/rest/adrestresource/1.0/activedirectory/findgroups%20test@lab.local%20pwds%20localhost . This service is visible and ...
0
votes
2answers
45 views

What are the differences between type='put' and type='get' in Jquery ajax function? and which one is easier and safe? [duplicate]

I know that there are four request types such as get ,put ,post ,delete .When and why will I use type='put' or type="get" ?Basically what are the differences between them? $.ajax({ url: ...
2
votes
2answers
47 views

jQuery .ajax: How to handle Custom Validation Error Message, REST API, 400 status code?

What's the best way handle a 400 error (form validation error) with a Custom Error Message (Simple Text) from a jQuery .ajax call to a REST API. I'm trying to return the validation message with the ...
0
votes
1answer
59 views

Unable to POST Json to REST service

It looks like I can post text to my REST service, but I can't post json or text that looks like json, and I can't figure out why. At the bottom I've included two different Ajax bits, one that works ...
0
votes
1answer
47 views

REST API: is a redirect (303) a good idea

In my RESTful API I return a redirect (303) in some special cases (e.g. an internal subscription is expired; I know this doesn't sound REST). In order to test my API I wrote a simple webpage using ...
0
votes
0answers
21 views

Http post works with beans and command line but fails with js

I am making a Javascript http POST json query to a .WAR application. I have used both JSONRequest.post and XMLHttp utilities, but I continue receiving an error that the method i use isn't POST. Is ...
0
votes
0answers
39 views

Got XHR.status 0 while doing http get request through jquery code while HTTP response is 200 ok

I am trying to send get request to REST based API(JAX-RS/Jersey based API) through jquery. Request reaches successfully to API as I have seen in logs and on firebug i saw 200 ok response below is ...
0
votes
2answers
77 views

Jquery ajax call returns error when the rest service is returning a string

Trying to send a simple text from my rest service and read it using ajax call. Found many answers about jsonp and cross browser compatibility, tried crossdomain too. Here is the rest service: ...
0
votes
2answers
46 views

How to issue a GET request with jqery/ajax?

I am trying to load data from a mongodb database, running on mongolab. The documentation is very good but it is weird how there are examples for PUT and POST yet there is nothing about GET: ...
0
votes
1answer
43 views

Connecting To Restful WCF Web Service and Jquery Mobile/HTML

I have created a small web application which i am trying to connect to my web service. For some reason, i am receiving the error '200'. The functionality is simple: 1) The user enters a value ...
2
votes
0answers
112 views

Can't get JSON array from URL

I'm working with Resteasy and I have launched a resource in the URL: 'localhost:8080/ressources/agences' When I test in the browser I get: [{"agence":"Agence ...
1
vote
1answer
77 views

JQuery's Ajax function works in chrome but returns 404 in firefox

I'm using a central ajax function to send ajax Post requests to a server. This is the code of the function: function postJson(url, jsObj, whenSuccess, whenError){ $.ajax({ type: ...
0
votes
1answer
48 views

Jquery AJAX calls to NLB (Network load balancer) and cross domain scripting issue

We have a simple dashboard application that makes Jquery AJAX calls to RESTFUL WCF service (whose endpoints are exposed using webHttpBinding). Things work as expected as long as UI application and ...
0
votes
0answers
56 views

Is it possible to call WCF ,which uses Windows or NTLM authentication ,from jquery ?

After trying for the whole day i was finally unable to Call a Cross Domain WCF Service with Basic authentication from jquery. You can find my previous question about this here. Unable to add ...
0
votes
1answer
91 views

Unable to add Authorization header while calling WCF service with basic authentication

I am trying to call a WCF service deployed on IIS with basic authentication enabled, from j query as below. $(document).ready(function () { $.ajax({ type: ...
0
votes
1answer
84 views

How to pass parameters in WCF Json service which doesn't have .svc file?

I am using a .cs file instead of .svc to call my wcf service. It works fine for service methods without parameters , but not for methods with parameters. Below is the code: service.cs using ...
0
votes
1answer
109 views

jQuery 2.0 + ASP.NET WebApi POST empty response = fail

I'm using ASP.NET WebApi to build my REST services. In many cases, I only need to return a 200 OK message (with no body). The response typically looks like (it's a POST): return ...
1
vote
1answer
73 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": { ...
-1
votes
1answer
54 views

How to get cross-domain JSON from jQuery?

I am trying to get JSON (getJSON()) from server that doesn't have support for jsonp implemented. Namely, when adding callback=? to the URL, the server does return the data, but it returns pure JSON ...
2
votes
3answers
59 views

JSON item to Backbone Model

I'm using backbone.js. I get a json like this: { first_name: 'David', last_name: 'Smith', family: [{father: 'David', mother: 'Rose', brother: 'Max'}] } first_name and last_name shows in ...
0
votes
2answers
66 views

Parsing Json feed from Solr

I'm experiencing a strange behavior parsing feed from Solr. I dont get any response using the url1. But I get if I use url2 instead, In both cases I got responses putting the url directly into the ...
1
vote
1answer
83 views

JQuery AJAX Get request with JSON

I call the following ajax from a form: $.ajax({ data: JSON.stringify($('form').serializeArray()), //an array [{"name":"myform","value":"entered value"}] dataType: 'json', type: 'POST', ...
0
votes
2answers
81 views

How to secure ASP.NET REST with JQUERY client call

I am completely new in the rest web services world and I traveled hugely articles on the web trying to implement REST webservices in ASP.NET (with in parallel a webform application in another project) ...
0
votes
0answers
50 views

ASP.NET WCF and Web Form together not working

I developed a Webproject in ASP.NET 4.5 with C#. In the Webproject I have normal ASPX sites and also I want to have a WCF Webservice, the WCF Webservice should be activate by a jQuery call. This is ...
0
votes
2answers
40 views

Jquery Json ajax get receiving an exception immediately

When I call a WCF service (which returns a string with json data in it) I created inside an html page using ajax and jquery, I receive no data. However if I hit the URL for the service directly within ...
1
vote
1answer
32 views

Rest Sercvices Custom Status Code Response Serialization

This is the ajax call I'm using to get the response from the rest services: $.ajax({ url: xxxxx, cache: false, dataType: 'json', data: JSON.stringify(xxxx), type: "POST", ...
0
votes
0answers
129 views

REST Client jQuery/PHP with a JSON object

I've created a payment.php file that will be the receiver of a form. Its code is: <?php $data = '{ "intent":"sale", "redirect_urls":{ "return_url":"http:localhost/done.php //<return URL ...
0
votes
1answer
73 views

jQuery Ajax PUT not firing

The following ajax works exactly as advertised in Chrome. HTTP PUT is used to trigger the insertion of an object into a RESTful API. $.ajax({ type: "PUT", url: ...
2
votes
1answer
41 views

jQuery and couchdb: is it possible to handle “created” and “already exist” in one handler?

A typical pattern no use REST couchDB API is "create if not exist". For example, if i want to create a database if it's not exist: $.ajax({ type: 'PUT', url: DB + 'mydatabase', }); As a ...
-1
votes
1answer
34 views

Auto retrieve result form REST API

I am development user control that use REST API and jquery to pull data form custom data source , I will add the user control in a page and I need to refresh the result every 5 min to retrieve data , ...
0
votes
1answer
78 views

Preflight of cross domain Ajax with custom header (using jquery) always getting cancelled

I am trying to make a cross domain POST with custom headers, but the preflight always getting cancelled (That's the word in Chrome's "Inspect Element" panel >> "Network" label), and I cannot tell ...
1
vote
1answer
69 views

Backbone.js Form Values Remembered in History

I'm new to the whole Backbone (and I'm actually not much of a JavaScript programmer yet), and I'm running into issues with a filter form. Basically I have a database that my backbone collection gets ...
0
votes
0answers
17 views

How can I tell if my yql rest query is formatted correctly?

My rest query provides accurate data when formatted like this: <script ...
-1
votes
1answer
77 views

Ajax request from controller in codeigniter

i am trying to use ajax to get data from a server and store it in a cookie. The code below is being built in coodeigniter, and comes from the controller. $email = ...
0
votes
1answer
513 views

Calling Restful Web service using jQuery ajax

I've made a RESTful web service at localhost in Java. When I type the following url in my navigator address bar : http://localhost:8080/GeonotesApp2-war/webresources/route/1 It will give me : ...
0
votes
0answers
45 views

JQuery ajax fails with a secure REST url with an expired certificate in a mobile app

In a HTML5 mobile app (using Phonegap), the JQuery ajax calls fail with a https REST service url with an expired certificate. I cannot install an unexpired certificate on the server and need to make ...
0
votes
1answer
243 views

JQuery ajax GET request, success not firing while response status is 200 OK

I am having a weird response with JSON response data while sending a REST call . I can see in firebug that response status is ok, but the body is empty, even though trying with poster it works fine. ...
1
vote
0answers
99 views

simple REST call from Javascript

I am trying to call my service from here http://diningphilospher.azurewebsites.net/api/dining using below javascript, $.ajax( { type: "GET", dataType: "json", url: ...
0
votes
1answer
38 views

Connecting to Rest Server with jquery and ajax

i am trying to make a call to a rest server using jquery/ajax The rest Server is built in Codeigniter The ajax function is as follows: var req = $.ajax({ type: 'GET', url: ...
0
votes
1answer
62 views

Backbone global success handling

In our project we use backbone to access a REST service. This service delivers an HTTP Header that contains a kind of session token to authenticate the current user. This token changes on every ...
0
votes
2answers
94 views

JSON call back function name in getJSON()

I want to access REACTOME REST API to retrieve some data. I am using getJSON() to get the JSON data. But I don't know the callback function name as the name are different for every websites. ...
0
votes
1answer
31 views

REST and jquery ajax

when I use jquery and ajax am I using REST? Is rest just asynchronous post/get etc? $.ajax({ type: "POST", url: "some.php", data: { name: "John", location: "Boston" } }).done(function( msg ) ...
0
votes
1answer
577 views

Header Access-Control-Allow-Origin:* not working properly on Spring MVC

I have a web application running on Spring MVC using RESTful web services. I'm trying to send a JSON to those web services from an HTML/Javascript file. Here's the Javascript: $.ajax ( { type: ...
1
vote
1answer
327 views

How to process json response from ajax call

My webservice returns a JSON object like following ["abc","xyz","option_3"] i.e. when I put this address in chrome browser http://localhost:8088/rest/getOptions I get above. I am trying to read ...
0
votes
1answer
33 views

Get Images Exposed by a RESTfull Service and use them in an HTML Document

I'm currently exposing some application icons (such as the Notepad.exe icon) as bitmap data in JSON format through a RESTfull service. I'd like to capture the data using javasript and/or jQuery and ...
0
votes
2answers
365 views

How to get JSON data from the url(Rest API) to UI using jquery or java script

I have a URL "http://localhost:8888/api/rest/abc" which will give following json data. I wants to get this data in my UI using Jquery or java script. I'm trying this from couple of hours but I'm ...

1 2 3 4 5 8