Passing user credential to Adapter

hi Experts,
I am using applicationi adapter 11gps6 for sap and siebel with osb11g, I wonder if I can pass user credential from osb to sap or siebel? From the online doc, seems only configured user(static user) can be passed, but what I need is "pass through" whatever username that has been authenticated by osb, change to another word, the username must be dynamic(osb and sap/siebel could share the same id store, like ldap).
Is this possible?
Best regards

Any feedback?

Similar Messages

  • File Download: How to pass user credential to UCM10gR3, other than using UCM auth UI.

    Hi,
    I have a problem, i would like to download files stored in UCM, but i would like to bypass UCM auth UI. Is there some other way to supply username and password. Following is the setup
    I have 4 files uploaded to ucm server.
    These files are secured by creating an account with in the public security group. And that account contains only one user that is local to ucm. I need to pass the this username and password to gain access to these files.
    We are basically exposing these files through URL, something like http://host:port/cdnucm/groups/public/@coltonline/@partner/@crc/documents/digitalasset/file_name.mp3
    I when i am access this file i am prompted by UCM authentication UI to login.
    My question is, is there a way to bypass the authentication UI by passing  the security credentials (i.e. username and password) through some other mechanism, something like query string.
    I tried doing the following, but did not help.
    http://host:port/cdnucm/idcplg?IdcService=GET_FILE&dID=<Did>&dDocName=<DocName>&dUser=testuser&dPassword=welcome1
    Any pointers to resolve this issue will be highly helpful.
    Thanks in advance,
    Seshan K.

    Hi,
    I can of figured something out.
    Here we basically do a login, then on successful login we do a  redirect to GET_FILE service .URL could be broken up into 2 parts.
    Login part: http://host:port/cdnucm/idcplg?cookieLogin=1&username=sysadmin&password=welcome1
    Encoded Redirection Part:  &redirecturl=%2Fcdnucm%2Fidcplg%3FIdcService%3DGET_FILE%26dID%3D143058%26dDocName%3DCDNU_095494%26allowInterrupt%3D1%26Rendition%3DWeb
    Please notice that redirect URL is encoded and it basically contains contains following parameters
    IdcService=GET_FILE
    dID=143058
    DocName=CDNU_095494
    allowInterrupt=1
    Rendition=Web
    Customer set up is basically the following.
    External load balancer >> Apache Server >> Internal Load balancer >> UCM Server.
    While this logic works when we access the UCM server URL or  Internal Load balancer, but fails when we use
    External load balancer or Apache Server (Front ending the internal load balancer).
    Any idea what could be wrong?
    Thanks in advance,
    Seshan K.

  • How to pass current user credential for PAPI service execution

    Hi All,
    As per my requirement I am using the SAP ME PAPI WS to start the SFC. I have used the SAPME PAPI Interface action block in ME within BLS and searched the service and operation also. Required input parameter mapping is also done and I have successfully executed the BLS and SFC is started in ME. In SAPME PAPI Interface action block I have used Credential alias which is standard configuration in MEINT for user MESYS.
    Now what I have seen is that, in ME the SFC is started by user MESYS. But I want to pass the user who is currently executing. Is there any way to pass the current user credential or session for executing the PAPI service. My final target is to use the BLS in IRPT through Xacute query.
    Thanks in Advance
    Chandan

    Hi Sergiy,
    It is only required for Sfc Start operation. It is a generic requirement for all PAPI WS. User ref is not available for all services. I have taken sfc Start operation as an example. But for  complete SFC operation there is no user ref. in Request structure. Then what would be our generic way to execute it through current user credential.
    Thanks
    Chandan

  • IPhone "FIOS remote" app update caused 'Invalid User Credential'

    Hey there,
    I recently updated my "FIOS remote" app on my iPhone and started getting 'Invalid User Credential' when checking my DVR in the app or the TV listings, also wasnt able to submit feedback.
    TheAbout screen says I'm using "Verizon FIOS mobile remote version 3.1.56 build number 16"
    I called Verizon support who helped me.
    The fix:  Open a browser and go to www.verizon.com/fiostv/web and logon. 
    Feedback in the app still doesn't work so I thought I'd post this here for others.  By the way, I think a 100 character limit is too small for feedback.
    Kevin

    LawrenceH wrote:
    I have been trying to get the FiOS Remote app to work, but it keeps giving me problems with the sign on.  I don't think my sign on is the issue.
    My signon works for ...
    1. My FiOS app - in which I can pull my account information
    2. the Verizon mobile website - in which I can login and see all my information
    Within the My FiOS app when I try to manage my DVR, it launches the FiOS remote app.  This app won't let me sign in.  I constantly get the "Sign In Error" User ID or Password is invalid.  Please try again."
    I know this error is erroneous because of my ability to login everywhere else.
    Please advise on what I can do next.
    Hi, I know that app requires that you are connected to the wifi in your home and not on the iphone's 3g.  If you have verified that you are on the Actiontec WiFI (not a second router's wifi) and that your login is correct at all those sites, then you might need to email the dev from the apple store.  It gives you a link to email them there.

  • Passing User-Password - while invoking web service

    Hello Gurus,
    I am calling a web-service in that[i] Authentication is required..... If i am invoking through browser ,,,, I can pass User name and password....
    But i am calling from Plain Java class.... How should i pass authentication parameter

    Hi Suresh & Mukesh,
    Suresh:
    I started the service by going through the following path System Administrator > System Configuration > Service Configuration > Application > <SERVICE_NAME> in system configuration of portal
    Mukesh: Here I don't have any proxy settings.
    Can you please let me know where I'm going wrong.
    Thanx,
    Dheeram

  • How to pass user name and password in openConnection method ?

    Hi, Exports,
              I am trying to post data from applet to another application which is
              protected by network password.
              How to pass user name and password when I use openConnection method? In java
              doc, this method looks like do not accept these two parameters.
              Thanks
              ----- my code in applet ---------
              URL url = new URL("http://127.0.0.1/xml/index.cfm");
              URLConnection connection = url.openConnection();
              connection.setDoInput(true);
              connection.setDoOutput(true);
              connection.setUseCaches(false);
              connection.setAllowUserInteraction(false);
              DataOutputStream dos = new DataOutputStream(connection.getOutputStream());
              dos.writeBytes("POST " + path + " HTTP/1.0\r\n");
              dos.writeBytes("Referer: http://127.0.0.1/XML/index.cfm\r\n");
              dos.writeBytes("Content-Type:
              multipart/form-data;boundary=---------------------------7d0b414b04\r\n");
              dos.writeBytes("Host: "+host+":"+port+"\r\n");
              dos.writeBytes("Content-Length:" + buff.length()+"\r\n");
              dos.writeBytes("Connection: Keep-Alive\r\n\n");
              dos.writeBytes("-----------------------------7d0b414b04\r\nContent-Dispositi
              on: form-data;name=\"xmlDoc\"\r\n\r\n");
              dos.writeBytes(buff.toString());
              dos.writeBytes("\r\n-----------------------------7d0b414b04--\r\n");
              dos.close();
              

    you need to negotiate Authentication in ur applet code...
              For example:
              If u r using Form based auth u need to send Post a request with j_user_name &
              j_password to the action j_security_check. and when server returns back the
              cookie
              u need to hold it and pass that cookie to the each and every request made to the
              protected application.
              Basically u need to imitate the browser.
              regards
              aseem
              David wrote:
              > Hi, Exports,
              >
              > I am trying to post data from applet to another application which is
              > protected by network password.
              > How to pass user name and password when I use openConnection method? In java
              > doc, this method looks like do not accept these two parameters.
              >
              > Thanks
              >
              > ----- my code in applet ---------
              > URL url = new URL("http://127.0.0.1/xml/index.cfm");
              > URLConnection connection = url.openConnection();
              > connection.setDoInput(true);
              > connection.setDoOutput(true);
              > connection.setUseCaches(false);
              > connection.setAllowUserInteraction(false);
              > DataOutputStream dos = new DataOutputStream(connection.getOutputStream());
              > dos.writeBytes("POST " + path + " HTTP/1.0\r\n");
              > dos.writeBytes("Referer: http://127.0.0.1/XML/index.cfm\r\n");
              > dos.writeBytes("Content-Type:
              > multipart/form-data;boundary=---------------------------7d0b414b04\r\n");
              > dos.writeBytes("Host: "+host+":"+port+"\r\n");
              > dos.writeBytes("Content-Length:" + buff.length()+"\r\n");
              > dos.writeBytes("Connection: Keep-Alive\r\n\n");
              > dos.writeBytes("-----------------------------7d0b414b04\r\nContent-Dispositi
              > on: form-data;name=\"xmlDoc\"\r\n\r\n");
              > dos.writeBytes(buff.toString());
              > dos.writeBytes("\r\n-----------------------------7d0b414b04--\r\n");
              > dos.close();
              >
              > ------------------------------------------
              

  • Pass User Picked values to Excel Slicers

     Hi, Is there a way to pass values from an external page to an Excel Slicer in a Workbook(which is on sharepoint) through a URL or something?
    Our Front End Report is a .NET web page, and we want to be able to pass User picked values like Year = 2014, Month=Jan etc from that web page to a Excel Pivot Table(with Slicers on Year, Month etc).
    Is this possible?
    Any help is appreciated.
    Thanks

    Hello,
    Personally, it is impossible.
    You can also try to open a discussion at Excel IT Pro forum regarding this issue to confirm this.
    Excel IT Pro discussion forum:
    http://social.technet.microsoft.com/Forums/office/en-US/home?forum=excel
    Regards,
    Elvis Long
    TechNet Community Support

  • Passing user defined parameters in oracle reports thru command line

    Hi All
    We are currently using Reports 6i with Oracle 10g 10.2.0.4.0
    I would like to know that is it possible to pass user defined parameters values while calling report from command line.
    For Example: I am using following coding to call report from command line.
    for /f "tokens=1-3 delims=/ " %%a in ('date /t mm/dd/yyyy -1') do (
    set mm=%%b
    set dd=%%a
    set yyyy=%%c)
    rwrun60 report=c:\reports\banks.rdf userid=express/test@test_rs2 destype=FILE desname=c:\reports\banks%dd%%mm%%yyyy%.pdf desformat=PDF BACKGROUND=NO BATCH=YES
    The report contains some user defined parameter which is using in where condition of reqport query.
    Select * from banks
    where id = :Bank_ID
    Now I want to Pass value for :Bank_Id from command line (like we pass parameter list while calling report with run_product), how it is possible?
    Thanks
    Hassan

    Hi guys
    Fortunately I am able to perform the required task as I just added the report parameter field as follows:
    rwrun60 report=c:\reports\banks.rdf userid=express/test@test_rs2 destype=FILE desname=c:\reports\banks%dd%%mm%%yyyy%%h%%mi%%ss%%ts%.pdf desformat=PDF BACKGROUND=NO BATCH=YES ERRFILE=c:\reports\error.log LOGFILE=c:\reports\joblog.log bank_id='MCB'
    bank_id is the report parameter using in where clause.
    Regards,
    Hassan

  • How to pass user and password in workspace when open a bqy

    hello,
    how to pass user and password of workspace when refresh a bqy for a query in DB2.
    I don't know where to insert the properties in order to use user and password of workspace,
    I want to use user of login of workspace,
    I don't want to make to appear the mask of login newly when the user refresh the query.
    I don't want to set a default user and password
    thanks
    massimo

    Dear Friend,
    What you mean?
    1. Do you mean how to pass login page on workspace ?
    2. or Do you mean how you can use a connection file to connect to db that is hide from user?
    3. or You mean how to use user & password to login to doc on workspace
    Answer for 1:
    use link
    http://HyperServer:45000/workspace/browse/get/MyFolder/MyIR.bqy?user=admin&pass=password
    Answer for 2:
    a) Upload or import connection file ( MyConn.oce ) to DB2 into workspace,
    b) for IR doc properties change file connection ( MYConn.oce )
    Answer for 2:
    use link without user & pass parameter
    http://HyperServer:45000/workspace/browse/get/MyFolder/MyIR.bqy <?user=admin&pass=password>
    regards
    siyavuş

  • Trying to integrate with User Messaging Service adapter in SOA suite.Can it be possible through an JMS interface.

    Trying to integrate with User Messaging Service adapter in SOA suite. Can it be possible through an JMS interface.
    I have an JMS backend integrated to Oracle B2B. Is it possible to send an email protocol message using JMS interface to B2B where User messaging Service has been implemented. The adapters required for UMS have been deployed and the sdpmessaging jar files also have been added to the classpath. The only problem i face is i dont have an BPEL system to integrate where as in the forums it has been mentioned how to post a message using BPEL.
    Please let me know if there is a way to integrate the adapter with JMS interface.
    Thanks in advance
    Deepak

    If I remember correct, to use JCA adapter with SOA stack requires that adapter implement some Oracle API.
    The Adapter SDK is a light-weight tool kit that enables rapid implementation and deployment --- http://www.oracle.com/technology/products/integration/adapters/pdf/DS_OracleASAdapter.pdf
    http://download.oracle.com/docs/cd/B16981_04/current/acrobat/cct115dg.pdf
    Mostly you will have to wrap your jca adapter to make it available in SOA suite/stack.
    Other option is that you adapter provider would have given CCI interface or some custom interface which can be used for invoking adapter end-points.
    Manoj

  • Passing user-defined field to Backend system

    Hi All,
    Please advice how we can pass user-defined fields of shopping cart to same user-defined fields in purchase requisition/purchase order in backend R/3 system.
    I know there is parameter IT_CUF_ITEM in BADI BBP_CREATE_REQ_BACK. If anyone know how to pass field values by this parameter or otherwise, it will be very helpful to me.
    Thanks & Regards,
    Kamaljit Singh

    Hello Kamaljit,
    If you want to pass the custom parameters then you can use the badi BBP_CREATE_PO_BACK/BBP_CREATE_REQ_BACK to fill the header/Item level parameters.
    while building the item level parameters internal table, make sure that you are passing the header guid and the item number and the R/3 BackEnd table name,Fieldname(R/3 Custom Fieldname) with the value(SRM Custom field value).
    Hope this information will be useful to you.
    Regards,
    Mani.
    Please assign points for usefull answers
    Message was edited by: Mani Sreedharala

  • Pass User Parameters between Forms and Reports...?

    Hi,
    I have been trying to pass user parameters from forms to reports using
    RUN_REPORT_OBJECT. I am able to run the report from the form, but still don't know how to pass user_parameters. Does anyone know how to do this?
    Thanks,
    AB

    You can use SET_REPORT_OBJECT_PROPERTY with the "REPORT_OTHER" parameter
    The following example passes 3 parameters to the report:
    SET_REPORT_OBJECT_PROPERTY(pt_report_object_id, REPORT_OTHER, 'paramform=no p_param_1='||pc_param_1||' p_param_2='||pc_param_2);

  • How to have AP1232 pass user IP to ACS and reflect in the radius log?

    Currently, we are able to get the User-Name [radius attribute 1] to reflect in the ACS log. A debug radius at the AP show this radius attribute is passed back to ACS. However, cannot seem to find the attribute to pass user IP address back to the ACS.
    We are using MS-PEAP authentication for 802.1x.
    Pls advise and thks

    we have done that already in the ACS prior posting this post. Additionally, have also enabled the radius attribute 8 in the AP1200 series configuration, the Frame-IP-Address field still does not show the ip address.
    In link-framed connections using such protocols as SLIP and PPP, the Framed-IP-Address attribute carries the value of the IP address to be assigned to the connection
    The Frame-IP-Address is for PPP and SLIP protocol, can advise if this work for Wireless authentication via EAPOW.
    Pls advise.

  • Pass user type to JAAS module

    Hi,
    I have developed a JAAS module passing username and password and uses LDAP and Database for authentication. I also need to pass user type to the back-end. Can you please suggest how to do this?
    Thanks,
    Matt

    You can use to get the user/role information
    Subject s = context.getSubject();
    You can pass the Subject s as usual way.

  • Query weblgoic runtime JVM and thread that carry the user credential

    Hi there,
    So far as I know, weblogic keeps track of user credentials from
    different JVM and different thread. However, for the same thread within
    same JVM, weblogic only keep on user credential in the EJBContext. So,
    is there any way or any API for me to query the JVM and thread that
    carries the user credential? My purpose is to prevent second login from
    the same JVM in the same thread.
    Thanks,
    Cathy

    Hi there,
    So far as I know, weblogic keeps track of user credentials from
    different JVM and different thread. However, for the same thread within
    same JVM, weblogic only keep on user credential in the EJBContext. So,
    is there any way or any API for me to query the JVM and thread that
    carries the user credential? My purpose is to prevent second login from
    the same JVM in the same thread.
    Thanks,
    Cathy

Maybe you are looking for

  • Can I upgrade iWorks'08 to iWorks'09 on Mac OS 10.7.5?

    I have iWorks'08 (Pages 3.0.3, Numbers 1.0.3 , Keynote 4.0.4) on my MacBook Air using Mac OS 10.7.5.  I bought a new iMac (10.10.03) with Pages 5.5.3, Numbers 3.5.3, Keynote 6.5.3). When I try to open a document, it says I need to save them in iWorks

  • Common Frustration

    I read this in an article about Linux, but I think the idea certainly applies here as well (and probably in forums everywhere). I posted a message on a forum, but Linux people were mean to me. in most examples of this complaint, the individual concer

  • IDENTITY field problem

    Could anyone please suggest me the best way to retrieve value inserted in the identity field in case of concurrent connections for databases (RDBMS) like DB2, SQL Server or Oracle.<br> Particularly in case of DB2.<br> And if the suggestion is to use

  • Dossier TEMP et Adobe Master Collection et Windows 7(64)

    Bonjour et merci d'avance pour votre précieuse aide. J'ai fait l'acquisition de la Master Collection d'Adobe, mais impossible de la faire fonctionner correctement. A savoir que certains logiciels Photoshop, Indesign, Bridge exige d'être démarré en ta

  • What do FairPlay Versions stand for?

    Hello, everyone. I would like to know what do the FairPlay versions stand for or what do they mean, if they are something like just versions from a cryptographic algorithm. Also, I would like to have my mind very clear on this beacuse I have even tho