No se pudo cargar el archivo o el conjunto crdb adoptus.DLL


Para el siguiente error:

No se pudo cargar el archivo o el archivo de ensamblaje:///C:\Archivos de programa\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet1\crdb_adoplus.dll' o una de sus dependencias.

¿Hay alguna manera de resolver este error que no sea a través de la solución:

<startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
</startup>

Esa solución no funciona en mi aplicación

Author: KyleMit, 2011-07-06

8 answers

Utilice este código. Puede ser útil para usted.

<startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>

Esto es ligeramente diferente a ti. Para más detalles visite este enlace Crystal Report Viewer

 74
Author: Refat Sardar,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2013-12-10 21:22:16

Cambiar la primera línea para que funcione correctamente

Después de abrir un archivo " App.configuración " desde el Explorador de soluciones

Anterior:

<startup> 

<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup>

Corriente:

<startup useLegacyV2RuntimeActivationPolicy="true">

<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup>
 10
Author: Sherif Hamdy,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2014-09-26 01:23:21

Esto básicamente sucede, si tienes una configuración correcta de SBO (te lo deseo:)), que entre diferentes componentes de tu SDK de SBO hay ensamblados con diferentes versiones de.NET. Compruebe si tiene alguna versión antigua de SAP BO SDK instalada en su máquina también. Espero que esto ayude.

 2
Author: Tigran,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2011-07-06 19:26:39

Utilizar únicamente

<startup useLegacyV2RuntimeActivationPolicy="true">
</startup>

Funciona para todos los frameworks!

 2
Author: user3216266,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2015-07-31 16:58:13

Intenta insertar el siguiente código en tu app.config o web.archivo de configuración:

<startup useLegacyV2RuntimeActivationPolicy="true">
        <supportedRuntime version="v4.0"/>
</startup>
 1
Author: yadavr,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2013-03-28 07:52:14

Siga los pasos: Haga clic derecho en el proyecto y luego haga clic en propiedades - > compilar - > Opción de compilación avanzada - >haga clic en Target framework y seleccione. Net Framework 3.5 -> Ahora Haga clic en OK

Esa es la solución simple.

 0
Author: Farhan Ahmed Saifi,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-08-12 16:53:41

Cuando se enfrenta a este problema en ASP.Net aplicación, compruebe el grupo de aplicaciones de la aplicación en IIS. Cambie el grupo de aplicaciones a. Net 4.0 desde. Net 2.0.

Solucionará el problema.

 0
Author: Praveen,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-10-29 23:59:34

Funcionó bien para mí para todas las configuraciones: MSIL, x64 y x86 bit incluso funciona bien.

 0
Author: dmihailescu,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2018-09-18 17:32:40