- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
背景:本网站使用 oracle 和 spring.net。
Oracle.DataAccess 版本:4.112.2.0
Spring 版本:1.3.2.40943
网络配置文件
<db:provider id="SDDbProvider" provider="Oracle.DataAccess.Client"
connectionString="User Id=****; Password = *****; Data Source = (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=****)(PORT=****))(CONNECT_DATA=(SERVER=dedicated)(SERVICE_NAME=*****)))" />
这在 Debug模式下工作正常。我在本地 IIS (7.5) 上发布了这个网站,它也运行良好。但是当我将发布的文件夹复制到远程服务器(也运行 IIS 7.5)时,它会出现以下错误。
注意:我检查了 published 文件夹中的 bin,它具有 Oracle 所需的所有 DLL
oci
ociw32
Oracle.DataAccess
oranzsbb11
oraocci11
oraociei11
OraOps11w
Error thrown by a dependency of object 'Oracle.DataAccess.Client' defined in 'assembly [Spring.Data, Version=1.3.2.40943, Culture=neutral, PublicKeyToken=65e474d141e25e07], resource [Spring.Data.Common.dbproviders.xml] line 400' : Unsatisfied dependency expressed through constructor argument with index 2 of type [System.Type] : Could not convert constructor argument value [Oracle.DataAccess.Client.OracleConnection, Oracle.DataAccess, Version=2.102.2.20, Culture=neutral, PublicKeyToken=89b483f429c47342] to required type [System.Type] : Cannot convert property value of type [System.String] to required type [System.Type] for property ''.
while resolving 'constructor argument with name dbmetadata' to 'Spring.Data.Common.DbMetadata#195EA5D' defined in 'assembly [Spring.Data, Version=1.3.2.40943, Culture=neutral, PublicKeyToken=65e474d141e25e07], resource [Spring.Data.Common.dbproviders.xml] line 400'
[UnsatisfiedDependencyException: Error thrown by a dependency of object 'Oracle.DataAccess.Client' defined in 'assembly [Spring.Data, Version=1.3.2.40943, Culture=neutral, PublicKeyToken=65e474d141e25e07], resource [Spring.Data.Common.dbproviders.xml] line 400' : Unsatisfied dependency expressed through constructor argument with index 2 of type [System.Type] : Could not convert constructor argument value [Oracle.DataAccess.Client.OracleConnection, Oracle.DataAccess, Version=2.102.2.20, Culture=neutral, PublicKeyToken=89b483f429c47342] to required type [System.Type] : Cannot convert property value of type [System.String] to required type [System.Type] for property ''.
while resolving 'constructor argument with name dbmetadata' to 'Spring.Data.Common.DbMetadata#25C456C' defined in 'assembly [Spring.Data, Version=1.3.2.40943, Culture=neutral, PublicKeyToken=65e474d141e25e07], resource [Spring.Data.Common.dbproviders.xml] line 400']
Spring.Objects.Factory.Support.ObjectDefinitionValueResolver.ResolveInnerObjectDefinition(String name, String innerObjectName, String argumentName, IObjectDefinition definition, Boolean singletonOwner) +385
Spring.Objects.Factory.Support.ObjectDefinitionValueResolver.ResolvePropertyValue(String name, IObjectDefinition definition, String argumentName, Object argumentValue) +278
Spring.Objects.Factory.Support.ObjectDefinitionValueResolver.ResolveValueIfNecessary(String name, IObjectDefinition definition, String argumentName, Object argumentValue) +19
Spring.Objects.Factory.Support.ConstructorResolver.ResolveConstructorArguments(String objectName, RootObjectDefinition definition, ObjectWrapper wrapper, ConstructorArgumentValues cargs, ConstructorArgumentValues resolvedValues) +1385
Spring.Objects.Factory.Support.ConstructorResolver.GetConstructorInstantiationInfo(String objectName, RootObjectDefinition rod, ConstructorInfo[] chosenCtors, Object[] explicitArgs) +218
Spring.Objects.Factory.Support.ConstructorResolver.AutowireConstructor(String objectName, RootObjectDefinition rod, ConstructorInfo[] chosenCtors, Object[] explicitArgs) +79
Spring.Objects.Factory.Support.AbstractAutowireCapableObjectFactory.CreateObjectInstance(String objectName, RootObjectDefinition objectDefinition, Object[] arguments) +278
Spring.Objects.Factory.Support.AbstractAutowireCapableObjectFactory.InstantiateObject(String name, RootObjectDefinition definition, Object[] arguments, Boolean allowEagerCaching, Boolean suppressConfigure) +1204
Spring.Objects.Factory.Support.AbstractObjectFactory.GetObjectInternal(String name, Type requiredType, Object[] arguments, Boolean suppressConfigure) +2216
Spring.Objects.Factory.Support.AbstractObjectFactory.GetObject(String name, Type requiredType) +21
Spring.Data.Common.DbProviderFactory.GetDbProvider(String providerInvariantName) +81
Spring.Data.Common.DbProviderFactoryObject.CreateProviderInstance() +18
Spring.Data.Common.DbProviderFactoryObject.GetObject() +205
Spring.Objects.Factory.Support.AbstractObjectFactory.GetObjectFromFactoryObject(IFactoryObject factory, String objectName, RootObjectDefinition rod) +98
[ObjectCreationException: Error creating object with name 'SDDbProvider' : FactoryObject threw exception on object creation.]
System.Web.HttpApplication.RegisterEventSubscriptionsWithIIS(IntPtr appContext, HttpContext context, MethodInfo[] handlers) +4649821
System.Web.HttpApplication.InitSpecial(HttpApplicationState state, MethodInfo[] handlers, IntPtr appContext, HttpContext context) +325
System.Web.HttpApplicationFactory.GetSpecialApplicationInstance(IntPtr appContext, HttpContext context) +407
System.Web.Hosting.PipelineRuntime.InitializeApplication(IntPtr appContext) +375
[HttpException (0x80004005): Error creating object with name 'SDDbProvider' : FactoryObject threw exception on object creation.]
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +11529072
System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +141
System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +4784373
知道为什么会这样吗?与远程服务器中的 GAC 有关系吗?谢谢
最佳答案
我想我在一周后解决了这个问题。想分享我的经验。
首先,此错误消息与 Spring 框架有关。基于我们在配置文件中指定的 DBprovider(在我的例子中是 Oracle.DataAccess.Client),Spring.Data DLL 尝试解析数据库提供程序。 ( More about Spring dbproviders )
它使用资源文件 (Spring.Data.Common.dbproviders.xml) 来解决这个问题。从 dbproviders.xml 文件中的以下行抛出错误。 (文件位置:Spring.Net/src/Spring/Spring.Data/Data/Common/dbproviders.xml)
<constructor-arg name="connectionType" value="Oracle.DataAccess.Client.OracleConnection, Oracle.DataAccess, Version=2.102.2.20, Culture=neutral, PublicKeyToken=89b483f429c47342"/>
出于某种原因,dbproviders.xml 尝试在 GAC (windows/assembly/GAC) 中查找 Oracle.DataAccess DLL。根据我的经验,它不会查看 bin 文件夹。如果在 GAC 中找不到 DLL,则会抛出上述错误消息。所以我使用 GACUtil 在 GAC 中安装了 Oracle.DataAccess(版本 2.102.4.0)DLL。我认为它看起来也是在 dbproviders.xml 中指定的版本。 (如果我错了,请随时在这里发表评论)
那是针对 Spring 框架的。然而,为了工作 NHibernate 你应该在你的 BIN 文件夹中有 Oracle.DataAccess DLL(否则它会抛出“The provider is not compatible with the version of oracle client”错误)和相关的 oracle instant client相同的位置(否则它会抛出“无法加载文件或程序集‘Oracle.DataAccess’或其依赖项之一。尝试加载格式不正确的程序。”错误)。 p>
如果您使用 oracle 即时客户端,则不必在机器上安装 oracle 客户端(相信大家都知道)。在我的 bin 文件夹中,我放置了 Oracle.DataAccess(版本 4.112.2.0)和即时客户端 DLL(如问题中所述)。我使用的是版本 4.112.2.0,因为我找不到版本 2.102.4.0 的即时客户端 DLL。 (我知道这很乱,但这就是它的工作原理)
所以现在一切正常。
小提示:如果有人想在远程服务器上使用 GacUtil 并且不想安装 .net framework SDK,请将 gacutil.exe 和 gacutil.exe.config 文件复制到远程服务器并从那里运行。确保使用 version="v2.0.50727"。如果您使用 version="v4.0.30319",那么它会将 DLL 添加到 C:\Windows\Microsoft.NET\assembly 而不是 C:\Windows\assembly。
关于.net - Oracle.DataAccess.Client 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16545842/
我遇到了一个错误,我不知道如何解决。我有以下代码(来自 Eliom Graffiti 教程),我正在尝试使用 make test.byte 进行测试。 open Eliom_content.Html5
我阅读文档的理解是这样的: 客户端是测试用例的子类。当我们运行 manage.py test 时,会为每个以“test_”开头的方法创建一个 SimpleTest 类的实例(它继承自 TestCase
我已经编写了一个用于接收多个客户端的服务器,它可以分别与客户端通信。在这里,我可以列出服务器中已连接的客户端,但是当客户端断开连接时,它不会从服务器中删除客户端。 Server.py import s
我正在制作一个社交网站。当任何用户在站点上更新或创建新内容时,我需要查看站点的任何其他用户来查看更改更新。 我有一些需要低延迟的评论,因此建议为此订阅。 我也有事件,但这些不需要这么低的延迟。每 10
我想在突变后使用乐观 UI 更新:https://www.apollographql.com/docs/react/basics/mutations.html 我对“乐观响应”和“更新”之间的关系感到
我想了解 Dask 在本地机器上的使用模式。 具体而言, 我有一个适合内存的数据集 我想做一些 pandas 操作 分组依据... 日期解析 等等 Pandas 通过单核执行这些操作,这些操作对我来说
我使用 Apollo、React 和 Graphcool。我有一个查询来获取登录的用户 ID: const LoginServerQuery = gql` query LoginServerQ
在本指南的帮助下,我最近在几个设备的应用程序中设置了 P2P 通信:http://developer.android.com/training/connect-devices-wirelessly/n
注意:我在节点项目中使用@twilio/conversations 1.1.0 版。我正在从使用可编程聊天过渡到对话。 我看到对 Client.getConversationByUniqueName
我对服务客户端和设备客户端库有点困惑。谁能解答我对此的疑问。 问题:当我通过 deviceClient 发送数据时,我无法接收数据,但当我使用服务客户端发送数据时,相同的代码可以工作。现在,xamar
我对服务客户端和设备客户端库有点困惑。谁能解答我对此的疑问。 问题:当我通过 deviceClient 发送数据时,我无法接收数据,但当我使用服务客户端发送数据时,相同的代码可以工作。现在,xamar
假设我有一个简单的应用程序。 如何设置 OAuth2 以允许其他应用程序访问我的应用程序的某些部分。 例如,当开发人员想要使用 Facebook API 时,他们会使用 Facebook API 用户
我有两个模块: 在一个模块中,我从另一个模块run 中引用了一个函数: @myorg/server import { Client } from '.' import { Middleware } f
我在通过服务器从客户端向客户端发送数据时遇到了一些问题(以避免监听客户端上的端口)。 我有一个这样的服务器: var net = require("net"); var server = net.cr
我正在使用 django.test.client.Client 来测试用户登录时是否显示某些文本。但是,我的 Client 对象似乎并没有让我保持登录状态。 如果使用 Firefox 手动完成,则此测
有两个我制作的程序无法运行。有服务器和客户端。服务器通过给用户一个 ID(从 0 开始)来接受许多客户端。服务器根据服务器的 ID 将命令发送到特定的客户端。 (示例:200 个客户端连接到 1 个服
今天,我在 Windows 10 的“程序和功能”列表中看到了 2 个不同版本的 ARC,因此我选择卸载旧版本,因为我需要一些空间。在卸载结束时,它们都消失了! 所以,我从 https://insta
在每个新的客户端连接上 fork 服务器进程 不同的进程(服务器的其他子进程,即 exec)无法识别在 fork 子进程中使用相同 fd 的客户端。 如何在其他进程上区分客户端? 如果文件描述符为新
a和b有什么区别? >>> import boto3 >>> a = boto3.Session().client("s3") >>> b = boto3.client("s3") >>> a ==
a和b有什么区别? >>> import boto3 >>> a = boto3.Session().client("s3") >>> b = boto3.client("s3") >>> a ==
我是一名优秀的程序员,十分优秀!