Click here to Skip to main content
16,004,977 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralCalling an ASP page from VB Pin
Simes22-Dec-03 0:12
Simes22-Dec-03 0:12 
GeneralTrapping non VB windows opening/closing Pin
Simes22-Dec-03 0:09
Simes22-Dec-03 0:09 
GeneralRe: Trapping non VB windows opening/closing Pin
cnurse23-Dec-03 3:32
cnurse23-Dec-03 3:32 
GeneralRe: Trapping non VB windows opening/closing Pin
cnurse23-Dec-03 3:33
cnurse23-Dec-03 3:33 
Generalsecurity problems Pin
pnpfriend21-Dec-03 5:51
pnpfriend21-Dec-03 5:51 
GeneralRe: security problems Pin
Shinde Vikram27-Dec-03 3:56
Shinde Vikram27-Dec-03 3:56 
GeneralRe: security problems Pin
pnpfriend28-Dec-03 4:21
pnpfriend28-Dec-03 4:21 
GeneralRe: security problems Pin
Shinde Vikram28-Dec-03 16:44
Shinde Vikram28-Dec-03 16:44 
Cool | :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 loaded into the domain neutral area twice. With the
exception of mscorlib of which there is only one copy of the code, all statics and local data are cloned.

An application can have multiple application domains running on its behalf. An application domain is the unit of code loading and unloading. Note that you can have multiple application domains in one process. Each type is loaded into the same application domain as its caller, or a caller can request that a type be loaded into a new application domain.

There are no direct calls between objects in different application domains;

instead, a proxy is used. Application domains can be debugged independently

so go, create a application doamin , then set its security policy and then do your work

i think that this will help you

Cool | :cool:

VickyMD A Specialist in Message Digest Security
Generalexcel application process still runnig afer it get closed Pin
pnpfriend21-Dec-03 5:06
pnpfriend21-Dec-03 5:06 
GeneralRe: excel application process still runnig afer it get closed Pin
Dave Kreskowiak21-Dec-03 6:24
mveDave Kreskowiak21-Dec-03 6:24 
GeneralRe: excel application process still runnig afer it get closed Pin
pnpfriend21-Dec-03 7:07
pnpfriend21-Dec-03 7:07 
GeneralRe: excel application process still runnig afer it get closed Pin
Dave Kreskowiak21-Dec-03 7:41
mveDave Kreskowiak21-Dec-03 7:41 
GeneralRe: excel application process still runnig afer it get closed Pin
pnpfriend21-Dec-03 8:22
pnpfriend21-Dec-03 8:22 
GeneralRe: excel application process still runnig afer it get closed Pin
Dave Kreskowiak21-Dec-03 15:36
mveDave Kreskowiak21-Dec-03 15:36 
GeneralRe: excel application process still runnig afer it get closed Pin
Charlie Williams22-Dec-03 5:02
Charlie Williams22-Dec-03 5:02 
GeneralRe: excel application process still runnig afer it get closed Pin
Dave Kreskowiak22-Dec-03 5:16
mveDave Kreskowiak22-Dec-03 5:16 
Generalcustom property editor Pin
cnurse21-Dec-03 3:32
cnurse21-Dec-03 3:32 
GeneralWhere can i get articles about Text file handling in Vb.Net Pin
MJay21-Dec-03 3:31
MJay21-Dec-03 3:31 
GeneralRe: Where can i get articles about Text file handling in Vb.Net Pin
Mike Ellison22-Dec-03 6:34
Mike Ellison22-Dec-03 6:34 
Generala newbie with a question about .net SDK Pin
Dave Pursey20-Dec-03 17:14
Dave Pursey20-Dec-03 17:14 
GeneralRe: a newbie with a question about .net SDK Pin
Corinna John21-Dec-03 10:10
Corinna John21-Dec-03 10:10 
Questionxmltextwriter how to append new elements? Pin
rubs20-Dec-03 13:08
rubs20-Dec-03 13:08 
Generalemail Pin
Michael Bailey20-Dec-03 11:38
Michael Bailey20-Dec-03 11:38 
GeneralRe: email Pin
Dave Kreskowiak20-Dec-03 12:41
mveDave Kreskowiak20-Dec-03 12:41 
GeneralRe: email Pin
Michael Bailey20-Dec-03 13:27
Michael Bailey20-Dec-03 13:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.