Skip to content

Instantly share code, notes, and snippets.

@jakobmillah
Created April 9, 2015 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakobmillah/122bf8e6726113dafd87 to your computer and use it in GitHub Desktop.
Save jakobmillah/122bf8e6726113dafd87 to your computer and use it in GitHub Desktop.
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