最近在作一個WinForm的項目. 使用vs2013開發. 數據庫使用的是oracle. 在本地寫了一個webservice .測試正常.發佈到服務器的時候.就是提示了錯誤. 打開服務器上的日誌.看到以下信息:html
System.ArgumentException: The specified store provider cannot be found in the configuration, or is not valid. ---> System.ArgumentException: Unable to find the requested .Net Framework Data Provider. It may not be installed. at System.Data.EntityClient.EntityConnection.GetFactory(String providerString) --- End of inner exception stack trace --- at System.Data.EntityClient.EntityConnection.GetFactory(String providerString) at System.Data.EntityClient.EntityConnection.ChangeConnectionString(String newConnectionString) at System.Data.Entity.Internal.LazyInternalConnection.Initialize() at System.Data.Entity.Internal.LazyInternalConnection.get_Connection() at Kerry.FW.Service.SecurityService.GetAuthenticateUserDetail(String userName, String password, String& errorMessage) in c:\K4\Kerry.K4\Kerry.FW.Service\SecurityService.svc.cs:line 57
開頭有點納悶. 由於以前作過另一個系統 .也是使用EntityFramework , 數據庫使用Oracle的.能夠在服務器上正常運行. 因此認爲oracle 驅動沒註冊的應該不大可能.結果看到了這篇文章web
http://blog.csdn.net/greystar/article/details/9057159數據庫
裏面提到了一種狀況.就是在不一樣位(32bit/64bit)系統上開發時,visual studio 調用的機器配置文件 machine.config是不同的. 而我偏偏也就是原先機器使用的是32位 來進行開發. 最近剛換到了 64位.服務器
文中重點提到了oracle
32位的machine.config 放在的是 (不一樣.NET Framework 版本對應不一樣的文件夾)ide
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\machine.config測試
64位的machine.config 放在spa
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config.net
出現驅動未註冊的問題緣由是 64位中的config 裏面的system data 未配置一下內容3d
<system.data> <DbProviderFactories> <add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" /> <add name="ODP.NET, Unmanaged Driver" invariant="Oracle.DataAccess.Client" description="Oracle Data Provider for .NET, Unmanaged Driver" type="Oracle.DataAccess.Client.OracleClientFactory, Oracle.DataAccess, Version=4.121.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" /> <add name="Microsoft SQL Server Compact Data Provider 4.0" invariant="System.Data.SqlServerCe.4.0" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" /> </DbProviderFactories> </system.data>
我嘗試在服務器上面加上這一段. 而後從新運行. 測試結果正常.
固然另一種方式就是將當前的項目目標生成平臺改位x86.
前幾天 碰到另一種狀況, 也能夠能致使這個問題. 服務器上IIS應用池設置:
當應用池中的 Enable 32-Bit Application 爲false 時 也可能會致使 這個問題. 從新修改成True 爲 便可以正常解決
PS 關於Machine.config 的做用 http://www.cnblogs.com/dimg/archive/2005/11/12/274648.html