:cool: hi there well there is not a problem with .NET actually .NET is platform independent there a special level of security implemented in .NET Operating systems and runtime environments typically provide some form of isolation between applications running on the system. This isolation is necessary to ensure that code running in one application cannot adversely affect other unrelated applications. Typically, isolation means A) Faults in one application cannot affect other applications by bringing down the entire process. B) Applications can be independently stopped and debugged. C) Code running in one application cannot directly access code or resources from another application; doing so could introduce a security hole. D) The behavior of running code is scoped by the application it runs in. In modern operating systems, this isolation has historically been achieved using process boundaries. A process runs exactly one application and that process scopes the resources that are available for that process to use. For example, memory addresses in Win32 are process relative---a pointer in one process is meaningless in the context of another process. The Common Language Runtime relies on the fact that code is type safe and verifiable to provide fault isolation between domains. By relying on the type safe nature of the code, application domains provide fault isolation at a much lower cost than the process isolation used in Win32. Because isolation is based on static type verification, there is no need for hardware ring transitions or process switches. In many respects, application domains are the Common Language Runtime equivalent of a Win32 process. The runtime creates an application domain for each runtime application; each application domain can have an associated configuration file. Application domains isolate separate applications which run within a process. The combination of an application domain and configuration information create isolation for the application The way in which application domains are created affects the permissions which assemblies have when running in the domain. For basic web-application scenarios, where the web page does not provide a LINK tag to a configuration file, the runtime creates an application domain on a per-site basis. Domain-neutral assemblies are only shared between application domains and assemblies with identical permission sets. A domain-neutral assembly called by two application domains with dissimilar permission sets is
Shinde Vikram
Posts
-
security problems -
security problems:cool: i think so that you are calling a function from the .exe file why don't you go for the .dll file?:confused: as per my experience there is no method to call a function from a .exe file :~ If this is the case then Microsoft should provide .exe files for interlinking :-D Better way you create a .dll and get the function called :cool: VickyMD A Specialist in Message Digest Security
-
error message in vb:cool: First up all tell me what Control you are using to select a date from the database? and also tell me what kind of technique u r using to get the date? :mad: You Must Specify Your Problem Clearlly VickyMD A Specialist in Message Digest Security
-
Date & Time of Server:cool: There are Two Options for it 1)Synchronize the client while logging 2)Create DCOM, Run it on server. Create Object on Client Write a method in DCOM Class to return Date and Time i m telling u the technique to get the date and time from the Server :cool: VickyMD A Specialist in Message Digest Security
-
How I prepare deployment package:cool: well i think that you had not gone with all the tools which comes with the Visual Studio Package there is one tool name Package and Deployment Wizard You can use it or else you can add the Package and Deployement control and make your own deployment package hope this will help you :-) :cool: VickyMD Specialist in the Message Digest security
-
Test Suite with code for HAVALHello there i m a student of M. Sc. Computer Science Part - II i m implementing a class which will give support to 14 Message Digest Algorithms i had implemented 9 of those Now i m implementing the HAVAL i got the Algo but the problem is this i want the test suite to test it i want a test suite which will give step by step idea about the values plz help me
-
Call VB DLLs from C++hello karl well the VB's DLL is a ActiveX DLL which supports the COM so the functions exported by the VB's DLL can be called through the VB program. But You can call Funtion from DLL of C++ through VB so do not worry abt calling the VB's DLL through C++ and remove it from your mind i m student of M. Sc. Computer Science from india and expert in Message Digest Security
-
Help needed! - Confused by char **well karl i think so your are confused with the pointers it is a very small concept of rows and columns:-O do the following steps firstly define a char ** for ex. char ** a; then allocate the memory which you needed for ex. a = new char[10]; i.e. firstly allocate the number of rows i.e. how many strings you want to store then allocate the memory for what will be the size of each string for ex. for (int i=0; i < 50; i++) a[i] = new char[50]; i.e. allocate the memory for each columns ok so simple try it out and mail me back hope so this will solve your problem i m a student of M. Sc. Computer Science from khopoli wanna any information regarding the VC++ and VB ? specialization on Message Digest Security