HA Event Failure

I am trying to setup HA events between an ODP.NET application (Managed, 4.121.1.0)  and our RAC (11.1.0.7.0) to facilitate fast connection failover. We did a dry run by (1) connecting to the node to be brought down, so the connection is in the pool. (2) Brining that node down. (3) Connect again. It did not work. I ran an ODP.NET trace (level 7) and noticed the following:
2014-11-05 09:59:33.737782 TID:7   (PRI) (HA) VERSION=1.0 service=db instance=db2 database=db host=node2 status=down reason=user
2014-11-05 09:59:33.751285 TID:7   (PRI) (SVC) (ERR) OracleHANotificationManager.HandleEvent() OracleHANotificationManager::HandleEvent() failed. -String was not recognized as a valid DateTime.
Instead of ODP.NET pruning the pool of the served connections as expected, it reused it, causing this:
2014-11-05 10:00:06.425818 TID:1   (PRI) (ERR) OracleCommand.ExecuteReader() (txnid=n/a) OracleInternal.Network.NetworkException (0x80004005): Oracle error ORA-12571 encountered ---> System.Net.Sockets.SocketException (0x80004005): An established connection was aborted by the software in your host machine
   at System.Net.Sockets.Socket.Send(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags)
   at OracleInternal.Network.TcpTransportAdapter.Send(OraBuf OB)
   at OracleInternal.Network.TcpTransportAdapter.Send(OraBuf OB)
   at OracleInternal.Network.WriterStream.Write(OraBuf OB)
   at OracleInternal.TTC.OraBufWriter.FlushData()
   at OracleInternal.TTC.TTCExecuteSql.WriteOall8Message(Byte[] sqlStmtByteStream, Int32 cursorId, Int64 dbChangeRegistrationId, Int64 executeOptions, ColumnDescribeInfo[] colDefinesInfoArray, Int32 longFetchSize, Int32 arrayBindCount, Int32 numDefineCols, Int64 noOfRowsToFetch, SqlStatementType stmtType, MarshalBindParameterValueHelper& marshalBindParamsHelper, Boolean bWriteFirstRow)
   at OracleInternal.TTC.TTCExecuteSql.SendExecuteRequest(OracleConnectionImpl commImpl, Byte[] sqlStmtByteStream, Boolean bHasReturningClause, Int32 cursorId, Int64 dbChangeRegistrationId, ColumnDescribeInfo[] columnDefines, Int64 noOfRowsToFetch, Boolean parse, Boolean execute, Boolean fetch, Boolean define, Boolean bAutoCommit, Boolean bDisableCompressedFetch, SqlStatementType stmtType, Int32 longFetchSize, Int32 arrayBindCount, Int64[] scnForSnapshot, MarshalBindParameterValueHelper& marshalBindParamsHelper, Boolean bWriteFirstRow)
   at OracleInternal.ServiceObjects.OracleCommandImpl.ExecuteReader(String commandText, OracleParameterCollection paramColl, CommandType commandType, OracleConnectionImpl connectionImpl, OracleDataReaderImpl& rdrImpl, Int32 longFetchSize, Int32 lobPrefetchSize, OracleDependencyImpl orclDependencyImpl, Int64[] scnForExecution, Int64[]& scnFromExecution, OracleParameterCollection& bindByPositionParamColl, Boolean& bBindParamPresent, Boolean isDescribeOnly, Boolean isFromEF)
   at Oracle.ManagedDataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, Boolean fillRequest, CommandBehavior behavior)
Connection string is set with "HA Events=true; Load Balancing=true;"

It looks like ODP.NET is trying to parse the ONS message using the following regular expression
\\s*VERSION\\s*=\\s*(?<ver>.*?)\\s*(event_type\\s*=\\s*(?<evnt>.*?))*\\s*(service\\s*=\\s*(?<svc>.*?))*\\s*(instance\\s*=\\s*(?<inst>.*?))*\\s*(database\\s*=\\s*(?<db>.*?))*\\s*(db_domain\\s*=\\s*(?<domain>.*?))*\\s*host\\s*=\\s*(?<host>.*?)\\s*(incarn\\s*=\\s*(?<incarn>.*?))*\\s*status\\s*=\\s*(?<status>.*?)\\s*(card\\s*=\\s*(?<card>.*?))*\\s*reason\\s*=\\s*(?<reason>.*?)\\s*timestamp\\s*=\\s*(?<ts>.*?)\\s*(timezone\\s*=\\s*(?<tz>.*?))*\\s*\\Z
However, the input string is not formatted the same:
VERSION=1.0 service=testsrv instance=testsys2 database=testsys host=testdsos2 status=down reason=failure
It doesn't have a timestamp either. So this causes a failure. How can this be fixed?

Similar Messages

  • IPC Between Two ADF Portlets on Same Page using Events Failure

    Considering that a full page submit is required for the passing of parameters to work properly, I am trying to use IPC Events to pass a parameter from one ADF Portlet to another. There are no good examples out there, but I am trying to use what is out there in many different generic forms to make this happen with no success.
    One portlet contains an ADF Table with a select column, I have a BackingBean to process the choosing of a row and that value is being retrieved and I am calling the set event.
    public void selectPatient(ActionEvent e) {
    FacesCtrlHierNodeBinding node = (FacesCtrlHierNodeBinding) tblPatients.getSelectedRowData();
    String username = node.getAttribute(0).toString();
    System.out.println("Selected Patient: " + username);
    ActionResponse response = (ActionResponse)FacesContext.getCurrentInstance().getExternalContext().getResponse();
    response.setEvent("selectPatientResult", username);
    I then have a second portlet that is supposed to retrieve the value being passed from within the portlet class and then the second ADF portlet is supposed to display. I will eventually do more work with the value, but I am just trying to get the events to work properly first. Here is the code within the receiving portlet class:
    public class drugallergies extends ADFBridgePortlet {
    @ProcessEvent(name="selectPatientResult")
    public void processSelectPatientEvent(EventRequest request, EventResponse eventresponse) throws PortletException, IOException {
    Event event = request.getEvent();
    String username = (String)event.getValue();
    System.out.println("Selected Patient: " + username);
    eventresponse.setRenderParameter("patient", username);
    I have also made sure that I have put the following within my web.xml file for the application so that the events are being passed as portlet events and not faces events. I am still fairly new to ADF, but not to portals or portlets, which is why I am going this route.
    <context-param>
    <description>Allows for fired events to go to the portlet and not to the faces layer</description>
    <param-name>javax.portlet.faces.autoDispatchEvents</param-name>
    <param-value>false</param-value>
    </context-param>
    I am never seeing the receiving event get processed, meaning that I never see the println get processed with the receiving value. Please help because there are no examples out in the world for going this route. There are examples, but they require you to create an ADF application first and then convert the application to a portlet. I am using the Portlet Creation wizard within JDeveloper but creating ADF based pages for the Views modes.

    Wait... You have to make a distinct difference between portlet events and contextual events in ADF.
    Contextual events in ADF can be converted to portlet events.
    If the full refresh of a portlet is an issue for you then even contextual events will not solve your problem.
    Regardless the use of parameters or events, portlets do not support partial page rendering or ajax. In order for a parameter to pass or an event to be triggered, it need to have a reference to the ActionResponse or RequestResponse. If they don't have the proper reference they will not be able to trigger the event.
    In the case you are talking about, the selection of a record, this won't be able to trigger an event because the selectionModel will be triggered by a partial submit.
    The only work around for this problem is by adding a "select" button that will do a full submit.
    This is not a limitation of ADF, it is a limitation of the portlet standar because the standard itself does not have anything that supports partial page rendering or ajax...

  • Star Trek Event Failure, At Least I Have Best Buy...

    I had tickets for the Maple Grove, MN Fathom Event: "Star Trek 25th Anniversary Celebration" today.
    It did not go well. 
    Tonight's event was not acceptable in any form:
    They kept the lights on 20 minutes into the start
    The audio was not synced up.
    They had error messages on screen during the episodes.
    The bottom 5-10% of the screen kept "re-painting" itself.
    Audio was full of static and jumbled and the compression show huge accounts of artifacts during the presentation. 
    Whole scenes and minutes were lost.
    I expected more for the 25th Anniversary Star Trek event. I drove 1.5 hours each way to be able to get to this theater to sare this event with my father. I was really looking forward to this event. At least I can still watch the Blu-Ray Season One set that I ordered at Best Buy tomorrow:
    Star Trek: The Next Generation - Season 1 [6 Discs] - Blu-ray Disc
    SKU: 5795252
      Read reviews (0)
    Sale: $59.99

    If you mean Ethernet, your computer already has it. If you're referring to something else, what is it?
    (125558)

  • Event Failure-using DV

    Hi Experts,
    I am getting stuck at one logic when i using dynamic visibilty in my dashboard.
    The situation is like this :
    Sale of Toothpaste : across india(Location Dimension)
    i have two series Plan and Actual
    on X-Axis i have three type of it : Clove, Menthol,Peppermint
    On Y-Axis i have the revenue in Millions
    Now i want to drill other features clicking on any one of the type.
    Say i click on Plan -Clove i see two charts, one on the top of the main chart with a toggle button and on the right showing other sales details.
    now if i want to go back , i can use toggle button ,but the point to be noted here is my plan-clove is still remain selected , i can see the main chart but and when i change my dimension say location..i can see the detailed charts popping up on the main chart and on its right side.
    How to avoid this situation.
    I have tried using all the stuff in Xcelsius but thing is that the event is not captured and overcome by the previous event.
    Push button is not working,not even the other selectors like the radio button...
    How to disguise this??????
    Saurabh

    Hi Rashmi ,
    Thanks for the reply. I just want to know when i use toggle button to move back considering two over lapped  frames,
    why i cant have the default settings of selection i.e. -1 for the series(the feature added in SP3 -when no series is selected).
    Can you help me to achieve this?? Anyone...when two frames are toggled using a toggle button i would see the default settings.
    I am working on the methods u hv shared. Will post , in case i get stuck somewhr.
    Thanks
    Saurabh

  • ICal in 10.5.2 find events failure

    I have the latest version of iCal and 10.5.2.
    I cannot get the search events function (top right hand corner) to work at all. It used to work partially with the first version of Leopard. It now never works, even with new events.
    Does anyone have any idea what the problem is, and, how to sort out this issue?

    Sabur,
    Run Disk Utility from your Mac OS X installation disk:
    • Insert the Mac OS X Leopard Install disk, then restart the computer while holding the C key.
    • When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    • Click the First Aid tab.
    • Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    • Select your Mac OS X volume.
    • Click Repair. Disk Utility checks and repairs the disk.
    If that is not successful, download and reinstall the Mac OS X 10.5.2 Combo Update.
    ;~)

  • 10.8.2 Double-click the event is invalid

    Double-click the event failure , how to restore the system default ?
    Buy Logitech M555B installed logitech Unifying Software and LCC Connection Utility ( can not uninstall , very annoying) , cause a system failure touchpad and mouse double-click , and I would like to ask how to solve ?
    System version : 10.8.2

    Refer to:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c01664444
    and
    http://www.apple.com/support/osx/printingscanning/

  • Event 528 Not Appearing

    OK From what I can read on the interwebs, I should see two events when a user logs in:
    > Event 4624 on the domain controller indicating the "Account logon"
    > Event 528 on the workstation indicating a "Logon" event of type 2 or something.
    The 4624 I'm seeing in spades on the DCs.
    The 528 event not at all. (This is on Windows 7 x64 workstations).
    Now, we are using advanced security policy settings on the workstations.
    All of the instructions I see for auditing logon events use the "old" GPO settings.
    Here's the results of Auditpol.  Why do I not see event 528?
    C:\TEMP>auditpol /get /category:*
    System audit policy
    Category/Subcategory Setting
    System
    Security System Extension Success and Failure
    System Integrity Success and Failure
    IPsec Driver No Auditing
    Other System Events Failure
    Security State Change Success and Failure
    Logon/Logoff
    Logon Success and Failure
    Logoff Success and Failure
    Account Lockout Success and Failure
    IPsec Main Mode No Auditing
    IPsec Quick Mode No Auditing
    IPsec Extended Mode No Auditing
    Special Logon Success and Failure
    Other Logon/Logoff Events Success and Failure
    Network Policy Server Success and Failure
    Object Access
    File System Success and Failure
    Registry Success and Failure
    Kernel Object Success and Failure
    SAM Success and Failure
    Certification Services Success and Failure
    Application Generated Success and Failure
    Handle Manipulation No Auditing
    File Share Success and Failure
    Filtering Platform Packet Drop No Auditing
    Filtering Platform Connection No Auditing
    Other Object Access Events No Auditing
    Detailed File Share No Auditing
    Privilege Use
    Sensitive Privilege Use No Auditing
    Non Sensitive Privilege Use No Auditing
    Other Privilege Use Events No Auditing
    Detailed Tracking
    Process Termination Success and Failure
    DPAPI Activity Success and Failure
    RPC Events Success and Failure
    Process Creation Success and Failure
    Policy Change
    Audit Policy Change Success and Failure
    Authentication Policy Change Success and Failure
    Authorization Policy Change Success and Failure
    MPSSVC Rule-Level Policy Change Success and Failure
    Filtering Platform Policy Change No Auditing
    Other Policy Change Events Failure
    Account Management
    User Account Management Success and Failure
    Computer Account Management Success and Failure
    Security Group Management Success and Failure
    Distribution Group Management Success and Failure
    Application Group Management Success and Failure
    Other Account Management Events Success and Failure
    DS Access
    Directory Service Changes Success and Failure
    Directory Service Replication Failure
    Detailed Directory Service Replication Failure
    Directory Service Access Success and Failure
    Account Logon
    Kerberos Service Ticket Operations Success and Failure
    Other Account Logon Events Success and Failure
    Kerberos Authentication Service Success and Failure
    Credential Validation Success and Failure
    C:\TEMP>

    Hi,
    Please check if you could find event id 4624 on workstation of Windows 7. Since the pre-Vista events id start with 5xx, the Windows 7 events id start with 4xxx.
    Thus we couldn't find the 528 entry.
    For more information, please read this article:
    Description of security events in Windows 7 and in Windows Server 2008 R2
    https://support.microsoft.com/en-us/kb/977519
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Best Practice when deploying a single mdb into a cluster

    At a high level, we are converting all of our components to Weblogic processes that use Stateless Session Beans and Message Driven Beans. All of the weblogic processes will be clustered, and all of the topic queues will be distributed (Uniform Distributed Topics / Queues).
              We have one component that is a single MDB reading from a single queue on 1 machine. It is a requirement that the JMS messages on that queue be processed in order, and the processing of messages frequently requires that the same row in the DB be updated. Does anyone have any thoughts on the best design for that in our clustered environment?
              One possible solution we have come up with (not working):
              Possible Solution 1: Use a distributed topic and enforce a single client via client-id on the connection factory, causing a single consumer.
              1.Deploy a uniform-distributed Topic to the cluster.
              2.Create a connection factory with a client-id.
              3.Deploy a single FooMDB to the cluster.
              Problem with Solution 1: WL allows multiple consumers on Topic with same client-id
              1.Start (2) servers in cluster
              2.FooMDB running on Server_A connects to Topic
              3.FooMDB running on Server_B fails with unique id exception (yeah).
              4.Send messages - Messages are processed only once by FooMDB on Server_A (yeah).
              5.Stop Server_A.
              6.FooMDB running on Server_B connects automatically to Topic.
              7.Send messages - Messages are processed by FooMDB on Server_B (yeah).
              8.Start Server_A
              9.FooMDB successfully connects to Topic, even though FooMDB on Server_B is already connected (bad). Is this a WL bug or our config bug??
              10.Send messages - Messages are processed by both FooMDB on Server_A and Server_B (bad). Is this a WL bug or our config bug??
              Conclusion: Does anyone have any thoughts on the best design for that in our clustered environment? and if the above solution is doable, what mistake might we have made?
              Thank you in advance for your help!
              kb

    Thanks for the helpful info Tom.
              Kevin - It seems that for both the MDB, and the JMS provider, there are (manual or scripted) actions to be taken during any failure event + failure probes possibly required to launch these actions...?
              In the case of the JMS provider, the JMS destination needs to be migrated in the event of managed-server or host failure; if this host is the one that also runs the Admin server then the Admin server also needs to be restarted on a new host too, in order that it can become available to receive the migration instructions and thus update the config of the managed server which is to be newly targetted to serve the JMS destination.
              In the case of the MDB, a deployment action of some sort would need to take place on another managed-server, in the event of a failure of the managed server or the host, where the original MDB had been initally deployed.
              The JMS Destination migration actions can be totally avoided by the use of another JMS implementation which has a design philosophy of "failover" built into it (for example, Tibco EMS has totally automatic JMS failover features) and could be accessed gracefully by using Weblogic foreign JMS. The sinlge MDB deployed on one of the Weblogic managed servers in the cluster would still need some kind of (possibly scripted) redeployment action, and on top of this, there would need to be some kind of health check process to establish if this re-deployment action was actually required to be launched. It is possible that the logic and actions required just to establish the true functional health of this MDB could themsevles be as difficult as the original design requirement :-)
              All of this suggests that for the given requirement; the BEA environment is not well suited; and if no other environment or JMS provider is available at your site, then a manipulation of process itself may be required to enable it to be handled in a highly-available way which can be gracefully administered in a Weblogic cluster.
              We have not discussed the message payload design and the reasons that message order must be respected - by changing the message payload design and possibly adding additional data, this requirement "can", "in certain circumstances", be avoided.
              If you can't do that, I suggest you buy a 2 node Sun Cluster with shared HA storage and use this to monitor a simple JMS client java program that periodically checks for items on the Queue. The Tibco EMS servers could also be configured on this platform and give totally automatic failover protection for both process and host failure scenarios. With the spare money we can go to the pub.
              P.S. I don't work for Tibco or Sun and am a BIG Weblogic fan :-)

  • System error 86 while mapping c$

    Hi, thanks for your time. I'm having the next issue:
    I work on a domain network. Usually, we image computers and then join them to a domain.
    However, i find it impossible to do anything to an unjoined computer because i get system error 86. Im trying to map c$ from my computer (which is in a domain) with the local administrator credentials from the other computer. The command goes like this:
    net use k: \\ipaddress\c$ password /u:localadmin
    output:
    System error 86 has occurred.
    The specified network password is not correct
    I have checked many times the local administrator password and im typing it right, i have disabled the firewall, i have run all the services on the computer, and enabled netbios. Nothing works.
    The problem is not exactly trying to map c$, i have noticed that once i'm able to map this drive, i can also connect to WMI on this machine from a remote computer. The objective of this is that i'm trying to run a couple of powershell scrits that involve
    getting a wmi-object from a remote computer (this doesnt work either because i get ACCESS_DENIED using local admin credentials from  the machine im trying to access.).
    Im doing this from a Win7 machine to a XP machine. I've tried XP to XP but it doesnt work either.
    gustavo morales IT department - Desktop Support

    OK, I had this problem this morning, and I couldn't find a good answer, including this thread. I'm hoping that giving a thorough answer will help others.
    scenario:
    You have a computer in a domain (like your work computer). you would like to connect to a workgroup computer and see its files (like your home computer). you cannot browse to the computer and if you try to map the network path you get "system error 86" or system
    error 1326". (To map the network path you may try NET USE \\computername\path password /USER:computername\username)
    resolution:
    To troubleshoot this please try to setup the ideal setup first. Once you have it going you can change to settings you like:
    1. disable the workgroup/home computers firewall
    you need to do this since both file sharing and kerberos can be stopped by the firewall
    2. turn on file sharing on the workgroup/home computer on the network card used
    3. create an administrator account on the workgroup/home computer that has the same username AND password as your domain useraccount on the domain computer
    4. on your workgroup/home computer, start local security policies secpol.msc and turn on
    a) local policies:audit policy: audit account login events: failure
    b) security options: Network security: LAN Manager authentication level: Send LM & NTLM - use NTLMv2 session security if negotiated
    c) network access:sharing and security model for local accounts : Classic
    5. Make sure both computer clocks are showing correctly
    Hope this helps 

  • ISE and Citrix Netscaler for LB

    I'm working on a solution where we have NetScaler load balancers distributing radius requests from the NADs to respectvie PSNs. Authentication works and redirect URLs work etc.. The challenge we're having is with EAP-TLS sessions. The user get's a provisioned certificate and chain that checks out on the endpoint fine. When the user tries to connect with the device we see EAP timeouts from the ISE session to the supplicant. Each PSN has the internal identity cert configured for EAP authentication that has been configured from the same internal CA within the customers PKI.
    Has anyone configured a NetScaler for use with ISE and besides the general guidlines below are there more specific things that need to be done to make this work with Citrix NetScalers?
    Load Balancing guidelines.
    No NAT.
    Each PSN must be reachable by the PAN / MNT directly, without having to go through NAT (Routed mode LB, not NAT).
    Each PSN must also be reachable directly from the client network for redirections (CWA, Posture, etc…)
    Perform sticky (aka: persistence) based on Calling-Station-ID and Framed-IP-address
    Session-ID is recommended if load balancer is capable (ACE is not).
    VIP for PSNs gets listed as the RADIUS server on each NAD for all RADIUS AAA.
    Each PSN gets listed individually in the NAD CoA list by real IP address (not VIP).
    If ”Server NAT" the PSN-initiated CoA traffic, then can list single VIP in NAD CoA list.
    Load Balancers get listed as NADs in ISE so their test authentications may be answered.
    ISE uses the Layer 3 address to identify the NAD, not the NAS-IP-Address in the RADIUS packet. This is a primary reason to avoid Source NAT (SNAT) for traffic sent to VIP.

    Does anyone have a working configuration for this?  I'm getting successful authentications from the supplicant, but CoA fails. When I perform a CoA I get two of each of the following messages:
    1) Event & Failure reason "5436 RADIUS packet already in the process"
    then
    2) Event "5417 Dynamic Authorization failed" / Failure reason "11215 No response has been received from Dynamic Authorization Client in ISE"
    The policy nodes are not physically located behind the NetScaler, so I have them pointing to the NetScaler as the default GW.  I'm not sure if we have the policy on the NS configured correctly though, because I had to add the NetScaler as a Network Device and I was under the impression that the switch and PSN should continue to talk directly to each other.
    Any help would be greatly appreciated!
    Cheers!
    Ken

  • Redo file question

    As written in Oracle documents.
    oracle records each and every tranjaction in redo buffer and as soon as writes to redo file.
    As redo file is full it switches to another redo file.
    While switching redo file it archives the the current redo file and the new redo file will be the current redo
    if it is in archive log mode and the archival process is started.
    And also written that in the event failure the redo file is needed to recover database when the
    database starts. Now I want to know I have a transaction which is not fit in a redo file and it goes to another redo file.
    What will happen if again failuer occured and I have restarted the database.Does it recovere from both of the redo files?
    If Yes: What will happen if my transaction doesn't fit in all of the redofiles?
    if no: How does it rollback up to last commited transaction if it is not in current redo logfile?
    thank You very much.

    Perhaps you should try to learn by both reading and doing (testing!), since this a quite vital "concept".
    I think Oracle9i Backup and Recovery Concepts A96519-01, Chapter 1 - the basic concepts adn explanation of the involved structures, is a good place to start.

  • SAP B1iP detected an error 404 Not found

    我根据Yatsea 写的Creating New Dashboard Packages for Sap Business One 8.8以及提供的sample一步一步的去做,到最后一步提示如下错误:
    SAP B1iP detected an error:
    Emitted HTTP-Code
    404-Not Found
    Internal Reason
    /com.sap.b1.dashboards/001sap0001.XXX_Top_10_BPs.Top_10_BPs/default.html [err004]
    Recommendation
    Check for the correctness of your activity or environment or ask your system-administrator for further help.
    tid
    10111016465218008162C0A8016D9A20
    Full Internal Error Message
    /com.sap.b1.dashboards/001sap0001.XXX_Top_10_BPs.Top_10_BPs/default.html [err004]
    这是什么原因啊?我折腾了一天了,还没弄好哦。。。。

    Hi Jay,
         我重新导入了,有看到event,是在Failure里面。
       Result Message是:no scenario step (vBIU) associated for this step for the incoming system (SysId)
         Msg是:
        <?xml version="1.0" encoding="utf-8" ?>
    - <Msg xmlns="urn:com.sap.b1i.vplatform:entity" MessageId="10111710462131508066C0A801672D97" BeginTimeStamp="20101117104621" recording="false" logmsg="0009" MessageLog="true">
    - <Header>
      <IPO Id="INB_HT_CALL_SYNC_XPT" tid="10111709282731508057C0A801674050" />
      <Sender Id="001sap0004" />
      </Header>
    - <Header>
      <IPO Id="INB_HT_CALL_SYNC_XPT" tid="10111709282731508057C0A801674050" />
      <Sender Id="001sap0004" />
      </Header>
    - <Body>
      <Payload Role="T" Type="Call" add="" />
    - <Payload Role="S">
      <io xmlns="urn:com.sap.b1i.bizprocessor:bizatoms" pltype="ure">==== data-length: 0 ====</io>
      </Payload>
      </Body>
    - <Body>
      <Payload Role="T" Type="Call" add="" />
    - <Payload Role="S">
      <io xmlns="urn:com.sap.b1i.bizprocessor:bizatoms" pltype="ure">==== data-length: 0 ====</io>
      </Payload>
      </Body>
      </Msg>
      为什么会失败呢?失败的原因是什么呢?怎么解决呢?
    我看了里面Warning的信息:
    An IPO-Execution profile cannot be given, as the necessary log-information is missing!
    Make sure to set in the config-file 'xcellerator.cfg' the log-level for the components
    'com.sap.b1i.bizprocessor' and 'com.sap.b1i.dblayer' to 'CONFIG' (restart B1iP afterwards).
    Then, enable detailed logging for the particular IPO-Step and re-execute the particular IPO-Step!
    所以我检查了我的xcelerator.cfg文件。
    Dolphin
    Edited by: Wu dolphin on Nov 17, 2010 3:52 AM
    Edited by: Wu dolphin on Nov 17, 2010 4:47 AM

  • Configuration of Audit Collection Services

    Hello,
    can someone point me to some documentation for Audit Collection Services that will explain how to get a handle on the events collected?
    I am aware of adtadmin /setquery and also of the location in the registry that the query is stored in on ACS servers. However, I am looking for guidance on how to manage this for different types of servers. Ideally, I want to filter the events that are forwarded
    to the audit collection server at the source, so that events that I do not want collected are not even sent to the ACS server. This configuration would differ from server to server- for example, on DC's I would want account management events, failure authentication
    events etc, versus a ADFS server where I would care about tokens issued etc.
    thanks and regards,
    -Ravi

    Hello Yan Li,
    Thank you for the response. The links do not have the information I need however. I found a lot of blogs explaining how to set up ACS, however none of them address -
    - can I specify different filters for different computers / group of computers so that I can collect different events from say, an exchange server versus a file server? Can the setup have just one query, or can it use multiple queries? Are these stored in
    the ACSConfig.xml OR in the registry OR both? If you are using the warm standby method with replication of the ACSConfig.xml as detailed in
    http://blogs.technet.com/b/neharris/archive/2011/03/22/acs-forwarders-and-high-availability-part-1.aspx , do you also have to replicate the registry settings as well?
    - I know that can create / list / delete groups using adtadmin. But what is the purpose of the groups? How do I populate these groups with forwarders? Can I assign a query to extract event ID's of interest per group?
    - Can I configure any sort of event throttling at the forwarder itself, so that I am not bogging down the collector with unnecessary noise?
    I have been able to do all the above with other event log collection systems I have worked with in the past. Getting an handle on the events collected is one of the most important items in log collection, otherwise you end up with a system that cannot keep
    up. However I have not been able to find any documentation / blogs that address any of the above. The documentation simply covers setup and the parameters for adtadmin, but none of the concepts I am wondering about above..
    regards,
    -Ravi

  • Port-Channel issue between UCS FI and MDS 9222i switch

    Hi
    I have a problem between UCS FI and MDS switch port-channel. When MDS-A is powered down the port-channel fails but UCS blade vHBA does not detect the failure of the port-chanel on UCS-FI and leaves the vHBA online. However, if there is no port-channel between FI-->MDS it works fine.
    UCS version   
    System version: 2.0(2q)
    FI - Cisco UCS 6248 Series Fabric Interconnect ("O2 32X10GE/Modular Universal Platform Supervisor")
    Software
      BIOS:      version 3.5.0
      loader:    version N/A
      kickstart: version 5.0(3)N2(2.02q)
      system:    version 5.0(3)N2(2.02q)
      power-seq: Module 1: version v1.0
                 Module 3: version v2.0
      uC:        version v1.2.0.1
      SFP uC:    Module 1: v1.0.0.0
    MDS 9222i
    Software
      BIOS:      version 1.0.19
      loader:    version N/A
      kickstart: version 5.0(8)
      system:    version 5.0(8)
    Here is the config from MDS switch
    Interface  Vsan   Admin  Admin   Status          SFP    Oper  Oper   Port
                      Mode   Trunk                          Mode  Speed  Channel
                             Mode                                 (Gbps)
    fc1/1      103    auto   on      trunking         swl    TF      4    10
    fc1/2      103    auto   on      trunking         swl    TF      4    10
    fc1/9      103    auto   on      trunking         swl    TF      4    10
    fc1/10     103    auto   on      trunking         swl    TF      4    10
    This is from FI.
    Interface  Vsan   Admin  Admin   Status          SFP    Oper  Oper   Port
                      Mode   Trunk                          Mode  Speed  Channel
                             Mode                                 (Gbps)
    fc1/29     103    NP     on      trunking         swl    TNP     4    103
    fc1/30     103    NP     on      trunking         swl    TNP     4    103
    fc1/31     103    NP     on      trunking         swl    TNP     4    103
    fc1/32     103    NP     on      trunking         swl    TNP     4    103
    Any thoughts on this?

    Sultan,
    This is a recently found issue and is fixed in UCSM 2.0.3a version .
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCua88227
    which got duped to  CSCtz21585
    It happens only when following conditions are met
    FI in End host mode
    FC uplinks are configured for portchannel + trunking
    Certain link event failures ( such abrupt power loss by upstream MDS switch )
    Padma

  • Sending mail...outlook

    hi
    we need to send messenger mails from BI to Outlook.
    Messenger mails should be send on timely basis (ie) when condition gets failed.
    thnks

    Hi
    If your requirement is in Process chain - event failure.
    Just goto rspc> select the chain>right click on the event(whcih u have to get the mesg)>click create message>it will ask for the (3 options successful, errors, always)>select errors>
    click create button>then give the tech name and desc> then u can give the mail adresses by clicking the mailing receipent list> give the list of mail id's> select 'internet address' for the receipent type.
    save and get back and click ok or press enter.
    Then it is completed. now, u can get a mail upon failure.
    But remember that the SMTP settings are done peroperly or not.
    Information broadcasting might help you; please see the link below for more information
    http://help.sap.com/saphelp_nw04/helpdata/EN/eb/0cfa40fe14f523e10000000a155106/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/EN/a5/359840dfa5a160e10000000a1550b0/content.htm
    Hope this may help you
    Many thanks
    Kiran

Maybe you are looking for

  • IPhoto library disappeared while dragging iPhoto to external drive

    I have a Mac Pro OX S and iPhoto 11,9.6.3. As I was dragging the iPhoto folder from my finder menu to a newly bought 4 T Seagate,I lost all of my photo library in a second.There is blank box instead! would anybody have a solution?thanks!

  • Unzip attachment in Mail adapter or/ File Adapter

    Hi everyone, I need to get flat file from .zip attachment that comes with mail? Is it possible to get it with Mail adapter, unzip it and then make conversion? All steps in the Integration engine? Another option can be get .zip with File adapter, but

  • Why Does photoshop quit unexpectedly when i try to open a file from my desktop?

    I've always been able to do it previously but today i've had to reinstall all my files and applications (long story) and now for some reason it won't open any files from the desktop. It seems to be fine if i open the same file from my documents so it

  • Should I use a second library / catalog for clip art photos

    Hi! I've used LR for several years for my personal photos - editing & tagging & sorting etc. I've only ever used the one catalogue - hence putting this in the beginners forum. I also have on my laptop a range of stock photos and clipart.  This is beg

  • Exits for saving variant of selection screen

    Hi, My need is that I have to validate the name of the variant on saving. If the name is not in compliance then we will put a tick on a checkbox on screen and save it. So to do this can anyone suggest me the exit name or BADI name. thanks in advance.