Hi,
I've been doing WS in both Java and C# for a few years and this is the first time I can't get even the most basic example to run. I suspect it has to do with the configuration of the lab workstation that I'm on, but I'm just not seeing it.
Just using the basic "Getting Started" example and only trying to get the authentication to work, I have the following code block:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using GettingStarted.CWS;
namespace GettingStarted
{
class Program
{
const string USERNAME = "SA.HFerguson";
const string PASSWORD = "b1teM3!!";
static void Main(string[] args)
{
// Create the Authentication service client
AuthenticationClient authClient = new AuthenticationClient();
// Store the authentication token
string authToken = null;
// Call the AuthenticateUser() method to get an authentication token
try
{
Console.Write("Authenticating User...");
authToken = authClient.AuthenticateUser(USERNAME, PASSWORD);
Console.WriteLine("Success!\n");
}
catch (FaultException e)
{
Console.WriteLine("Failed!");
Console.WriteLine("{0} : {1}\n", e.Code.Name, e.Message);
return;
}
finally
{
// Always close the client
authClient.Close();
}
}
}
}
When I run it, I get the following exception:

First off, has anyone got stuck here and if so, what did you do? I've tried fiddling with the endpoints,but I have nothing different than what is in the example.
-Hugh