I want to insert data in SQL database using REST services (JSON response)and I have implemented them.But I couldn't understand how to insert data without adding any client .Can I insert data directly from service-url without using client app.Because my client application is android and I want to invoke that rest service from android and insert in database..How can I insert data without using client application?
My code is :
Iservice1.cs
[ServiceContract]public interface IService1
{
[OperationContract]
[WebInvoke(UriTemplate = "Appointments", Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped)]
void CreateAppointment(Appointment appointment);
}
[DataContract]
public class Appointment
{
[DataMember]
public string UserName { get; set; }
[DataMember]
public string AppointmentBookedForCompany { get; set; }
[DataMember]
public string Date { get; set; }
[DataMember]
public string TimeStart { get; set; }
[DataMember]
public string TimeEnd { get; set; }
[DataMember]
public string PhoneNo { get; set; }
}
Service1.cs:
public void CreateAppointment(Appointment appointment){
string str = "Data Source = . Initial Catalog = Appointment; User ID = sa; Password = 123";
SqlConnection cn = new SqlConnection(str);
SqlCommand cm = new SqlCommand();
string username = appointment.UserName;
string appointmentbookedForcompany = appointment.AppointmentBookedForCompany;
string date = appointment.Date;
string timestart = appointment.TimeStart;
string timeend = appointment.TimeEnd;
string phoneno = appointment.PhoneNo;
cm.CommandText = "insert into BookAppointment values(@username,@appointmentbookedForcompany,@date,@timestart,@timeend,@phoneno)";
cm.Parameters.Add(new SqlParameter("@username", SqlDbType.VarChar,50)).Value = username;
cm.Parameters.Add(new SqlParameter("@appointmentbookedForcompany", SqlDbType.VarChar,50)).Value = appointmentbookedForcompany;
cm.Parameters.Add(new SqlParameter("@date", SqlDbType.VarChar,50)).Value = date;
cm.Parameters.Add(new SqlParameter("@timestart", SqlDbType.VarChar,50)).Value = timestart;
cm.Parameters.Add(new SqlParameter("@timeend", SqlDbType.VarChar,50)).Value = timeend;
cm.Parameters.Add(new SqlParameter("@phoneno", SqlDbType.VarChar,50)).Value = phoneno;
cm.Connection = cn;
cn.Open();
cm.ExecuteNonQuery();
cn.Close();
cm.Dispose();
}}
My config file:
How can I proceed further ?
Replies
Know the answer? Post it — somebody with the same question will find it here.