LivelinkHELP
Programmer
Hi am a newbie to Livelink,
Have just kmocked up a quick program to access Livelink via the dotnet webservice, using the Authentication.svc followed the clientguide in the docs folder for creating a token via the AuthenticateUser method i.e.
// create a service token
Authentication.AuthenticationClient auth = new Authentication.AuthenticationClient();
try
{
token = auth.AuthenticateUser( userName, password );
}
catch( FaultException ex )
{
Console.WriteLine( "Unable to authenticate: " + ex.Message );
}
exception occurs everytime for me with the following error: The type initializer for 'java.util.Locale' threw an exception.
The system uses SOS and the port is the standard 2099, any ideas from anybody would be most welcome as I don't see what I am doing wrong.
Thanks
Have just kmocked up a quick program to access Livelink via the dotnet webservice, using the Authentication.svc followed the clientguide in the docs folder for creating a token via the AuthenticateUser method i.e.
// create a service token
Authentication.AuthenticationClient auth = new Authentication.AuthenticationClient();
try
{
token = auth.AuthenticateUser( userName, password );
}
catch( FaultException ex )
{
Console.WriteLine( "Unable to authenticate: " + ex.Message );
}
exception occurs everytime for me with the following error: The type initializer for 'java.util.Locale' threw an exception.
The system uses SOS and the port is the standard 2099, any ideas from anybody would be most welcome as I don't see what I am doing wrong.
Thanks