How to call asp.net webservice from flex
In this article you will learn how to call webservices hosted on asp.net applications from flex.
Create a web service on asp.net that returns the list of records. Here is how to create web service in asp.net
Asp.net web service
——————
public class WebService : System.Web.Services.WebService
{
public WebService()
{
//Uncomment the following line if using designed components
//InitializeComponent();
}
[WebMethod]
public [...]






