0
votes
1answer
16 views

How to get intermediate feedback from my REST service for a single GET request

In my user interface, I am trying to implement a progress bar which shows the percent of completion of work for a user request. My back-end REST service needs to do a lot of computations; hence it is ...
0
votes
1answer
13 views

Getting the “no type was found that matches the controller named” error message during Ajax Request

I've seen a lot of topics about this, but unfortunately I believe that each case is a different case (or most of them), and I really would love some experts opinion about my case in particular since I ...
2
votes
2answers
52 views

$.ajax not calling WebService

i am new in jquery ajax.i want to call web service but in not working. this is my jquery code. $(document).ready(function () { $('#TxBx_BasicSalary').focusout(function () { ...
-4
votes
0answers
27 views

Send data from one domain to another domain [closed]

We have a requirement as follow We have web application built on Asp.Net 3.5. There is another Android mobile application written in different domain.So whenever user update information on mobile it ...
0
votes
1answer
41 views

Nested Listview

This is my SOAP XML response from my webservice. I want to put(code,name,category and yield) this to listview in jquery mobile ,Im using Icenium (html,css,js,jquery mobile framework). and also count ...
1
vote
1answer
65 views

Handling errors raised by jQuery Ajax method

I have a page in which I am using a jQuery ajax method to call a simple Webservice which will get some data from the database and bind it to some controls in the page. The ajax method is called on the ...
1
vote
1answer
292 views

asmx Web Service failing to return JSON with FineUploader file upload

I know there are many questions similar to mine out there on this subject but those don't solve my issue. I know that web services naturally parse my objects into json as part of the framework. I have ...
1
vote
0answers
55 views

Issue with url parameter calling WCF service from JQuery

I am trying to call the WCF service from Jquery. But if I replace the url with my machine name it doesn't work. The html/jquery and WCF are both on the same web site (project). I think many people ...
0
votes
0answers
96 views

Cross domain web service call using jquery, web service is hosted on iis6.0

I am using this code for cross domain web service call : $.support.cors = true; $.ajax({ type: 'POST', crossDomain: true, dataType: "jsonp", jsonpCallback: 'jsonCallback', ...
1
vote
0answers
106 views

__EVENTTARGET is undefined

I have a web page(.aspx), on which I'm loading some user control by jQuery ajax. Something like this: $.ajax({ type: "POST", url: "WebService.asmx/GetGrid", data: ...
9
votes
3answers
190 views

What are the possible threats while calling web services by using JQuery and how can avoid them?

I know this question can be too generic but for purposes of narrowing the question, here is a brief description: I'm planning to forget about ASP.net UpdatePanel and move to use ajax via JQuery. I am ...
-1
votes
2answers
105 views

php/javascript - using ajax to automatically update the client side

I am using PHP write the server side of the web page, and javascript to build the client side. There is a div on the website that will show the data received from server side, for example, Let's say ...
0
votes
1answer
166 views

How to update rows in JQGrid?

I am using JQGrid for showing results from database. Now I need to update rows by user. I have tried to use Inline Navigator. I have used the following code for making the grid. $("#MyGrid").jqGrid({ ...
1
vote
1answer
59 views

Jquery ajax not getting called in asp.net2.0?

I am using Asp.Net 2.0.I am trying to learn webservice and call that webservice using jquery ajax method The problem is jquery ajax is not working properly and i could not find out where i have gone ...
0
votes
0answers
111 views

Passing parameter tothrough Ajax Call

I'm trying to pass a parameter to a asp.net webservice method through ajax call. My code is not working when i pass the parameter.It works when i remove the parameter. I guess i'm passing the ...
0
votes
1answer
333 views

Call to WebMethod from jQuery ajax gives Internal Sever error and Web Service method is not valid

I am trying to call the the GetPlatformNames() webmethod using ajax inside the GetPlaform() javascript function. But, the ajax calls never succeeds. In the error alert I get "Internal Server Error" ...
0
votes
0answers
195 views

JQuery Ajax communication with soap web service needs authentication

To access to the web service, the request needs authentification with a username and a password, how to add them to my code: function sendReq() { var wsUrl = "*******"; var soapRequest ...
0
votes
1answer
145 views

using success event ofjquery / ajax to fill and set dropdownlist value

i have a Ajax request to Fill an edit form like.. function FillLiveDetail(event, LiveID) { $.ajax ({ type: "POST", url: MyUrl + '/GetLiveDetail', data: '{LiveID: "' + LiveID + '"}', ...
0
votes
0answers
73 views

Getting HTML as response while connecting to WSDL PHP

Hi, I'm new to PHP. I'm trying to authenticate a username and password using PHP. I am trying to call PHP using jQuery AJAX. But I'm getting the following html as a response: ...
0
votes
3answers
205 views

parsing json response to C# object using jquery

I have following JSON returned from my WCF service: `{"DoWorkResult":[{"AAID":0,"AreaID":1,"AreaName":"Basement","AssemblyAssessmentID":1,"AssemblyID":493,"AssemblyName":"Handrail ...
0
votes
3answers
52 views

returning Json result from WFC service and using the result in $.ajax

I have an asp.net page where I am using jquery ajax. I need to create a method which I can use as url in $.ajax. I did search on net and found that I need to create WCF service. My solution is in ...
0
votes
0answers
60 views

Ajaxify FacyBox Image Navigation

I have a Image Library based on KnockoutJs on asp.net web application. it has a grid that shows 10 images at a time with pagination control. the data is fed through wcf webservice. i have added fancy ...
1
vote
3answers
872 views

Calling asmx web service using JQuery with parameters causes 500 error

I have a simple enough web service: [ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Json)] [WebMethod] public string GetToken(string a) { } ...
1
vote
3answers
201 views

binding data web service public url to dropdown in excelcontentApp

Here i have created web service and given public url for getting data from the data.I have written following code in office 365 developer preview(NAPA) default.htm page. <!DOCTYPE html> ...
0
votes
1answer
61 views

Auto-generate a WCF web service app based on an exisitng WCF web service

What I am wanting to do is expose my web applications business logic via web services, potentially enabling multiple implementations of my web app (running on different domains) to share the same data ...
0
votes
1answer
193 views

page_load called when calling webmethod using JQuery ajax

I'm trying to call a webmethod inside a aspx page but only the page load event loads. The webmethod: <WebMethod()> _ Public Shared Function Test() As String Return "hello" End Function ...
0
votes
0answers
321 views

How to Get Data from remote Webservice using jquery

I have problem in binding data to a control in html page,here we have a web service in remote location as we are binding the data to a control(dropdown) in html the data is not binding the code for ...
3
votes
2answers
430 views

Jquery Ajax Call, doesnt call Success or Error [duplicate]

Possible Duplicate: How to return the response from an AJAX call from a function? I am using Jquery Ajax to call a service to update a value. function ChangePurpose(Vid, PurId) { ...
0
votes
1answer
53 views

How should I make a call in case I have to pass backslash in data in ajax call jquery

How should I make a call in case I have to pass backslash in data as following - var userToGetRole = "domain\ashu"; var userIdToGetRole = {"userId": userToGetRole}; $.ajax({ type: ...
0
votes
0answers
50 views

How to access to WCF endpoint with JQuery?

I'm new to WCF, so far I've understood the basics to it, I'm not having problem with method defined with the GET method, I've been able to fill a grid with data consumed from methods wtih the GET ...
2
votes
1answer
282 views

Calling Webservice from another server

I have created a web service, called MailSerderWS.asmx having code in AppCode/MailSerderWS.cs its working fine on the local PC, but i have some questions regarding its usage on Production: Basically ...
0
votes
1answer
116 views

AJAX call POST Method

I am trying to call my web services using AJAX CALL. But i am getting with Unsupported Media Type Error in my firebug tool. But it works fine in Rest-client Jar. Below is my code. ...
0
votes
0answers
25 views

JavaScript - Clearing the Timer for Bing Maps

I have a timer function which pulls the postcode from web services and send it to the Bing maps API to place it after certain amount of time. It works fine but the problem I have is timer is ...
0
votes
1answer
135 views

Cache settings ignored by .net?

I've got a WebMethod that I'm calling from jQuery AJAX. No matter what I do, I cannot seem to get caching working propperly on the JSON data that is returned. Here's how the C# looks: ...
2
votes
2answers
270 views

Caching an HTTP_POST jQuery Ajax Request Result with C# WebMethod

Here's something I can't figure out. I've got the large JSON data set that I'd like the client to cache in browser. I'm using jquery AJAX to call a c# web method. [System.Web.Services.WebMethod] ...
0
votes
0answers
81 views

Error when using Gridview in user control

I have a user control with a gridview and call from a web method: user control: <div> <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="true"> ...
3
votes
2answers
139 views

How do I protect my AJAX services?

Right now I'm working on a service that handles reviews/recommendations of local restaurants overlayed on Google Maps. Basically Yelp, but restricted to a certain niche. Anyhow, since I don't want to ...
1
vote
1answer
84 views

Extract URL params in ServiceStack VB.net

How to extract URL params in ServiceStack VB.net? For example Query URL: http://localhost:3318/api/ActionName/?callback=cb&format=json&SomeParam1=19-11-2012&SomeParam2=123123 Just FYI I ...
1
vote
1answer
403 views

ajax call - web services

I am trying to use web service & ajax call. Already i have deployed my web-service in my virtual machine. URL: http://www.lumiin.ch:8080/lumiin-service/lumiin/control/lookup/Priority Try this ...
0
votes
0answers
542 views

Cross Domain jQuery AJAX request to WCF - 405 Method not allowed

I am building simple WCF web service for my mobile web app. I am stack at the point of making the $.ajax request to WCF which comes back with 405 - Method not allow, even though when I do ...
0
votes
1answer
117 views

Chinese string can't be recognized after the ajax request

I write an Ajax request to POST the data. The webservice XML information is shown as below: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope ...
0
votes
0answers
98 views

remote webservice jquery autocomplete json

I am having hard time retrieving data from a web service hosted on a different machine. Web service when hosted within the project works fine. Here is my jQuery code $(document).ready(function () { ...
0
votes
4answers
113 views

JSON Array and Jquery

I am invoking a ASP.Net web-service (.asmx) using j-query and my response is a json array as follows my jquery code is: $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", ...
2
votes
2answers
197 views

A Quick Preview feature when mouse hover over the Image

I'm Begginer in ASP.net and new here So I hope I'm following the post guideline here Let's Assume that I search a product catalog and the result it displayed a multiple products with a Icon , I want ...
2
votes
2answers
310 views

How do I make sure the data sent to WebService using jQuery AJAX is through my site and not some attack

My Code: function HandleSignUp() { var CurrentURL = document.URL; var obj, val; //ajax call started $.ajax({ type: "POST", url: ...
1
vote
3answers
2k views

How to reload asp.net GridView after jquery ajax call?

I have GridView, textbox, an html button. What it does is the textbox contains a value that will be saved in the database after clicking the html button. Here is the code for the page: <div> ...
0
votes
1answer
423 views

jQuery ajax method not getting called when code moved to GoDaddy hosting

My code: function HandleSignUp() { var CurrentURL = document.URL; var obj, val; //ajax call started $.ajax({ type: "POST", url: ...
1
vote
1answer
116 views

call ASP.net 1.1 service in asp.net using Jquery

I am trying to call ASP.net 1.1 service in asp.net using Jquery, can't figure put what I am doing wrong here, Pleaseeeee help Javascript Method function YesCheckChanged(vSRID) { var para = { ...
1
vote
0answers
1k views

asmx web service - jQuery ajax post json (500 error) - CORS (Access-Control-Allow-Origin is set to *)

This topic seems to be one with a million "solutions" with even more mixed results. So please cut me a little slack as I will try to demonstrate what is going on, what I'm using and how I've ...
0
votes
0answers
93 views

IIS7 Virtual Directory and Cross-Origin Resource Sharing

Scenario - I have DNN modules hosted on a certain website on IIS7. A REST based service lies on another URL. I had to make an $.ajax call - used jQuery.support.cors = true; at the document.ready ...

1 2 3 4