C# App on a file server doesn't work???

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I am about to exchange a single program of an application by a C# version. The application is installed on a W2k server while W2k clients run the app. Thus my C# app must be on this server too

How can I get this working??? I tried to install the .NET framework as well as MDAC2.7 on the clients too but the application still crashes

Can anybody help me out??

Thanx, Hans
 
How does it crash?

--
Miha Markic - RightHand .NET consulting & software development
miha at rthand com
www.rthand.com

Hans said:
Hi,

I am about to exchange a single program of an application by a C# version.
The application is installed on a W2k server while W2k clients run the app.
Thus my C# app must be on this server too.
How can I get this working??? I tried to install the .NET framework as
well as MDAC2.7 on the clients too but the application still crashes.
 
It says that an "exception occured that could not be handled"

Can it be something with security?

Hans
 
How are you running your app? Are you running it from a different machine,
and just double clicking through explorer? Or are you actually logged on to
the box and running it?

If it's the former, then it is probably security. Each client machine
running the app from the server needs to have its security configured to
allow this code to execute things that have security restrictions (web
access, file access, database access).

I believe if you chose 'Microsoft .Net Framework 1.1 Configuration' from
administrative tools, you can set the security policy there.
 
That's how the app was run: double-click it from the explorer. From within the application the assembly is startet with a winexec.
 
Back
Top