Webサービスのクラス 'BL_Customer'のクラスオブジェクト 'obj'をWebサービス(ASMX)の関数 'Insert()'に渡して、そのプロパティにアクセスするにはどうすればよいですかウェブサービスのオブジェクト?私は、リモートWebサービスを「Add WebReference」ファシリティに含めました。私は 'WebRererenceを使用しています。名前空間も。どんな助けもありがとう。クラスオブジェクトをWebServiceに渡す
これは、ビジネスレイヤでの私のBL_Customerクラス:デビッド
public class Service : System.Web.Services.WebService
{
public Service() {
}
[WebMethod]
public string insert(**What should be here?**)
{
-----
-----
}
}
よろしく、 :これは私のwebサービスです
public class DAL_Customer
{
public SqlConnection con = new SqlConnection();
WebReference.Service objWEB = new WebReference.Service(); //objWEB -> Webservice object
Connection c = new Connection();
public DAL_Customer()
{
}
public int Customer_Insert(BL_Customer obj)
{
---------
---------
return objWEB.Insert(obj); // Insert() is a function in my remote webservice
}
}
:
public class BL_Customer
{
public BL_Customer()
{
}
string c_Cust_Name = string.Empty;
string c_Mobile_no = string.Empty;
public string Cust_Name
{
get { return c_Cust_Name; }
set { c_Cust_Name = value; }
}
public string Mobile_no
{
get { return c_Mobile_no; }
set { c_Mobile_no = value; }
}
}
は、これは私のデータアクセス層であります
ASMX WebサービスまたはWCF? – Damith
@UnhandledException asmx –