After upgrading from NServiceBus 2.0.0.1145 (.net 3.5) to version 2.0.0.1219 (.net 4.0), messages will no longer be loaded from the queues when running on a Windows 2008 server. Everything works as expected on my dev machine (win 7 ) Messages are successfully queued, but then nothing happens.
Could this be a permissions issue? If so, I expect an exception, or at least a log entry, but there is no indication that something is wrong.
loadFromRemoteSources enabled=true
and was added to the config, and I also tried
but no luck.
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
useLegacyV2RuntimeActivationPolicy="true"
source
share