process has an UnloadedAssembly locked. whats the problem

Joe Mamma

Well-known member
Joined
Mar 1, 2004
Messages
1,062
Location
Washington DC
I created a dynamic assembly and it had been loaded into COM+ components.
Later I call RegistrationHelper.UnloadAssembly which successfully removed the assembly. but when I go to redefine and save the the dynamic assembly it says locked by another process. there are no objects instanced from the assembly.

Is the Assembly still loaded in the current app domain that unregistered it???

any ideas???
 
Joe Mamma said:
I created a dynamic assembly and it had been loaded into COM+ components.
Later I call RegistrationHelper.UnloadAssembly which successfully removed the assembly. but when I go to redefine and save the the dynamic assembly it says locked by another process. there are no objects instanced from the assembly.

Is the Assembly still loaded in the current app domain that unregistered it???

any ideas???
for those who are interested. . .

I had to create a subordinate domain, call instance registrationhelper in that domain, unload the assembly from com services there, then destroy the domain. the proble is, UnloadAssembly unloads the assembly from COM, but leaves it in the domain that unloaded it. . .
 
Back
Top