Propogating SAML tokens from OSB to BPEL and the reverse

Hi
Is there a way to propogate SAML tokens from OSB to BPEL and vise-versa. There are lots of references on using OWSM policies. Can I achieve passing tokens and asserting without them?
Thanks
Suman

Starting from 11gR1 (11.1.1.3) Release, we have new feature to start transaction. OSB proxy can be configured to start a transaction.Refer to message flow transaction http://download.oracle.com/docs/cd/E14571_01/relnotes.1111/e10132/osb.htm#CJACHEHJ
So with this feature, all we need a create a proxy say HTTP and enable this feature. OSB will start a transaction before your pipeline is invoked. Let me know if you need clarification.
Manoj
Edited by: Manoj Neelapu on Jun 22, 2010 8:39 AM
Edited by: Manoj Neelapu on Jun 22, 2010 8:39 AM

Similar Messages

  • HT1473 If I already own a song (from a different album) and the same song is in an album which I want to get, do I still have to pay for the song?

    Other details:
    First album/s- Dookie (Green Day), american idiot (green day)
    and 21st century breakdown (green day)
    Album with same songs in it- international super hits (green day)

    If I already own a song (from a different album) and the same song is in an album which I want to get, do I still have to pay for the song?
    Yes.
    The album which the song has been listed under (on the song's page) is listed in your library under that album. The song is then removed automatically from the first album
    No it's not.
    Purchasing a new song or album will not affect any other song or album in your library.
    In the case of the two albums you mention, if you purchase them both, you will have the same song (different copies) in both albums.

  • What can i do if i accidentally deleted my iPhoto from my macbook air and the App Store couldn't recognize that i have bought it before and required me to buy it again ... should i buy it again or what ? i can't manage my photos now ...

    what can i do if i accidentally deleted my iPhoto from my macbook air and the App Store couldn't recognize that i have bought it before and required me to buy it again ... should i buy it again or what ? i can't manage my photos now ...

    Log into the app store using the Apple ID you used to set your computer up. Look under purchases. If it is not there you may need to accept it or to unhide it
    LN

  • I had a blank iphone and took photos on it then restored it from my last iphone and the photos i recently took in the mean time have gone, how do i get them back?

    I had a blank iphone and took photos on it then restored it from my last iphone and the photos i recently took in the mean time have gone, how do i get them back?

    Retake the photos. They are no longer on your device.

  • Hi, I just got my Iphone 5s when I open my camera when my phone is lock te icons of the flash and the reversing camera is there, but when I try to open my camera from the apps camera the icons of the flash, the reversing camera is not there anymore?

    Hi, I just got my Iphone 5s when I open my camera when my phone is lock te icons of the flash and the reversing camera is there, but when I try to open my camera from the apps camera the icons of the flash, the reversing camera is not there anymore?

    Have you tried restarting or resetting your iPhone?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after the iPhone shuts down, then press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).

  • Cannot load files from my Nikon D810 and the sony rx100m2

    I am unable to download files from my Nikon D810 and the Sony RX 100 M2 cameras  what do I need to do? I also am unable to load the raw files into photoshop CS6 and am most frustrated

    Which version of Lightroom are you running?
    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications
    Nikon D810 requires Camera Raw 8.6 (or later) or Lightroom 5.6 (or later)
    Sony RX 100 II requires Camera Raw 8.2 (or later) or Lightroom 5.2 (or later)
    Photoshop CS6 is compatible with Camera Raw 8.7.1. Update via Help > Updates in CS6.
    Or install manually via:
    Camera Raw plug-in installer

  • I bought my ipod touch from usa...and the wifi does not connect.does it have something to do with that its not from india?

    I bought my ipod touch from usa...and the wifi does not connect.does it have something to do with that its not from india?

    So you have tried connecting to open network that do not require a password and it was still unable to connect?  If that is the case.
    Does Wifi appear grayed out on your iPod via Settings -> Wi-fi?
    Have you seen this article yet?
    http://support.apple.com/kb/TS1398
    B-rock

  • I am trying to buy an app but it is saying "Insufficient remaining store credit". I still have $1.03 credit from mt gift card and the app is only .99 cents.

    I am trying to buy an app but it is saying "Insufficient remaining store credit". I still have $1.03 credit from mt gift card and the app is only .99 cents.

    You will also need to pay sales taxes for your area.
    Stedman

  • Passing variables from php to flash and the opposite

    Hi guys, im trying weeks now to solve this problem but nothing yet
    If someone could just tell me how to pass variables from flash to php and the opposite i would be thankful!!! Please help!

    I have recently had to learn this, so this may not be the best way but it worked for me
    I suggest looking at the code below stripping out everything you don't need (e.g. the databse stuff) and just get a simple string going back and forward
    have a go and post any problems here and I'll try and help
    in flash i have
    private function getBalanceAndXP():void
              var request:URLRequest = new URLRequest("utils.php");
              request.method = URLRequestMethod.POST;
              var variables:URLVariables = new URLVariables();
              variables.func = "getBalance";
              variables.fbid = userID;
              request.data = variables;
              var loader:URLLoader = new URLLoader();
              loader.dataFormat = URLLoaderDataFormat.VARIABLES;
              loader.addEventListener(Event.COMPLETE, onBalanceComplete);
              loader.load(request);
    private function onBalanceComplete(e:Event):void
              var loader:URLLoader = e.target as URLLoader;
              loader.removeEventListener(Event.COMPLETE, onBalanceComplete);
              var variables:URLVariables = new URLVariables(loader.data);
              _balance = parseInt(variables.balance); // class variable
              _experience = parseInt(variables.experience); // class variable
    public function setBalanceAndXP(balance:int, experience:int):void
                _balance = balance;
              _experience = experience;
              var request:URLRequest = new URLRequest("utils.php");
              request.method = URLRequestMethod.POST;
              var variables:URLVariables = new URLVariables();
              variables.func = "setBalance";
              variables.fbid = userID;
              variables.balance = _balance;
              variables.experience = _experience;
              request.data = variables;
              var loader:URLLoader = new URLLoader();
              loader.dataFormat = URLLoaderDataFormat.VARIABLES;
              loader.load(request);
    and then I have my php file
    <?php
    $func = $_POST["func"];
    $fbid = $_POST["fbid"];
    $balance = $_POST["balance"];
    $experience = $_POST["experience"];
    $numVariables = 0;
    $link = mysql_connect("localhost","username","password");
    mysql_select_db("databaseName");
    if ($func == "getBalance")
              getBalance($fbid);
    else if ($func == "setBalance")
              setBalance($fbid, $balance, $experience);
    mysql_close($link);
    function getBalance($fbid)
              $query = "SELECT balance, experience FROM tableName WHERE fbid = '".$fbid."'";
              $result = mysql_query($query);
              $row = mysql_fetch_row($result);
              writeVariable("balance", $row[0]);
              writeVariable("experience", $row[1]);
    function setBalance($fbid, $balance, $experience)
              $query = "UPDATE tableName SET balance = ".$balance.", experience = ".$experience." WHERE fbid ='".$fbid."'";
              mysql_query($query);
    function writeVariable( $name, $value )
              global $numVariables;
              if ( $numVariables > 0 )
                        echo "&";
              echo $name . "=" . urlencode($value);
              $numVariables++;
    ?>

  • I recently made an album from my i photos and the the drive crashed ...the album isnt in iphoto.how can i order more copies of the album?

    i recently made an album from my i photos and the the drive crashed ...the album isnt in iphoto.how can i order more copies of the album?

    Ay album do you mean an iPhoto book?  The best way is to restore a backup copy of your iPhoto library from just before the drive crashed.
    Baring that your only hope is to recreate the book in iPhoto.  For future book I suggest you try what is described in this tutorial: iP08 - Archiving an iPhoto Book for Editing and/or Ordering at a Later Date and, if you don't already have one, start a backup strategy for backing up your important files.
    OT

  • How to split an image and use one half and the reverse together?

    Dear Forum,
    I would like to take face pictures and split the faces in half. After that, I would like to use the left side of the face and match it to the reverse left side face together(having 2 left sides which will look like a normal face after the 2 sides will be brought together).
    So:
    1. picture of a human face (head)
    2. slipt the face in half
    3. remove the right side
    4. highlight the left side and make a reverse image
    5. put together the real left side and the reverse left side in one face
    How that is possible with Photoshop?

    Thanks ! Sounds easy. I should have posted the question BEFORE the several hours spent trying to figure it out. I appreciate the time and effort.
    Joe

  • Passing value from ADF to BPEL, and to PL/SQL  procedure

    1. I have created BPEL which take 2 inputs and concatenate them.
    2. have created a PL/SQL procedure for invoking this BPEL( working fine).
    Now i need to create a simple ADF page which contain 2 text box, 2 for input and 1 for result(concatenate), this will take 2 inputs and send them into BPEL, this will invoke the BPEL process and perform the necessary concatenate function...
    in addition to this, i am passing code into PL/SQL procedure ...
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body xmlns:ns1="http://xmlns.oracle.com/OrderImportDemo">
    <ns1:InputRequest>
    <ns1:FirstName>abcdef</ns1:FirstName>
    <ns1:LastName>aaaaaa</ns1:LastName>
    </ns1:InputRequest>
    </soap:Body>
    </soap:Envelope>';
    this code will take vaule from BPEL and run properly.
    can you please help me,

    thanks for help, but the problem is diff.
    i don't have any schema, what i want i need to create a adf page that will contain 3 tent field, 2 for input and 1 for output. when i will enter 2 input field and click on ok button, this will invoke BPEL, BPEL will take these 2 inputs and do the concat on this and send back to adf with result.

  • Passing value from ADF to BPEL, and to PL/SQL

    1. I have created BPEL which take 2 inputs and concatenate them.
    2. have created a PL/SQL procedure for invoking this BPEL( working fine).
    Now i need to create a simple ADF page which contain 2 text box, 2 for input and 1 for result(concatenate), this will take 2 inputs and send them into BPEL, this will invoke the BPEL process and perform the necessary concatenate function...
    in addition to this, i am passing code into PL/SQL procedure ...
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body xmlns:ns1="http://xmlns.oracle.com/OrderImportDemo">
    <ns1:InputRequest>
    *<ns1:FirstName>abcdef</ns1:FirstName>*
    *<ns1:LastName>aaaaaa</ns1:LastName>*
    </ns1:InputRequest>
    </soap:Body>
    </soap:Envelope>';
    this code will take vaule from BPEL and run properly.
    can you please help me,

    Three simple steps you need to do :
    1) Generate proxy for your bpel process in Jdeveloper.
    2)Create simple ADF page with 2 input for taking value and a input for showing the result and one command button.
    3) In backing bean on command button action, get value from two inputs, pass the in the proxy service and update the the the third input with the result of service.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • SAML tokens in OSB

    Can I secure a "http" transport type and "Text" messaging proxy service using SAML tokens?
    I am reading SAML is applicable only for wsdl webservices.Is this true?
    Please guide me on using SAML for http/text proxy services if that is possible.
    Thanks.

    any help..

  • I've imported from a video camera and the files on the laptop are not playing the sound, is there any way to retrieve it?

    I have just uploaded a large number of files from a panasonic video camera on to imovie. I have never had this problem in the past, but when I try to play back the files on my laptop there is no sound. I have tried increasing the sound and normalising via the audio settings, and the sound is playing fine on the video camera. Is there anything I can do?

    I have also checked that the files are MOV not MPEG etc

Maybe you are looking for