0
votes
0answers
11 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
1answer
16 views

Consuming JSON with Play Framework and $.ajax

I'm still new to RESTful APIs and JSON, so I tried looking at the documentation for jQuery and Play for sending JSON to a URI and parsing JSON from a request body. Unfortunately, I'm getting some ...
0
votes
0answers
15 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
0answers
15 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: ...
1
vote
1answer
42 views

RESTful authentication for Java EE

I've been spending some time evaluating the options available for restfully authenticating a user in a Java EE application. So, please suggest if the options listed below are valid along with the ...
0
votes
2answers
43 views

Converting AJAX REST call to a C# .NET

I have a AJAX call that works perfectly at local server. I'm trying to make the same call via C# (from another application/domain) but I'am very confused. This is my webmethod: [WebMethod(true)] ...
0
votes
1answer
28 views

Ajax call to Rest service not successfully calling success function in ajax

I am having some ajax difficulties (and am newish to ajax, but have done a fair bit of searching) when calling a java rest server that I have written. I have a test html page running within the Rest ...
1
vote
1answer
66 views

Ajax post to RESTful web service

I am having an issue with an Ajax post to a RESTful web service in Java. The project utilizes a single servlet mvc model, with the Ajax post data being sent as JSON to the web service. The specific ...
1
vote
1answer
25 views

Backbone sync send CORS preflight, but does nothing after that

I try to save a backbone model with model.save(), I gave the urlRoot, and I'm waiting for a POST call. I have a REST service on another subdomain which is waiting for the request. I got these request ...
0
votes
2answers
53 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
1answer
40 views

Backbone Sub-Collections & Resources

I'm trying to figure out a Collection/Model system that can handle retrieving data given the context it's asked from, for example: Available "root" resources: /api/accounts /api/datacenters ...
0
votes
0answers
18 views

POJO as a Jersey ReST Service Performance

I built my first ReST service, and I'm using an annotated POJO as the service class. @Path("/foo") public class FooService{ @Get @Produces({MediaType.APPLICATION.JSON}) public ...
3
votes
2answers
61 views

Adding functionality to Backbone Models?

I'm trying to figure out the "correct" way of accomplishing custom update functions in Backbone.js Models. An example of what I'm trying to do is: var Cat = Backbone.Model.extend({ defaults: { ...
0
votes
2answers
34 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 ...
4
votes
1answer
44 views

simple search using restful api

I'm a complete noob trying out my hands on Ajax and Jquery. By following an online tutorial, I successfully made a search engine using MySQL as the backend database; <script> $(function() { ...
0
votes
1answer
20 views

Cross domain REST using Ajax in Dojo

I have using dojo.xhrPost method in Dojo and trying to call url from different domain server REST services. I have facing problem in cross-domain. I have getting ERROR ::: “ RequestError: Unable to ...
0
votes
2answers
44 views

Solving API Performance Issues with Cross Domain Ajax

I'm in the process of building out an infrastructure to support a gaming platform we intend to scale out to hundreds of thousands of users. Since this is in the entertainment / gaming industry, we are ...
0
votes
0answers
32 views

Securing REST API using HTTP_X_REQUESTED_WITH and SESSION IDS

I'm building an API for my website and I only want the API to be accessible from my own website. The way I've built it is that I call a PHP file using ajax: <?php session_start(); ?> ...
1
vote
1answer
24 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
28 views

POST to PHP file doesn't work in Fiddler

I have this very basic PHP file uploaded to www.example.com (not local): <?php header('Access-Control-Allow-Origin: *'); echo $_POST['var1']; ?> I composed a simple test in Fiddler as below ...
1
vote
1answer
40 views

JavaScript callback values not correctly passed

I am having some trouble passing a constant value to a callback function. I am performing a RESTful request using ajax, then handling the error and success events by returning data to a callback that ...
4
votes
0answers
93 views

Why browser do not follow redirects using XMLHTTPRequest and CORS?

I am writing a web application for some service using RESTful API. The API is available at https://api.example and app at https://app.example. Simple GET requests using CORS are working just fine in ...
0
votes
1answer
66 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
39 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 ...
0
votes
1answer
35 views

How can I have multiple handlers in same ProcessRequest method?

I am calling a REST service from ajax, I have the following example call myipaddress/RestWebService/employee?id=1", The c# service code is shown below. My handler as above is "employee", I wish to ...
0
votes
1answer
60 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 ...
0
votes
0answers
62 views

SOLVED: Codeigniter REST API post not working

require APPPATH.'libraries/REST_Controller.php'; class Test extends REST_Controller { function ajax_all_webinars_get() { $this->response(array("success"=>"get"), 200); } function ...
-1
votes
1answer
68 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
227 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
1answer
148 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
1answer
42 views

Spring3: No mapping found for HTTP request

I'm sending the following request: GET http://127.0.0.1:8080/ajax/rest/teamService/list HTTP/1.1 Host: 127.0.0.1:8080 Connection: keep-alive Accept: application/json, text/javascript, */*; q=0.01 ...
1
vote
1answer
78 views

Alternative to polling on REST service?

I have to implement a REST WebService that has different Clients (Silverlight, WPF). The point is to make use of the http advantages. I must push updates tp my clients (and i have no idea, what is the ...
0
votes
0answers
46 views

List object not created in WCF REST request from AJAX

My issue is a bit complex to explain in the title. But here it is: I have this method in my WCF service [OperationBehavior(TransactionScopeRequired = true, TransactionAutoComplete = true)] ...
1
vote
1answer
193 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 ...
1
vote
1answer
27 views

Accessing REST Service in another server

I have a javascript method snippet as below var tempUrl = "http://A.com:8081/TestService/serviceMethod"; jQuery.ajax({ url:tempUrl, type: 'POST', data:"getDatareq="+encodedata, ...
0
votes
1answer
62 views

difference between Rest web service method call and non Rest web service method call or normal method call

Can anyone please let me know the difference between rest web service method call and normal method call. I developed a website, in which I invoked a method in controller using the following way, ...
1
vote
1answer
59 views

JQuery Ajax settings : Timeout

I'm using the JQuery ajax method to call a service with rest api. I have added a timeout value of 5 seconds to my service call. $.ajax({ timeout:5000, type:"POST", url:"serviceurl", ...
0
votes
0answers
68 views

PUT string getting cut off [closed]

I'm making a put request to my server using PHP. I'm updating some text for a field and it seems that if it's too large it gets cut off. I'm doing a direct request using a REST client and it seems ...
0
votes
0answers
95 views

Error In Access JSON Response Using Javascript

i have a web service which returns a String Of JSON response. When i am trying to access that response in my web page using $.ajax function it always generates an error terminates without any ...
1
vote
2answers
88 views

JSONP pass api key

I've got an arduino uploading sensor data to cosm.com. I made a simple webpage on my local web server to query the cosm.com API and print out the values. The problem is that if I am not logged into ...
0
votes
0answers
41 views

Programmatically create a Google Task using a button/hyperlink/etc. on a web page?

In the context of a distributed project, I'd like collaborators to be able to automatically create Google tasks (to-do items) by clicking on a link next to the work items. Is it possible to do this? ...
0
votes
1answer
97 views

jquery ajax callback gets null data

I'm using knockout.js to bind data in conjunction with jQuery ajax calls to a restful service returning JSON to get the data. I have tried various things on this and can't seem to get the syntax of ...
0
votes
0answers
29 views

WCF / ajax Service that Produces 401 Error Using https

I have simple web page containing a list which is updated via AJAX. When the page is loaded via http the service is called via http and all is well. When the page is loaded via https (successfully) ...
0
votes
0answers
57 views

Can't make a synchronous REST call in jQuery 1.8+

As of jQuery 1.8 the async:fals option for the $.ajax function has been deprecated. This was my go to method for making REST calls. Can any one demonstrate a method for making a synchronous REST call ...
1
vote
1answer
333 views

AJAX POST request on IE fails with error “No Transport”?

I'm trying to make an AJAX request to a public service Here's the code: $.ajax({ url : "http://api.geonames.org/citiesJSON", type : 'POST', cache : false, dataType : 'json', data ...
0
votes
0answers
148 views

How Upload 2 file using backbone and rest api

How to upload files using backbone and rest api (codeignitier). following is my html form data:- <form class="form-horizontal" id="upgrade_firmware" method="get" enctype="multipart/form-data"> ...
1
vote
2answers
185 views

Web service (ASP.NET) and android application (API) talkability

I'm researching a side project I'm interested in at the moment which is having an attachment to an android phone that can scan fingerprints and enrol/verify them on an online database. I'd like to ...
1
vote
2answers
233 views

Adding request header to jquery ajax call throws 101 exception

Hi I have simplified my code as much as possible below. What I am trying to achieve is call a restful wcf service.However when I add the set request header method I get exception, in both Firefox and ...
1
vote
1answer
83 views

Building a REST API to publish a website to users domain

Use Case: I am working on an application where user can build his own html template and publish it to his domain by selecting one. He can use different components to do this. Issue: I want to ...
1
vote
2answers
138 views

How to handle errors in client-server application using REST services?

QUESTION 1) How to handle errors in client-server application when using REST services? Could somebody help me with example code what is the best way to handle error messages in code below. How to ...

1 2 3 4 5 6