你好複雜的參數調用Web服務,這是一類...與C#客戶端
公共類身份認證 {
private string userField;
private string passwordField;
public string user
{
get
{
return this.userField;
}
set
{
this.userField = value;
}
}
public string password
{
get
{
return this.passwordField;
}
set
{
this.passwordField = value;
}
}
}
這裏的Web服務:
[WebMethod]
public Vehicle[] getVehiculeList(Authentification authentification)
{
....
}
這裏客戶端和webservice的調用: (在web服務的相同類身份認證等已被定義)
Authentification azz = new Authentification() ;
azz.user = "toto";
azz.password = "tata";
string aa = ws.getVehiculeList(azz);
給出一個錯誤: 錯誤27「WSCL.localhost.Service1.getVehiculeList最好重載的方法匹配(WSCL.localhost.Authentification) 「有一些無效參數
和
錯誤28參數 '1':不能從轉換 'WSCL.Authentification' 到 'WSCL.localhost.Authentification'
有什麼幫助嗎?
非常感謝!