On resuming instance of suspended message moving to active state?

In my current scenario I am inserting data to Teradata table. As per the requirement if due to some issue if transaction fails I have to notify admin using email and suspend message for resuming.
I am receiving a message
Making a connection to Teradata to check if db is up or not. If it downs I am shooting mail from exception block.
Then I am opening new scope and inserting data into Teradata.
In order to test scenario at the beginning I am updating wrong connection string in SSO. So that it fails in first scope and I will get mail. This part is working file.
After that I am again updating my SSO with correct connection string and restarting the host instance. But when I am resuming my orchestration instance, it is going into Active state.
Also there is no other instance running on the server, so there is no issue in opening new connection with db.
Can any one suggest me what could be the issue.

Atomic transaction is failing due to db timeout issue. When I am resuming orchestration it is going into active state. So I have two scope the one is for checking if Teradata is available or not by opening and closing connection and notifying
in case of exception. That part is working fine. After completion of scope as we don't have inbuilt Teradata I am trying to open connection under atomic transactional to insert data into db in second scope.
But suspended message is going into active state.

Similar Messages

  • WMI Script resume a suspended messag

    Hi All,
    Can anyone help me with a WMI script to resume a suspended message (resumable) for a messaging instance of a particular receive port.

    Hi,
    You could use the following code from MSDN Resuming Suspended Service Instances of a Specific Orchestration Using WMI:
    using System.Management;
            public
    void ResumeSvcInstByOrchestrationName(string strOrchestrationName)
    try
    const uint SERVICE_CLASS_ORCHESTRATION = 1;
    const uint SERVICE_STATUS_SUSPENDED_RESUMABLE = 4;
    const uint REGULAR_RESUME_MODE = 1;
    // Query for suspended (resumable) service instances of the specified orchestration
    // Suggestion: Similar queries can be written for Suspend/Terminate operations by using different ServiceStatus value. See MOF definition for details.
    string strWQL = string.Format(
    "SELECT * FROM MSBTS_ServiceInstance WHERE ServiceClass = {0} AND ServiceStatus = {1} AND ServiceName = \"{2}\"",
                        SERVICE_CLASS_ORCHESTRATION.ToString(), SERVICE_STATUS_SUSPENDED_RESUMABLE.ToString(), strOrchestrationName);
                    ManagementObjectSearcher searcherServiceInstance =
    new ManagementObjectSearcher (new ManagementScope ("root\\MicrosoftBizTalkServer"),
    new WqlObjectQuery(strWQL),
    null);
    int nNumSvcInstFound = searcherServiceInstance.Get().Count;
    // If we found any
    if ( nNumSvcInstFound > 0 )
    // Construct ID arrays to be passed into ResumeServiceInstancesByID() method
    string[] InstIdList = new
    string[nNumSvcInstFound];
    string[] ClassIdList = new
    string[nNumSvcInstFound];
    string[] TypeIdList = new
    string[nNumSvcInstFound];
    string strHost = string.Empty;
    string strReport = string.Empty;
    int i = 0;
    foreach ( ManagementObject objServiceInstance
    in searcherServiceInstance.Get() )
    // It is safe to assume that all service instances belong to a single Host.
    if ( strHost == string.Empty )
                                strHost = objServiceInstance["HostName"].ToString();
                            ClassIdList[i] = objServiceInstance["ServiceClassId"].ToString();
                            TypeIdList[i]  = objServiceInstance["ServiceTypeId"].ToString();
                            InstIdList[i]  = objServiceInstance["InstanceID"].ToString();
                            strReport +=
    string.Format(" {0}\n", objServiceInstance["InstanceID"].ToString());
                            i++;
    // Load the MSBTS_HostQueue with Host name and invoke the "ResumeServiceInstancesByID" method
    string strHostQueueFullPath =
    string.Format("root\\MicrosoftBizTalkServer:MSBTS_HostQueue.HostName=\"{0}\"", strHost);
                        ManagementObject objHostQueue =
    new ManagementObject(strHostQueueFullPath);
    // Note: The ResumeServiceInstanceByID() method processes at most 2047 service instances with each call.
    // If you are dealing with larger number of service instances, this script needs to be modified to break down the
    // service instances into multiple batches.
                        objHostQueue.InvokeMethod("ResumeServiceInstancesByID",
    new object[] {ClassIdList, TypeIdList, InstIdList, REGULAR_RESUME_MODE}
                        Console.WriteLine(
    string.Format("Service instances with the following service instance IDs have been resumed:\n{0}", strReport) );
    else
                        System.Console.WriteLine(string.Format("There is no suspended
    (resumable) service instance found for orchestration '{0}'.", strOrchestrationName));
    catch(Exception excep)
                    Console.WriteLine("Error: " + excep.Message);
    [VBScript]
    ' wbemChangeFlagEnum Setting
    const REGULAR_RESUME_MODE = 1
    'Module to Resume service instances
    Sub ResumeServiceInstance(strOrchestrationName)
       Dim objLocator : Set objLocator = CreateObject("WbemScripting.SWbemLocator")
       Dim objServices : Set objServices = objLocator.ConnectServer(,
    "root/MicrosoftBizTalkServer")
       Dim strQueryString
       Dim objQueue
       Dim svcInsts
       Dim count
       Dim inst
       '=============================
       ' Resume service instances
       '=============================
       wscript.Echo "Bulk Resuming service instances - "
       Wscript.Echo ""
       On Error Resume Next
       ' Query for suspended (resumable) service instances of the specified orchestration
       ' Suggestion: Similar queries can be written
    for Suspend/Terminate operations by using different ServiceStatus value.  See MOF definition
    for details.
       set svcInsts = objServices.ExecQuery("Select * from MSBTS_ServiceInstance where ServiceClass = 1 AND ServiceStatus = 4 AND ServiceName = """
    & strOrchestrationName & """")
       count = svcInsts.count
       If ( count > 0 ) Then
          Dim strHostName
          Dim aryClassIDs()
          Dim aryTypeIDs()
          Dim aryInstanceIDs()
          redim aryClassIDs(count-1)
          redim aryTypeIDs(count-1)
          redim aryInstanceIDs(count-1)
          ' Enumerate the ServiceInstance classes to construct ID arrays to be passed into ResumeServiceInstancesByID() method
          Dim i : i= 0
          For each inst in svcInsts
             strHostName = inst.Properties_("HostName")
             aryClassIDs(i) = inst.Properties_("ServiceClassId")
             aryTypeIDs(i) = inst.Properties_("ServiceTypeId")
             aryInstanceIDs(i) = inst.Properties_("InstanceId")
             i = i + 1
          Next
          wscript.Echo "Total instances found during enumeration: " & i
          wscript.Echo " "
          'Get the HostQueue instance
          strQueryString = "MSBTS_HostQueue.HostName=""" & strHostName &
          set objQueue = objServices.Get(strQueryString)
          CheckWMIError
          'Execute the Resume method of the HostQueue instance
          ' Note: The ResumeServiceInstanceByID() method processes at most 2047 service instances with each call.
          '   If you are dealing with larger number of service instances,
    this script needs to be modified to
    break down the
          '   service instances into multiple batches.
          objQueue.ResumeServiceInstancesByID aryClassIDs, aryTypeIDs, aryInstanceIDs, REGULAR_RESUME_MODE
          CheckWMIError
          Wscript.Echo ""
          wscript.Echo "Instances resumed - " &  i &
       Else
          wscript.echo "There is no suspended (resumable) service instance found for orchestration '" & strOrchestrationName &
       End If
       Set objLocator = Nothing
       Set objServices = Nothing
       Set objQueue = Nothing
       On Error Goto 0
    End Sub
    'This subroutine deals with all errors using the WbemScripting object.  Error descriptions
    'are returned to the user by printing to the console.
    Sub   CheckWMIError()
       If Err <> 0   Then
          On Error Resume   Next
          Dim strErrDesc: strErrDesc = Err.Description
          Dim ErrNum: ErrNum = Err.Number
          Dim WMIError : Set WMIError = CreateObject("WbemScripting.SwbemLastError")
          If ( TypeName(WMIError) =
    "Empty" ) Then
             wscript.echo strErrDesc &
    " (HRESULT: "   & Hex(ErrNum) &
          Else
             wscript.echo WMIError.Description &
    "(HRESULT: " & Hex(ErrNum) &
             Set WMIError = nothing
          End   If
          wscript.quit 0
       End If
    End Sub
    HTH
    Steef-Jan Wiggers
    Ordina ICT B.V. | MVP & MCTS BizTalk Server 2010
    http://soa-thoughts.blogspot.com/
    | @SteefJan
    If this answers your question please mark it accordingly
    BizTalk

  • How to get current suspended message ID from context

    Hi all,
    I'm trying to get the Suspended Message Id from my orchestration.
    I don't want to get the this inside the orchestration, because that I already know how to do it.
    I've search inside this forum and get a solution, but actually does not work. 
    Using this: Microsoft.XLANGs.Core.Service.RootService.InstanceId  
    (http://social.msdn.microsoft.com/Forums/en-US/95d2c9d9-5cbe-4bca-9cef-da7aba984d3c/how-do-i-access-instance-id-of-a-message-from-orchestration?forum=biztalkgeneral)
    Also, I have searched in "all" properties of Microsoft.XLANGs.Core.Service.RootService and didn't had any luck
    My goal?
    I have a service that logs, to SQL, all errors in my biztalk applications. Right now is not saving the message id, and I do need.  (I can easily change the method to receive the message id, but I'm trying to avoid that because I have 30 applications
    using the same method/application).
    Also, I have another service that is listening to all suspended messages.. In here I have the message Id (and other data) using WMI... 
    Now, I need to correlate both info..
    Any help would be appreciated
    Ricardo Bessa

    Hi,
    Thanks for the reply. My answers inline.
    I already understood the logic that you said and I'm working on it. However, if you have more good inputs to give, please do! 
    Thanks
    Hi Ricardo,
    Let us be clear with your requirement.
    “I
    have another service that is listening to all suspended messages.. In here I have the message Id (and other data) using WMI... ” 
    - What this “service” is? Is this some service external to BizTalk from where you want to access the detail of the suspended message? If so then you go to use some way similar to my earlier reply. When you want to access the suspended message details,
    you got to access it from management db. The code which I have given in my earlier reply would do that. No other option in this case.
    Yes, I am already doing that. I'm using a Windows service that is listening for all suspended messages in BizTalk. In this
    windows service I can access to everything that I want (message Id; service type id; instance id; and many other properties...). My issue is not in here.
    “Actually
    when i call Microsoft.XLANGs.Core.Service.RootService.InstanceId I'm getting the property SendingOrchestrationID.” 
    - Are you try to access the message Instance ID from another child orchestration?
    SendingOrchestrationID is the orchestration instance
    ID where the message originated and you would get it when another orchestration (subprocess) which has been triggered by another orchestration (parent orch whose ID is
    SendingOrchestrationID). Detail us about where and how
    to you get this SendingOrchestrationID.
    Because when you want to access “Suspended” Orchestration’s message instance ID, you can’t achieve it by calling it from sub-processes.
    I'm using a external (custom) class library. 
    I have a custom log which tracks everything that goes in our BizTalk applications. When errors / warning I write that to a database table.
    This is made in different times, so when I log the error to the database I need "something" that exists in my other service (MEssageID; service type
    id; instance id; or other 'unique' property). Also, I don't want to change the log method, because (if I do that, I would need to change 30 applications).
    That's why I'm looking for a 'global' property that I can use, without changing (a lot) my code.
    When an Orchestration is suspended, it will be marked as “Suspended” in db and to get the messages associated with it, access the suspended Orchestration instance
    ID from the db and use this ID from db to get its related contents/messages IDs.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.
    Ricardo Bessa

  • Suspended messages to be display in BAM Portal

    There is a requirement  to display failure messages/suspended messages in BAM portal.Please help me how to provide this solution.

    Hi BizQ,
    You can follow : How to Track Failed Messages in BAM   same method can be applied to
    suspended message as well.
    Maheshkumar S Tiwari|User
    Page | http://tech-findings.blogspot.com/

  • A bug in Mavericks. When I open Calendar, I get a message "Moving calendars to server account." Calendar freezes and this message goes on interminably. The only way to stop it is to restart.

    Mavericks (OS 10.9) is buggy. When I open Calendar, I get a message "Moving calendars to server account." Calendar freezes and this message goes on interminably. The only way to stop it is to restart the system. How do I fix that?

    Hi
    - I had the same problem and I suddently found out:
    Close (quit) calendar
    Under System-Icloud : log out
    Open calendar. Under preferences, Account, Icloud: log in !!
    And it works!!
    now the stupid ""Moving calendars to server account" is gone!

  • [svn] 3459: Fix FB-14050: Watchpoints: Debugger stack does not always show correct 'Suspended' message when at a Watchpoint.

    Revision: 3459
    Author: [email protected]
    Date: 2008-10-02 14:09:16 -0700 (Thu, 02 Oct 2008)
    Log Message:
    Fix FB-14050: Watchpoints: Debugger stack does not always show correct 'Suspended' message when at a Watchpoint.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/FB-14050
    Modified Paths:
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/DManager.java
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/DProtocol.java
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/PlayerSession.java

    Hi Experts,
    After i tried a few times, i can successfully start prepare with upgrade asistant monitor - Administrator >> Start Prepare,
    Thanks

  • Subject: Private Message: Moving PDF file to My documents

    Subject: Private Message: Moving PDF file to My documents  
    I want to attach a PDF file to my e-mail message. The problem is my PDF file is in my Removable Disk file. I want it to be in My documents.
    I am using Windows Vista, Internet Explorer and Adobe Reader. The ARCHIVE box is checked in the attributes box.
    Please instruct me on this procedure. Thank you

    Hi Pat,
    Thank you for your reply. The problem has been solved.
    The PDF file was copied to My Documents.
    The icons were too small for me to read but after several hours I detected them. Sorry to have taken up your time.
    Please advise how I can increase the icon size.
    Regards,
    Earle Rheaume

  • Fan Control fails after resume from pm-suspend

    Hi,
    i recently upgraded to 2.6.37 (on a hp nx6325 laptop) and noticed the following behaviour after a resume from pm-suspend:
    The fan control stops working until cpu reaches a temperature of 60°. As soon as the temperatur passes this threshold the fan starts rotating at max. speed. Below 60°, the fan is turned off immediately.
    pm-suspend.log:
    disabled, not active
    /usr/lib/pm-utils/sleep.d/01laptop-mode resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01grub resume suspend:
    /usr/lib/pm-utils/sleep.d/01grub resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00powersave resume suspend:
    /usr/lib/pm-utils/sleep.d/00powersave resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00logging resume suspend:
    /usr/lib/pm-utils/sleep.d/00logging resume suspend: success.
    Don Feb 3 09:16:21 CET 2011: Finished.
    Any ideas where to look for the problem?

    I have the same problem with   2.6.37.1-1: suspend do not work.
    The sceen goes blank then returns to X. The log shows the followings:
    Feb 21 15:50:33 localhost kernel: Suspending console(s) (use no_console_suspend to debug)
    Feb 21 15:50:33 localhost kernel: sd 2:0:0:0: [sda] Synchronizing SCSI cache
    Feb 21 15:50:33 localhost kernel: sd 2:0:0:0: [sda] Stopping disk
    Feb 21 15:50:33 localhost kernel: tpm_tis 00:03: Operation Timed out
    Feb 21 15:50:33 localhost kernel: legacy_suspend(): pnp_bus_suspend+0x0/0xa0 returns -62
    Feb 21 15:50:33 localhost kernel: PM: Device 00:03 failed to suspend: error -62
    Feb 21 15:50:33 localhost kernel: PM: Some devices failed to suspend
    Feb 21 15:50:33 localhost kernel: sd 2:0:0:0: [sda] Starting disk
    Feb 21 15:50:33 localhost kernel: b43-phy0: Loading firmware version 478.104 (2008-07-01 00:50:23)
    Feb 21 15:50:33 localhost kernel: ------------[ cut here ]------------
    Feb 21 15:50:33 localhost kernel: WARNING: at drivers/base/power/main.c:106 device_pm_add+0xb6/0xc0()
    Feb 21 15:50:33 localhost kernel: Hardware name: HP Compaq 6715b (GB835EA#AKC)
    Feb 21 15:50:33 localhost kernel: Device: misc
    Feb 21 15:50:33 localhost kernel: Parentless device registered during a PM transaction
    Feb 21 15:50:33 localhost kernel: Modules linked in: fuse ipv6 vboxnetflt vboxdrv snd_seq_dummy snd_seq_oss snd_seq_midi_event loop snd_seq arc4 ecb radeon b43 ttm drm_kms_helper mac80211 snd_pcm_oss drm snd_mixer_oss joydev snd_hda_codec_analog ssb tpm_infineon i2c_algo_bit cfg80211 hp_wmi mmc_core sparse_keymap tg3 ppdev rfkill snd_hda_intel parport_pc libphy pcmcia snd_hda_codec snd_usb_audio snd_pcm ohci_hcd yenta_socket pcmcia_rsrc pcmcia_core firewire_ohci snd_hwdep tpm_tis snd_usbmidi_lib hp_accel lis3lv02d i2c_piix4 video tpm snd_timer firewire_core evdev ehci_hcd snd_rawmidi crc_itu_t serio_raw snd_page_alloc tpm_bios output wmi input_polldev thermal battery lp sg ac container usbcore i2c_core button fan snd_seq_device shpchp parport edac_core edac_mce_amd snd pci_hotplug psmouse soundcore k8temp cpufreq_ondemand powernow_k8 freq_table processor mperf ext4 mbcache jbd2 crc16 sd_mod sr_mod cdrom ahci libahci pata_atiixp pata_acpi libata scsi_mod
    Feb 21 15:50:33 localhost kernel: Pid: 12986, comm: pm-suspend Not tainted 2.6.37-ARCH #1
    Feb 21 15:50:33 localhost kernel: Call Trace:
    Feb 21 15:50:33 localhost kernel: [<ffffffff81056a1a>] warn_slowpath_common+0x7a/0xb0
    Feb 21 15:50:33 localhost kernel: [<ffffffff81056af1>] warn_slowpath_fmt+0x41/0x50
    Feb 21 15:50:33 localhost kernel: [<ffffffff812b8596>] device_pm_add+0xb6/0xc0
    Feb 21 15:50:33 localhost kernel: [<ffffffff812aea8e>] device_add+0x4ae/0x5c0
    Feb 21 15:50:33 localhost kernel: [<ffffffff812aebb9>] device_register+0x19/0x20
    Feb 21 15:50:33 localhost kernel: [<ffffffff812aed53>] device_create_vargs+0x193/0x1b0
    Feb 21 15:50:33 localhost kernel: [<ffffffff812aed9c>] device_create+0x2c/0x30
    Feb 21 15:50:33 localhost kernel: [<ffffffff813a5fc1>] ? mutex_lock+0x11/0x30
    Feb 21 15:50:33 localhost kernel: [<ffffffff8129a3fa>] misc_register+0x8a/0x140
    Feb 21 15:50:33 localhost kernel: [<ffffffff8129d36f>] hwrng_register+0xdf/0x170
    Feb 21 15:50:33 localhost kernel: [<ffffffffa0426ab0>] b43_wireless_core_init+0xdb0/0x11a0 [b43]
    Feb 21 15:50:33 localhost kernel: [<ffffffffa02d89e0>] ? wiphy_resume+0x0/0x90 [cfg80211]
    Feb 21 15:50:33 localhost kernel: [<ffffffffa0427068>] b43_op_start+0x1c8/0x1e0 [b43]
    Feb 21 15:50:33 localhost kernel: [<ffffffffa02d89e0>] ? wiphy_resume+0x0/0x90 [cfg80211]
    Feb 21 15:50:33 localhost kernel: [<ffffffffa0477a15>] ieee80211_reconfig+0x335/0x400 [mac80211]
    Feb 21 15:50:33 localhost kernel: [<ffffffffa02d89e0>] ? wiphy_resume+0x0/0x90 [cfg80211]
    Feb 21 15:50:33 localhost kernel: [<ffffffffa046d8b8>] ieee80211_resume+0x28/0x70 [mac80211]
    Feb 21 15:50:33 localhost kernel: [<ffffffffa02d8a55>] wiphy_resume+0x75/0x90 [cfg80211]
    Feb 21 15:50:33 localhost kernel: [<ffffffff812b7ebe>] legacy_resume+0x3e/0x80
    Feb 21 15:50:33 localhost kernel: [<ffffffff812b8025>] device_resume+0x125/0x130
    Feb 21 15:50:33 localhost kernel: [<ffffffff812b8192>] dpm_resume_end+0x102/0x3a0
    Feb 21 15:50:33 localhost kernel: [<ffffffff81096350>] suspend_devices_and_enter+0x90/0x1f0
    Feb 21 15:50:33 localhost kernel: [<ffffffff810965d0>] enter_state+0x120/0x150
    Feb 21 15:50:33 localhost kernel: [<ffffffff81095b16>] state_store+0xc6/0x100
    Feb 21 15:50:33 localhost kernel: [<ffffffff811f3c27>] kobj_attr_store+0x17/0x20
    Feb 21 15:50:33 localhost kernel: [<ffffffff8119f37f>] sysfs_write_file+0xcf/0x150
    Feb 21 15:50:33 localhost kernel: [<ffffffff81135ac6>] vfs_write+0xc6/0x190
    Feb 21 15:50:33 localhost kernel: [<ffffffff81135ddc>] sys_write+0x4c/0x80
    Feb 21 15:50:33 localhost kernel: [<ffffffff8100bed2>] system_call_fastpath+0x16/0x1b
    Feb 21 15:50:33 localhost kernel: ---[ end trace 19e4cbd37086936d ]---
    Feb 21 15:50:33 localhost kernel: PM: resume of devices complete after 1300.325 msecs
    Feb 21 15:50:33 localhost kernel: PM: Finishing wakeup.
    Feb 21 15:50:33 localhost kernel: Restarting tasks ... done.
    Feb 21 15:50:33 localhost kernel: video LNXVIDEO:00: Restoring backlight state
    And the solution on linux.kernel: http://groups.google.com/group/linux.ke … 616cfdb4a9
    Revert or wait!
    Or rmmod tpm_tis.
    Last edited by daroczig (2011-02-21 21:55:10)

  • Calendar Frozen - Message moving calendarsCalendar frozen - Message: Moving calendar to server account....Started 12 hours ago.

    Calendar Frozen - Message: Moving calendar to server account....Started 12 hours ago.

    Quit Calendar and also the Reminders application, if it's running. Force quit if necessary.
    Back up all data.
    In the iCloud preference pane, uncheck the boxes marked Calendars and Reminders. You'll be prompted to confirm that you want to delete your iCloud calendars and reminders from the computer. They'll still be on iCloud.
    Relaunch Calendar and select
    Calendar ▹ Preferences ▹ Accounts
    Click the plus-sign button at the bottom of the account list on the left (which may now be empty) to add a new account. Select iCloud and enter your credentials. Your iCloud calendars should appear after a brief delay.
    Do the same with Reminders.
    Credit for this solution to ASC member melisolaris and others.

  • [VERY URGENT]Messages going in Scheduled State

    Hi Experts,
    PROD ISSUE
    All of sudden in PROD scenario all the messages start moving to Scheduled state in message monitoring and the channels have stopped polling . I have checked the dispatcher status in engine status (additional data tab) and find that the maximum thread count is 1.
    Is that the issue? also any idea y this issue is happening and what can be checked and done in this case ?
    URGENT HELP NEEDED !!!
    Thanks in Advance

    Hi,
    You should check your Inbound or Outbound queue in SMQ1 & SMQ2. The messages are stuck there.
    Double click on message & read the error details & resolve the same.
    Check SM58 also for problem.
    Also Register & Activate (re-asctivate) your queues in SXMB_ADM --> Manage Queue --> Register Queue & Activate Queue.
    If the messages are stuck in queue, First resolve the error in Queue & check the messages.
    Go through this Link
    http://www.****************/Tutorials/XI/XMLMessageQueues/Monitor.htm
    Hope this help
    Regards
    Praveen Reddy

  • Messages gets stuck up in active state

    Hi ,
    In our production environment, we are facing strange issues for the past 1 week.
    Issue 1:
    Messages gets stuck up in active state. In our message tracking mechanism ,the status is successfully sent to destination party. The message should not hold up in active state in first place?
    If we restart the Host instance, it is creating duplicate and processing it which is creating misssing ICR issue.
    Per day message flow-200 messages
    Please suggest ?
    Kind Regards,
    Giri.a
    girishkumar.a

    Hi Girish, 
    I believe OFTP adapter is not native adapter(in box) for BizTalk Server.
    So, is there any logging mechanism in OFTP adapter?
    Also, can we connect to the FTP server using some other tool like Filezilla etc. If other 3rd party products are also not able to connect to this server then we can say that its not a BizTalk issue.
    Thanks,
    Prashant
    Please mark this post accordingly if it answers your query or is helpful.

  • I am trying to download an epub book from the library, which I have been doing for almost a year. Now I am being asked for my adobe id, which I enter and I get an error message stating Adobe Activation Request Error:2004.. What's this ?

    I am trying to download an epub book from the library, which I have been doing for almost a year. Now I am being asked for my adobe id, which I enter and I get an error message stating Adobe Activation Request Error:2004.. What's this ?

    I downloaded Blue Fire Reader and it requested an adobe id. I clicked on the link that was in the error message stated http//adeactivateadobe.com. Found out that if the date and time on my Ipad is wrong that it won't let me download a book. I was off 5 hours. I reset my clock settings and adobe id let me download a book from the library. I am back to using Overdrive and adobe again on my ipad.
    Thank you.

  • HT1941 the apple ID I used when I set up my iCloud account is no longer valid, because in moving to a State where I cannot access the portalI have had to get a new Email address.    How do I remove this Apple ID and replace it with a new one...?

    The Apple ID that I used to set up my Icloud account is no longer valid because when I moved to another State the Verizon Portal cannot be accessed. How do I cancel this "Primary" Icloud ID to repace it with a new one ???

    Hi Davbat2,
    Welcome to the Support Communities!
    The articles below may be able to help you with this issue.
    Click on the links to see more details and screenshots. 
    Frequently asked questions about Apple ID
    http://support.apple.com/kb/HT5622
    http://www.apple.com/support/appleid/
    Cheers,
    - Judy

  • Messages are in Scheduled State

    Hi
       some of my messages are in scheduled state. i  verified   SMQ1,SMQ2 . no queues are in block state. also  i  executed  register queues in sxmb-adm still they are  same state. how can i make them as successful state. only by restarting the messages or is there any other way? also tell me why these messages went to scheduled state

    Reddy,
    Can you please check this threads for possible solutions:
    Problem with scheduled message in SXMB_MONI
    SXMB_MONI - Message scheduled on outbound side (no queues)
    Regards,
    ---Satish

  • HT201328 i have restored my iphone and now i get a message that says activation error. what can i do?

    can anyone help with a question regarding my iphone. I have unlocked and restored my phone as suggested and now I get a message that says activation error. I am unable to do anything with my iphone

    See here  >  http://support.apple.com/kb/TS3424
    Also see this discussion.
    https://discussions.apple.com/message/21189708

Maybe you are looking for