Top "Asmx" questions

The web service technology from .NET 1.0, now considered a "legacy technology".

What are the differences between WCF and ASMX web services?

I am totally confused between WCF and ASMX web services. I have used a lot of web services in my …

wcf web-services asmx
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 …

asp.net web-services asmx
how to generate web service out of wsdl

Client provided me the wsdl to generate the web service.But when I used the wsdl.exe command it generated …

c# wsdl asmx
How to send/receive SOAP request and response using C#?

private static string WebServiceCall(string methodName) { WebRequest webRequest = WebRequest.Create("http://localhost/AccountSvc/DataInquiry.asmx"); HttpWebRequest httpRequest = (HttpWebRequest)webRequest; httpRequest.…

c# web-services soap asmx
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 …

c# json asmx
Getting RAW Soap Data from a Web Reference Client running in ASP.net

I'm trying to trouble shoot a web service client in my current project. I'm not sure of the platform of …

asp.net soap proxy asmx web-reference
Difference between web reference and service reference?

What is the difference between web reference and service reference in WCF? Which is preferable in WCF?

.net wcf asmx
An existing connection was forcibly closed by the remote host

I have a fat VB.NET Winform client that is using the an old asmx style web service. Very often, …

vb.net web-services asmx
Calling an 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: …

asp.net jquery web-services asmx
javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?

How to resolve the above exception while invoking a .net web service (asmx) hosted on SSL ("https:") protocol from java …

java ssl https asmx axis