473,388 Members | 1,213 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,388 software developers and data experts.

Security Permission Issue with C# EXE on Intranet

Hi,
My Problem: I have a C# EXE which writes a TXT file with results. It works
perfect on my local computer, but when I try to run it from our network
server (Drive G:), I am getting a
System.Security.Permissions.SecurityPermission error.
I found a lot of hints on the internet, also the .NET Framework
Configuration Utility, but I was not successful at all.
Has somebody a very simple to understand solution, what I have to do, to
bring this EXE on the server to run?
Thanks in advance
Johann Pietschnig
pi********@usa.com
May 3 '06 #1
9 1916
Johann,

The .NET framework configuration utility is the way that you want to go.
You will want to create a new security policy based on the assemblies strong
name, or on it's hash (a strong name is better, IMO). Then, you assign it
the permissions you want it to have.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Johann Pietschnig" <abc.piet.com> wrote in message
news:4C**********************************@microsof t.com...
Hi,
My Problem: I have a C# EXE which writes a TXT file with results. It works
perfect on my local computer, but when I try to run it from our network
server (Drive G:), I am getting a
System.Security.Permissions.SecurityPermission error.
I found a lot of hints on the internet, also the .NET Framework
Configuration Utility, but I was not successful at all.
Has somebody a very simple to understand solution, what I have to do, to
bring this EXE on the server to run?
Thanks in advance
Johann Pietschnig
pi********@usa.com

May 3 '06 #2
Hi Nicholas,

Thank you for your fast response. Would you know any resource (web site,
book, etc.) which shows you step by step how to perfom this task in the
configuration utility. I tried it, but was not successful.

Thanks again
Johann Pietschnig

"Nicholas Paldino [.NET/C# MVP]" wrote:
Johann,

The .NET framework configuration utility is the way that you want to go.
You will want to create a new security policy based on the assemblies strong
name, or on it's hash (a strong name is better, IMO). Then, you assign it
the permissions you want it to have.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Johann Pietschnig" <abc.piet.com> wrote in message
news:4C**********************************@microsof t.com...
Hi,
My Problem: I have a C# EXE which writes a TXT file with results. It works
perfect on my local computer, but when I try to run it from our network
server (Drive G:), I am getting a
System.Security.Permissions.SecurityPermission error.
I found a lot of hints on the internet, also the .NET Framework
Configuration Utility, but I was not successful at all.
Has somebody a very simple to understand solution, what I have to do, to
bring this EXE on the server to run?
Thanks in advance
Johann Pietschnig
pi********@usa.com


May 3 '06 #3
Before attempting to grant additional permissions to your application, it
might be best to figure out whether you can find a way to accomplish the
desired functionality without elevating privilege. In this particular case,
does the user select the target file location via a file save dialog? If
not, does it matter where the file is located, or is it only important that
your application be able to locate the data?
"Johann Pietschnig" <abc.piet.com> wrote in message
news:4C**********************************@microsof t.com...
Hi,
My Problem: I have a C# EXE which writes a TXT file with results. It works
perfect on my local computer, but when I try to run it from our network
server (Drive G:), I am getting a
System.Security.Permissions.SecurityPermission error.
I found a lot of hints on the internet, also the .NET Framework
Configuration Utility, but I was not successful at all.
Has somebody a very simple to understand solution, what I have to do, to
bring this EXE on the server to run?
Thanks in advance
Johann Pietschnig
pi********@usa.com

May 3 '06 #4
Hi Nicole,
Thanks for your reply.

In my case the program makes a calculation and puts 2 numbers in a .TXT file
in the same directory. I think this is just a simple IO function.
Are there ways in .NET 2.0 to handle this in C# code?
Thanks again

Johann Pietschnig
"Nicole Calinoiu" wrote:
Before attempting to grant additional permissions to your application, it
might be best to figure out whether you can find a way to accomplish the
desired functionality without elevating privilege. In this particular case,
does the user select the target file location via a file save dialog? If
not, does it matter where the file is located, or is it only important that
your application be able to locate the data?
"Johann Pietschnig" <abc.piet.com> wrote in message
news:4C**********************************@microsof t.com...
Hi,
My Problem: I have a C# EXE which writes a TXT file with results. It works
perfect on my local computer, but when I try to run it from our network
server (Drive G:), I am getting a
System.Security.Permissions.SecurityPermission error.
I found a lot of hints on the internet, also the .NET Framework
Configuration Utility, but I was not successful at all.
Has somebody a very simple to understand solution, what I have to do, to
bring this EXE on the server to run?
Thanks in advance
Johann Pietschnig
pi********@usa.com


May 3 '06 #5
When the application is run from the server, do you really want the file to
be saved to the server share? If not, what do you mean by "same directory"?
"Johann Pietschnig" <abc.piet.com> wrote in message
news:67**********************************@microsof t.com...
Hi Nicole,
Thanks for your reply.

In my case the program makes a calculation and puts 2 numbers in a .TXT
file
in the same directory. I think this is just a simple IO function.
Are there ways in .NET 2.0 to handle this in C# code?
Thanks again

Johann Pietschnig
"Nicole Calinoiu" wrote:
Before attempting to grant additional permissions to your application, it
might be best to figure out whether you can find a way to accomplish the
desired functionality without elevating privilege. In this particular
case,
does the user select the target file location via a file save dialog? If
not, does it matter where the file is located, or is it only important
that
your application be able to locate the data?
"Johann Pietschnig" <abc.piet.com> wrote in message
news:4C**********************************@microsof t.com...
> Hi,
> My Problem: I have a C# EXE which writes a TXT file with results. It
> works
> perfect on my local computer, but when I try to run it from our network
> server (Drive G:), I am getting a
> System.Security.Permissions.SecurityPermission error.
> I found a lot of hints on the internet, also the .NET Framework
> Configuration Utility, but I was not successful at all.
> Has somebody a very simple to understand solution, what I have to do,
> to
> bring this EXE on the server to run?
> Thanks in advance
> Johann Pietschnig
> pi********@usa.com
>
>


May 3 '06 #6
The purpose of the C# EXE is to hand over the .TXT file to a Visual Foxpro
Program, which is in the same directory as the C# .EXE on the server.
The Visual Foxpro Program is waiting for this TXT file and picks it up, as
soon as is generated.
This is just a Setup until the Visual Foxpro Program is also rewritten in C#.

Thanks

Johann Pietschnig
"Nicole Calinoiu" wrote:
When the application is run from the server, do you really want the file to
be saved to the server share? If not, what do you mean by "same directory"?
"Johann Pietschnig" <abc.piet.com> wrote in message
news:67**********************************@microsof t.com...
Hi Nicole,
Thanks for your reply.

In my case the program makes a calculation and puts 2 numbers in a .TXT
file
in the same directory. I think this is just a simple IO function.
Are there ways in .NET 2.0 to handle this in C# code?
Thanks again

Johann Pietschnig
"Nicole Calinoiu" wrote:
Before attempting to grant additional permissions to your application, it
might be best to figure out whether you can find a way to accomplish the
desired functionality without elevating privilege. In this particular
case,
does the user select the target file location via a file save dialog? If
not, does it matter where the file is located, or is it only important
that
your application be able to locate the data?
"Johann Pietschnig" <abc.piet.com> wrote in message
news:4C**********************************@microsof t.com...
> Hi,
> My Problem: I have a C# EXE which writes a TXT file with results. It
> works
> perfect on my local computer, but when I try to run it from our network
> server (Drive G:), I am getting a
> System.Security.Permissions.SecurityPermission error.
> I found a lot of hints on the internet, also the .NET Framework
> Configuration Utility, but I was not successful at all.
> Has somebody a very simple to understand solution, what I have to do,
> to
> bring this EXE on the server to run?
> Thanks in advance
> Johann Pietschnig
> pi********@usa.com
>
>


May 3 '06 #7
In most work environments it is usualy OK (and much simpler) to simply raise
the trust level of the Intranet (The Zone Security option) to "Full Trust".

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:%2****************@TK2MSFTNGP02.phx.gbl...
Johann,

The .NET framework configuration utility is the way that you want to
go. You will want to create a new security policy based on the assemblies
strong name, or on it's hash (a strong name is better, IMO). Then, you
assign it the permissions you want it to have.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Johann Pietschnig" <abc.piet.com> wrote in message
news:4C**********************************@microsof t.com...
Hi,
My Problem: I have a C# EXE which writes a TXT file with results. It
works
perfect on my local computer, but when I try to run it from our network
server (Drive G:), I am getting a
System.Security.Permissions.SecurityPermission error.
I found a lot of hints on the internet, also the .NET Framework
Configuration Utility, but I was not successful at all.
Has somebody a very simple to understand solution, what I have to do, to
bring this EXE on the server to run?
Thanks in advance
Johann Pietschnig
pi********@usa.com


May 4 '06 #8
The default CAS permission grant for the intranet zone includes permission
to read from, but not write to, its directory of origin. This means that
you will either need to grant additional permissions to your assembly on the
client machine(s) or find an alternate means of saving the file. One option
that would not involve altering client-side permissions would be to pass the
data to a web service on the same server for writing to the desired target
file.

On the other hand, if you're using (or can upgrade to) v. 2.0 of the .NET
Framework, ClickOnce might also be an option. It would allow users to grant
additional permissions to your application without requiring separate
permission elevation steps. If you're using v. 1.x, you'll need to deploy
the policy modifications under administrative privileges. See
http://msdn.microsoft.com/library/de...ecpoladmin.asp
for some options, and talk to your network admin. There may already be
something in place for distributing CAS policy changes and, if not, your IT
folks should still be involved in selecting CAS policy modification
approaches
..
"Johann Pietschnig" <abc.piet.com> wrote in message
news:8A**********************************@microsof t.com...
The purpose of the C# EXE is to hand over the .TXT file to a Visual Foxpro
Program, which is in the same directory as the C# .EXE on the server.
The Visual Foxpro Program is waiting for this TXT file and picks it up, as
soon as is generated.
This is just a Setup until the Visual Foxpro Program is also rewritten in
C#.

Thanks

Johann Pietschnig
"Nicole Calinoiu" wrote:
When the application is run from the server, do you really want the file
to
be saved to the server share? If not, what do you mean by "same
directory"?
"Johann Pietschnig" <abc.piet.com> wrote in message
news:67**********************************@microsof t.com...
> Hi Nicole,
> Thanks for your reply.
>
> In my case the program makes a calculation and puts 2 numbers in a .TXT
> file
> in the same directory. I think this is just a simple IO function.
> Are there ways in .NET 2.0 to handle this in C# code?
> Thanks again
>
> Johann Pietschnig
>
>
> "Nicole Calinoiu" wrote:
>
>> Before attempting to grant additional permissions to your application,
>> it
>> might be best to figure out whether you can find a way to accomplish
>> the
>> desired functionality without elevating privilege. In this particular
>> case,
>> does the user select the target file location via a file save dialog?
>> If
>> not, does it matter where the file is located, or is it only important
>> that
>> your application be able to locate the data?
>>
>>
>> "Johann Pietschnig" <abc.piet.com> wrote in message
>> news:4C**********************************@microsof t.com...
>> > Hi,
>> > My Problem: I have a C# EXE which writes a TXT file with results. It
>> > works
>> > perfect on my local computer, but when I try to run it from our
>> > network
>> > server (Drive G:), I am getting a
>> > System.Security.Permissions.SecurityPermission error.
>> > I found a lot of hints on the internet, also the .NET Framework
>> > Configuration Utility, but I was not successful at all.
>> > Has somebody a very simple to understand solution, what I have to
>> > do,
>> > to
>> > bring this EXE on the server to run?
>> > Thanks in advance
>> > Johann Pietschnig
>> > pi********@usa.com
>> >
>> >
>>
>>
>>


May 4 '06 #9
Hi,

Try this:

1. Go to Administrative tools and select Microsoft .NET framework wizards
2. Select Adjust .NET security
3. Select Make changes to this computer
4. Select Local Intranet
5. Move the slider up to full trust


"Johann Pietschnig" <abc.piet.com> wrote in message
news:4C**********************************@microsof t.com...
Hi,
My Problem: I have a C# EXE which writes a TXT file with results. It works
perfect on my local computer, but when I try to run it from our network
server (Drive G:), I am getting a
System.Security.Permissions.SecurityPermission error.
I found a lot of hints on the internet, also the .NET Framework
Configuration Utility, but I was not successful at all.
Has somebody a very simple to understand solution, what I have to do, to
bring this EXE on the server to run?
Thanks in advance
Johann Pietschnig
pi********@usa.com

May 4 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Namratha Shah \(Nasha\) | last post by:
Hey Guys, Before we start with our sample app we need to view the security configuration files on the machine. You will find them under <drive>\WInNT\Microsoft.NET\FrameWork\<version>\Config ...
1
by: web1110 | last post by:
Hi, I set up my wifes machine to run .NET, some of my stuff runs but not all. First example: I have a windows program that displays environment info. It runs fine on my machine. Whan I...
0
by: Dave | last post by:
I have a C# application that I want to run as a "smart client", by executing the exe through IE pointing to an intranet server. I need to increase permissions to the application because it...
0
by: Namratha Shah \(Nasha\) | last post by:
Hey Guys, Today we are going to look at Code Access Security. Code access security is a feature of .NET that manages code depending on its trust level. If the CLS trusts the code enough to...
16
by: Marina | last post by:
Hi, I am trying to find the minimum security settings to allow a windows control embedded in IE have full trust. If I give the entire Intranet zone full trust, this works. However, this is...
5
by: Jarod_24 | last post by:
How do i prevent getting a System.Security.SecurityException when running my app from a Network Drive? My app stopped when checking for a previous instance of itself using the code: Private...
1
by: jmurphy95 | last post by:
Hi there, I have a Windows application that I'm running from a shared drive that needs to access file/directory resources on other drives. I've done a lot of reading, but a lot of the material...
3
by: =?Utf-8?B?dG9ieQ==?= | last post by:
Our company deploys our .NET 2.0 apps to a network drive for them to be run. We are having issues with security in getting these to run. Below is a sample output for a job that is trying to call a...
7
by: GMiller | last post by:
I am fairly new to .NET programming so this may be a simplistic question. I wrote a C# application that reads and writes files. If the program resides on a local drive everything is fine. If...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.