Security across different servers?

  • Thread starter Thread starter Stephen Russell
  • Start date Start date
S

Stephen Russell

I have a winform app that is having security issue when it attempts to pull
data from another server in the same domain.

User for this app is a Domain Admin. Data is Paradox. Client has a utility
app to fix the paradox data. That app will work in the directory where the
data is in, but it won't run from the box that my winForm app is in.

Any ideas for me to look at?

__Stephen
 
Sounds like CAS (Code Access Security) to me. It's an extra layer of
security provided by .NET that is used for trusted/untrusted code. You need
to use the Framwork wizards and trust the assembly to see if that is the
problem.
 
Back
Top