- 3,715,956 Users
- 2,242,917 Discussions
- 7,845,700 Comments
Forum Stats
Discussions
Categories
- 17 Data
- 362.2K Big Data Appliance
- 7 Data Science
- 1.6K Databases
- 475 General Database Discussions
- 3.7K Java and JavaScript in the Database
- 22 Multilingual Engine
- 487 MySQL Community Space
- 5 NoSQL Database
- 7.6K Oracle Database Express Edition (XE)
- 2.8K ORDS, SODA & JSON in the Database
- 417 SQLcl
- 42 SQL Developer Data Modeler
- 184.9K SQL & PL/SQL
- 21K SQL Developer
- 1.9K Development
- 3 Developer Projects
- 32 Programming Languages
- 135.1K Development Tools
- 9 DevOps
- 3K QA/Testing
- 256 Java
- 6 Java Learning Subscription
- 10 Database Connectivity
- 67 Java Community Process
- 1 Java 25
- 9 Java APIs
- 141.1K Java Development Tools
- 6 Java EE (Java Enterprise Edition)
- 153K Java Essentials
- 135 Java 8 Questions
- 86.2K Java Programming
- 270 Java Lambda MOOC
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 10 Java SE
- 13.8K Java Security
- 3 Java User Groups
- 22 JavaScript - Nashorn
- 18 Programs
- 125 LiveLabs
- 30 Workshops
- 9 Software
- 3 Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 3 Deutsche Oracle Community
- 11 Español
- 1.9K Japanese
- 2 Portuguese
ASP.NET
Hi,
i have a problem with the ODP.NET and ASP.NET.
When I create a Projekt in C# and open a Database-Connection,
it work's great.
But when I Create a Projekt in ASP.NET with C# and open a Database-Connection,
then i become a error.
The errortext:
Unable to load DLL (OraOps.dll).
An now my question: Why??????????
i have a problem with the ODP.NET and ASP.NET.
When I create a Projekt in C# and open a Database-Connection,
it work's great.
But when I Create a Projekt in ASP.NET with C# and open a Database-Connection,
then i become a error.
The errortext:
Unable to load DLL (OraOps.dll).
An now my question: Why??????????
Comments
-
Did you remember to include references to the dlls for Oracle Provider?
Jeff. -
Yes,and when I create a project in ASP.NET Web Service with C# and open a database connection,
then i get a error.
The error message:
Unable to load DLL (OraOps.dll).
And when I create a project in win form whth C#,and open a database connection, I do not get any error.
Every thing is ok.
Both scene I have include references to the dlls for Oracle Provider,and using Oracle.DataAccess.Client
namespace. -
Hi,ASPNET Process Identity does not have enough privileges to access the system path,such as OraHome path.
i have a problem with the ODP.NET and ASP.NET.
When I create a Projekt in C# and open a Database-Connection,
it work's great.
But when I Create a Projekt in ASP.NET with C# and open a Database-Connection,
then i become a error.
The errortext:
Unable to load DLL (OraOps.dll).
An now my question: Why??????????
The ASPNET account is the default identity selected.It's a member of the Users group, a group that by
default has only minimal privileges.You can change the identity to SYSTEM.(Caution Running under the SYSTEM identity places your server at the highest risk for attacks from malicious code and data corruption.)
The identity is specified in the machine.config XML file, located in the \%windows%\Microsoft.NET\Framework\%Version%\Config folder of the server. A simplified example of the element is shown below for the three configurations. The element in the file has several attributes that are not shown in this example.
<!-- Select the ASPNET identity -->
<system.web>
<processModel enable="true" username="MACHINE" password="AutoGenerate"/>
</system.web>
<!-- Select the SYSTEM identity -->
<system.web>
<processModel enable="true" username="SYSTEM" password="AutoGenerate"/>
</system.web>
<!-- Select a custom identity -->
<system.web>
<processModel enable="true" username="domain\user" password="pwd"/>
</system.web>
For more information on configuring the process identity, see
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsent7/html/vxconApplicationIdentity.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstechart/html/vbtchSecurityConcernsForVisualBasicNETProgrammers.asp
This discussion has been closed.