i have a serializable entity class of employee
public class Emp
{
public int Id{get; set;}
public string Name{get;set;}
}
i want to send object of this class to WCF REST Services from browser to test my add method which is given below
[WebInvoke(Method = "POST", UriTemplate = "Employee/")]
[OperationContract]
string SaveEmployee(Emp Employee);
can anyone please tell me how to send custom object to WCF REST Service in browser based url