Page 1 of 1

Oracle Client

Posted: Thu 23 Aug 2007 17:53
by tvr
Is Oracle Client required to run this software?

Client Server

Posted: Thu 23 Aug 2007 18:32
by tvr
I forgot to mention we are using OraDirect .NET Mobile 4.0.15.1.

Posted: Mon 27 Aug 2007 06:25
by Alexey
No, Oracle client is not to be used with OraDirect .NET Mobile.

Oracle Client

Posted: Mon 27 Aug 2007 16:00
by tvr
We have two different work sites getting two different results.

1st Site:
Have Oracle Client on the workstation using a regular server with the following connection:
string sConnection = "User Id=" + sServerUserId
+ ";Password=" + sServerPassword
+ ";Port=" + iPort
+ ";Server=" + sServer
+ ";Sid=" + sSid.ToUpper();

OracleConnection(sConnection)
Everything works fine.

2nd Site:
Does not have Oracle Client on the workstation using a multi-threaded server with the same connection string as above. They are getting the following error message:

Error Msg -
Header : "Unhandled Exception"
Body: Error loading user data: Network error:: Could not find resource assembly.


Does the connection need to be different, because of the multi-threaded server? Do they need to establish a DEDICATED server connection to get through the firewall.

Any idea would be greatly appreciated.

Posted: Mon 27 Aug 2007 16:26
by Alexey
You cannot execute more than one command on the same connection simultaneously in direct mode. You need to create new connection in each thread.

Oracle Client

Posted: Mon 27 Aug 2007 18:22
by tvr
I'm sorry if I was not clear. I'm not using the same connection. I talking about two totally different locations using the same software and exactly the same way.

Posted: Tue 28 Aug 2007 05:49
by Alexey
I understood you. I am talking about second site. You are using direct mode of OraDirect .NET on a multi-threaded server. In this case you need to open new connection for each command. When do you get the error?

Oracle Client

Posted: Tue 28 Aug 2007 18:04
by tvr
I have a new connection for each command. The error is happening immediately.

Posted: Wed 29 Aug 2007 07:18
by Alexey
Could you provide me with the stack trace?

Oracle Client

Posted: Wed 29 Aug 2007 13:51
by tvr
Can you send me an example the connect string? The stack trace ??? how do we create this?

Posted: Thu 30 Aug 2007 07:23
by Alexey
Here is the example of the connectiong string:

Code: Select all

User Id=scott;Password=tiger;Port=1521;Server=DB;Sid=orcl1020;

The call stack you should get along with the error message.