What is X-CorrelationID in the OEG 11g transaction log ? How can I get it ?

Hi May I have question here:
what is X-CorrelationID in the OEG 11g transaction log ? How can I get it through policy path and keep it's value ?
Thanks.
Cliff

The most common scenario would be to use attribute expansion, so if you configure a field with the following:
${id}
Then the value of the field will be expanded to the correlation id valiue.
For example if you wanted to use the id in a log statement you could have something like the following:
The message ${id} was presented by subject: ${authentication.subject.id}
Which at run time would be expanded to:
The message Id-12345-12345 was present by Clive
If the id has the value Id-12345-12345 and authentication.subject.id has the value Clive
Thanks,
D

Similar Messages

  • I have a issue with my mac book pro. For some reason it won't stay powered on. I can't get past the apple loading logo. The battery is fully charged so it is not the problem. Can anyone tell me what the problem may be and how can i get it resolved?

    I have a issue with my mac book pro. For some reason it won't stay powered on. I can't get past the apple loading logo. The battery is fully charged so it is not the problem. Can anyone tell me what the problem may be and how can i get it resolved?

    The battery is fully charged so it is not the problem.
    What happens when you use the MagSafe?

  • HT5624 I would like to change ,my password. I signed in but I don't know what was my answer for the 2 security question. How can I change my password?

    would like to change ,my password. I signed in but I don't know what was my answer for the 2 security question. How can I change my password?

    Hello, dot mac & MobtleMe no longer exist, though it may be possible to still use a dot mac addy... or maybe not if expired.
    You cannot use .mac or MobileMe as type of Account, you have to choose IMAP when setting up, otherwise Mail is hard coded to change imap.mail.me.com to mail.me.com & smtp.mail.me.com to smtp.me.com, no matter what you try to enter.
    iCloud Mail setup, do not choose .mac or MobileMe as type, but choose IMAP...
    On second step where it asks "Description", it has to be a unique name, but you can still use your email address.
    IMAP (Incoming Mail Server) information:
        •    Server name: imap.mail.me.com
        •    SSL Required: Yes
        •    Port: 993
        •    Username: [email protected] (use your @me.com address from your iCloud account)
        •    Password: Your iCloud password
    SMTP (outgoing mail server) information:
        •    Server name: smtp.mail.me.com
        •    SSL Required: Yes
        •    Port: 587
        •    SMTP Authentication Required: Yes
        •    Username: [email protected] (use your @me.com address from your iCloud account)
        •    Password: Your iCloud password
    Also, you must upgrade your password to meet the new criteria:  8 characters, including upper and lower case and numbers.  If you have an older password that does not meet these criteria, when you try to setup mail on your mac, using all of the IMAP criteria listed above, it will still give a server error message.  Go to   http://appleid.apple.com         then follow directions to change your password, then go back to setting up your mail using the IMAP instructions above.
    Thanks to dpepper...
    https://discussions.apple.com/thread/3867171?tstart=0

  • TS1299 What will I do if the iPod is disabled? How can I connect to I tunes?

    What will I do if the iPod is disabled? How can I connect to I tunes?

    If it's showing the red disabled screen due to too many incorrect passcode attempts then you may need to put the iPod into recovery mode in order to reset it via your computer's iTunes : http://support.apple.com/kb/ht1808 - you should then be able to restore/resync your content to it

  • HT1689 What is Other (5.96gb) on my Iphone storage and how can I get rid of it?

    What is Other (5.96gb) on my Iphone storage and how can I get rid of it?

    LillynWilson wrote:
    What is Other (5.96gb) on my Iphone storage and how can I get rid of it?
    "Other" data is real data that you put on your phone by using the built in apps. It is not music, not videos, not pictures and not App Store app data. It is "OTHER" meaning everything that does not fall into these categories. Such as:
    email messages and attachments
    Reminders
    Calendar entries
    Contacts
    Text messages
    MMS messages and attachments
    Genius data
    Music cover art
    Operating system settings
    Safari cache
    bookmarks
    Game Center status
    Music catalog
    Probably a few I've missed. There was a problem in an earlier version where deleted MMS messages left behind their attachments, but that has been fixed as of 6.1. The reason that deleting music recovers some Other space is because it delete cover art. But is also screws up your music, which will no longer play correctly.
    You will find posts from people who said they recovered over 1 GB of space by just deleting old text messages.
    If you want Other to be smaller you will have to keep less data on your phone; delete old MMS and texts, delete old email (especially from the "deleted" folder), clear the cache, eliminate cover art.
    Your Other is so large, however, that there may be corrupt data contained in it (unless you send a lot of MMS messages with large attachments). If this is the case you should restore the phone as New.

  • HT1725 I have a few songs that will only play for about a min the it will stop playing how can i get the songs back to a full song

    I have a few songs that will only play for about a min the it will stop playing how can i get the songs back to a full song

    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting the incomplete tracks from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-download in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those songs and use the 'Report a Problem' link.

  • Preprocessor command, assigned the variable and then compare the variable to int. How can I get around this?

    #define ON 1
    #define OFF 0
    in seperate code
    int variable = ON;
    variable is globally define for that module.
    in seperate code
    if (variable == ON)
    the complier errors off on the if (variable==ON)
    My guess variable is variable in of type int and ON is a preprocessor command. Therefore it is a mismatch and complier doesn't like it. How can I get around this.
    thank
    Mahen

    Mahen
    What is the exact message of the compiler?
    I think the error is, that the compiler does not find the definition of ON
    and OFF. Is it in the same source file?
    If not, try to put it into an .h file and include it where you need it.
    Stephan
    "Mahen" schrieb im Newsbeitrag
    news:[email protected]..
    > Preprocessor command, assigned the variable and then compare the
    > variable to int.
    >
    > How can I get around this?
    >
    > #define ON 1
    > #define OFF 0
    > in seperate code
    >
    > int variable = ON;
    > variable is globally define for that module.
    > in seperate code
    > if (variable == ON)
    > {
    >
    >
    > }
    >
    > the complier errors off on the if (variable==ON)
    > My guess variable is variable in of type int and ON is a preprocessor
    > c
    ommand. Therefore it is a mismatch and complier doesn't like it. How
    > can I get around this.
    > thank
    > Mahen

  • Hey please please help me my serial no - DN*****TWF.my iphone got water damaged but apple says this serial no has replaced but i had never replaced i lost my thousands.please tell me what to do.my iphone 5 is in dead conditions.how can i get my refund?

    hey please please help me my serial no - DN******TWF.my iphone got water damaged but apple says this serial no has replaced but i had never replaced i lost my thousands.please tell me what to do.my iphone 5 is in dead conditions.how can i get my refund? means how to get replacement or other chances to get my ruppe refund?for god say please help my please...!!
    <Personal Information Edited by Host>

    Sorry, it appears you were scammed. The phone you have was replaced, either under warranty, or as an out of warranty replacement, & should have been returned to Apple. Unfortunately, some unscrupulous retailers will fix these phones, & then re-sell them. Your only option is to go back to whoever you purchased the phone from & confront them

  • I downloaded an album on itunes using my new itouch; but it's only allowing me to put three songs at any one time into the music app...how can i get it to just move them all in there?

    i downloaded an album on itunes using my new itouch; but it's only allowing me to put three songs at any one time into the music app...how can i get it to just move them all in there?

    hi philly, thanks for getting back to me, especially on such a busy day.
    I don't think that's quite the issue though. I bought an album and it appears in 'my purchases' within the itunes app. Yet, in order to listen to the music, i must use the 'music' app and in this application, there are only three tracks displayed at any one time from my downloaded album.
    I can 'download all' from the 'my purchases' section but that still doesn't help, it just keeps the last three tracks downloaded in the music app.
    I have the 'icloud' enabled and wondered if it had anything to do with that.
    i have successfully downloaded another full album totally into the music app, but this first album is causing me problems.

  • After upgrading to Mavericks and iPhoto 9.5 my shared photo streams seem to contain no photos when seen in iPhoto. From iPad the streams are fine. How can I get them to be recognized by iPhoto again?

    After upgrading to Mavericks and iPhoto 9.5 my shared photo streams seem to contain no photos when seen in iPhoto. From iPad the streams are fine. How can I get them to be recognized by iPhoto again?

    Disable Photo Stream in the System/iCloud preference pane
    and in iPhoto's Photo Share preference pane.
    Reboot and reenable both respectively. That should jump start Photo Stream.
    OT

  • I signed into my Apple ID on a new phone and I already had it on my iPod. When I signed into the new phone it won't let me buy anything unless I know my old security questions but I don't know the answers to them. How can I get past those or change them?

    I signed into my Apple ID on a new phone and I already had it on my iPod. When I signed into the new phone it won't let me buy anything unless I know my old security questions but I don't know the answers to them. How can I get past those or change them?

    See Kappy's great User Tips.
    See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities https://discussions.apple.com/docs/DOC-4551
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Send Apple an email request for help at: Apple - Support - iTunes Store - Contact Us http://www.apple.com/emea/support/itunes/contact.html
    Call Apple Support in your country: Customer Service: Contacting Apple for support and service http://support.apple.com/kb/HE57
     Cheers, Tom

  • I am trying to update my time machine backup on time capsule, but time machine keeps trying to create an entirely new backup (evidenced by the 200GB backup size). How can I get time machine to modify my old backup rather than create a new one?

    I am trying to update my time machine backup on time capsule, but time machine keeps trying to create an entirely new backup (evidenced by the 200GB backup size). How can I get time machine to modify my old backup rather than create a new one?

    It must have found the old backup corrupt.. so you will more than likely have little choice. You can archive off the old backup if it is still useful.
    You can also verify it. See A5 http://pondini.org/TM/Troubleshooting.html
    He also has some info on this problem. eg C13.

  • I have a macbook pro and I connected a new iphone to my computer. Somehow all my pictures in the iphoto app deleted. How can I get them back, and no I do not have my TimeMachine On. Please help!

    I have a macbook pro and I connected a new iphone to my computer. Somehow all my pictures in the iphoto app deleted. How can I get them back, and no I do not have my TimeMachine On. Please help!

    If you are running Lion then all drivers are distributed through Software Update. You do not need to install anything, other than to install the printer in System Preferences > Print & Scan. If you already added the printer while it was connected using USB, you might want to delete it and set it up again wirelessly to avoid confusion. Or, give them two distinct names e.g. "Photosmart D110 (USB)" and "Photosmart D110 (wireless)".
    All scanning functions are now performed using Preview, but you can also access the scanner through the same Print & Scan preference pane, or with Image Capture.
    This HP document may help explain how driver software is distributed now:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03079365&cc=us&dlc=en&lc=en &product=4144493&tmp_track_link=ot_search#N108

  • I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date is created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date  created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    The Finder reports File information. The date and time of the photo are in the Photo's Exif metadata. The Finder has no awareness of this. All photos apps on any system do.
    Regards
    TD

  • I lost my iphone and now icloud dosent download the photos !!! how can i get my photos in another way ??

    i lost my iphone and now icloud dosent download the photos !!! how can i get my photos in another way ??

    You will need to get another phone to restore from you icloud backup http://support.apple.com/kb/HT4859
    FAQ photo stream http://support.apple.com/kb/HT4486

Maybe you are looking for

  • Maximum number of threads in a process

    Hello, we are currently running on Solaris 9 an application compiled with C++ compiler SunStudio 8. Our application crash after running 2990 concurrent threads with the system error ENOMEM (Not enough space). In the same time the real memory free was

  • Google Docs link Help PLEASE

    would anyone mind please helping me understand why the google doc link URL that i embed in my website keeps going to the main page instead of the document I am trying to link - or alternatively is requiring me to login before I access the document? I

  • More than one, OneToOne relation gives problem

    This is my bean class structure @Entity @Table(name="TBL_PRODUCTS") public class TblProducts implements Serializable    @Id    @Column(name="PRODUCT_ID")       private BigDecimal productId;    @Column(name="PRODUCT_NAME")       private String product

  • How to Find Which Programs running in my Domain Computers

    How to Find Which Programs running in my Domain Computers.

  • Download site for ORACLE9i SQL Reference

    Hello everybody I have searched but I did not find any site for downloading pdf file for documentation of ORACLE9i SQL Reference. Where can I download it ? Thank you very much indeed.