I have a webservice, it has its wsdl and everything works fine when I make a call to my web service.
What I want to do now is call a url from somewhere within my web service method. In c# code behind I can do it something like this:
Response.Redirect("Insurance.aspx?fileno1=" + txtFileNo1.Text + "&fileno2=" + txtFileNo2.Text + "&docid=" + Convert.ToString(GridView1.SelectedDataKey[2]));
but the Response.Redirect option is not available on the asmx page.
Is something like this possible? If so then would be grateful in anybody can show me how. I've tried searching everywhere but can only find about calling a web service or calling a webs ervice inside another web service but no such topics on calling a url from within your web service. Any help would be greatly appreciated.