public void testService() throws Exception
{
AuthServiceService service = new AuthServiceService();
AuthServicePortType auth = service.getAuthServiceHttpPort();
try
{
auth.authenticate("bleh", "bar");
fail("Must throw fault.");
}
catch (services.auth.AuthenticationException f)
{
}