Tagged Questions

the web service technology from .NET 1.0. Don't use it unless you have to. It is now a "legacy technology". All new development of web services or of web service clients should use Windows Communication Framework (WCF).

learn more… | top users | synonyms (1)

23
votes
2answers
17k views

Create an ASMX web service from a WSDL file

I have a WSDL file and I am trying to create a web service that conforms to the WSDL. I've created clients using WSDL files that consume an existing service, but I've never created a web service that ...
21
votes
3answers
19k views

How to let an ASMX file output JSON

I created an ASMX file with a code behind file. It's working fine, but it is outputting XML. However, I need it to output JSON. The ResponseFormat configuration doesn't seem to work. My code-behind ...
20
votes
6answers
13k views

Calling ASP.NET server side method via JQuery

I'm trying to call a server side method from client side via jQuery, my code is as follows: Server side: using System.Web.Services; [WebMethod()] //[ScriptMethod()] public static ...
16
votes
5answers
23k views

Call ASP.NET PageMethod/WebMethod with jQuery - returns whole page

jQuery 1.3.2, ASP.NET 2.0. Making an AJAX call to a PageMethod (WebMethod) returns the full/whole page instead of just the response. A breakpoint on the page method shows it's never getting hit. I ...
14
votes
2answers
16k views

Enable ASP.NET ASMX web service for HTTP POST / GET requests

I would like to enable a ASP.NET classic (ASMX) web service for HTTP POST and GET requests. I realise this can be done on a machine or application level by adding ... <webServices> ...
12
votes
4answers
4k views

Capturing SOAP requests to an ASP.NET ASMX web service

Consider the requirement to log incoming SOAP requests to an ASP.NET ASMX web service. The task is to capture the raw XML being sent to the web service. The incoming message needs to be logged for ...
12
votes
4answers
7k views

Why global.asax Application_Error method does not catch exceptions thrown by ASMX service?

And how to fix it. I'd like to log every thrown exception for maintenance purpose.
9
votes
3answers
423 views

WCF service exposed as ASMX won't accept parameters

I have a server/client application developed in Delphi 2006. The client is Win32 and the Server is a .net 1.1 webservice. We are in the process of updateing this project, but it has to be done in ...
9
votes
6answers
842 views

What to choose? ASMX web service or WCF in .net 3.5?

The current project i am working on is extensively using web services and is made in .net 3.5. Now as we are going for implementation of second phase we are confused if we should either use WCF or web ...
9
votes
7answers
7k views

calling an ascx page method using jquery

I know that I can call a page method with jquery using the following syntax $.ajax({ type: "POST", url: "Default.aspx/GetDate", data: "{}", contentType: "application/json; charset=utf-8", ...
8
votes
2answers
551 views

C# extending SoapExtension -

Background: I'm trying to write a simple SoapExtension class to log inbound/outbound Soap messages from an asmx web service. Following this article on msdn, I have been able to get things working. ...
8
votes
2answers
534 views

Any compelling reason to stay on WCF?

I've been trying to create a stable web service application for the last 2-3 months. about 2 months ago I made the choice to move over to WCF to take advantage of the single instanced web services. ...
8
votes
5answers
823 views

How do I prevent IIS from compiling website?

I have an ASP .NET web application which on the backend is talking to an ASMX web service. We have counted and the average wait time for the initial request is 20s. I am wondering if there is a way I ...
8
votes
5answers
651 views

What are the benefits of using WCF over ASMX web services?

What are the benefits of using WCF over ASMX web services? Any pointers?
8
votes
3answers
4k views

Forcing ASP.net webservice to return JSON

I have an ASP.net web service that I'm using for a web application which returns a either XML or JSON data to me, depending on the function I call. This has been working well thus far, but I've run ...
7
votes
4answers
2k views

Slow web service (and WCF service) calls from Windows 7

I am building a .NET 3.5 Winforms app that uses WCF services (wsHttp binding) to communicate to my server which gets data from SQL Server and passes it back to the Winforms app (Smart Client). I ...
7
votes
2answers
1k views

ASMX Web service not serializing abstract base class

I have an abstract class. Let's call it Lifeform. It looks something like: public abstract class Lifeform { public virtual int Legs { get; set; } public virtual int Arms { get; set; } ...
7
votes
2answers
2k views

How to access a web service with overloaded methods

I'm trying to have overloaded methods in a web service but I am getting a System.InvalidOperationException when attempting "Add Web Reference" in Visual Studio 2005 (here's the relevant snippets of ...
7
votes
5answers
5k views

Issues rendering UserControl using Server.Execute() in an ASMX web service

Can anyone explain to why Server.Execute() is requiring my rendered UserControls to contain <form> tags (or alternately, what I am doing wrong that is making Server.Execute() require form tags ...
6
votes
3answers
278 views

ASMX equivalent of Page_Init?

I have some code I would like to execute very early in the lifecycle of a call to an ASMX function. For our ASPX pages, this code is in the Page_Init() function on a base class, from which all our ...
6
votes
1answer
1k views

ASP.NET WebMethod Returns JSON wrapped in quotes

I have an asp.net page with a WebMethod on it to pass JSON back to my javascript. Bellow is the web method: [WebMethod] public static string getData(Dictionary<string, string> d) { ...
6
votes
2answers
4k views

Client IP address in ASP.NET (.asmx) webservices

I am using ASP.NET (.asmx) web services with Silverlight. Since there is no way to find the client IP address in Silverlight, I had to log this on the service end. These are some methods I have ...
6
votes
1answer
810 views

Importing ASMX Web Service metadata to WCF Endpoint

I am interested in impersonating well-known Web Services and Wcf Services for integration test purposes. To this end, I would like to capture service metadata, auto-generate service stubs, and host ...
6
votes
6answers
3k views

Is there a way to restrict access to an ASMX Webservice, i.e. the asmx page and its WSDL?

I have a C# .net webservice that I need to restrict access to. I already require my consumers to use a username and password to call the service. But, is there a way to restrict access to the actual ...
6
votes
3answers
2k views

Describing ASMX web service WebMethod parameters

This seems like a simple question, but I haven't been able to find the answer online via many Google searches. I have a C# web service and, when I visit its ASMX page in the browser, for a particular ...
6
votes
7answers
10k views

ASMX webservice not returning JSON, can only POST using application/x-www-form-urlencoded contentType

I can call my webservice using jQuery IF the contentType = "application/x-www-form-urlencoded; charset=utf-8" This will, however, return the xml: <string>[myjson]</string> If I try to ...
6
votes
3answers
2k views

Block cross domain calls to asp.net .asmx web service

I've built an application that uses jQuery and JSON to consume an ASP.NET .asmx web service to perform crud operations. The application and .asmx are on the same domain. I dont mind people consuming ...
5
votes
2answers
171 views

WCF to ASMX binding much slower returning large data than standard web reference

I am binding to an existing ASMX web service using a WCF service reference. I have a method that returns a DataSet object that contains a string of 500k length. As a standard "old-school" web ...
5
votes
5answers
1k views

Application pool identity or Impersonation

(A question of similar vein has been asked before but both the question and the accepted answer do not provide the detail I am looking for) With the intention of running an asmx web service under a ...
5
votes
2answers
279 views

Why are my base class fields not being serialized when returning derived class object from an ASMX web method?

I have two classes and a web method as follows [Serializable] public class BaseClass { public int Key; public bool IsModified; public bool IsNew; public bool IsDeleted; } ...
5
votes
2answers
218 views

Calling web methods from the same web service

I need to write a wrapper for a collection of web methods that are exposed in a particular web service. It makes sense to stick this new wrapper method in the same service since it's affecting the ...
5
votes
2answers
2k views

return multiple rows from an asmx service

I have a web service method which i'd like to return multiple rows from a datatable. I am familiar with returning values from web service methods but not multiple rows from a datatable. What is the ...
5
votes
2answers
1k views

WCF vs ASPX webmethods vs ASMX webmethods

The intent is to create a set of web services that people can reuse. These services mostly interact with a backend DB creating, retreiving and processing data. We want to expose services so that ...
5
votes
2answers
858 views

What's the ASP.NET Webservice request lifecycle?

On a regular aspx page, I have events such as Page_Init, Page_Unload, etc., which occur in a well-defined order. I have an asmx page providing [WebMethod()]s. Do similar events exist? In particular, ...
5
votes
1answer
444 views

Excessive HTTP 401s using Windows Authentication, AJAX, ASMX and external ISA

Enviornment: ASP.NET WebForms .NET 3.5 jQuery for AJAX ASMX web services Windows Authentication SSL When we run our production web application, our AJAX calls often have 2-3 HTTP 401s before ...
5
votes
1answer
434 views

WCF Service instead of ASMX Web Service?

I'm writing a SOAP Server that will act as an endpoint for an external client. The external client expects SOAP 1.1. I'll be taking embedded business objects in the SOAP messages and passing them to ...
5
votes
4answers
593 views

Is there a way to get the raw SOAP request from within a ASP.NET WebMethod?

Example: public class Service1 : System.Web.Services.WebService { [WebMethod] public int Add(int x, int y) { string request = getRawSOAPRequest();//How could you implement this part? ...
5
votes
3answers
3k views

Catch Custom Exception from ASMX Web Service

I have a web service in which I have created a custom exception. Let's say the name of this exception is InvalidContractException. What I would like to do is if a specific step occurs, I want to ...
5
votes
3answers
6k views

Call .Net 3.5 WCF service from .Net 2.0 Standard ASMX Web Service Client

I create a service that is host on a server that have .Net 3.5 installed and I need to call this service from a client that only have .Net 2.0 installed Is there a way I can do this ? I'm using c#
5
votes
3answers
12k views

Using JQuery to call a WebMethod

I am having trouble getting inside my Search WebMethod from my JQuery call. Maybe someone could help to point me in the right direction. I also packed up everything into a zip file incase someone ...
4
votes
7answers
646 views

webservices trace / log

I have set of web services and I want to add a trace layer. I don't want to modify each web service since I have many. I would like to write log every entering to a web service: name of web service ...
4
votes
4answers
1k views

Why we cant return List<T> in ASMX web services?

As developers know we cant return List<T> with web services, we can only return lists with converting them to .ToArray(); I've searched some, but cant get effective answer about Why we cant ...
4
votes
2answers
1k views

Intercept SOAP messages from and to a web service at the client

I have a client that communicates with a web service. The class that I communicate with is a C# class that is generated through wsdl.exe. I now want to log all incoming and outgoing messages. What ...
4
votes
1answer
194 views

Differentiate between client app and browser in ASMX Web Service?

This is a follow-up to http://stackoverflow.com/questions/3444000/choosing-a-connection-string-based-on-kind-of-request for which I got no answer and what I thought worked doesn't. I have a ...
4
votes
2answers
562 views

Get current domain in ASMX

In C# in an asmx web service how do I get the current domain that the webservice was called on? HttpContext.Current.Request.Url.Host returns kindof what I want but instead of ...
4
votes
2answers
2k views

.net example of using client certificates in web service call?

I'd like to use client certificates to verify the identity of administrative callers to my web service. Then I can issue certificates only to the people I want to call my web service and be pretty ...
4
votes
2answers
2k views

Programmatically call webmethods in C#

I'm trying to write a function that can call a webmethod from a webserive given the method's name and URL of the webservice. I've found some code on a blog that does this just fine except for one ...
4
votes
2answers
487 views

When calling a asmx service via jQuery, how to pass arguments?

How can I pass my service endpoint parameters? (pagesize in this case) My .asmx service method looks like: [WebMethod] [ScriptMethod(ResponseFormat = ResponseFormat.Json)] public ...
4
votes
4answers
2k views

How do I return pure XML from asmx web service?

I want an asmx webservice with a method GetPeople() that returns the following XML (NOT a SOAP response): <People> <Person> <FirstName>Sara</FirstName> ...
4
votes
1answer
462 views

Attempting to call an external webservice from ASP.NET returns a 401 - DefaultCredentials empty

Fails: //Note: webserviceProxy inherits from SoapHttpClientProtocol //App Pool is running as a user with permissions to call the external webservice var webserviceProxy = new webServiceProxy(); ...

1 2 3 4 5 22