Tagged Questions
17
votes
2answers
16k views
jQuery Call to WebService returns “No Transport” error
I have the following web service;
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
It's stock standard with no alterations to the class decorators.
I have ...
17
votes
8answers
23k views
How to return JSON from a 2.0 asmx web service
Update: I have since moved on to another project, and I am now able to use .Net 4.0. As a result, this question is no longer relevant to me. From the number of views on this question, though, it must ...
13
votes
5answers
672 views
Web services API Keys and Ajax - Securing the Key
This is probably a generic security question, but I thought I'd ask in the realm of what I'm developing.
The scenario is: A web service (WCF Web Api) that uses an API Key to validate and tell me who ...
12
votes
8answers
8k views
Client notification, should I use an AJAX Push or Poll?
I am working on a simple notification service that will be used to deliver messages to the users surfing a website. The notifications do not have to be sent in real time but it might be a better user ...
8
votes
6answers
290 views
Help me to understand <script src=“some.js?param1=one;param2=two” />
I observed chunks like below sometimes on web pages. So i am curious to know what this really does? or why its written in such a way?
<script src="somefile.js?param1=one¶m2=two" />
i ...
8
votes
7answers
796 views
Techniques to reduce data harvesting from AJAX/JSON services
I was wondering if anyone had come across any techniques to reduce the chances of data exposed through JSON type services on the server (intended to supply AJAX functions) from being harvested by ...
7
votes
2answers
3k views
ASP.NET page methods vs web service
I am building a dynamic partial load asp.net page, I would like to use jQuery to call page methods or web service to retrieve the content HTML.
page methods or web service, performance wise, which ...
7
votes
7answers
11k views
jQuery Ajax call - Set variable value on success
I have an application that I am writing that modifies data on a cached object in the server. The modifications are performed through an ajax call that basically updates properties of that object. ...
7
votes
4answers
8k views
Calling .Net webservice with Jquery is causing woe when trying to post data
The following code executes properly when the data key has no data to send, i.e. data: "{}" an empty JSON object and the webservice takes no parameters. I would like to post some data to the ...
6
votes
1answer
774 views
$.ajax() error in jquery-1.6.2 but not in jquery-1.4.1
I used $.ajax() to consume a local .asmx webservice. Here's my code for the call:
$("#btnGetOne").click(function() {
$.ajax({
type: 'POST',
contentType: ...
6
votes
5answers
204 views
Understanding AJAX
Having been primarily a server-side programmer(ASP.NET WebForms) I'm trying to get my mind wrapped around AJAX outside of the "catch-all" approach of using UpdatePanels in the Microsoft AJAX controls. ...
6
votes
4answers
874 views
How to programatically access a password protected website?
Part of our website is protected with .htaccess style password protection. When you try to access this area of the website the web browser pops up a dialog asking for your username and password.
I ...
5
votes
4answers
508 views
Alternatives to HTTP Session state in plain-vanilla .NET web services app
After a long struggle with the Page Lifecycle in ASP.NET and its performance, we've begun refactoring our web app to implement web services (plain-vanilla .asmx .NET web-services) and jQuery on the ...
5
votes
3answers
2k views
Using ajax to call a web service when Windows Authentication turned on?
I am trying to call a web service method from javascript:
function Search() {
var context = new Object;
context.Filter = "Test";
SearchService.GetSearch(context, onSuccess, ...
5
votes
2answers
938 views
Consuming remote web services from client-side script
From what I understand, due to the "same origin policy" enforcement in current browsers, it's impossible to obtain data from an XmlHttpRequest sent to a different domain than the Javascript's original ...
4
votes
7answers
544 views
How to load and show data Asynchronously
I am using ASP.NET and SQL Server. I would like to load data from database asynchronously and show data which are partially loaded immediately.
Suppose there are tons of records in a query result. ...
4
votes
1answer
362 views
Why my CallBack function doesnt works? (ASP.NET Ajax)
I'm trying to make some calls to a WebService
I did exactly what is described in this article
http://viralsarvaiya.wordpress.com/2010/03/23/calling-web-service-from-java-script-in-asp-net-c/
...
4
votes
2answers
189 views
ASP.NET - Heavy connection problem with AJAX/JQUERY
I've written an updatescript that updates a few div's every second with serverside info.
Now the problem is it seems kinda heavy usage, in google chrome my mouseanimation even keeps loading.
I hope ...
4
votes
4answers
2k views
Using C++/Qt4 application as backend for web application
for one of my applications I'd like to provide a minimal web interface. This core application is written in C++ and uses Qt4 as a framework. Since I'm also using some libraries I wrote to calculate ...
4
votes
2answers
1k views
How to authenticate and keep track of users with WCF/JSON?
I'm implementing a service in WCF and need to have custom user authentication, by means of a username/password. This service is configured as a WebScript(JSON) service.
I would like to know if it's ...
4
votes
1answer
2k views
Submission with single quotes using jQuery, Ajax and JSON
I've looked around, and I'm trying to find an elegant solution to this, and I'm yet to find one. I have an ASMX web service in .NET that I'm trying to call that requires parameters.
I'm using jQuery ...
4
votes
2answers
10k views
Web Service error 'Could not create type' when calling service from Ajax
I've downloaded the Ajax Control toolkit
When I create a website from the Ajax control Toolkit template, I can create a web service in a single file (asmx) and hook this up to different Ajax controls ...
4
votes
4answers
1k views
Best practices for handling a web service failure
In an Ajax web app, what do you do when a web service call from the browser to your server fails?
Automatically retry, hoping it was an intermittent network failure or server error. (But when you ...
4
votes
6answers
2k views
How do you measure the progress of a web service call?
I have an ASP.NET web service which does some heavy lifting, like say,some file operations, or generating Excel Sheets from a bunch of crystal reports. I don't want to be blocked by calling this web ...
3
votes
1answer
54 views
Sending files to a webservice (asmx) so it can be saved on the server
UPDATED QUESTION:
I'm trying to create a form which passes subject, content, and a file to a webservices. This is what I have so far and was wondering if someone could tell me if I am going in the ...
3
votes
2answers
120 views
ASP.Net secure Ajax authentication
I want to make my ASP.Net site authentication seamless using Ajax call.
So I consider using client side authentication service of microsoft that should be used via HTTPS because it sends username and ...
3
votes
3answers
2k views
Still getting “Request format is unrecognized for URL unexpectedly ending in…”
Greetings,
I've looked everywhere and every answer I see tells me to put the following in my web.config:
<system.web>
<webServices>
<protocols>
<add ...
3
votes
1answer
939 views
Is it possible to force jQuery to make AJAX calls for URLs with gzip/deflate enabled?
I have a web service that is willing to output gzip/deflated data. I've verified that the service will respond with raw JSON or with gzip'd JSON using wget and curl.
I want to consume this web ...
3
votes
6answers
2k views
How to return a file via Web Service
I am working on a Web Service where the user would input parameters and have the option of have the data returned in various file formats (xml, html (on screen), csv, etc.).
If the server generates ...
3
votes
4answers
145 views
Does ajax require a web service?
If I want to get data to update partially in a page with jquery (or something else) ajax, does the page I call have to be a web service? Or will just any page that returns json or xml be fine?
I ...
2
votes
1answer
40 views
jQuery Ajax calls to web service seem to be synchronous
I have two ajax calls to a web service from jquery.
The first call (GetMessages) starts an interval in javascript (setInterval) and returns a string array of messages stored in a session variable.
...
2
votes
2answers
92 views
How does Stack Overflow chat work? [closed]
I have created quite a few web chats using VB.NET and ASP.NET and I'm just wondering how Stack Overflow handles messages being sent back to clients. Because web can only make requests and get ...
2
votes
1answer
80 views
How to consume the return value of a webservice in jquery ajax call?
I have a simple webservice in asp.net which determine if the input parameter is valid or not :
[WebMethod]
public bool IsValidNationalCode(string input)
{
return input.IsNationalCode();
}
I ...
2
votes
2answers
308 views
AJAX POST JSON to .NET Webservice gives 500 Internal Server Error
I am trying to consume a .NET webservice with AJAX and want a JSON response. Everything works fine. I have used fiddler and get the appropriate Json returnet. also using the plain URL in the browser ...
2
votes
1answer
110 views
Redirect from JavaScript
I'm working on an internal web app and we are using secure query string keys generated server side for some simple security to prevent users from accessing pages they haven't been given access to. ...
2
votes
2answers
107 views
jQuery and Restful WebServices Security
I have a project with the following aspects:
Frontend web application made in PHP, jQuery (Ajax) with a local database for aspects like end users authetication and configuration of the frontend web ...
2
votes
3answers
79 views
AJAX to Web Service Design: Request for Commentary
I am designing a Java web application that makes heavy use of AJAX (for user experience - no reloads, etc.). I also have the need to expose a large number of web services because there will be many ...
2
votes
1answer
47 views
the return value is IEnumerable and not IPaged
I use ScriptServices to return IPaged<> result:
[WebService]
public IPaged<int> DoSomething() {
....
....
}
IPaged<> is:
public interface IPaged<T> : IEnumerable where T ...
2
votes
2answers
296 views
ServiceReference a self hosted WCF service
I am currently maintaining and developing a website which uses a lot of webservices in an ajax way.
Registering of the services is done in the aspx like this:
<asp:ScriptManagerProxy ...
2
votes
3answers
41 views
Integrating jQuery AJAX with .NET
I want to make an ajax call from jQuery to my server. Basically, I want the request to be sent as a POST with a content-type of x-www-form-urlencoded and the corresponding parameters ...
2
votes
2answers
2k views
Jquery Ajax Posting json to webservice
Hi all I am tryng to post a JSON object to a asp.net webservice.
My json looks like this:
var markers = { "markers": [
{ "position": "128.3657142857143", "markerPosition": "7" },
{ "position": ...
2
votes
2answers
153 views
ASMX Seems To Cache
I have the following ASMX web service:
// removed for brevity //
namespace AtomicService
{
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = ...
2
votes
2answers
357 views
cross domain jquery ajax request
I am sending ajax request to a url http://json-cricket.appspot.com/score.json
by the code
var url="http://json-cricket.appspot.com/score.json";
$.get(url, function (data) {
console.log(data);
}, ...
2
votes
2answers
184 views
JQuery and Ajax - Coming to Grips
I've read through several tutorials on the web about ajax posting with JQuery, all of them reference the response object from the web service as response / response.d -- This lead me to believe that ...
2
votes
3answers
301 views
Web service (.net) returning html - limitations?
I have a web service that returns HTML for a table (for optimization purposes) in a string. One thing I am cautious about is the limit of data I am allowed to put in a string variable in C#, as well ...
2
votes
1answer
850 views
Getting jQuery ajax and asp.net webmethod xml response to work
I have an asp.net WebMethod that returns an XmlDocument object.
I can successfully call the method using jquery ajax, but can't seem to get the function to succeed (server side webmethod gets called ...
2
votes
3answers
472 views
most *efficient* way to populate select with Jquery ajax
I have several selects that I populate using JQuery Ajax. Most load fine. There are one or two of these queries however, that in a few rare cases return a LOT of records to the select. I was wondering ...
2
votes
2answers
508 views
Error updating Sharepoint List item, when called from web service
I'm using ajax to call a webservice which updates a sharepoint list.
It works when I call the code from unit tests, but running the code in a browser causes an exception:
...
2
votes
1answer
2k views
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
In ASP.net web service if the above isn't specified , what is the response format by default?
Also, if my web service below:
[WebMethod()]
public List<Sample> GenerateSamples(string[][] ...
2
votes
1answer
879 views
When is case sensitivity important in JSON requests to ASP.NET web services (ASMX)?
I've done the following tests with JSON requests sent to an ASP.NET 2.0 ASMX web service (using AJAX Extensions 1.0 for ASP.NET 2.0) and it seems that case sensitivity is important in some situations ...