-----------------------------------------------------------

New Message on BDOTNET

-----------------------------------------------------------
From: Raj_MS
Message 9 in Discussion

First, here are the settings you need:  <configuration>
<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="AISDB" publicKeyToken="e3f9d4cb1b599ec3" />
        <codeBase version="1.0.0.0" href="file:///H:\AIAssy\AISDB.Dll" />
      </dependentAssembly>
    </assemblyBinding>
</runtime>
</configuration> 
The major difference between what you have done and this is that the href attribute of 
the codebase element points to the assembly itself, NOT the path containing the 
assembly. This is how codebase redirection works. Of course, the version given has to 
match the version of the DLL exactly. 
All the other things you used are not neccessary for doing what we are trying to do. 
One thing I noticed was that you were using a qualified path (H:\AIAssy) in the 
probing element. The probing element can ONLY specify directories under the 
application base. 
Lastly, the above setting will work only if you are using Framework version 1.0. For 
v1.1, you have to use the new applies-to attribute for the assemblyBinding element, 
like this:<configuration>
<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" appliesTo="v1.1.4322">
      <dependentAssembly>
        <assemblyIdentity name="AISDB" publicKeyToken="e3f9d4cb1b599ec3" />
        <codeBase version="1.0.0.0" href="file:///H:\AIAssy\AISDB.Dll" />
      </dependentAssembly>
    </assemblyBinding>
</runtime>
</configuration> 
 

-----------------------------------------------------------

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you received 
this message by mistake, please click the "Remove" link below. On the pre-addressed 
e-mail message that opens, simply click "Send". Your e-mail address will be deleted 
from this group's mailing list.
mailto:[EMAIL PROTECTED]

Reply via email to