Baisc Aqualogic Interaction SSO mechanism

I have a basic question on how the aqualogic interaction SSO works. I see an Authentication SOurce SSO, but i dont understand which repository it connects to. How it generates the Login Token. Can i use the features of authentication service outside the portal by calling some API.

JetTang,
1. The administrator cannot access the process. It is strange, but the administrator cannot have access to your process project. you need to assign another user to access the project without admin right in the portal and in OBMP.
2. try to restart your OBMP service and Identity services, and the engine.
3. If you disable the sso, you can't just access workspace stand alone and see your process, it is not as simple to switch.
What version of ALUI and OBMP are you using?
-Lilach

Similar Messages

  • Aqualogic Interaction & IIS - FATAL: ResourceManager i18n Strings Load

    Hi, I'm having access issues in initial startup of AquaLogic Interaction on IIS. The error seems to indicate that the IIS user does not have access to the folder which contains the i18n resources. I've verified that this user does have this access and still get this error. Any ideas what else could be the problem? Thanks!
    Diagnostic system initialization OK.
    Portal Startup begins: 15 total tasks.
    Recommendations follow:
    ResourceManager i18n Strings Loading Error (.NET)
    RECOMMENDATION: This indicates an installation error, folder access
    rights issue, corrupt i18n XML files, or incorrect customer
    implementation of additional language support. Since this is
    .NET you should first check that the IIS anonymous user has full
    access to the i18n settings folder. To isolate other causes of
    this issue, try enabling debug mode in portalconfig.xml (set the
    DebuggingMode setting to 1) and restarting your portal. This
    enables the i18n diagnostic unit tests, which should then output
    more detailed errors to ptspy.
    More Detail:
    Problem loading resource file
    "C:\bea\alui\ptportal\6.5\i18n\\de\ptmsgs_portaladminmsgs.xml":
    Access to the path
    'C:\bea\alui\ptportal\6.5\i18n\de\ptmsgs_portaladminmsgs.xml'
    is denied.

    "I installed ALUI 6.5 .Net version. on Windows XP".
    Don't Think ALUI 6.5 is supported on XP. Try installing on a supported platform.
    http://edocs.bea.com/en/alui/ali/docs65/AquaLogicInteraction_win_InstallationGuide_6-5/ref_win_softwarerequirements.html
    Component :
    AquaLogic Interaction Host Machine
    Requirement :
    Microsoft Windows Server -2003 SP1 or R2, SP2, on x86 , 32–bit only.
    Cheers!!!

  • Aqualogic Interaction support for Z/Os

    Hi,
    I am new to this portal community and i'm doing some research on Aqualogic Interaction. Can anyone tell me if it supports Z/Os. I could not find any information on this. It does run on WAS which supports Z/Os, so can there be any integration ? Any ideas or support is appreciated.
    Thanks in advance,
    Deepblues

    Hi,
    Normally listener version is same as DB, but that have several exceptions.
    Logon to DB server, with OS user who is owner of DB.
    I expect that all required environment variables are already set, execute below statement.
    lsnrctl status
    if this throws error
    lsnrctl status <listener_name>
    this will give you status of listener, on the first line of output of the command, you will get version of Listener.
    FYI...any DB can have listener with same or higher version than DB and you need to install full Oracle binary to get the listner of that version.
    Rahul

  • Where i will find the documentation on aqualogic interaction

    Hi ,
    I have to install the Aqualogic Interaction , Publish server , Colloboration server ,Analytic server ,Studio server ,SQL server 2005, Weblogic Application server . Portal will access the 50000 users in concurrently.so what should be the my system configuration.
    So please tell me any documentation regarding on this.
    With Regards
    Siva

    when you download the install files from portal.plumtree.com they will include all of the documenation within the zip file.

  • AquaLogic Interaction support of SAML v2.0

    Hi,
    We are trying to perform perimeter SSO to the portal (AquaLogic Interfaction) using SAML v2.0.
    Does anyone know whether this is supported? Can this be done by running ALI on top of WLS 10.3?
    Thanks in Advance.
    Regards,
    eRic

    Hi Michael,
    I followed same document....Installed webserver...downloaded AM WAR........Deployed WAR....Then accessed amserver..It took me to configurator.jsp...where it ask for params and also we have to provide path to write AMconfig.properties....I installed webservre in C:/....and then deployed WAR...and provided D:/ ....in configurator.jsp...to write AMConfig.properties...Now in AM_CONFIGURATIIN_DIR I am providing same path that I provided in configurator.jsp(D:/) ....and It is saying no AM found........Can you provide me link of SAML setup that you used....because in my saml2setup.bat..I can see that it is looking for registries entries and reading AM_ROOT from registries later on in the java file reads the sam2silent file....I even tried to manipulate SAML2setup.bat and commented out registry checking and provided static value for AM_ROOT...In this case the installation moved forward..read the saml2silent file but showed me license page..but gain stuck while configuring it....
    Thanks
    Deepak

  • BEA AquaLogic? Interaction Collaboration Integration

    Hello,
    I'm trying to find a solution for integration of "BEA AquaLogic Interaction Collaboration" with "AquaLogic BPM Studio 5.7" without developing a custom JPD component.
    Basically I'd like to assign tasks on the community portal as part of the workflow.
    Can anyone recommend a product or document that would solve this problem?
    Thank you!

    ALUI does currently support Linux (both Red Hat & SuSE) with the the 6.0 SP1 version. The latest version (i.e. 6.1) will support Linux when the first Service Pack for 6.1 is released - tentatively scheduled for the first half of next year. ALUI 6.1 currently supports Windows, Solaris & AIX.
    ALUI 6.1 is aligned with how BEA licenses other products where the product is essentially available to download and install for an evaluation period for free. Previous versions of ALUI (including 6.0 SP1) are only available for download for paying customers or partners. Correspondingly, only paying customers or partners can log into the ALUI support site.
    The UI Customization Installer for 6.1 (for Windows) is currently available for download and eval from http://commerce.bea.com/showproduct.jsp?family=ALI&major=6.1&minor=0
    john

  • SSO between a Java EE application (Running on CE) and r/3 backend

    Hi All,
    Over the past few days I have been trying to implement a SSO mechanism between NW CE Java Apps and R/3 backend without any success. I have been trying to use SAP logon tickets for implementing SSO.
    Below is what I need:
    I have a Java EE application which draws data from R/3 backend and does some processing before showing data to the users. As of now the only way the Java App on CE authenticates to r/3 backend is by passing the userid and pwds explicitly. See sample authentication code below:
    BindingProvider bp = (BindingProvider) myService;
    Map<String,Object> context = bp.getRequestContext();
    context.put(BindingProvider.USERNAME_PROPERTY, userID);
    context.put(BindingProvider.PASSWORD_PROPERTY, userPwd);
    Now this is not the way we want to implement it. What we need is when the user authenticates to CE ( using CE's UME) CE issues a SAP logon ticket to the user. This ticket should be used to subsequently login to other system without having to pass the credentials. We have configured the CE and Backend to use SAP logon tickets as per SAP help.
    What I am not able to figure out is: How to authenticate to SAP r/3 service from the java APP using SAP logon tickets. I couldnt find any sample Java  code on SAP help to do this. (For example the above sample code authenticates the user by explicitly passing userid and pwd, I need something similar to pass a token to the backend)
    Any help/pointers on this would be great.
    Thanks,
    Dhananjay

    Hi,
    Have you imported the java certificate into R/3 backend system ? if so.
    Then just go to backend system and check on sm50 for each applicaion instance of any error eg.
    SM50-> Display files (ICON) as DB symbol with spect.(cntrlshiftF8)
    You will get logon ticket details.
    with thanks,
        Rajat

  • SSO via Windows authentication for a BSP application

    Hi,
    is it possible to configure/implement a bsp-application, so that the user of the application is authenticated in the SAP system through the windows user (without entering the user or password). I search for a mechanism, that is like the SSO mechanism in the SAP EP. We don't have SAP EP, neither we have a java stack installation.
    Exists a way to implement this scenario?
    My idea was it, to use the same functionality, like in the SAP GUI, when configuring SSO. Unfortunately I don't find any hints about this topic.
    Regards,
    Thomas

    One best way is to embed the BSP page in the iview of the EP. As your are telling EP is not available i think there is no other way around.

  • SSO and external applications

    Hello folks,
    Due to my inexperience with PS6, I'm looking for some high-level outline that will help me look in the right places and understand things better here.
    I have an external application that requires authentication via a web form (or by attaching the username and password on the URL as parameters).
    What I want to do is have a channel of this application and utilize information from the SSO mechanism to redirect the request to that remote app and provide the credentials for a transparent login.
    From what I understand this can be done by having a servlet in that channel to retrieve the credentials of the user for that remote application from the SSO and then redirect to the external application, attaching the credentials to the URL.
    Is the above correct? I would appreciate any pointers or considerations since my experience with PS is minimal.
    Thanks in advance,
    Manos

    I don't see a way to that servlet to retrieve a password for the user - it's not stored in the session.
    There are following options:
    1. OpenText LiveLink way: You have some "hidden" password for every user (based on user's ID and a shared key) known only to your server and this servlet. Servlet will supply this password.
    2. Normal way - web server: Implement login module to this application, which will trust REMOTE_USER variable provided by the agent on the web server.
    3. Normal way - standalone app: Implement login module to this application which will validate DSAME session cookie on the DSAME server. You can use example code in the SUNWam/samples/ of your server.

  • SSO E-Sourcing and SAP GUI for HTML

    Hi,
    We are trying to provide integration between SAP E-Sourcing and SAP ECC via the SAP GUI for HTML. From an E-Sourcing project, we should define a link which will link us to the report via SAP GUI for HTML. Some parameters are automatically transferred via the URL so that the report will be prefiltered.
    The problem arises that we cannot create a SSO mechanism between SAP E-Sourcing and SAP GUI for HTML. The only documentation we can find is how to setup this SSO between the Portal and ESO (only included going from the EP to ESO). We need to find a way to do the opposite, i.e. SSO from ESO to SAP / EP.
    Thnx,
    Bram

    Dear Chong,
    I have came across the following information about SAP GUI For HTML
    With the version 7.02 / 7.20 of the NW Application Server
    the SAP GUI for HTML has been completely
    reworked.
    1.The rendering is now based on Unified
    Rendering which is also used by many other
    SAP UI technologies.
    2.Similar Look & Feel as other UI technologies
    3.Better Portal integration
    4.Full Theme support
    5.Unified client requirements
    But have not came across any note which converts the SAP GUI for HTML to SAP GUI for Windows in appearacne. I think the point 2 mentioned about says that in this version the SAP GUI for HTML will have appearnce like the other UI.
    Pls refer the [link|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d06db80d-ebf4-2a10-6b99-faa652c69d5c?QuickLink=index&overridelayout=true]
    Hope it helps.
    Regards,
    Samir

  • Aqualogic BPM tutorials

    Hi,
    I am new to AquaLogic BPM and so downloaded the ALBPMDesigner571_win.exe,
    ALBPMStudio571_win.exe,
    and
    ALBPMEnterpriseWL571_win.exe files.
    I already have Weblogic 8.1.5 installed on my laptop.
    I am looking for documentation to guide me along the installation process and tutorials to learn the AquaLogic BPM tool.
    Can anyone help me with the location of these tutorials?
    Any help would be highly appreciated.
    Thanks,
    Chuck

    Hi Guys
    I have some issues about the configuration and architecture of the BPM system.
    I've installed the following components:
    - ALBPMStudio572_win.exe
    - ALBPMEnterpriseWL572_win.exe
    - I have WLP 9.2 installed also.
    I created a sample project in Studio, exported it. I started BPM web applications, opened the process administrator console, created an engine which was a WL server, and successfully deployed the application made in studio.
    Now I would like to access to the web UI where I can start my sample process, allow users to access theirs tasks, etc. If I correct I have to install the workspace extension to have this UI.
    I started to install the following workspace extension:
    - ALBPMWorkspaceExtensions_5-7_MP2_win.zip
    which contains the Aqualogic Interaction Process 1.7 installer. After the installation I cannot access to the process administration console, I get the following error: "Request not gatewayed."
    If I start the 'ptids\1.2\bin\service.bat' but I get the following error: table PTSERVERCONFIG does not exist. I cannot find anywhere the sql creating that table.
    Could you help me out what's wrong on my side?
    Thanks a lot
    fifty

  • Installing Webcenter Interaction 10g in Solaris SPARC 32 ????

    Hi everyone:
    Im trying to install Webcenter Interaction 10g on solaris SPARC 32 bits but looking for the installation package in OTN http://edelivery.oracle.com/EPD/Search/get_form?results=1 It seems not supported for this plataform ... i'm right ??
    Only a version for aqualogic Interaction but I think that's not works for my development.
    I try to install a linux version and everything seems to went fine but when I try to run the config manager the shell programing detects the plataform with the command uname -s then the process "thinks" that it is on SunOS with 64 bits of course, and it can't go on.
    I appreciate any help from you.
    And lots of thanks in advance.
    Edited by: user11959610 on 19/02/2010 02:11 PM

    On Sun Sparc processor, WCI requires 64-bit OS (32-bit is not supported for Sparc):
    http://www.oracle.com/technology/products/webcenter/files/webcenter_interaction_10gr3_certification_matrix.xls

  • Any other alternative to SSO Cookies?

    Hi All,
    I am searching for option to SSO cookies. Domain restricts the cookies as SSO cookies are resident cookies, considering the security factor.
    To implement SSO , excluding User ID and Password, is there any other solution to go for SSO?
    Thanks in advance.
    _Pradnya

    Hi Pradnya
    The Enterprise Portal SSO mechanism is available in two variants depending on security requirements and the supported external applications:
    1. SSO with SAP logon tickets
    2. SSO with user ID and password
    Whereas SSO with SAP logon tickets is based on a secure ticketing mechanism, SSO with user ID and password forwards the user’s logon data (user ID and password) to the systems that a user wants to call.
    For further details on SSO please refer to the following link.
    http://help.sap.com/saphelp_nw04/helpdata/en/59/12f73b7803b009e10000000a114084/frameset.htm
    Hope that was helpful.
    Warm Regards
    Priya

  • Oracle WebCenter Interaction 10.3.0 Installation and start up error

    Hi,
    I am trying to install the Java version of Oracle WCI 10.3.0 on Windows 7. I know Windows 7 of not officially supported. I was able to successfully install on Windows XP using the installation wizard.
    However, for Windows 7 - I can't use installation wizard because when the wizard does not ask me to choose between Java and .NET installations, and by default it selects .NET. So, I had to use silent installation and was able to successfully install.
    I am getting the below error (logs from portalserver.log) when I try to start the WebLogic server or run the portal diagnostic tool.
    'weblogic.kernel.Default (self-tuning)'     com.plumtree.uiinfrastructure.diagnostic.reporter.Reporter     FAILED TO INITIALIZE SYSTEM. YOU CANNOT PROGRESS BEYOND THIS POINT. <ptLogMsgEnd>
    9-25-2011     20:12:04.664     Error     UI_Infrastructure     portal.CNU008092S-W7.kota.s     [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'     com.plumtree.uiinfrastructure.application.startup.CheckDevKit     Aqualogic Interaction's UI Infrastructure does NOT support this version: The detected Java JDK version is: 1.6.0_22 <ptLogMsgEnd>
    Does anyone have seen this type of error and know how to resolve?
    Thanks.

    I have been dealing with this for the past 2 weeks as well. It turns out that the diagnostics, and Weblogic (in my case) think that the portal is trying to run on an unsupported RedHat OS version. I was able to get around this by altering the following 2 files...
    I added the parameter: -Dos.name="windows 2003" This tels the OS check that it's running on Windows 2003. I found this little tip in the following link: http://www.function1.com/2009/12/running-wci-10gr3-on-windows-2008/ It talks about Windows 2008, but seems to work for Windows 7 as well.
    D:\oracle\Middleware\user_projects\domains\wc_domain\bin\startWebLogic.cmd
    if "%WLS_REDIRECT_LOG%"=="" (
         echo Starting WLS with line:
         echo %JAVA_HOME%\bin\java %JAVA_VM% %MEM_ARGS% -Dweblogic.Name=%SERVER_NAME% -Djava.security.policy=%WL_HOME%\server\lib\weblogic.policy %JAVA_OPTIONS% %PROXY_SETTINGS% %SERVER_CLASS%
         %JAVA_HOME%\bin\java %JAVA_VM% %MEM_ARGS% -Dos.name="windows 2003" -Dweblogic.Name=%SERVER_NAME% -Djava.security.policy=%WL_HOME%\server\lib\weblogic.policy %JAVA_OPTIONS% %PROXY_SETTINGS% %SERVER_CLASS%
    ) else (
         echo Redirecting output from WLS window to %WLS_REDIRECT_LOG%
         %JAVA_HOME%\bin\java %JAVA_VM% %MEM_ARGS% -Dos.name="windows 2003" -Dweblogic.Name=%SERVER_NAME% -Djava.security.policy=%WL_HOME%\server\lib\weblogic.policy %JAVA_OPTIONS% %PROXY_SETTINGS% %SERVER_CLASS% >"%WLS_REDIRECT_LOG%" 2>&1
    - And -
    D:\oracle\wci\ptportal\10.3.0\bin\diagnostic.bat
    rem Start the command-line version tool
    "%PT_HOME%\%JRE_PATH%\bin\java.exe" -Dos.name="windows 2003" -Xms16m -Xmx512m -cp "%LIB_DIR%\diagrun.jar" com.plumtree.diagtool.diagnostic_net %*
    goto end
    Also, note that you probably had to install the components in silent mode. This did not install all the services correctly. I was able to get around this by going back into the installation, and choosing the individual components to install. The a link above also mentions the config manager, and how to get this working as well.
    Hope this helps!!

  • Calling UCM 11g web services with SSO

    Hello, I have read the documentation about Single Sign-On in UCM 11G but I haven't understood how I could use SSO on UCM 11g web services calls.
    The document I have read is
    [http://docs.oracle.com/cd/E15586_01/doc.1111/e10792/c03_security.htm]
    and I only see info about SSO when using "Windows Native Authentication" (WNA).
    I have to send soap calls from applications deployed in other application servers and use the SSO mechanism.
    Does anyone knows how can I configure UCM and weblogic?
    Thank you very much in advance!
    Regards.

    Hi ,
    If you are looking to use the WSDL to execute ucm services then use SoapUI IDE on development , there it requires only the http authentication method .
    Let me know if this is the actual requirement which you were looking for or if I have missed the point .
    I use this to quickly test WSDL and verify if the service being invoked is actually correct or not .
    Thanks,
    Srinath
    Edited by: Srinath Menon on Apr 26, 2013 11:32 AM

Maybe you are looking for

  • Thunderbird re-downloads my messages over and over upon opening

    I am a recent adopter of TB running v.31.2.0 OS is: Yosemite OSX 10.10 The server I am connected to is an IMAP (Outlook) account (The Outlook account is aslo connected with ios 8 mail on an iphone 5s) Nearly every time I open TB from closed, it re-do

  • Populating dynamic internal table

    Hi All, I've created a dynamic internal table the issue is that the data is to be entered in it from 2 different tables so ... is their any way we can read the internal table field names ... or any other way to populate data in it ...

  • Question about syncing albums with Facebook

    I have Aperture set up so I can publish albums to my FB account.  However, everytime I open Aperture and it goes to sync with FaceBook, it copies all my photos I have on Facebook that I don't have in Aperture into my library.  For example, all the pi

  • Min & Max level

    Hi My client insist on the maintenance Min & Max level at storage location, however i can not maitain in standard MM. If i develop a separate application for maintaing Min & Max level what will be the effects on MIGO when i do Issue or Receipts. In t

  • HT4528 why does plugging iphone 4 into PC thru USB disable computers wireless adapter?

    why does plugging in iphone 4 to PC it is authorized on cause the computers wireless adapter to shutdown? Don't recall changing anything on either one, but did do some updates on windows update.