Hi,
We devised smart client technology in our application.
We used web service to download a assembly which is there
in system32 folder of web server using "System.Reflection"
MyAssembly = [Assembly].LoadFrom("AsmSACM.dll")
Application has been successfully deployed in windows 2000
Server. But now when we tried to deploy it in Windows 2003
it is giving following error:
'Related Database Assembly AsmSACM.dll can not be found.'
Please help me out..
TIA
Pradeep
Keenan Newton - 23 Feb 2005 19:42 GMT
Well it seems like .Net is unable to finsd the assembly in the system32
folder on windows 2003, right? Try this:
MyAssembly = [Assembly].LoadFrom(System.Environment.SystemDirectory &
"\AsmSACM.dll")
Pradeep - 24 Feb 2005 05:45 GMT
Hi
Thanks, it really works!!!!!
Pradeep
>-----Original Message-----
>Well it seems like .Net is unable to finsd the assembly in the system32
[quoted text clipped - 4 lines]
>
>.