Default retry time for B2B

hi all,
i found out that the B2B will retry after waiting 2 hours counting from the previous failure.
example : 10.09am failed ( HTTP timeout ), then next retry is 12.09pm.
is there any place that i can change it from 2hours to 30mins?
thanks
kin wah

Kinwah,
I guess you are interested in the following parameters while defining the delivery channel.
Time To Acknowledgement Enter a value in minutes.
This value specifies the time in which an acknowledgment must be received. If an acknowledgment is not received, then retries occur.
Retry Count Enter a value. This defines the number of times to retry.
Please change the Time To ack according to your requirements.
Rgds,Ramesh

Similar Messages

  • How to Set A Default Start Time For New Events In Calendar?

    How to Set A Default Start Time For New Events In Calendar?

    John,
    Thanks for that suggestion - could not get it to work. However, I did manage a different approach. I finally determined the sequence of events in terms of how the various events and listeners fire (I think).
    Basically, the CalendarActivityListener fires, followed by the listener associated with the Calendar object's Create facet, followed finally by the CalendarEventListener - the final is where the TriggerEvent is available and then finally, control is passed to the popup/dialog in the Create facet. So, my approach of trying to set/get the TriggerDate in the user's HTTP session was doomed to failure because it was being get before it had been set :(
    Anyway, I ended up adding a bit of code to the CalendarEvent listener - it grabs the current BindingContext, navigates through the DCBindingContainer to derive an Iterator for the ViewObject which drives the calendar and then grabs the currently active row. I then do a few tests to make sure we're working with a "new" row because I don't want to alter start & end dates associated with an existing calendar entry and then I define the Start and End dates to be the Trigger Date.
    Works just fine. Snippet from the listener follows
    BindingContext bindingContext = BindingContext.getCurrent();+
    *if ( bindingContext != null )    {*+
    DCBindingContainer dcBindings = (DCBindingContainer) bindingContext.getCurrentBindingsEntry();+
    DCIteratorBinding iterator = dcBindings.findIteratorBinding("EventsView1Iterator");+
    Row currentRow = iterator.getCurrentRow();+
    if ( currentRow.getAttribute("StartDate") == null)+
    currentRow.setAttribute("StartDate", calendarEvent.getTriggerDate());+
    if (currentRow.getAttribute("EndDate")==null)+
    currentRow.setAttribute("EndDate", calendarEvent.getTriggerDate());+
    *}*

  • Changing default refresh time for the UWL.

    Hello,
    I am trying to change the Default refresh time for the UWL(workflow inbox) for all the users before they personalize or save the refresh time, Would changing the refresh time in the .xml file work or is there any other way to do it? Thanks,
    Aniketh R.

    We have had all sorts of issues with this as well. I have been unable to find a solution that works as of yet. From my own debugging it seems as if RP is trying to parse the pasted text as logo's, fields etc.... I am looking at potentially using a script w/ set interval to "clean" the clipboard data but this isn't a perfect solution for numerous reasons.
    What is happening to your letters when the users paste? Our letters actually become unusable after a plugin save. So I am actually very interested in the answer to this question!

  • Default duration time for importing still images

    Hello all,
    Is there an easy way to change the default duration time for imported still images?
    I have thousands of images that I want to import to make a time elapsed movie. I would like for these images to have a duration of less than a second. I could do this individually, but it would take forever.
    Can the default duration time for imported images be changed?
    Thanks,
    Adam

    Hi
    Too long time I made anything serious in iMovie HD6 (altough a a very competent editor)
    (Took the FinalCut leap)
    As I remember (just tested) it - if photos are imported then it's a tedious labor
    to set duration - one at a time. No global function I can induce.
    BUT - I would put my photos into a separate folder in iPhoto so that they are easy
    to get in iMovie from audio/photo browser.
    Then I select (in iMovie) the first photo and double click on it to view it on canvas.
    Now I also get a small gray window where I can set size and duration.
    I select 01:00 (1 sec) in duration and Apply/Use.
    Then I selec the rest of the photos and drag them down to TimeLine after first
    photo. And they also get same duration of 01:00.
    Yours Bengt W

  • CP5 - Default display times for Text Captions

    Hi there,
    I'm using Captivate 5.0.1 and trying to figure out how to do something that was in Captivate 4. In CP 4, I could edit the Preferences and set a default display time for new text captions. By default it is set to 3 seconds for all new text captions, but you could change it. In CP 5 the default is set to 3, does anyone know how to change it?
    Thanks,
    Mark

    Hello,
    It is exactly in the same place as in Captivate 4: Preferences, Global, Defaults. See screenshot. Or perhaps I do not understand your question well? If you are looking for Apply to all, you have to go in the Properties, but I did not understand that this was your question.
    Lilybiri

  • Default alarm time for ToDo item

    Hi
    when I enter a ToDo item it always defaults the alarm time to 12:00pm is there a way to alter what this defaults to? I happen to like 9am
    thanks

    I have an E5, same thing... I looked in Configurations, but no luck. This should be in some config file... but no idea where to look.
    Sorry I can't help...
    Regards.

  • 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

  • How can I change default build time from 1 sec to .5 sec?

    Whenever I create a build, the default time is 1 sec. I'd like it to be .5 sec. I use a blank master slide. How can I change the default build time for all slides? Or can I?

    I'm sorry, but Apple does not provide a downgrade path for iOS. Because downgrading is unsupported by Apple we cannot discuss it on these forums, but you can use Google to find information on how to install an older version of iOS on any iDevice.

  • Banner Display Time for One App Only

    I recently found an article (http://osxdaily.com/2014/01/29/change-notifications-banner-time-mac-os-x/#commen t-607754) showing a Terminal command to change the default display time for banner-style notification. It's a great thing, but then I thought...could there be any way to apply it to one app at a time? Say I want 10 seconds for Mail.app, 3 seconds for Messages and so forth.
    Can it be done? Thanks.

    It's called Trip Journal. The problem is, I think, that my iCloud backup wasn't current, because I'm travelling overseas, so data transfer has been largely up, and I don't think it has been backing up even when I was connected to wifi at my hotel.
    I did back up my iPhone to the computer this morning -- but that was after the crash occurred, so I don't know if any data will be salvagable.
    @Norman - I tried that, multiple times, but it hasn't worked.

  • Hyperion Performance Scorecard Default Reporting Time Change

    Hi all,
    I have to change the default reporting time for measures in the Browser view of HPS (Objects-> Measure ->
    measure tabs Result & Target: defaultwise there is the time period setting of one year, so e.g. From 2/18/08 to 2/18/09).
    I should extend this default time period to 2 years.
    Does anyone know, how to change this?
    Many thanks,
    Dominic

    Hi Dominic,
    You have to edit the measure in Browser view Measure List -> Measure name -> General Tab in the desigber role.
    Change the Frequencies for the measure.
    Change the collection frequency as you required and give Collection Extension Days as much buffer time you want to give. Save it and it should reflect.
    Note : Before changing it, you would have to take the backup using export utility. Change the frequency and Import the data again.
    Hope this would be useful

  • TA38641 Changing the calendars event default start time

    Is there a way to set a default start time for new events in calendar? For some odd reason my event start time always is 3am,and I'd like to change it to 8am ...

    Unfortunately not. The start default start time is usually the next hour, when entering an event.

  • Re-optimization Time for Tunnel-TE in IOS XR 4.3.2

    We have configured the Tunnel-TE with explicit path options 1 & 2. When we generate a failure scenario in primary path, the traffic switches over to secondary immediately but on the failure restoration, the primary tunnel does not preempt. On further investigation, we found that default reoptimization time for TE Tunnel is 60 mins which is vey high for us.
    The tunnel configuration is as below.
    interface tunnel-te1
    description "LOCA-LOCB"
    ipv4 unnumbered Loopback10
    autoroute announce
    destination 10.220.7.3
    path-option 1 explicit name PATH_Pri
    path-option 2 explicit name PATH_Sec
    explicit-path name PATH_Pri
    index 10 next-address strict ipv4 unicast 10.220.37.82
    explicit-path name PATH_Sec
    index 10 next-address strict ipv4 unicast 10.220.37.6
    index 20 next-address strict ipv4 unicast 10.220.37.86
    index 30 next-address strict ipv4 unicast 10.220.37.9
    While exploring through internet, I came across a forum which mentions 3 options for reoptimization but it is for IOS. The wording goes like...
    Reoptimization causes a tunnel to be rerouted in the network onto the more  optimal path.
    Three triggers can cause reoptimization of the TE tunnel so that it can be  rerouted to the better path.   
    Periodic reoptimization - By default, the reoptimization of a TE tunnel  occurs with a frequency of one hour   
    mpls traffic-eng reoptimize timers  frequency interval changes the periodic reoptimization  of a tunnel.
    Event-driven reoptimization - mpls traffic-eng reoptimize  events link-up enables the reoptimization when a link becomes  operational for MPLS TE By default, Cisco IOS does not trigger reoptimization when a link in the  network is available to TE again, either by configuration or because its state  becomes operational.
    Manual reoptimization - mpls traffic-eng reoptimize forces the  immediate reoptimization of all the TE tunnels on the head end  router.
    I would like to know that
    1. Is there any specific requirement behind keeping the default (periodic) reoptimization timer to 60 mins?
    2. I could not find the options for configuring 'Event Driven reoptimization' in IOS XR. How to get it?
    3. What are best practice reoptimization timer to be used in the network?
    P.S: We are running IOS-XR 4.3.2 on ASR 9000.
    Regards,
    Himanshu Bansal

    Himanshu,
    The same commands are similar for IOS-XR.  Here is the command references:
    http://www.cisco.com/en/US/docs/routers/crs/software/crs_r4.3/mpls/command/reference/b_mpls_cr43crs_chapter_011.html#wp3673803944
    Command Default
    after-frr delay: 0
    cleanup delay: 20
    delay-time: 20
    installation delay: 20
    path-protection: 180
    Thanks,
    Bryan

  • Default idle time

    does anyone know how long the default idle time for a profile is?

    If not specified explicitly, that's valid for all parameters of a profile, value defaults to UNLIMITED.
    Werner

  • Ical default alarm time

    Every reminder I set in ical pops up with a default time of 11:45 p.m. Every time I have to change it. If it would use a default time of 9 a.m., many times that would work fine for me unless it is a specific meeting. How do I change the default time ical gives me?

    The original post by Saluda Judy is almost exactly my question, except my issue -- which I believe is related to if not the same as the ical question -- is the default alarm time for TO DOs. When I create a 'to-do' in imail or directly in ical, and give that to-do a due date, then set an alarm for that to-do, the default time for the alarm is 11:45 pm the day before the due date. I would like to change the default time to something other than 11:45 pm the day before so that when I set an alarm for a new task, the alarm time is 8:00 am the day of, or whatever I decided to set my default to. I'm tired of having to change the alarm time for every to-do for which I create an alarm.
    And to reiterate; I don't want to create an alarm time by default for each to-do. Rather, when I choose to create an alarm time for a to-do, I want the alarm time to default to my desired time (8:00 am, for instance).

  • Error while importing zip file for second time to B2B through ant script

    [echo] args=import
    importstatus:
    [echo] Commandline arguments 1: [import]
    [echo] Import with overwrite=true
    [echo] B2BCommandLineUtility: importRepository: Error messages:
    [echo] MDS-00521: error while reading document /soa/b2b/tpa_JOvrtiV-7030143
    019445112136.xml from metadata repository
    [echo] MDS-00520: failure to read document /soa/b2b/tpa_JOvrtiV-70301430194
    45112136.xml because it is not in the metadata repository
    [echo] MDS-00911: Document with name "/soa/b2b/tpa_JOvrtiV-7030143019445112
    136.xml" and version 16 does not exist in the repository.
    [echo] ORA-01403: no data found
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603
    [echo] ORA-06512: at line 1
    [echo]
    [echo] ORA-01403: no data found
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603
    [echo] ORA-06512: at line 1
    [echo]
    [echo] ORA-01403: no data found
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603
    [echo] ORA-06512: at line 1
    [echo]
    [echo]
    Can anybody plz help???
    Thanks in Advance!!!

    Hi,
    Even I am getting the same error while importing the .zip file for the second time through B2B console-->Administration-->Import/export tab.
    But again it works for the third time..
    Error Message:
    Import of file OriginalProject.zip failed. MDS-00521: error while reading document /soa/b2b/tpa_MnjhBHh-70301432125893445241.xml from metadata repository MDS-00520: failure to read document /soa/b2b/tpa_MnjhBHh-70301432125893445241.xml because it is not in the metadata repository MDS-00911: Document with name "/soa/b2b/tpa_MnjhBHh-70301432125893445241.xml" and version 34 does not exist in the repository. ORA-01403: no data found ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407 ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603 ORA-06512: at line 1 ORA-01403: no data found ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407 ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603 ORA-06512: at line 1 ORA-01403: no data found ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407 ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603 ORA-06512: at line 1
    Please help...

Maybe you are looking for