D
drabina
Hi,
I have a simple question. Login page of my click-once application
invokes a method (validateLogin) on a web server. The web service
address is configured over https. My question is, does the invoke
command is secured?
public myLogin validateLogin(string userid, string password) {
object[] results = this.Invoke("validateLogin", new object[]
{userid,password});
return (myLogin);
}
Basically I need to know if the userid and password gets send
encrypted.
Thanks.
I have a simple question. Login page of my click-once application
invokes a method (validateLogin) on a web server. The web service
address is configured over https. My question is, does the invoke
command is secured?
public myLogin validateLogin(string userid, string password) {
object[] results = this.Invoke("validateLogin", new object[]
{userid,password});
return (myLogin);
}
Basically I need to know if the userid and password gets send
encrypted.
Thanks.