Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi ,
I am created a httpContex Response in my handler calss process request event in ASP.NET.I have Flash Builder 4.7,where in action script class I have created a http service object.I want to get the response of the HttpContext in HttpServise object.How can I get this??Please tell me..

My code in handler class is..
C#
public void ProcessRequest (HttpContext context) {
    HttpResponse Response = context.Response;
    Response.Write("Loaded sucessfully");
}

//My Code in my .as(ActionScript)class in Flex
public function savePicture():void { 
    //object for  HttpService
    var service:HTTPService = new HTTPService();
}


What I want is,I want too catch the "loded sucessfully" in service object??
Posted
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900