WS2007FederationHttpBinding not found in Configuration element collection

  • KM01499525
  • 08-Apr-2015
  • 08-Apr-2015

This document has not been formally reviewed for accuracy and is provided "as is" for your convenience.

Summary

From LR 11.5x onwards, we use HP.Utt.StandaloneDebugger.exe for replay, instead of mmdrv.exe (in LR 11.x)

Error

WS2007FederationHttpBinding  not found in Configuration element collection

Cause

From LR 11.5x onwards, we use HP.Utt.StandaloneDebugger.exe for replay, instead of mmdrv.exe (in LR 11.x), When user runs the script into a new version of Vugen this issue could appears

Fix

 

Follow these steps below  in order  correct this issue:

1.Go to the machine with LR 11.x, open mmdrv.exe.config in <LR installation folder>\bin, copy the all configurations of WS2007FederationHttpBinding  and save to the text file ( customer needs to have  this configuration).

2.Go to the machine with current script ( LR 11.5X  or LR 12.0X)

a.       Open HP.Utt.StandaloneDebugger.exe.config in <LR installation folder>\bin

b.      Add the configuration of WS2007FederationHttpBinding (which was saved to text file before) into HP.Utt.StandaloneDebugger.exe.config, after 

                  </startup> tag

It should be like this:

 

<?xml version="1.0"?>

<configuration>

  <startup useLegacyV2RuntimeActivationPolicy="true">

    <supportedRuntime version="v4.0"

                      sku=".NETFramework,Version=v4.0"/>

  </startup>

 

<!-- Add ws2007FederationHttpBinding here >

 

</configuration>

3.Try to run script again

 

A sample WS2007FederationHttpBinding for reference attached. Copy a configuration something like this and paste it into HP.Utt.StandaloneDebugger.exe.config as above.