Tagged Questions

webmethod is an attribute that is marked to indicate that a function (usually in .net) in a web service is exposed to the consumers of the web service.

learn more… | top users | synonyms

1
vote
3answers
68 views

Cannot debug static webmethod in C#/ASP.NET

For some weird reason, I can't debug the code inside my static web method. The code itself is like this: public partial class StoredProcedures : BasePage//Inherits from System.Web.UI.Page { ...
0
votes
1answer
30 views

How to show a message from webmethod?

Friends,I need a help regarding showing error message or any other message in web method. I tried with writing some function to show message if the return value is "0" or the return string variable's ...
0
votes
0answers
42 views

Consume ASP.NET web service from VB6 - handle with object as return type of web method in VB6

I need consume ASP.NET Web Service from VB6 code. On VB6 side I use MS SOAP Type Library 3.0. I am creating SoapClient30 object with method MSSoapInit based on WSDL of ASP.NET Web Service. For ...
0
votes
1answer
76 views

How to Handle Exception Occured In Web method which Is Called In a Ajax Call

I'm calling a web method ajax call which returns a value say "Completed". In that web method whenever exception occurs, it is not returning any value and I am not able to throw the message about the ...
0
votes
2answers
430 views

ASMX Webservice dropping incoming parameters

I need some help figuring out how to troubleshoot a problem with an ASP.Net 2 asmx webservice which seems to be ignoring incoming params. I have an ASMX service that takes a string, does a little ...
0
votes
3answers
109 views

How do you end an Application from a Web Method within a Web Service?

I'm trying to create a method within a web service that will terminate the application when called. The purpose of this is to end a game being played with a Windows form. Does anyone have any ideas? ...
0
votes
3answers
2k views

Making an Asynchronous WebService Call From ASP.Net MVC

I would (as the question states) like to make an asynchronous call, preferably using ASP.net AJAX. The code for the WebMethod looks like this: [WebMethod] public void SendMail(string name, string ...