TransientFaultHandling for ServiceBus 1.7
-
2012년 8월 1일 수요일 오전 12:38
Hi guys,
I'm using the EnterpriseLibrary.WindowsAzure.TransientFaultHandling nuget package in my app.
it's current version Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling.dll (5.0.1118.2) references Microsoft.ServiceBus, Version=1.6.0.0
thus I'm having problems using it with the 1.7 version of ServiceBus.
(When) can we expect a new version of TransientFaultHandling referencing Microsoft.ServiceBus, Version=1.7.0.0?
Thanks,
Stevo
모든 응답
-
2012년 8월 1일 수요일 오전 5:00
Why dont you try adding the binding redirect in the config. Mostly it should work.
<runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Microsoft.ServiceBus" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="1.6.0.0" newVersion="1.7.0.0" /> </dependentAssembly> </assemblyBinding> </runtime>
Otherwise you can download the source of the application block from code plex, update the reference to 1.7 and compile it.
One of the above approached should work.
Please mark the replies as Answered if they help and Vote if you found them helpful.- 답변으로 표시됨 Stevo Zilik 2012년 8월 2일 목요일 오전 8:03
-
2012년 8월 2일 목요일 오전 8:04The config redirect works, thanks!
-
2012년 8월 3일 금요일 오전 4:40
Glad that solution worked.
Please mark the replies as Answered if they help and Vote if you found them helpful.

