Deploying Delphi 2007 ASP.net and DBXpress (Interbase) on Windows 64 bit server
I found out on my trainings, many people have problems to deploy the asp.ent application to the windows server with 64bit architecture.
ERROR:
Unable to find the requested .Net Framework Data Provider. It may not be installed.
1. Install the ADO.DBXProvider from your InterBase CD also
2. Check and perhaps modify the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config
in the tag <system.data> <DbProviderFactories>
there must be a line
<add name=”AdoDbx Data Provider” invariant=”Borland.Data.AdoDbxClient” description=”.Net Framework Data Provider for dbExpress Drivers” type=”Borland.Data.TAdoDbxProviderFactory, Borland.Data.AdoDbxClient, Version=11.0.5000.0, Culture=neutral, PublicKeyToken=91d62ebb5b0d1b1b” />
3. do not forget to copy the Borland.Data.DbxDynalinkDriver.dll in your bin folder of your asp.net application
4. copy Dbxint30.dll (you can find on your local machine on c:\windows\system32) to C:\WINDOWS\SysWOW64\
5. copy dbxadapter30.dll (you can find on your local machine on c:\windows\system32) to C:\WINDOWS\SysWOW64\
6. in your web.config do not forget to use in the connectionString settings to your interbase to use localhost or 127.0.0.1 The Asp.net user have no (and did not need it) access to the interbase database file
<connectionStrings>
<add name=”MYDB”
… Database=127.0.0.1:C:\DATA\EMPLOYEE.IB
…. />
</connectionStrings>
regards Daniel Magin
October 20, 2008 - Posted by dmagin | Embarcadero (CodeGear) stuff | | No Comments Yet
No comments yet.
Leave a comment
Member
DelphiLive! 2009
Blogroll
-
Blog Stats
- 46,388 hits
Login
Member of
DelphiExperts Feed- Veranstaltungsbewertung Berlin/Stuttgart
- DelphiExperts Power Workshop Berlin
- DelphiExperts Power Workshop Stuttgart
- ASP.NET mit Delphi Prism
- Einführung in die professionelle Softwareentwicklung unter .NET mit Delphi Prism
- Entwicklung von Webanwendungen mit der VCL für das Web/IntraWeb
- Delphi 2010 – Was ist neu? Ein Intensiv-Workshop
- DelphiExperts Day – Delphi 2010 Dortmund
- DelphiExperts Day – Delphi 2010 Hannover
- DelphiExperts Roadshow – Düsseldorf
Delphifeeds- Word Clouds December 10, 2009
- For The Eager Beavers December 10, 2009
- Dynamic arrays — pure reference types, except when they’re not December 9, 2009
- Solving Excel's "DBCC TRACEON" error with brute force and ignorance December 9, 2009
- REST in Delphi: Server Videos December 9, 2009
- Moving to Delphi 2010, TDBGrid and Title Clicks December 9, 2009
- Fiddler replaying requests to the ASP.NET Development Server: XP works but Vista not, or “when localhost is not 127.0.0.1 in Fiddler 2″ December 9, 2009
- Random Thoughts on the Passing Scene #137 December 9, 2009
- Direct2D "Advanced Path Geometries" Win7 SDK Example Translated to Delphi 2010 December 8, 2009
- Preserve Code Folding When Reopening a Delphi Project December 8, 2009
- Installation Options for RAD Studio 2010 December 8, 2009
- Where do you want ... TMS to go in 2010 ? December 7, 2009
- Hmmm, maybe there’s something to this Bing business after all. December 7, 2009
- Delphi Conference Brazil ROCKS!!! December 7, 2009
- Mr Hater gets constructive December 7, 2009
Pages
Archives
-
Archives
- November 2009 (4)
- October 2009 (3)
- August 2009 (5)
- July 2009 (9)
- June 2009 (2)
- May 2009 (10)
- April 2009 (2)
- March 2009 (4)
- February 2009 (4)
- January 2009 (3)
- October 2008 (2)
- August 2008 (1)
-
Categories
-
RSS
Entries RSS
Comments RSS

