Suppose i have a webservice (http://myWebservice/CodeGenerator/CodeValidator.asmx) as follows
[WebMethod]
public string ValidateCode(string sCode)
{
    // I need to check requested url here. The call comes from different sites.
    // For example www.abc.com/accesscode.aspx. I need to get this url. 
}
 
    