I have an asp.net webservice that references a mixed mode dll. The native dll's that the mixed mode assembly reference are in a directory that is added to SYSTEM PATH.
I want to remove the native dll's directory from the SYSTEM PATH, so I copied all the native dll's to webservice's bin directory, but I get file not found exception.
Does asp.net not look in webservice's bin directory for native dlls? Is there a way to dynamically set the SYSTEM PATH? How can I get this to work.