Created
April 9, 2015 12:57
-
-
Save jakobmillah/122bf8e6726113dafd87 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void login_btn_Click(object sender, EventArgs e) | |
{ | |
DKServices.ActivityRow activityR = new DKServices.ActivityRow(); | |
DKServices.ServiceSoapClient client = new DKServices.ServiceSoapClient(); | |
this.output_tb.Text = "Querying the web service...."; | |
try | |
{ | |
activityR = client.GetUserActivity("bengt", "johansson"); | |
} | |
catch (Exception error) | |
{ | |
this.output_tb.Text = "ERROR in responseActivity: " + error + "\n"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment