Tagged Questions

WebMethod attribute is attached to a Public method (cannot be attached to a private/protected) that you want the method exposed as part of the .Net Web service. It is also used to further configure the behavior of the method by passing additional attributes. Check out the MSDN link for more ...

learn more… | top users | synonyms

4
votes
1answer
2k views

JQGrid - Cannot call ASP.NET WebMethod but can with Ajax

I am new to jqGrid and I have found it difficult to follow the documentation jqGrid Documentation I cannot figure out how to call a WebMethod when setting up the JQGrid. I have been successful in ...
3
votes
2answers
123 views

WebMethod not working when given a large string parameter

Does anybody know whether there is any issue with json object if a lengthy string object is passed. I'm calling a webmethod with its content as encoded html data. The string generated is around 7000 ...
3
votes
1answer
245 views

.NET: How to deprecate a WebMethod?

In .NET, is there a standard way to indicate that a web service method has been deprecated? To clarify, by 'web service method', I mean a method that has been decorated with the [WebMethod] ...
3
votes
2answers
319 views

Does asp.net webmethod always return jsonified data?

I have general question that if an asp.net webmethod always returns data in 'json' form.If not what is the default return datatype of a webmethod? I am wondering if there is a way I can get the data ...
2
votes
1answer
49 views

ASP.NET Mono: How to send SOAP instead of HTML?

I have an ASP.NET web service based on SOAP built on top of Mono. If I throw exceptions inside the service, the exceptions remain on the HTTP+HTML level. What I'd like to do is send always all ...
2
votes
1answer
100 views

ASMX web method receiving unescaped double quote in parameter, JSON

My HTTP REQUEST contains a valid JSON string having the double quote in the middle of the name "jo\"hn" escaped as seen here (captured by Fiddler Web Debugger) {"name":"firstName","value":"jo\"hn"}, ...
2
votes
2answers
93 views

using web methods with master pages

I've got a function on all pages in my site which is located in my master page and I want it to run from some jQuery Ajax method. I've got some code like this at the moment jQuery ...
2
votes
1answer
55 views

webmethod receiving null parameters on ios call

I'm developing an iOS app and it calls a Web service I wrote using mono and it runs using apache. However, when I call the webmethod, the parameters received are always null for example in this call ...
2
votes
1answer
84 views

WebMethod (sometimes) returns entire website

I have a WebMethod which accepts one parameter. When I send a request to the webmethod without any parameters everything works well but when I supply a parameter to the same method, it returns ...
2
votes
1answer
116 views

WebMethod not being called

I am passing a javascript variable containing a string to the server via jquery.ajax. Although the "success" condition is called, the server-side WebMethod is never called. Client: $.ajax({ ...
2
votes
1answer
1k views

vb.net asmx WebService to accept JSON in HTTP-POST using Android

I am trying to post data to my server (vb.net) using mobile devices. I've researched several great articles on the client-side (Android) including this Encosia article and sending JSON object with ...
2
votes
1answer
54 views

What exactly happens in .net when a webservice call parses a JSON object?

Suppose I write the following C# code to define a web method: public class Thing { public string X {get;set} public string Y {get;set} } [WebMethod] public static void myFunction(Thing ...
2
votes
1answer
256 views

How to catch AJAX WebMethod errors in global.asax?

I'm using the common practice of catching errors in global.asax in my ASP.net application. In global.asax, I have a function Application_Error that logs the errors to the database. This works very ...
2
votes
1answer
290 views

Globally handling exceptions in static aspx [WebMethods] in ASP.NET

The default behavior of a [WebMethod] attributed static method on an aspx page is to return the error to the caller. We are accessing these methods using json, and the only way we have found of ...
2
votes
1answer
181 views

WebMethod() is slow on each execution compared to when I run it as a windows application

I have developed an application that interacts with IBM ClearQuest. The problem is that when I run everything locally, such as, run the webservice local and then ASP page local everything is at the ...
2
votes
2answers
542 views

ajax not firing webmethod sometimes

I'm calling a webmethod from jquery/ajax. Sometimes my webmethod gets called, other times it doesn't. I'm passing the same arguments every time (the digit 1 and a short string of text). I've also ...
2
votes
3answers
435 views

Throwing exceptions from .NET web service

I have a set of web services generated using the [WebMethod] attribute. Is it considered "good practice" to throw ArgumentException from such a method if its arguments aren't properly specified (and ...
2
votes
1answer
811 views

405: Method Not Allowed

EDIT: Summary: It seems that my web app can be accessed by anyone (only firefox or chrome) and by me using my main computer. If i try to access http://luiscarlosch.com/WebFormClean.aspx from any ...
2
votes
4answers
646 views

How to Call a WebMethod for a control in javascript

I'm trying to call a WebMethod (GetData()) for a control in a web page using javascript. <script type="text/javascript"> $(document).ready(function () { //this selector needs fixed ...
2
votes
1answer
2k views

JQuery Ajax WebMethod return an object

I have a web Method in my C# that is called via Jquery ajax method. The web method should return an object back to the Jquery which will be used to populate. I have tried returning a JsonResult ...
2
votes
1answer
557 views

Json.net: How can I return JObject from a [WebMethod]?

I am testing out json.net. I would like to use its linq-to-json syntax to return json from a function attributed [WebMethod] but I am getting errors. For example if I use in the code behind ...
2
votes
3answers
909 views

how to export a dataset to excel and raise a file download dialog from asp.net webmethod?

I am using the following code to export a datset to excel sheet. [WebMethod] public static void ExporttoExcel() { DataSet ds; productfactory pf=new productfactory(); ds ...
2
votes
1answer
71 views

Why is msg.d not supported in Mono 2.6.1?

Currently I have webservice running on the Mono platform. When I call the service I get the data in the form of msg, and not msg.d. Any thoughts? Update: Wow, this turns out to be a big deal. As ...
2
votes
2answers
724 views

ASMX webservice with Guid parameter

I've got an asmx web service with the following method [WebMethod] public string LoadRegions(Guid id) { throw new NotImplementedException(); } When I attempt to call this ...
1
vote
1answer
40 views

Auto Generated code relating to a asmx.cs web method

We received a VS2010 solution containing an asmx.cs file, this file contains WebMethods. I would like to add a new WebMethod to this file. I copied and renamed an existing method but I cannot access ...
1
vote
1answer
57 views

How to bind a GridView after calling a WebMethod?

At the moment I am doing drag & drop to GridView rows which sends the new row order to a WebMethod in order to update the database according to these new values. So, how can I update the GridView ...
1
vote
2answers
77 views

How to schedule a [WebMethod] in Web Services in .net?

I just got to learn a bit about web services in .net (.asmx and all stuff) For my project i need to schedule a program which cralwels a set of websites and then update the newly available data to the ...
1
vote
2answers
72 views

Is jquery's post() method able to call an asp.net 3.5 webmethod?

Here's some javascript: $.ajax({ type: "POST", url: "default.aspx/GetDate", contentType: "application/json; charset=utf-8", data: {}, dataType: "json", ...
1
vote
1answer
61 views

passing jquery data to WebMethod

I know we already have many posts about this topic, but I just cannot figure out how to pass the data to WebMethod! All I need is to pass one string data to my WebMethod, but do I need to use list ...
1
vote
1answer
168 views

ASP.NET Calling webmethods inside an webservice - Internal Server Error

I have an web service named AEWService.asmx with the following code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; namespace editor ...
1
vote
1answer
52 views

jquery 1.5 ajax call giving invalid argument for webmethod in a handler

I am getting a problem in calling a webmethod inside my http handler. The jquery.js file opens up at some random place and gives a prompt "Invalid Argument" Code is as follows: JS: var src = ...
1
vote
3answers
101 views

Why Does Calling My ASP.NET WebMethod Invoke My Error Handler?

I'm trying to call a webservice from an ASP.NET web page using AJAX. But it always calls my error handler and not my success handler. Here's my javascript: function DeleteCurrency(currenciesId) { ...
1
vote
5answers
114 views

jQuery Ajax results in undefined

I have a simple function which only returns a translated message from the server to the client. But the result shows undefined, when I pass the result into a var. function MessageNoResult() { ...
1
vote
2answers
79 views

Options to shrink ASP.NET 3.5 XML documents returned from WebMethods

I've inherited an ASP.NET (.net 3.5) web app and the corresponding C# client components and a related javascript client. The server-side components use the default [WebMethod] serialization and, ...
1
vote
1answer
69 views

Catching the abort in a WebMethod when calling XHR.abort()

Summary: I would like to be able to catch the XHR.abort() in a WebMethod to stop executing server-side code as soon as possible. I have a webmethod, similar as follows: [WebMethod] public static ...
1
vote
1answer
56 views

Cannot retrieve a querystring parameter.

An example of the Request URL: http:\\localhost\ChatWindow.aspx?username=sly_chandan My webmethod is listed below: [WebMethod(EnableSession = true)] public static List<PrivateMessage> ...
1
vote
2answers
500 views

asp.net call WebMethod from Javascript asyncronous

I am trying to build an asp.net(c#) page that updates some state texts every second. Now I have implemented an button that calls another PageMethod which restarts something and takes a little while. ...
1
vote
1answer
189 views

Calling a function / database update using Ajax via Jquery

Im creating a simple "Was this useful?" form with Yes and No objects- Using ASP.net webforms. I need the submission to be done via ajax using jquery, to prevent a user from voting multiple times on ...
1
vote
1answer
96 views

how to parse the exception message from the method in the backend to the SOAP response message using JAX-WS?

I am trying to expose one method as webservice from backend using JAX-WS with Tomcat. The backend method is something like below (in CompanyFacade class): public Company findCompanyById(Long id) ...
1
vote
1answer
1k views

Calling VB.NET WebMethod Function from Javascript

I have a VB.NET function which looks like this: <WebMethod()> _ Public Shared Function AuthenticateUser(ByVal UserInfo As String, ByVal Password As String) As Boolean Dim UserName As String ...
1
vote
2answers
61 views

How do I consume a WebMethod with jQuery that has parameters other than strings?

I have this client-side: $(document).ready(function() { var $checkboxes = $('[type=checkbox]'); $checkboxes.click(function() { $checkbox = $(this); $.ajax({ ...
1
vote
1answer
241 views

JQuery - set an image src on button click

I have a Jquery dialog, which opens up on click of a link. This click populates the dialog using AJAX. One of the things I need to do is populate it with an image based on the ID coming back from the ...
1
vote
1answer
401 views

What are the valid Java @WebMethod return types?

I am writing a WebService using Java. Now I have a @WebMethod that is supposed to return some data, and I am not sure what format to use. I have seen that in other languages, there are certain ...
1
vote
1answer
292 views

Executing a VB WebMethod from javascript

I'm trying to eliminate a VB.NET button on my aspx page. Trying to use javascript and ajax to execute the same code my vb had. I put in a script manager, set EnablePageMethods to true, added a static ...
1
vote
1answer
230 views

Webmethod in aspx page receives and returns JSON string, how?

I have been experimenting with jquery ajax and discovered the following things: If I have a webmethod, in an aspx page not a service, that looks like this: [System.Web.Services.WebMethod] ...
1
vote
0answers
147 views

ELMAH not catching exceptions in static page method

I've been looking for a way to log unhandled exceptions that occur in asp.net static page methods (which are called via javascript from the browser). This question led me to setup ELMAH but ...
1
vote
1answer
285 views

Why is the current thread's CultureInfo not being used when parsing a DateTime parameter on a 'WebMethod' call in ASP .NET?

I have an ASP .NET Web Forms application that makes use of the 'WebMethod' attribute for making AJAX calls from jQuery. I'm dealing with trying to localize the application so I recently created a web ...
1
vote
2answers
502 views

JQuery Ajax with multiple return values from ASP.NET

How can I return multiple values from JQuery.Ajax() in the success function ? I tried it: $.ajax({ type: "POST", url: "default.aspx/myFunction", ...
1
vote
3answers
121 views

Making a class a full fledged webservice

I am not using Visual Studio 2010. I have a class file that I marked as a webmethod. I am able to compile it using C# compiler targetting the .NET 3.5 framework. How can I make this a webservice? Any ...
1
vote
2answers
354 views

Access raw JSON from inside asp.net WebMethod

I have a System.Web.Services.WebService containing several WebMethods. If any of these WebMethods raises an exception, I want to log the values passed to that WebMethod. I want to handle this in a ...

1 2 3