Does "default retry policy" mean what I define in web.config?

Warning: Do not use the information listed in the comments below. Most of it is wrong and/or out of date!
Hi all;
The docs for
ReliableSqlConnection(connectionString) state:
Initializes a new instance of the ReliableSqlConnection class with a given connection string. Uses the
default retry policy for connections and commands unless retry settings are provided in the connection string.
Question 1:
If I have the following in my web.config, does this set the default retry policy? Or is the default set in the libabry and I have to explicitly pass this defined policy?
<RetryPolicyConfiguration defaultRetryStrategy="Fixed Interval Retry Strategy"
defaultSqlConnectionRetryStrategy="Backoff Retry Strategy"
defaultSqlCommandRetryStrategy="Incremental Retry Strategy"
defaultAzureStorageRetryStrategy="Fixed Interval Retry Strategy"
defaultAzureServiceBusRetryStrategy="Fixed Interval Retry Strategy">
<incremental name="Incremental Retry Strategy" retryIncrement="00:00:01"
retryInterval="00:00:01" maxRetryCount="10" />
<fixedInterval name="Fixed Interval Retry Strategy" retryInterval="00:00:01"
maxRetryCount="10" />
<exponentialBackoff name="Backoff Retry Strategy" minBackoff="00:00:01"
maxBackoff="00:00:30" deltaBackoff="00:00:10" maxRetryCount="10"
fastFirstRetry="false"/>
</RetryPolicyConfiguration>
Question 2:
If this does set the default, how do I set this in a cloud service as it does not have a web.config?
thanks - dave
What we did for the last 6 months -
Made the world's coolest reporting & docgen system even more amazing

Sorry, did not work. I got the NuGet package shown below (the search returned 5+ pages of results - you guys really need to uniquely name your packages).
On the call to GetDefaultSqlConnectionRetryPolicy() I get:
System.Configuration.ConfigurationErrorsException occurred
HResult=-2146232062
Message=An error occurred creating the configuration section handler for RetryPolicyConfiguration: Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling, Version=5.0.1031.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. (c:\src\EnforcedVacation\UnitTestRepository\bin\Debug\UnitTestRepository.dll.config line 5)
Source=System.Configuration
BareMessage=An error occurred creating the configuration section handler for RetryPolicyConfiguration: Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling, Version=5.0.1031.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
Filename=c:\src\EnforcedVacation\UnitTestRepository\bin\Debug\UnitTestRepository.dll.config
Line=5
StackTrace:
at System.Configuration.BaseConfigurationRecord.FindAndEnsureFactoryRecord(String configKey, Boolean& isRootDeclaredHere)
at System.Configuration.BaseConfigurationRecord.GetSectionRecursive(String configKey, Boolean getLkg, Boolean checkPermission, Boolean getRuntimeObject, Boolean requestIsHere, Object& result, Object& resultRuntimeObject)
at System.Configuration.BaseConfigurationRecord.GetSection(String configKey)
at System.Configuration.ClientConfigurationSystem.System.Configuration.Internal.IInternalConfigSystem.GetSection(String sectionName)
at System.Configuration.ConfigurationManager.GetSection(String sectionName)
at Microsoft.Practices.EnterpriseLibrary.Common.Configuration.SystemConfigurationSource.DoGetSection(String sectionName)
at Microsoft.Practices.EnterpriseLibrary.Common.Configuration.FileBasedConfigurationSource.GetSection(String sectionName)
at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Configuration.RetryPolicyConfigurationSettings.GetRetryPolicySettings(IConfigurationSource configurationSource)
at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicyFactory.CreateDefault()
at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicyFactory.GetOrCreateRetryManager()
at Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicyFactory.GetDefaultSqlConnectionRetryPolicy()
at UnitTestRepository.TestUtilities.GetConnection() in c:\src\EnforcedVacation\UnitTestRepository\TestUtilities.cs:line 41
InnerException: System.IO.FileNotFoundException
HResult=-2147024894
Message=Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling, Version=5.0.1031.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
Source=System.Configuration
FileName=Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling, Version=5.0.1031.0, Culture=neutral, PublicKeyToken=null
FusionLog==== Pre-bind state information ===
LOG: DisplayName = Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling, Version=5.0.1031.0, Culture=neutral, PublicKeyToken=null
(Fully-specified)
LOG: Appbase = file:///c:/src/EnforcedVacation/UnitTestRepository/bin/Debug
LOG: Initial PrivatePath = NULL
Calling assembly : (Unknown).
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: c:\src\EnforcedVacation\UnitTestRepository\bin\Debug\UnitTestRepository.dll.config
LOG: Using host configuration file:
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Attempting download of new URL file:///c:/src/EnforcedVacation/UnitTestRepository/bin/Debug/Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling.DLL.
LOG: Attempting download of new URL file:///c:/src/EnforcedVacation/UnitTestRepository/bin/Debug/Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling/Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling.DLL.
LOG: Attempting download of new URL file:///c:/src/EnforcedVacation/UnitTestRepository/bin/Debug/Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling.EXE.
LOG: Attempting download of new URL file:///c:/src/EnforcedVacation/UnitTestRepository/bin/Debug/Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling/Microsoft.Practices.EnterpriseLibrary.WindowsAzure.TransientFaultHandling.EXE.
StackTrace:
at System.Configuration.TypeUtil.GetTypeWithReflectionPermission(IInternalConfigHost host, String typeString, Boolean throwOnError)
at System.Configuration.RuntimeConfigurationRecord.RuntimeConfigurationFactory.Init(RuntimeConfigurationRecord configRecord, FactoryRecord factoryRecord)
at System.Configuration.RuntimeConfigurationRecord.RuntimeConfigurationFactory.InitWithRestrictedPermissions(RuntimeConfigurationRecord configRecord, FactoryRecord factoryRecord)
at System.Configuration.RuntimeConfigurationRecord.CreateSectionFactory(FactoryRecord factoryRecord)
at System.Configuration.BaseConfigurationRecord.FindAndEnsureFactoryRecord(String configKey, Boolean& isRootDeclaredHere)
InnerException:
What I added:
What we did for the last 6 months -
Made the world's coolest reporting & docgen system even more amazing

Similar Messages

  • HT1766 what does restor back up means/what does it do

    what does restor back up mean?/what does it do

    it stores all the data on your device in another place so that you can restore from it if a problem happens (say your device crashes or gets erased). then all your data is restored to your iPhone/iPod/iPad/Mac.

  • What does this key combo mean, what's it doing?

    mark an in and mark an out - anywhere in the timeline of an open sequence,
    type the following keyboard combo:
    Control, O
    or Control, I
    Whats up with the red line that now extends between marks in the timeline and canvas?? Is it setting me up to create a split edit?
    Curious.. Thanks for thoughts, direction.

    Yes, split edit. Go to Mark > Mark Split to see your other short cuts. Handy way to do an L-cut with out trimming or slipping transitions in the timeline.

  • What does the "second highest"mean on the macbook pro web page mean? If you have to think too hard then does it need changing as a landing page title ?

    An
    y comments ?

    thanks
    just seemed a strange turn of phrase.
    obviously worked though as I was puzzled enough to  ask :-)

  • What does "extracted channel PDF" mean and why does it continually duplicate on my desktop?  I think it happens when I move a file in Finder to another file and when I copy some web files.  How do I avoid this on my Mac (Mavericks)?  Thanks for your help!

    What does "extracted channel PDF" mean and why does it continually duplicate on my desktop?  I think it happens when I move a file in Finder to another file and when I copy some web files.  I have to immediately move to trash all the duplications on my desktop.  How do I avoid this on my Mac (Mavericks)?  Thanks for your help!

    What application is set to open PDF files? If you CNTRL click on the file and open with Preview does the problem occur?
    If not change the default application to open PDF files to Preview.
    You can do this by highlighting the file and either use CMD i or Get Info , this will open a window with the info on the file with an option to change the application that opens the file.
    That's all I can think of.

  • My Creative Cloud desktop app does not display any means of signing in to my account. What would be the reason?

    Creative Cloud desktop app does not display any means of signing in to my account. What would be the reason

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html
    or
    Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • What does doa cover. i mean i brought  a macbook 6 days back and it uses to restart  when its powerd off nd lid closed it has kinda defective power key also. can it be treated as doa

    what does doa cover. i mean i brought  a macbook 6 days back and it uses to restart  when its powerd off nd lid closed it has kinda defective power key also. can it be treated as doa

    DOA means different things to different manufacturers. For some DOA means it fails to work out of the box and will be replaced but if it worked out of the box and failed the next day it will be repaired. For other companies there is a liberal return policy - for Apple if you buy direct from Apple (online or an Apple store) you have 14 days to return. That means you can return a defective computer and then turn around and buy a new one.
    (I had a store manager try to get me to accept a repair on a computer with a bad keyboard out of the box. I refused and insisted on a full refund if she wasn't willing to replaced it.)

  • What impact do changes to the CUCM "Default Credential Policy" have?

    Hi all,
    We have been asked to make an update to the 'Default Credential Policy' on CUCM 6.1. The update is easy enough to carry out:  User Management > Credential Policy > Default Credential Policy.
    However, Cisco documentation isn't too clear as to what accounts this will impact. As best i can tell any changes made here will impact any 'new' Application or SuperUser (etc) accounts that are created *after* the policy is updated.  Existing application accounts won't get impacted and would require a Bulk Upload to change them. Does that sound correct?
    I'm also a little unsure if changes to this policy will impact the 'administrator' account that we created when we installed CUCM, or any of the normal 'phone' user accounts that our many IP phone users have (i presume not, but again Cisco documentation doesn't seem too hot on precisely what gets impacted by changes to this policy). 
    Screenshot below of the GUI screen i am referring to.
    Thoughts appreciated.
    Many thanks!

    Quick bump. We've read a few links that suggest User and Application User passwords etc would be impacted.  However, they don't mention the main Administrator account, nor if we would need to use Bulk Upload to change existing User and Application User settings after chaning the Default Policy settings:
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/7_1_2/ccmcfg/b08crpdf.html#wp1064073
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/6_1_1/ccmcfg/b08crpol.html#wp1030222
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/6_1_1/ccmcfg/b08crpdf.html#wp1055303
    http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_configuration_example09186a0080a57c4c.shtml
    Ironically, a Google search for "CUCM Default Credential Policy" now lists this post as the fifth most significant one when trying those search terms doh!
    Any thoughts appreciated.
    Thanks

  • HT201593 What does resetting your settings mean?

    What does resetting your settings mean?

    If you mean using Settings > General > Reset > Reset All Settings this causes all settings to be returned to iOS defaults. It will also clear stored WiFi hotspots.

  • What does this error message mean: "Filename: Mips32.ari TFTP Error: 'File not found' in AP-105"?

    Question: What does this error message mean: "Filename: Mips32.ari TFTP Error: ‘File not found’ in AP-105"?
    Product and Software: This article applies to AP-105.
    The root cause of this error is that the AP cannot perform a code upgrade.
    Scenario 1
    Check the ArubaOS code.
    The minimum requirement to bring up an AP-105 is ArubaOS 3.3.3+ or ArubaOS 3.4.1+.
    If the controller is running pre 3.3.3 code, upgrade the code to fix the issue.
    Scenario 2
    If the AP is not connected to the controller directly, bring up the AP in the controller and then connect it to the desired location. This process loads mips32.ari to the AP so that the AP can upgrade the code.
    Scenario 3
    The AP has no power adapter and you want to use the PoE feature. A few controller series like the 200 and 3000 Series do not support PoE. In this case, the AP cannot be terminated physically in the controller. Instead, connect the AP to the PoE switch, which is connected to the controller. Then assign a static IP configuration for the AP using the following commands:
    apboot> setenv ipaddr <ip address>
    apboot> setenv netmask <netmask>
    apboot> setenv gatewayip <ip address of the gateway>
    apboot> setenv master <ip address of the master>
    apboot> setenv serverip <ip address of the TFTP server>
    apboot> setenv bootcmd tftp
    apboot> save
    apboot> boot
    Locally configure the TFTP server for the AP and load the mips32.ari file from the controller with the help of the TFTP application.

    I want to download this file Mips32.ari for AP-105 device. Please give me this file download link. APBoot 1.2.4.4 (build 26618)
    Built: 2011-01-07 at 13:42:04Model: AP-10x
    CPU: AR7161 revision: A2
    Clock: 680 MHz, DDR clock: 340 MHz, Bus clock: 170 MHz
    DRAM: 128 MB
    POST1: passed
    Copy: done
    Flash: 16 MB
    PCI: scanning bus 0 ...
    dev fn venID devID class rev MBAR0 MBAR1 MBAR2 MBAR3
    00 00 168c 0029 00002 01 10000000 00000000 00000000 00000000
    01 00 168c 0029 00002 01 10010000 00000000 00000000 00000000
    Net: eth0
    Radio: ar922x#0, ar922x#1Hit <Enter> to stop autoboot: 0
    Checking image @ 0xbf100000
    Invalid image format version: 0xffffffff
    Checking image @ 0xbf800000
    Invalid image format version: 0xffffffff
    eth0 up: 1 Gb/s full duplex
    DHCP broadcast 1
    DHCP IP address: 192.168.x.xx
    DHCP subnet mask: 255.255.255.0
    DHCP def gateway: 192.168.x.xx
    DHCP DNS server: 192.168.x.xx
    DHCP DNS domain: xx
    ADP multicast 1
    ADP broadcast 1
    ADP multicast 2
    checksum bad
    ADP broadcast 2
    checksum bad
    ADP multicast 3
    checksum bad
    checksum bad
    checksum badRetry count exceeded
    DNS request 1 for aruba-master to 192.168.x.xx
    checksum bad
    checksum bad
    checksum bad
    T Using eth0 device
    TFTP from server 192.168.x.xx; our IP address is 192.168.x.xx
    Filename 'mips32.ari'.
    Load address: 0x2000000
    Loading: checksum bad
    T T checksum bad
    T checksum bad
    checksum bad
    checksum bad
    T checksum bad
    checksum bad
    T T checksum bad
    T checksum bad
    checksum bad
    T T T
    Retry count exceeded; starting again
    eth0 up: 1 Gb/s full duplex
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum badARP Retry count exceeded; starting again
    eth0 up: 1 Gb/s full duplexchecksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad
    checksum bad  ThanKs :)
     

  • I got an iphone from Hong Kong which is locked one. Can anyone explain me what does a locked iphone means. How do I use it in India now, with my own sim card. How do I unlock it???

    I got an iphone from Hong Kong which is locked one. Can anyone explain me what does a locked iphone means. How do I use it in India now, with my own sim card. How do I unlock it???

    If your iPhone is locked to a wireless provider, only that wireless provider
    can unlock it. Contact the wireless provider in Hong Kong to see if they
    offer unlocking and if you qualify.
    If your iPhone is locked to an AppleID that you do not know, return it for
    a refund as it is useless. Only the person whose AppleID was used for
    activation can remove the lock. There is no workaround for Activation Lock.
    If neither of the above is what you are facing, provide more detail so someone
    may offer a solution.

  • I was playing with my ipad settings (it's an older model) and noted in the advanced settings of Safari there was a place to view website databases.  When I clicked on this I saw websites.  How do these get there and what does the space amount mean?

    I was playing with my ipad settings and noted in he advanced settings of Safari there was a place to view "website databases".  When I selected this I saw a multitude of websites.
    Can anyone tell me how these get there?  Can a website be posted even if it was never went to?  What does the space amount mean?  For example, 1.5 kb...is this quite a bit?  Would it indicate someone has gone to a site multiple times?
    I share my ipad with my teenage daughter and I'm trying to find out if she's lying to me.  Obviously she's swearing that she has "no idea" how these got there and I'm trying to keep her safe (she's only 14).
    Thanks everyone.
    Concerned Mom

    Think of your PC and the 'temporary internet folder' where it keeps cached copies of web pages or elements off a web page for 'quicker display the next time you visit'. That's pretty much what that folder is. 1.5K is tiny. Probably just a basic page with some text on it. (you might be confusing 1.5K with 1.5 megabyte....megabyte is large...it's roughly 1000 kilobytes, so the 1.5K is a tiny file)
    As far as I know, the only way info gets into that folder is if the browser has been to that site.
    if you have a concern there are browsers out there, McGruff is one i've seen recommended, that allow some degree of parental control and supervision. That or you could passcode lock the iPad or enable the restrictions to turn off some parts of the device to have some control.

  • I have many photos that are visible as thumbnails in the Pictures Library, however when I try to open them in a big screen they show a back screen with an exclamation mark in a triangle.  What does this exclamation mark mean ?

    I can see my images in the libarary as thumbnails but when i try to edit/email some of them become Exclamation Marks in a triangle.
    What does the exclamation mark mean and how to i retrieve the photo

    The exclamation make is an indication that iPhoto has broken the file path to the original photo.
    Make a temporary, backup copy (if you don't already have a backup copy) of the library and apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Select the options identified in the screenshot. 
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Sending an email from my Ipad I get "receipient was rejected by server because it does not allow relaying". What does this mean and how do I correct it?

    When sending an email from my Ipad. I get "receipient was rejected by server because it does not allow relaying". What does this mean and how do I correct it?

    On the email account's settings (Settings > Mail, Contacts, Calendars and tapping on the account on the right), go into it's outgoing SMTP settings and try putting in your email name and password (they might currently show as 'optional')

  • HT3228 I set up my work e-mail on iphone.  When I try to send an e-mail, an error code says "Cannot Send Mail", "recipient rejected by server because it does not allow relaying".  What does this mean and how do I correct it?

    I set up my work e-mail account on my iphone 4S.  When I try to send an e-mail message from my phone, an error message occurs "Cannot Send Mail" - "recipient was rejected by the server because it does not allow relaying".  What does this mean and how do I correct it?

    Get the correct mail server settings from your IT department.

Maybe you are looking for

  • RE: (forte-users) Including/Excluding plans

    Pascal, Before you partition try setting "trc:cf:6". Good luck, John Hornsby DS Data Systems (UK) Ltd. John.Hornsbydsdata.co.uk Tel. +44 01908 847100 Mob. +44 07966 546189 Fax. +44 0870 0525800 -----Original Message----- From: Rottier, Pascal [mailto

  • [SOLVED] Dmenu + Xmonad, problem in a new version.

    Hello guys. I recently have problem with the new version of Dmenu on Xmonad. Dmenu version is 4.5 and the code i use is this: keys' :: XConfig Layout -> M.Map (KeyMask, KeySym) (X ()) keys' conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $ --

  • Un Install Blackberry Media Synch

    hello, i accidently let this function synch up with my blackberry storm through Desktop Manager and now it slows everything down when i plug the phone into the computer.  i don't want it to synch up with iTunes.  is there any way to reverse the proce

  • Passing parameters from webdynpro to rfc and displaying pdf in portal

    Hi, I am creating a webdynpro application where in I am using the following code for catching the current user who has logged into the portal. try{ IWDClientUser user = WDClientUser.getCurrentUser(); if(user.isAnonymousUser()){ //User is anonymous ..

  • N97Internet page on homescreen

    Hi, i got a question, this is what i want i have an internetpage that doesn't have rss or someting, and i want it on my homescreen so i can look at it without pushing a button, now i thought maybe by bookmarks since it doesn't have an rss feed but i