How do you set up codebase, probing etc with web.config?
I've tried the following in web.config, but it doesn't seem to work

...
<runtime>
 <assemblyBinding>
  <dependentAssembly>
   <assemblyIdentity name="DataDefinitions" />
   <codeBase version="1.0.0.0"
href="http://localhost/someurl/DataDefinitions.dll"; />
  </dependentAssembly>
 </assemblyBinding>
</runtime>
...

I've also tried to use a seperate config file using

<link rel="Configuration"
href="http://localhost/someurl/datadefinitions.dll.config"; >

on the ASP.Net page. Can't get that to work either...

Also tried to remove the blocking of config files in ASP.Net so that they
may be retrieved by clients.


Any suggestions?

You can read messages from the DOTNET archive, unsubscribe from DOTNET, or
subscribe to other DevelopMentor lists at http://discuss.develop.com.

Reply via email to