你好
我正在为学校和我使用网络服务的项目工作。
我的问题来自于我返回课程并尝试在我提到webservice的网站上访问它们。
在第三个Web方法(getAccountService
)我返回一个类(AccountDetails
),这个类有get和set我想要使用的方法。
当我通过使用localhost.AccountDetails
从我的网站访问它时,我无法使用任何这些方法,我没有选择我选择的任何方法,它现在就像一个无用的类。
我真的希望有人可以给我一个如何使用这些方法的答案。
webservice代码写在下面。
public class BankService : System.Web.Services.WebService {
public BankService () {
//Uncomment the following line if using designed components
//InitializeComponent();
}
[WebMethod]
public Decimal GetBalanceService(int AccountID) {
AccountService accService = new AccountService();
Decimal decBalance = accService.getBalance(AccountID);
return decBalance;
}
[WebMethod]
public DataSet GetTransactionsService(int AccountID)
{
AccountService accService = new AccountService();
DataSet dataset = accService.GetTransactions(AccountID);
return dataset;
}
[WebMethod]
public AccountDetails getAccountService(string UserName, string Password)
{
AccountService AS = new AccountService();
AccountDetails account = AS.getAccount(UserName, Password);
return account;
}
}