Burada importlarımız olacak zaten siz servisi ilk oluşturduğunnuzda onlar gelmiş olucak
[WebService(Namespace = " http://sitem.com/androidservice")] // To allow this Web Service to be called from script, using http://ASP.NET/ AJAX, uncomment the following line. [System. Web. Script. Services. ScriptService] public class androidservice: System. Web. Services. WebService { [WebMethod] // android kısmından kullanmak istediğimiz her metod için bu anahtarı metodun başında kullanıyoruz public string metos_ismi(string user) { String yanit=""; String server = "localhost";// burası değişmiyor String database = ""; // database ismi String uid = ""; // kullanıcı adı String password = ""; // parola String connectionString = "SERVER=" + server + ";" + "DATABASE=" + database + ";" + "UID=" + uid + ";" + "PASSWORD=" + password + ";"; MySqlConnection connection = new MySqlConnection(connectionString);
try { if (connection. State == ConnectionState. Closed) { connection. Open(); yanit="bağlantı açıldı !"; } cath(exception ex) { yanit="bağlantı hatası"; } return yanit; //burada soap için yanıtımızı döndürüyoruz bu kadar } } }
Burada importlarımız olacak zaten siz servisi ilk oluşturduğunnuzda onlar gelmiş olucak
[WebService(Namespace = " http://sitem.com/androidservice")]
// To allow this Web Service to be called from script, using http://ASP.NET/ AJAX, uncomment the following line.
[System. Web. Script. Services. ScriptService]
public class androidservice: System. Web. Services. WebService
{
[WebMethod] // android kısmından kullanmak istediğimiz her metod için bu anahtarı metodun başında kullanıyoruz
public string metos_ismi(string user)
{
String yanit="";
String server = "localhost";// burası değişmiyor
String database = ""; // database ismi
String uid = ""; // kullanıcı adı
String password = ""; // parola
String connectionString = "SERVER=" + server + ";" + "DATABASE=" + database + ";" + "UID=" + uid + ";" + "PASSWORD=" + password + ";";
MySqlConnection connection = new MySqlConnection(connectionString);
try
{
if (connection. State == ConnectionState. Closed)
{
connection. Open();
yanit="bağlantı açıldı !";
}
cath(exception ex)
{
yanit="bağlantı hatası";
}
return yanit; //burada soap için yanıtımızı döndürüyoruz bu kadar
}
}
}