I have created asmx web service, which is redirects to web form. I am able to redirect to web form using .net client and through web browser.
Is it possible to fulfill through Java client?
Here is my code:
[WebMethod]
public void start(string id, string name)
{
string finalname = name;
Session["name"] = finalname;
HttpContext.Current.Response.Redirect(""~/Default.aspx");
}
Is there any other method available or not? Is it possible to do?
Please help me!! Thanks