Asp.net webmethod as webservice?

i have a asp. net web application (VS2010, C#) and it aspx page has webmethod that are used for AJAX call (all is fine here).

But i need to use this webmethods (GetEmployeeDetails) outside the asp. net application - say, i need to use this as webservice from another client application - is this possible??

My current webmethod code in .aspx.cs page is :-

:
using System.Web.Services;
:
public partial class EmployeeManagement_ViewLeaveList : System.Web.UI.Page
{

[WebMethod]
    public static Object GetEmployeeDetails(int iEmpID)
    {
        :
        :
        return obj;
    }

}

@samrtr

Yes, it is possible to use a webservice. You can simply create a webservice project and define required methods there with respective interface. However, are you using any Aspose API and having issues while working with them as this forum is dedicated for providing support against Aspose products.