Using a different user(other than default PI user) with adapter module

Hi,
We are having a custom adapter module built to interact with a Hardware Security Module(HSM). This custom adapter module by default uses a PI user configured in the system. However, we are not able to pass commands to HSM because of insufficient authorizations to this PI user. Now, we do not exactly know the permissions required for the user to access HSM. We have asked the HSM support team about the same. However, I wanted to explore the possibility of using a different PI user to work with the adapter module and eventually pass commands to HSM.
We have an admin user configured which has all the necessary authorizations. Is it possible to use this admin user created on PI system to work with adapter module so that it passes commands to HSM?
Thanks,
Ravi Desai

We have given the necessary authorizations to PI user.

Similar Messages

  • Using a different directory other than /config/domain_name/applications

    Is it possible to configure WLS6.1 to use a directory other than "/config/domain_name/applications"
    as its default application directory.

    Does anyone know if this was fixed, or is it still a problem. Do we really need
    to run our applications from within the bea install/config/domain directory?
    thanks
    Joel
    "Michael Frank" <[email protected]> wrote:
    Ryan, we have been working with the kinds of application setups that
    you
    seem to describe. All through WebLogic 5.1, I have insisted on keeping
    my
    application server directory outside of the BEA WebLogic installation
    directory.
    With 6.1, I have had some success running with the root directory different
    from the home directory. Here is a sample startup sequence, which sets
    the
    startup root to be other than the WebLogic home directory:
    Change to directory: c:\EJC61\wlroot
    WL_HOME: c:\bea\wlserver6.1
    java -Dbea.home=c:\bea -Dweblogic.RootDirectory=c:\EJC61\wlroot
    -Dweblogic.Name=appserver -Djava.security.manager
    -Djava.security.policy==c:\bea\wlserver6.1\lib\weblogic.policy
    -classpath c:\bea\wlserver6.1\lib\weblogic.jar weblogic.Server
    Unfortunately, I recently discovered a problem involving EJB transactions
    that could only be resolved when I moved my domain directory back under
    the
    WL_HOME directory. Basically, I couldn't use transaction=required in
    any
    but the standard directory setup. I have already sent word of this to
    BEA,
    but for the time being, I would suggest that you follow the standard
    setup
    until BEA verifies that they support and have tested alternate directory
    setups.
    "Ryan Planinshek" <[email protected]> wrote in message
    news:[email protected]...
    We have scripts that set up various directory structures on a virtualdrive(based
    on DEV/DEVTEST/PROD etc.) on the fly and I don't want to touch anythingin
    the
    Weblogic home.
    Basically I am just wondering if this "/config/domain_name/applications"directory
    is defined within an XML or some other properties file somewhere...
    "Charlie Crook" <[email protected]> wrote:
    Why would it matter?
    "Ryan Planinshek" <[email protected]> wrote in message
    news:[email protected]...
    Is it possible to configure WLS6.1 to use a directory other than"/config/domain_name/applications"
    as its default application directory.

  • No user other than root can login with Java Desktop System

    Dear guys,
    I have a issue with loging in Oracle Solaris 10 using X-Browser and need your help.
    I can login to console login using X-Browser but only root can login that use Java Desktop Release 3 and
    all rest user cannot login with the session use Java Desktop Release 3.
    I have tried to rename .dt directory to reinitialize the user's environment but still not work.
    Any person have occurred this problem ? Can u suggest me an idea to solve this :(
    Thx for all !
    Edited by: ThangTT on Jul 18, 2011 12:29 AM

    Dear Nik,
    You're right ;) but no solved the problem when I change permission for /tmp dir. :(
    Let I show to u the log from .dt/startlog
    $more .dt/startlog
    --- Mon Jul 18 16:40:22 ICT 2011
    --- /usr/dt/bin/Xsession starting...
    --- starting /bin/true
    --- Xsession started by dtlogin
    --- starting /usr/dt/bin/dtsession_res -load -system
    --- sourcing /oracle/home/.dtprofile...
    --- sourcing /usr/dt/config/Xsession.d/0010.dtpaths...
    --- sourcing /usr/dt/config/Xsession.d/0015.sun.env...
    --- sourcing /usr/dt/config/Xsession.d/0020.dtims...
    --- sourcing /usr/dt/config/Xsession.d/0030.dttmpdir...
    --- sourcing /usr/dt/config/Xsession.d/0040.xmbind...
    --- sourcing /usr/dt/config/Xsession.d/1001.swupnot...
    --- sourcing /usr/dt/config/Xsession.d/1099.br...
    /usr/dt/bin/Xsession[659]: /var/tmp/brlog: cannot create
    --- starting /usr/dt/bin/dtsearchpath
    --- starting /usr/dt/bin/dtappgather &
    --- starting /usr/dt/bin/dsdm &
    --- session log file is /dev/null
    --- DTSOURCEPROFILE is 'true' (see /oracle/home/.dtprofile)
    --- execing /usr/dt/config/Xsession2.jds with a /usr/bin/bash login shell ...
    --- starting desktop on /dev/pts/10
    Oracle Corporation SunOS 5.10 Generic Patch January 2005
    Couldn't open /tmp/_sttyFile_fGaO1i
    /usr/dt/bin/Xsession[788]: 4518 Hangup
    X connection to 172.24.30.34:1.0 broken (explicit kill or server shutdown).
    Have any idea from u :(

  • JSLink not working when using any list ViewStyles other than default.

    Hi,
    I have a custom field and i am doing client side rendering of it using JSLink for ListView form. I started by applying the JSLink in custom field class.
    public override string JSLink
    get { return myJSLinkPath; }
    set { base.JSLink = value; }
    Everything seems to work fine and i can see my custom field get rendered properly. Till this point i was using the default sharepoint list view style. After sometime i decided to use the shaded listview style which is <ViewStyle ID="17"
    /> to get the alternating row color style in my list. After applying this style, my JSLink stopped working, infact it is not even registered on page now. I have tried different ways to set JSLink property like it is mentioned in the following link but it
    didnt worked.
    http://www.martinhatch.com/2013/08/jslink-and-display-templates-part-1.html
    So my question is, how to apply JSLink while using the shaded (or any other) viewstyle?

    Arham,
    When you register your display template, I'm guessing you're using both ListTemplateID and BaseViewID in the registration code?
    It's likely that the BaseViewID is different for the Shaded ViewStyle. You should still see your code registered on the page in the Head element, but when it runs I think the registration is getting ignored.
    Using the debugger in IE or chrome should allow you to step through the Display Template registration and double check what the value of BaseViewID should be.
    You can of course override this if you want, I use a similar method in a blog post on fixing the clash with multiple web parts and JSLink on a page which may help you.
    http://www.myfatblog.co.uk/index.php/2013/09/listview-web-part-issues-with-jslink-and-display-templates-a-solution/
    I'll give this a test on my dev environment when I get home and see if I get the same results when adding the JSLink through the webpart properties.
    ##EDIT##
    Ok, I tried this at home using a Field Display Template and it worked on all the different styles, however this was with the JSLink deployed through the list view web part properties, not declaratively in the field declaration.
    It does prove however that it's not the BaseViewID causing the problem.
    ##/EDIT##
    Paul.
    Please ensure that you mark a question as Answered once you receive a satisfactory response. This helps people in future when searching and helps prevent the same questions being asked multiple times.

  • USERS OTHER THAN ORACLE DEFAULT USERS IN DATABASE

    Hi,
    I want to get users other than default oracle users.I used the below query still i get default users
    select username from dba_users where username < >'SYS' ;
    DIP
    MDDATA
    ORACLE_OCM
    SCOTT
    SYSMAN
    CTXSYS
    DBSNMP
    EXFSYS
    XDB
    SI_INFORMTN_SCHEMA
    ANONYMOUS
    DMSYS
    WMSYS
    ORDSYS
    OLAPSYS
    ORDPLUGINS
    MDSYS
    MGMT_VIEW
    SYSTEM
    OUTLN
    I want users that are created how to get that.
    Pls help me with the query.
    Thnx

      1* select username, created from dba_users order by 2
    SQL> /
    USERNAME                 CREATED
    SYSTEM                      15-AUG-09
    SYS                      15-AUG-09
    OUTLN                      15-AUG-09
    DIP                      15-AUG-09
    ORACLE_OCM                 15-AUG-09
    DBSNMP                      15-AUG-09
    APPQOSSYS                 15-AUG-09
    WMSYS                      15-AUG-09
    EXFSYS                      15-AUG-09
    CTXSYS                      15-AUG-09
    ANONYMOUS                 15-AUG-09
    USERNAME                 CREATED
    XDB                      15-AUG-09
    XS$NULL                  15-AUG-09
    MDSYS                      15-AUG-09
    ORDSYS                      15-AUG-09
    SI_INFORMTN_SCHEMA            15-AUG-09
    ORDDATA                  15-AUG-09
    ORDPLUGINS                 15-AUG-09
    OLAPSYS                  15-AUG-09
    MDDATA                      15-AUG-09
    SPATIAL_WFS_ADMIN_USR            15-AUG-09
    SPATIAL_CSW_ADMIN_USR            15-AUG-09
    USERNAME                 CREATED
    SYSMAN                      15-AUG-09
    MGMT_VIEW                 15-AUG-09
    APEX_030200                 15-AUG-09
    APEX_PUBLIC_USER            15-AUG-09
    FLOWS_FILES                 15-AUG-09
    OWBSYS                      15-AUG-09
    OWBSYS_AUDIT                 15-AUG-09
    SCOTT                      15-AUG-09
    IX                      07-MAY-10
    BI                      07-MAY-10
    SH                      07-MAY-10
    USERNAME                 CREATED
    HR                      07-MAY-10
    PM                      07-MAY-10
    OE                      07-MAY-10
    DBADMIN                  07-MAY-10
    BONGO                      22-MAY-10
    USER1                      30-AUG-10
    SAM                      29-SEP-10
    40 rows selected.
    SQL> SELECT USERNAME FROM DBA_USERS WHERE CREATED > TO_DATE('2009-09-09','YYYY-MM-DD');
    USERNAME
    USER1
    BONGO
    DBADMIN
    HR
    SAM
    OE
    SH
    PM
    BI
    IX
    10 rows selected.
    SQL> still confused?
    Handle:      newbie
    Status Level:      Newbie
    Registered:      Jul 1, 2010
    Total Posts:      57
    Total Questions:      44 (40 unresolved)
    so many questions & so few answers.
    Edited by: sb92075 on Oct 14, 2010 10:15 AM

  • Use printer other than default?  how to hard code it?

    Is it possible to make application to use specific printer but other than default? may be hard code it into application code?
    For example I know the name of print service(the PATH to configured printer) and I want my application to use THAT printer most of the time. how can make it so that my application uses one printer which is other than default..
    printDialog is not a good solutionin in my case I think because user might have 15 printers configured on his machine! and I do not want him to scroll PrintServices combobox looking for needed printer... why not show only 2 or printers out of 15?
    or in my case I think it is even better to hard code couple of configured printers in an application code so that I user does not get tired of working with printDialog window every time he needs to print. When my application is released to client it will be used especially for printing porposes of one particular document so he does not need to see margins and printer settings everytime.

    Basically the print dialog should offer this function without you having to code it. I don't know on Windows but on my Mac you can select printers other than default and get the computer to remember them.

  • Is there a way to change the color of the Bezier Curves and points to a different color other than black  I find it perplexing while setting points and curves working on a photo that needs to be separated from it's background for placement on transparent

    Is there a way to change the color of the Bezier Curves and points to a different color other than black  I find it perplexing while setting points and curves working on a photo that needs to be separated from it's background for placement on transparent backgrounds. Any thoughts?

    Yes. Well, sort of: instead of a "path", set the pen tool to "shape" in the tool properties. Then set the fill colour to transparent, and the stroke colour to the colour you want. You can also set the stroke width.
    Not perfect, but at least you can see the path more clearly - the anchor points and handles still remain the default colour. Open the path panel, and right-mouse click the path shape to create a selection based on that shape. The Paths panel menu also allows you to create work paths based on that shape.
    Unfortunately when you try to move the handles the black thin outline appears again until you release the mouse button.
    This is one of several things that works better in Photoline: in Photoline, once the path is set to a specific colour, editing the path uses the actual colour and stroke width. which is extremely handy for creating path based selection with awkward background colours and/or a high resolution screen. In Photoline the handles and bezier points are also much, much larger, which makes it rather simpler to work with as well - especially on a higher resolution screen. And when selected the handles and points are a clear red with a black outline - again easier to spot and identify. I just works better, in my opinion.

  • How to create user other than 'sa' to connect database server in SAP SBO

    I want to ask how the step for create user other than 'sa' to connect database server in SAP SBO? Until now I use 'sa' (default) for connect to database server in SAP SBO application.
    Can I do that?

    You may create multiple SQL users to give full right to B1 database instead of using 'sa' user.
    However, the preferred way would be by Use Trusted connection when you set the connection to SQL Server. In this way, you just need one more user for SQL.  A group of window users could use this SQL access to connect database server.
    Thanks,
    Gordon

  • HT201622 How do I install apps on a new iPhone 6 that uses a different Apple ID than the one used to purchase the apps?

    How do I install apps on a new iPhone 6 that uses a different Apple ID than the one used to purchase the apps?

    Sign in to the iPhone or connect the phone to the computer and sign into the store using the original ID and download the apps to the phone?

  • I need help with color pallette in iPhoto 11. I have created a book and would like to use a different color background than those given in "background." I have found the color palettes but can't seem to incorporate them into my backgrounds palette.

    I need help with color pallette in iPhoto 11. I have created a book and would like to use a different color background than those given in "background." I have found the color palettes but can't seem to incorporate them into my backgrounds palette.

    That is not a feature of iPhoto - suggest to Apple - iPhoto Menu ==> provide iPhoto feedback.
    Additionally I have no idea what you are saying here
    I have found the color palettes but can't seem to incorporate them into my backgrounds palette.
    And it always helps for you to dientify the version of iPhoto that you are using
    LN

  • I need to purchase an app using a different credit card than the one on my account how do I do it

    I need to purchase an app using a different credit card than the one on my account how do I do it?

    Hello Dylanshopes,
    It sounds like you would like to use different payment info than what is currently associated with your account. This article will help you change that information named:
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/ht1918
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • How to install adobe X or XI in a directory other than default.

    Please,
    I need install Adobe reader in a diferent directory of default.
    How to install adobe X or XI in a directory other than default.
    best Regards.

    What OS? Why are you trying to install i a different directory. No matter what directory you install in, quite a bit must be installed on the boot drive. If you are running out of hard drive space, it is time to get a new hard drive.

  • Use a different SSO Server than the one specified during install.

    Hello,
    I found on documentation that OAS Portal Configuration Guide would tell me how to use a different SSO Server than the one specified during install. I need to tell an existing Portal installation to use a new Identity Management infrastructure server I installed.
    However, documentation does not mention anything related to that. It states that ptlconfig would do the trick, but ptlconfig instructions are not clear on how to accomplish this.
    Could anyone that has done this before, help me out? Thanks in advance...

    Hello jlubbers,
    That is exactly what I am talking about, the ptlconfig does not model SSO components. So I assume it is incorrectly referenced on several points of documentation as a tool to work with SSO parameters or configuration.
    I need to know how to tell my Portal to look at the new SSO server. If someone has done it before, please let me know.
    Thanks again.

  • Huge volume of records are routing to the remote user other than his position and organization records. Synchronization and DB initialization taking more time around 36 hours.

    Huge volume of records are routing to the remote user other than his position and organization records. Synchronization and DB initialization taking more time around 36 hours.
    Actual accounts & contacts need to be route around 2000 & 3000 but we have observed lakhs of records routing into local DB.
    We have verified all the Assignment Rules, Views.
    We ran docking object visibility rules and we have observed that some other accounts are routing due to Organization rule passing. (these records are not supposed to route).
    Version Siebel 7.7.2.12,
    OS Solaris.

    let me know what would be the reason that 1st million takes only 15 minuts and the time goes on increasing gradually with the increase of dataYes that's a little strange. I only can guess:
    1. You are in archivelog mode and the Archiver is not able to archive the redo logs fast enough
    2. You don't use Direct Load and DBWR ist not able to write the direty block to disk fast enough. You could create more DBWR processes in that case.
    3. Make a snapshot of v$system_event:
    create table begin as select * from v$system_event;After the import run
    create table end as select * from v$system_event;Now compare the values:
    select * from begin order by TIME_WAITED_MICRO descwith the values given you by
    select * from end order by TIME_WAITED_MICRO descSo you can look where your DB spent so much time waiting for something.
    Alternativly, you could start a 10046 trace on the loading session and use tkprof.
    Dim

  • A new account was created on Behance when I signed in with my Adobe ID. My Adobe ID uses a different email address than my original Behance sign in email address. How do I access my original Behance account?

    A new account was created on Behance when I signed in with my Adobe ID. My Adobe ID uses a different email address than my original Behance sign in email address. How do I access my original Behance account?

    Hi – I’m resending you the instructions I got from Adobe-Sarah below again.
    Nancy
    Sarahktrapp at Adobe sent me instructions on how to access my original account on behance. Please read all of this because it did not work completely the way she told me.
    Phase 1:
    Sarah’s from Adobe Instructions:
    Thanks for getting in touch. Your Behance account (be.net/yourname) is connected to the Adobe ID ( your original behance email address), so this is what you'll need to use to login.
    Please click login, click the Adobe ID button, and enter ( your original behance email address) and your Adobe ID password.
    If you'd like to link your Behance account with a different Adobe ID, after you're into your account, you can visit this page and choose "link to a different Adobe ID:" https://www.behance.net/portfolio/promote
    Phase 2:
    My results and what I reported back to Sarah at Adobe:
    I followed your instructions, but it did not work for me. I clicked login, and then clicked the Adobe ID, I entered ( my original behance email address) and my Adobe ID password. When I clicked Sign In a message says “The Adobe ID and password do not match. Please try again.” I then tried logging in by clicking the Adobe ID, added the (my original behance email address) with my password I used on the original Behance account. The Adobe ID asked my birthdate and it seemed to work. Not sure how it worked, but thanks.
    I hope this helps you.
    Nancy

Maybe you are looking for