WCF Service method synchronous/async

Posted by Rafal on Stack Overflow See other posts from Stack Overflow or by Rafal
Published on 2010-05-25T11:28:41Z Indexed on 2010/05/25 11:41 UTC
Read the original article Hit count: 269

Filed under:
|
|

Hi

I have a problem with calling WCF Service methods with Silverlight 3.

private bool usr_OK = false;

clientService.CheckUserMailAsync(this.mailTF.Text);


if (usr_OK == true)
{ isValidationOK = true; }
else { isValidationOK = false; MessageBox.Show("User already exists.", "User registered succes!", MessageBoxButton.OK); }

CheckUserMail should change usr_OK parameter. However it runs in other thread and it does not change the usr_OK param before IF block begins. I've tried thread.join byt the application freezed and i do not know what to do else. Please help me...how can i wait for WCF method to return param usr_OK.

© Stack Overflow or respective owner

Related posts about wcf

Related posts about Silverlight