Novell SecurityException ?
Mar 23, 2009
I've written 'File_Reformat_Code.vb' using the "Console Application" template. The program uses SQL to read an Oracle database and then generates fixed-length records for an outside vendor.
It runs fine on my PC and on a file server that's running Windows 2000. But, it gives the following error when I try to run it on a server that's using a Novell operating system. Are their security settings in my program that need to be changed, and, if so, how would I do it? Likewise, for possible settings on the Novell box?
CODE:
View 3 Replies
Nov 12, 2009
I need to write a windows service that record user login and logout.The only problem is that the environment is win xp with Novell Client 4.3.1.Because of the Novell client, I can't hook to the SystemEvents.how to hook to the Novell client events?I've found this vb class:
View 1 Replies
Mar 31, 2009
I have made an simple application (.exe). When i run this program local on my machine it works fine. When i run it from an server i get the system.security.securityexception message.
View 2 Replies
Jan 13, 2012
I am trying trite code that will copy information from an infopath document to a word document that is being used as a template containing only a header and footer. The only reason for the code is becausthe footer (not optional) is too long to be handled by Infopath (which has a 255 character limit) and word can hold the full footer. Following the guidance on
Public Sub CTRL1_5_Clicked(ByVal sender As Object, ByVal e As ClickedEventArgs)
Dim appWord As Word.Application
Dim wrdDoc As Word.Document
[code].....
View 2 Replies
Jan 11, 2010
Trying to read key "HKLMSOFTWAREPoliciesMicrosoftWindowsWindowsU pdateAU" value "AUOptions" and get the following : A first chance exception of type 'System.Security.SecurityException' occurred in mscorlib.dll Error occurs in ReadRegistry key SOFTWAREPoliciesMicrosoftWindowsWindowsUpdate AU : Requested registry access is not allowed. This occurs in my vb.net application when application is run under an account called OPER in the USERS group. The application :
1/is on my PC's hard drive, its not a web app or on a network share
2/is launched via a desktop click
3/ has a manifest specifying executionlevel "AsInvoker"
It does not occur when the Application is run as an Administrator. It does not occur if I read the value with a non .NET program when logged in as OPER whch makes me think it is a .NET problem not a registry permissions problem. Examining "Effective Permissions" shows that my OPER login has query value permission.I need the application to be able to read the key like the non .NET application while running at USERS level.
View 1 Replies
Jul 27, 2010
I am getting the following error message when I try to call this program from a shared drive on our network;
System.Security.SecurityException: System.Security.Permissions.SecurityPermission
at EMAILVB.EmialVB.EmailVB_Load(Object sender, EventArgs e)
[code]....
View 5 Replies