Getting exception while Analysing files in the automation project

I am getting the following error while analysing files in the automated poject. 

Can somebody help? 

Parents
  • I've seen this error when developping with powershell.

    The problem might be that the translation provider starts with "sdltm.http....", which seems not to be a supported format if using integrated windows-authentication.

    As I didn't want to edit the project, I ended up defining a local user on the server and adding its credentials to the project, before starting the analysis.

    It looks like this in the PS-code:

    $project.Credentials.AddCredential("sdltm.https://someadress:443",$false,"someuser","somepass");

    As this config is only added to the instance of the currently opened project, it wont edit anyhting inside, but will allow the process to run through.

    HTH

    Markus

Reply
  • I've seen this error when developping with powershell.

    The problem might be that the translation provider starts with "sdltm.http....", which seems not to be a supported format if using integrated windows-authentication.

    As I didn't want to edit the project, I ended up defining a local user on the server and adding its credentials to the project, before starting the analysis.

    It looks like this in the PS-code:

    $project.Credentials.AddCredential("sdltm.https://someadress:443",$false,"someuser","somepass");

    As this config is only added to the instance of the currently opened project, it wont edit anyhting inside, but will allow the process to run through.

    HTH

    Markus

Children