SSO to a weblogic application via a header variable, possible?

Hi
Is it possible to provide single sign on to a weblogic application via a header variable?
We would like to follow a similar model to what's used with OC4J at:
http://download.oracle.com/docs/cd/E10761_01/doc/oam.1014/e10356/osso.htm#BJFJBCHB
Any feedback is appreciated.

Yes this is possible via a custom Identity Assertion Provider if you are using Weblogic security. You can write the J2EE provider to extract the header and map the user to a LDAP user when you configure the authentication provider to use the same user store as OAM.

Similar Messages

  • SSO to other apps via HTTP header variable

    We are on NW EP6.0 SP16. We need to add the "user id" as http header variable so that other apps which are non SAP can access our header variable and log on with that user id. Is this available by default? Or we want to achieve this how best we can achieve this.
    We can use the code to get the user id and add it to header variable. If we use this route which is the jsp page we need to add the code?
    Thanks

    Hi,
      we can you login modules provided by SAP to accomplish this.. you can use header variable authentication login module to acheive your requirement.
      please refer: http://help.sap.com/saphelp_nw04/helpdata/en/8f/ae29411ab3db2be10000000a1550b0/frameset.htm
    Hope that helps.
    Regards,
    S.Divakar

  • Calling a web dynpro application via portal using SSO

    Hello Expert,
    i have a requirement where i need to call a web dnpro application via portal.
    But it is asking for user name and password.
    i want to call using single sign on.
    Can u please suggest a way.
    i did the coding like this:-
    CALL METHOD cl_wd_utilities=>construct_wd_url
    EXPORTING
    application_name = l_c_appl_name
    IMPORTING
    out_absolute_url = l_v_gv_url_string.
    l_v_icf_url = l_c_icf_url_val.                      "#EC SYNTCHAR
    CALL METHOD cl_icf_tree=>if_icf_tree~service_from_url
    EXPORTING
    url             = l_v_icf_url
    hostnumber      = l_c_0
    authority_check = space
    IMPORTING
    icfactive       = l_v_m_sso_active.
    IF l_v_m_sso_active = l_c_x .
    CREATE OBJECT o_viewer
    EXPORTING
    parent = o_empty_co.
    CALL METHOD o_viewer->enable_sapsso
    EXPORTING
    enabled = l_c_x
    EXCEPTIONS
    OTHERS  = 0.
    l_v_gv_url_c = l_v_gv_url_string .
    CONCATENATE l_v_gv_url_c l_c_url_string p0022-pernr INTO l_v_gv_url_c.
    CALL METHOD o_viewer->detach_url_in_browser
    EXPORTING
    url        = l_v_gv_url_c
    EXCEPTIONS
    cntl_error = 1
    OTHERS     = 2.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
    RAISING error_occured.
    ENDIF.
    cl_gui_cfw=>flush( ).
    ENDIF.
    but it is not working
    thanks
    Mahesh

    Hi Mahesh,
    You need to setup a Single Sign On between SAP Portal and ECC system where yoy are doing the development.
    Ask basis team to setup the single sign on and usually this is the job done by Basis teams. Refer the below link to get some idea on SSO setup:
    http://scn.sap.com/community/enterprise-portal/blog/2013/12/15/sso-configuration-between-sap-portal-73-and-ecc-60-ehp-6
    Thanks
    Krishna

  • Single-Sign-On (SSO) configuration on JAVA Stack through HTTP Header method

    Hello SDN community,
    in the context of a Proof of Concept, we are testing the integration of Microsoft Sharepoint Portal with SAP Backend (addin) systems.
    As the architecture impose use an external scenario (access from the internet), we couldn't use the Kerberos (SPNego) solution and thus we chosed the http header solution which in short uses an intermediary web server (in this case the IIS of the MOSS solution) which will act as authority.
    I miss information on how the workflow works for this http header authentication method. Through the visual administrator of the addin JAVA stack, it is possible to configure each application with a customized authentication (a choice of security modules). But this all that I know.
    My task is to configure SSO. From a sharepoint portal, the user should be able to access Web Dynpros and BSPs. I imagine that the very first call to a webdynpro or bsp (or maybe when we log on the sharepoint portal), the request to the WDP or BSP will first be forwareded by the intermediary server to the JAVA stack (or is it the SAP dispatcher that has to be configured).
    Is there an application to be built on the java stack to deal with the authentication, modify http header?
    What will the Java stack return? a sap long ticket? a token?
    How will the redirect work (to by example a BSP which is in the ABAP stack)?
    SAP preconise to secure with SSL the link between the intermediary web server and the JAVA stack, is IP restriction also a solution?
    A lot of questions about how this SSO http header should work,
    I would be very greatful for any help, or info,
    Kind regards,
    Tanguy Mezzano

    Hi Tanguy,
    to tell you the truth I'm really unsure about what you are trying to achieve. When I started posting to your thread I thought all you wanted was trying to access your J2EE engine via Browser and authenticate against the engine using HTTP Header Variables. Nevermind:
    Here are some answers to your question:
    in fact I did succeed, the problem was that even after domain-relaxation done by the J2EE, I had to change the domain of th SAP cookie to the bbbb.domain.com to be understood (I would have thought that all hosts in/under domain .domain would have accepted such a cookie but it seems that no...).
    The server does not care about the domain because Cookies in an HTTP Request do not contain any domain information. The domain is just important when the Cookie is set by the server so your Client (Browser) will know in which cases the Cookie may be sent or not. So if your domain is xxx.yyy.domain.com and your cookie is issued to .domain.com then your Browser will definitely sent it to all hosts under .domain.com (This includes xxx.yyy.domain.com etc.)
    My current scenario is: in a first request get a SAP Logon Ticket from the Java Stack, then change its domain and then directly call the backend with it.
    You can do that but there is no Client involved in this scenario. So this is useful if you just want to test the functionality (e.g. authentication to J2EE using Header Variables (This works finally!!!) and then use the fetched Logon Ticket to test SSO against any trusted Backend!!)
    So everything's is in a Java Client application without using any redirection.
    If I understand you, you're solution is from the Browser call a servlet (which is deployed on the Java Stack and has no authentication schema) by passing to it our http header.
    No, you should initially authenticate somewhere! I thought that maybe you had some resource you access before accessing the Java Stack. This could be any application (e.g. deployed on a Tomcat or JBOSS or other server or if you like even SAP J2EE). After authenticating there you are aware of the username and could use it to  procceed (e.g. Authenticate against the J2EE using the same user and HTTP Header authentication for that particular user!)
    That servlet will transfer the http header (with the HttpClient app) in order to get from the Java Stack a SAP Logon ticket, and then to redirect to the resource and by sending back the cookie in client browser. Am I correct?
    This was just a suggestion because I realized that there was no Client ever involved in any of your testing (looked strange to me!). I was just thinking that it would be easier for you to just get the Cookie into your Browser so your Browser would do the rest for you (in your case finally send the Logon Ticket Cookie to your Backend to test SSO using Logon Tickets!).
    The AuthenticatorServlet somehow serves as a Proxy to your client because your client is not able to set the Header Variable. That's why I initially suggested to use a Proxy (e.g. Apache) for that purpose. The problem is just that if you use a Proxy you will have to tell it somehow which username it should set in the Header Variable (e.g. using a URL Parameter or using a personalized client certificate and fetch the username (e.g. cn=<username> from the certificate!)
    This way of doing would simplify the calls for sso for each new application needing authentication, instead of having all code each time in it...
    I'm stuck again! Do you want to authenticate an End User or do you want to authenticate an application that needs to call any resources in your Backend that requires authentication?
    So my problem now, is how to call the servlet from the client browser:
    I'm trying to call my servlet from the browser but I don't succeed. I am able to understand how to reach a jsp from the Java Stack, but not to reach a servlet. I don't find the path to my servlet:
    <FORM method="POST" action="SSORedirect2" >
    A JSP is a servlet too. There is just no JAVA Class involved!
    You do not need any POST Request to invoke a Servlet.
    I see that my servlet is deployed, but I don't how what path to give to my form to invoke the servlet, here follows my web.xml
      <?xml version="1.0" encoding="UTF-8" ?>
      <!DOCTYPE web-app (View Source for full doctype...)>
    - <web-app>
      <display-name>WEB APP</display-name>
      <description>WEB APP description</description>
    - <servlet>
      <servlet-name>SSOredirect2</servlet-name>
      <servlet-class>com.atosorigin.examples.AuthenticatorServlet</servlet-class>
      </servlet>
    - <servlet>
      <servlet-name>SSORedirect2.jsp</servlet-name>
      <jsp-file>/SSORedirect2.jsp</jsp-file>
      </servlet>
    - <security-constraint>
      <display-name>SecurityConstraint</display-name>
    - <web-resource-collection>
      <web-resource-name>WebResource</web-resource-name>
      <url-pattern>/*</url-pattern>
      <http-method>GET</http-method>
      <http-method>POST</http-method>
      </web-resource-collection>
    - <auth-constraint>
      <role-name>DefaultSecurityRole</role-name>
      </auth-constraint>
      </security-constraint>
    - <security-role>
      <role-name>DefaultSecurityRole</role-name>
      </security-role>
      </web-app>
    If you have an AuthenticatorServlet Class all you need is to add the Servlet Mapping in your web.xml file
    e.g.
    <servlet>
      <description>
      </description>
      <display-name>AuthenticatorServlet</display-name>
      <servlet-name>AuthenticatorServlet</servlet-name>
      <servlet-class>com.atosorigin.examples.AuthenticatorServlet</servlet-class>
    </servlet>
    <servlet-mapping>
      <servlet-name>AuthenticatorServlet</servlet-name>
      <url-pattern>/AuthenticatorServlet</url-pattern>
    </servlet-mapping>
    You can directly call the Servlet in your Browser by calling the URL provided in the url-pattern of your Servlet mapping ( in this case /AuthenticatorServlet). The engine will invoke the Class "com.atosorigin.examples.AuthenticatorServlet" in the background and do whatever you defined there!
    I have also to pass my http header and the redirectUrl in the GET request.
    If you like! I just suggested this for testing purposes. As I stated before you need a way to tell your proxy (or in your case AuthenticatorServlet) which user should be set when calling the Engine in order to authenticate using HTTP Header. You could use the URL Paramater to define the user you actually want to use when you set the Header Variable.
    I just introduced the redirectURL because you were talking about redirects all the time. So if you finally want to call the Backend you could define the Backend URL in the redirectURL Parameter and the Servlet will make sure that you are redirected to this location after the whole process!
    Thx for your input very helpful,
    But again 0 points
    Cheers

  • Sending Header Variables to Weblogic from OAM

    Hi,
    Iam integrating Webcenter with OAM. I want to send few header variables to Webcenter application like emailid,Organisation id,etc..
    I have configured OAM ID asserter in weblogic security Realms under Providers. I see a option called SSO Header Name which can hold only one value and Iam giving userid in that field. How to receive the remaining header variables from OAM??
    Please help!!!!!
    Regards
    Pavan D

    Hi,
    You have mistaken my question. I am able to send the headers on Authorisation success, but how to receive the variables in weblogic??
    --Pavan                                                                                                                                                                                                                                                                                                               

  • SSO to Microsoft based application

    Hi,
    I want to enabler SSO from Portal to an ASP application running on IIS 5.0 and Win2k.
    I have gone through the document "Using SAP Logon Tickets for SSO to Microsoft based web applications.
    I taken the Web Server Filter approach to enable SSO, have downloaded SAPSSOEXT.dll file and added it as a ISAPI filter in IIS server.
    Now the doc says "The name of the hhtp header variable can be specified using the parameter remote_user_alias in the filter configuration file".
    I have no clue how to go about doing this.
    If anyone has done something like this before, please help.
    Also please let me know if I am moving in the right direction.
    Thanks in advance.
    Vivek

    Have a look at this document: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/def/enabling single sign-on for asp.net applications in enterprise portal 6.article
    It describes it in more detail (we used it a bit different, and sent the authentication string as a parameter to a .net webservice and programatically verified it).
    Cheers
    Dagfinn

  • SSO to non SAP Application using SAP Logon Ticket

    Hi Experts,
    I Have EP 7 SP 15 using SPNego Wizard to SSO with Active Directory and SSO between EP and ECC using SAP Certificates.
    Now I have a demand to SSO some JAVA based applications (non SAP) to my portal using the SAP Logon Ticket.
    I Have followed some blogs that directed me to use SAPSSOEXT (some libs) to read the MYSAPSSO2 cookie. The problem is that I didn't found this cookie, I even executed the command javascript:document to look for this cookie but the browser just show me the JSESSIONID info.
    Does anybody knows where I can find this cookie or if there's a better way to set up this SSO? It´s necessary to say that I cannot SSO these application to the kerberos protocol because some security reasons on my company.
    Thanks
    Armando

    Hi,
    I dont have much info related but i can giv u hint
    refer OSS Notes 442401 and 723896.
    When using SAP logon tickets for non-SAP applications, two different implementation options are available. The difference lies in where the ticket verification takes place.
    In the first case,  the SAP logon ticket is submitted to the web server filter located on the web server. The web server filter verifies the portal serveru2019s public key
    certificate using its local Personal Security Environment (PSE) and then populates the HTTP header field with the user ID for SSO to the non-sap web application.
    In the second case,  the SAP logon ticket is sent to the non-SAP application, which then verifies it using the ticket verification DLL and submits the user ID to the application for SSO.
    You can refer following link :-
    http://help.sap.com/saphelp_nw70/helpdata/EN/89/6eb8deaf2f11d5993700508b6b8b11/frameset.htm
    user authentication and SSO
    http://help.sap.com/saphelp_nw70/helpdata/EN/8f/ae29411ab3db2be10000000a1550b0/frameset.htm
    Authentication Using a Directory with SSO Integration Using Logon Tickets
    http://help.sap.com/saphelp_nw70/helpdata/EN/f8/3b514ca29011d5bdeb006094191908/frameset.htm
    SSO
    SAP Logon Ticket-based Single Sign-On
    http://help.sap.com/saphelp_nwce10/helpdata/en/45/b6af743753003ae10000000a11466f/frameset.htm

  • SSO FOR NON SAP APPLICATIONS

    SSO for non sap applications in EP on which siteminder sso is integrated
    Posted: Aug 28, 2006 7:09 AM        Reply      E-mail this post 
    Hi ,
    we have implemented Siteminder on SAP PORTAL 6 SP16 for authentication.I would like to integrate non sap application in Portal.I could not find any documentaion for setting up non sap application's in portal on which siteminder external authentication is implemented.
    can anybody help for getting step by step document.
    diff rewards to be given

    Hi,
    if you have access to service.sap.com via S-User, you can download "SAP Enterprise Portal Security Guide" in the portal section. It has dedicated descriptions about SSO-Settings, also about netegrity.
    You can also search help.sap.com about "SSO" which gives you overview descriptions.
    On SAP Service Net, there is also an pdf "Integrating Security functions" in the Netweaver 2004s Portal section, where the description of the Java API for the PDK is included. This is very helpfull for coding.

  • CRM single sign on (SSO) to R/3 system via ITS 6.20

    Hi all
    I try to configue CRM2007 single sign on (SSO) to R/3 system via ITS 6.20.
    my configuraion process
    1. on CRM2007
    -profile : login/accept_sso2_ticket = 1
                  login/create_sso2_ticket = 2
    - t-code : strustsso2 --> export system PSE
    2. on R/3 system
    - profile : login/accept_sso2_ticket = 1
                   login/create_sso2_ticket = 0
    - t-code : strust --> import certification --> add certification list --> save
    - t-code : oss2 --> execute with crm rfcdestination --> all green.
    3. ITS
    ~appserver      r/3.domain
    ~client     
    ~clientcert      1
    ~cookies      1
    ~exiturl     
    ~hostsecure      itshost.domain
    ~hostunsecure      itshost.domain
    ~language     
    ~login     
    ~logingroup     
    ~messageserver     
    ~multiinstanceservices      1
    ~password     
    ~portsecure      443
    ~portunsecure      80
    ~routestring     
    ~runtimemode      pm
    ~systemname      R/3 SID
    ~systemnumber      R/3 system no
    ~theme      99
    ~timeout      600
    ~urlimage      /sap/its/graphics
    ~urlmime      /sap/its/mimes
    ~usertimeout      240
    ~xgateway      sapdiag
    ~xgateways      sapdiag,sapxgwfc,sapxginet,sapextauth
    ~mysapcomgetsso2cookie 
    ~mysapcomusesso2cookie  1
    ~mysapcomssonoits  1
    for SSO check, execute web ui and then log on web ui
    I go to the Interation center and then go to the ERP information.
    but ITS log on screen appear.
    crm user and r/3 user is same.
    how can I do ??

    You use Server Port 3600, message server.
    It means, while creating a system you used wrong template and picked "SAP system using dedicated application server".
    You should use "SAP system with load balancing", since message server is doing load balancing.
    Once you selected correct template you will see "Message Server" instead of App and GW servers.
    Make sure to fill in
    Group  - Logon group to use. If not defined in R3, use SPACE
    Message Server - ansapdev01
    SAP Client = 150
    SAP System ID <SID> = DEV
    Server Port 3600
    System Type = SAP R/3
    It should work.
    Regards,
    Slava

  • Problem in configuring SSO using SAML for applications hosted on diff m/c

    Hi Techies,
    I am stuck in a weird problem for past month or so without any resolution. Not much help by googling. So I hope i get the answer from the mouth of the horses -
    I am trying to use SSO using the sample application appA and appB as stated in the tutorial of SSO by BEA.
    I am summarizing the problem below -
    Steps followed for Configuring SSO using SAML
    1. Created 2 domains on 2 seperate machines namely domainA and domainB
    2. Source appliction is deployed on domainA and the target application is deployed on domaninB
    The steps mentioned in the following tutorial has been followed-
    http://dev2dev.bea.com/pub/a/2006/12/sso-with-saml.html
    3. As mentioned in the tutorial the certificate is generated using keytool utility. The same certificate is copied
    to WEBLOGIC_HOME/server/lib of destination machine.
    4. The certificate was successfully registered on desitnation or host 2 but while activating the configuration
    changes(SSL client Ientity Alias and SSL Client Identity Pass Phrase) for Federation services the following error
    is thrown -
    " SAMLBeanUpdateListener: SAMLKeyManager.prepareUpdate() failed with exception:
    weblogic.descriptor.BeanUpdateRejectedException: SAML key Manage failed to validate key (SSL Client) configuration
    in the FederationServicesMBean, key alias: testalias "
    The interesting bit of the problem is that the same configuration works on 2 domains created on same machine. The
    problem only occurs when domains are created on seperate machines.
    Alterative to the problem: when the certificate is generated seperately for domainB and copied to
    WEBLOGIC_HOME/server/lib, it works. However, the certificate generated in domainA should have been copied.
    Note: I am using Weblogic portal 9.2.1
    Any quick replies will be much appreciated. Thanks.
    Edited by saurabh.agrawal at 02/06/2008 2:01 PM

    Hi François,
    You are right about the use of the NameID format. But the issue here is/was that OIF at SP is integrated with OAM, and the authenticated user at OIF-SP and OAM will be the Anonymous user rather than the user who was identified at the IdP even though the remaining attributes sent are for the IdP user. I think these attributes can be used by with OAM for authorization using custom authorization plug-ins but haven't tried that one out.
    As for the attribute sharing profile, it's this one - http://www.oasis-open.org/committees/download.php/18058/sstc-saml-x509-authn-attrib-profile-cd-02.pdf, although for the life of me, I cannot remember why I suggested this in the first place!
    -Vinod

  • How to integrate Java SSO with Oracle Weblogic

    Hi,
    I am new to Oracle weblogic, but i want to do something like below.
    I want to use Oracle weblogic as application server and want to integrate Java SSO into it. I think we can do it using Oracle access manager but since OAM itself is massive drop this plan.
    I think we can use OC4j Java SSO into Oracle weblogic, but don't knw whether it is feasible.
    Can somebody please guide me solve this problem.
    Any suggestion or comment is most appreciated.

    weblogic docs (and there identity asserters) - http://one-size-doesnt-fit-all.blogspot.com/2008/12/configuring-wls-with-ms-active.html

  • How to Integrate HRMS with a 3rd party application via restful web services?

    Hi All,
    I am new to Oracle network and wanted to know how we can integrate Oracle HRMS with our external website via web services. I have already looked in PL/SQL APIs but that is not what i need but i want the integration to be web based like SOAP/XML or JSON.
    Thanks,
    Aqeel

    Hi
    Yes we have implemented SSO with 3rd party application running on IIS server (running on Windows 2003 server).
    Here you go the link
    http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/security/s-u/using sap logon tickets for sso to microsoft-based web applications.pdf
    forum
    /thread/11711 [original link is broken]
    DEMO
    https://www.sdn.sap.com/irj/sdn/developerareas/ep?rid=/webcontent/uuid/110ff05d-0501-0010-a19d-958247c9f798
    Cheers
    Jawahar Govindaraj
    PS:Reward pts

  • SSO to non SAP Application (ASP)

    We have followed the sample steps for SSO to non SAP Applications in ASP, but we're receiving the following results:
    Start SSO2TICKET main
    Version: SAPSSOEXT 2
    Ticket verifying failed. Return codes error=1 and ssf error=0
    Does anyone know what the problem is and how to solve it?
    Thanks!

    hi ive,
    u cn refer to this links.......these r  some of    the blogs that u cn go throu.its useful.
    <b>User Mapping-based Single Sign On,
    SAP Logon Ticket-based Single Sign-On>
    regards
    bhargava

  • Unable to SSO to Campus Solution Application from Enterprise Portal

    Hi all,
    i am using Peoplesoft HRMS & Campus Solution 9.0 on machine (cms1) and Peoplesoft Enterprise Portal 9.0 on machine (cms2). the peopletools version on both is 8.49.
    The database name for campus solution is HRCS9 and for portal is EPORTAL.
    after configuring nodes on both the databases when i try to SSO to my CS application from portal error screen appears "invalid User ID or Pasword"
    the logs from both the application servers are as follows:
    Portal Application Server log:
    PSADMIN.5032 (0) [11/10/08 19:23:16](0) Begin boot attempt on domain EPORTAL
    PSWATCHSRV.5380 (0) [11/10/08 19:23:25] Checking process status every 120 seconds
    PSWATCHSRV.5380 (0) [11/10/08 19:23:25] Server started
    PSAPPSRV.5392 (0) [11/10/08 19:23:31](0) PeopleTools Release 8.49 (WinX86) starting
    PSAPPSRV.5392 (0) [11/10/08 19:23:31](0) Cache Directory being used: C:\PA8.49\appserv\EPORTAL\CACHE\PSAPPSRV_2\
    PSAPPSRV.5392 (0) [11/10/08 19:23:36](3) (PublishSubscribe): PubSubSystem::InitializeServer(): Initialization succeeded.
    PSAPPSRV.5392 (0) [11/10/08 19:23:36](0) Server started
    PSAPPSRV.5456 (0) [11/10/08 19:23:36](0) PeopleTools Release 8.49 (WinX86) starting
    PSAPPSRV.5456 (0) [11/10/08 19:23:36](0) Cache Directory being used: C:\PA8.49\appserv\EPORTAL\CACHE\PSAPPSRV_1\
    PSAPPSRV.5456 (0) [11/10/08 19:23:37](3) (PublishSubscribe): PubSubSystem::InitializeServer(): Initialization succeeded.
    PSAPPSRV.5456 (0) [11/10/08 19:23:37](0) Server started
    PSSAMSRV.5500 (0) [11/10/08 19:23:37](0) PeopleTools Release 8.49 (WinX86) starting
    PSSAMSRV.5500 (0) [11/10/08 19:23:37](0) Cache Directory being used: C:\PA8.49\appserv\EPORTAL\CACHE\PSSAMSRV_100\
    PSSAMSRV.5500 (0) [11/10/08 19:23:37](0) Server started
    PSDBGSRV.5660 (0) [11/10/08 19:23:41](0) PeopleTools Release 8.49 (WinX86) starting
    PSDBGSRV.5660 (0) [11/10/08 19:23:41](0) Cache Directory being used: C:\PA8.49\appserv\EPORTAL\CACHE\PSDBGSRV_1\
    PSDBGSRV.5660 (0) [11/10/08 19:23:41](0) Server started
    PSADMIN.5032 (0) [11/10/08 19:23:43](0) End boot attempt on domain EPORTAL
    PSAPPSRV.5392 (1) [11/10/08 19:26:41 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=192641_5392.1, Token=PSFT_PA/2008-11-10-11.26.41.999750/PTWEBSERVER/ENG qQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4Adwg4AC4AMQAwABQbbEPz+6zLyPQKGNiShI90iiKus2kAAAAFAFNkYXRhXXicLYpNDkAwEEZfEUtLtyDV1N+SpOykQVg6hss5nNGYl7z5MvPdQBJHSsl+IsLknp0Tx8gmXjmCU8fCTOblOknjwjNgDVroKKiEz/rPJYZGbEPuAy21/HkBHRYNEw==
    PSAPPSRV.5392 (3) [11/10/08 19:26:45 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=192645_5392.3, Token=PSFT_PA/2008-11-10-11.26.45.999344/PTWEBSERVER/ENG qAAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4Adwg4AC4AMQAwABTwJg4srjPRJcaB+xCKfDz62SDcVWgAAAAFAFNkYXRhXHicLYpLDkBAEAXLJ5aWbkF8hrAkwU4mCEvHcDmH80x0JdX9XvoGwsD3PO3Hx01i2TkZGdjklcM5GlmYia3aSR8Xlh5TkouWlEJ8zv87o6SRDbXcOSolAy8dRQ0W
    PSAPPSRV.5392 (5) [11/10/08 19:26:49 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=192649_5392.5, Token=PSFT_PA/2008-11-10-11.26.50.000094/PS/ENG ngAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSSKFTlDSWX4An/BOAT06JahrlSGl4AAAAFAFNkYXRhUnicLYoxCoAwFENfa3H0JpZaqtTRQd2koLuTt/Rw/l/MgySEPIBrrDGSr6XKFU7alYOdTvvGxU1hIUWCkOkZBPXwd09kEh9l8fWlzCT4AAJnCh8=
    PSAPPSRV.5392 (31) [11/10/08 19:29:31 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=192931_5392.31, Token=PSFT_PA/2008-11-10-11.29.31.999829/PS/ENG mwAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABTzL4/qlLgyMb8tEqL+ecIQxTr7mlsAAAAFAFNkYXRhT3icLYgxDoAgEAQHJJb+RINgAaWF2hkS7a38JY/zuLiT7E72BVxnjZGtFo0rXPQbJwdD852bh8LKEvBCYmQWWvvfJwJZOqpnJenHBwPkCkI=
    PSAPPSRV.5392 (101) [11/10/08 19:32:55 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=193255_5392.101, Token=PSFT_PA/2008-11-10-11.32.55.999563/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSF5U6f9jcl+IXjYPYkFDP4uPL3M10AAAAFAFNkYXRhUXicLYgxDoAgEAQHJJT+RIIgRksLtTMk2lv5Sx/nQdxJdif7AKbRSsm+mhqTObErBztt8Y2Lm8zCEPDCREcvlPa/OyJBOgmOuZIY5eUDA7MKPQ==
    PSAPPSRV.5392 (127) [11/10/08 19:34:00 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=193400_5392.127, Token=PSFT_PA/2008-11-10-11.34.00.999829/PS/ENG nAAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABQFx3N1TnUPWz51nCxa1i9Q/xoGaFwAAAAFAFNkYXRhUHicLYkxDoAgEAQHJJb+RIJIAaWF2hkS7a38pY/zjriTzG6yD+A6a4z0a2lxlZN+5WBn0L1xcVNZSJEgZEYmQR3+7ZlJYv09pZGJYj4DQAo6
    PSAPPSRV.5392 (134) [11/10/08 19:34:26 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=193426_5392.134, Token=PSFT_PA/2008-11-10-11.34.26.999641/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABR/ru0ssiOhk5UPzOBClNrqwWWAw10AAAAFAFNkYXRhUXicLYhBCoAgFESfJi27SaEmUssW1S6E2rfqlh7OrzQP3gzzAabTSklnTYtJ3PQ7FydD3QcPL4mN4LHCwogTqu2/J2aC2BPFayPK46AAA7AKOg==
    PSAPPSRV.5392 (141) [11/10/08 19:34:58 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICScript](3) New authentication token detected from node PSFT_HR/2008-11-10-22.35.47.000234, no change needed for current session.
    PSAPPSRV.5392 (141) [11/10/08 19:34:58 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICScript](3) Returning context. ID=PS, Lang=ENG, UStreamId=193458_5392.141, Token=PSFT_HR/2008-11-10-22.35.47.000234/PS/ENG nAAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABRxo0+U3IHEtF9OLFkSVGTDW+/Im1wAAAAFAFNkYXRhUHicLYhLDkBAEETfjImlm5A2WriAz0oEeyu3dDg9E/WSV5V6gFB456xfT07YOSknNhaqtGcublYONCLGSE1rJMvvho7erAxmyUT7FD4EiAop
    PSAPPSRV.5392 (182) [11/10/08 19:45:06 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (182) [11/10/08 19:45:06 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (183) [11/10/08 19:45:12 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICScript](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (183) [11/10/08 19:45:12 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICScript](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (184) [11/10/08 19:45:16 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICScript](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (184) [11/10/08 19:45:16 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICScript](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (185) [11/10/08 19:45:16 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (185) [11/10/08 19:45:16 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (186) [11/10/08 19:45:19 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (186) [11/10/08 19:45:19 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (187) [11/10/08 19:45:21 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (187) [11/10/08 19:45:21 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (188) [11/10/08 19:45:23 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (188) [11/10/08 19:45:23 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (189) [11/10/08 19:45:26 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (189) [11/10/08 19:45:26 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (190) [11/10/08 19:45:29 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (190) [11/10/08 19:45:29 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (191) [11/10/08 19:45:30 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (191) [11/10/08 19:45:30 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (192) [11/10/08 19:45:32 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (192) [11/10/08 19:45:32 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (193) [11/10/08 19:45:35 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) PeopleSoft Token authentication failed: invalid token signature: PS@SAJJAD
    PSAPPSRV.5392 (193) [11/10/08 19:45:35 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICPanel](3) SwitchUser frame received invalid token, ignoring it. CtxUser=PS/ENG. Token: PSFT_HR/2008-11-10-22.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5392 (195) [11/10/08 19:46:11 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=194611_5392.195, Token=PSFT_PA/2008-11-10-11.46.10.999875/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABS0qpyQho8sgQmnp1cRCH5eiqUov10AAAAFAFNkYXRhUXicLYhBDkAwFERfq7F0E01JUUsL7KQJeyu3dDj/N+YlMy/zAK6yxsi+lhKXOalXDnYa9Y2Lm8xC7AlCoqUTtMPvnsgorY9nLiQmBvgAA6cKPw==
    PSAPPSRV.5392 (216) [11/10/08 20:19:47 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICScript](3) New authentication token detected from node PSFT_HR/2008-11-10-23.15.45.000015, no change needed for current session.
    PSAPPSRV.5392 (216) [11/10/08 20:19:47 PS@SAJJAD (NETSCAPE 7.0; WINXP) ICScript](3) Returning context. ID=PS, Lang=ENG, UStreamId=201947_5392.216, Token=PSFT_HR/2008-11-10-23.15.45.000015/PS/ENG mQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABQMZZkf0TkEbWOuy2hvwAqxOdvmd1kAAAAFAFNkYXRhTXicS2VgYGBhZmJkBNJ7mBjAgCWAIZiBzZXBj8GdgQ/EdmMIYYhn8GAIYjAxYjAAQgsGXQZDIASRBlC2HhCbAkkTMGkAhSAxBgAEPAoj
    PSWATCHSRV.5380 (0) [11/10/08 20:23:11] Shutting down
    PSADMIN.2052 (0) [11/10/08 20:23:20](0) Begin boot attempt on domain EPORTAL
    PSWATCHSRV.4188 (0) [11/10/08 20:23:29] Checking process status every 120 seconds
    PSWATCHSRV.4188 (0) [11/10/08 20:23:29] Server started
    PSAPPSRV.4572 (0) [11/10/08 20:23:29](0) PeopleTools Release 8.49 (WinX86) starting
    PSAPPSRV.4572 (0) [11/10/08 20:23:29](0) Cache Directory being used: C:\PA8.49\appserv\EPORTAL\CACHE\PSAPPSRV_2\
    PSAPPSRV.4572 (0) [11/10/08 20:23:30](3) (PublishSubscribe): PubSubSystem::InitializeServer(): Initialization succeeded.
    PSAPPSRV.4572 (0) [11/10/08 20:23:30](0) Server started
    PSAPPSRV.2356 (0) [11/10/08 20:23:30](0) PeopleTools Release 8.49 (WinX86) starting
    PSAPPSRV.2356 (0) [11/10/08 20:23:30](0) Cache Directory being used: C:\PA8.49\appserv\EPORTAL\CACHE\PSAPPSRV_1\
    PSAPPSRV.2356 (0) [11/10/08 20:23:31](3) (PublishSubscribe): PubSubSystem::InitializeServer(): Initialization succeeded.
    PSAPPSRV.2356 (0) [11/10/08 20:23:31](0) Server started
    PSSAMSRV.5632 (0) [11/10/08 20:23:31](0) PeopleTools Release 8.49 (WinX86) starting
    PSSAMSRV.5632 (0) [11/10/08 20:23:31](0) Cache Directory being used: C:\PA8.49\appserv\EPORTAL\CACHE\PSSAMSRV_100\
    PSSAMSRV.5632 (0) [11/10/08 20:23:32](0) Server started
    PSDBGSRV.5360 (0) [11/10/08 20:23:36](0) PeopleTools Release 8.49 (WinX86) starting
    PSDBGSRV.5360 (0) [11/10/08 20:23:36](0) Cache Directory being used: C:\PA8.49\appserv\EPORTAL\CACHE\PSDBGSRV_1\
    PSDBGSRV.5360 (0) [11/10/08 20:23:36](0) Server started
    PSADMIN.2052 (0) [11/10/08 20:23:38](0) End boot attempt on domain EPORTAL
    PSAPPSRV.2356 (1) [11/10/08 20:25:02 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=202502_2356.1, Token=PSFT_PA/2008-11-10-12.25.02.000187/PTWEBSERVER/ENG pwAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4Adwg4AC4AMQAwABQQsYcH3IQfKnnerJ5hIMFKc0iMlmcAAAAFAFNkYXRhW3icHYpLDkBAEAXLJ5aWbkGGELYkw04mCEvHcDmH83RXul6n8x4gTeIoUr4xNkXg4MIzscsbpznzrCzkQd9ZjZvASNvgxEBJLX47c0Ol7WRntzNqNXv4ABuyDPk=
    PSAPPSRV.2356 (3) [11/10/08 20:25:03 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=202503_2356.3, Token=PSFT_PA/2008-11-10-12.25.03.000141/PTWEBSERVER/ENG pwAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4Adwg4AC4AMQAwABToF9dLt4Qjr/+VEATVk6CVD4LgFmcAAAAFAFNkYXRhW3icHcpBDkAwEIXhX4mlpVuQohJbkrKTBmHpGC7ncJ7Oy/smmcwDZKlJEu3XEKcMHFx4Jna5cUZzz8pCEXSd9XETGHEtVhmoaJRfG22p1V5auuifBqfyARudDPA=
    PSAPPSRV.2356 (5) [11/10/08 20:25:06 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=202506_2356.5, Token=PSFT_PA/2008-11-10-12.25.06.000609/PS/ENG mwAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABRQhF048bQ+Z5DECgIB3RE4d+MoGVsAAAAFAFNkYXRhT3icHYYxCoAwEAQnMVj6E8MZVLS0iHYS0N7KX/o4L7fDzu4LhMY7p/t5LKFw0WZODrr6d24eChtjQpSFnkGpFnMiaie1MJvFnrDCDwKACiI=
    Campus Solution Application server log:
    PSADMIN.8716 (0) [11/10/08 18:30:29](0) Begin boot attempt on domain HRCS9
    PSWATCHSRV.8500 (0) [11/10/08 18:30:37] Checking process status every 120 seconds
    PSWATCHSRV.8500 (0) [11/10/08 18:30:37] Server started
    PSAPPSRV.8136 (0) [11/10/08 18:30:38](0) PeopleTools Release 8.49 (WinX86) starting
    PSAPPSRV.8136 (0) [11/10/08 18:30:38](0) Cache Directory being used: C:\PT8.49\appserv\HRCS9\CACHE\PSAPPSRV_2\
    PSAPPSRV.8136 (0) [11/10/08 18:30:38](3) (PublishSubscribe): PubSubSystem::InitializeServer(): Initialization succeeded.
    PSAPPSRV.8136 (0) [11/10/08 18:30:38](0) Server started
    PSAPPSRV.5584 (0) [11/10/08 18:30:39](0) PeopleTools Release 8.49 (WinX86) starting
    PSAPPSRV.5584 (0) [11/10/08 18:30:39](0) Cache Directory being used: C:\PT8.49\appserv\HRCS9\CACHE\PSAPPSRV_1\
    PSAPPSRV.5584 (0) [11/10/08 18:30:39](3) (PublishSubscribe): PubSubSystem::InitializeServer(): Initialization succeeded.
    PSAPPSRV.5584 (0) [11/10/08 18:30:39](0) Server started
    PSSAMSRV.7824 (0) [11/10/08 18:30:40](0) PeopleTools Release 8.49 (WinX86) starting
    PSSAMSRV.7824 (0) [11/10/08 18:30:40](0) Cache Directory being used: C:\PT8.49\appserv\HRCS9\CACHE\PSSAMSRV_100\
    PSSAMSRV.7824 (0) [11/10/08 18:30:40](0) Server started
    PSDBGSRV.5264 (0) [11/10/08 18:30:43](0) PeopleTools Release 8.49 (WinX86) starting
    PSDBGSRV.5264 (0) [11/10/08 18:30:43](0) Cache Directory being used: C:\PT8.49\appserv\HRCS9\CACHE\PSDBGSRV_1\
    PSDBGSRV.5264 (0) [11/10/08 18:30:43](0) Server started
    PSADMIN.8716 (0) [11/10/08 18:30:45](0) End boot attempt on domain HRCS9
    PSAPPSRV.5584 (1) [11/10/08 18:31:39 GetCertificate](3) Error Setting Sign on PeopleCode context for User QEDMO@TRAVELPC7: Sign on PeopleCode was not executed
    PSAPPSRV.5584 (1) [11/10/08 18:31:39 GetCertificate](3) PeopleSoft ID and Password authentication failed. Invalid user QEDMO@TRAVELPC7.
    PSAPPSRV.5584 (1) [11/10/08 18:31:39 GetCertificate](1) (NET.502): QEDMO@TRAVELPC7 is an Invalid User ID, or you typed the wrong password. User ID and Password are required and case-sensitive. Make sure you're typing in the correct upper and lower case.
    PSAPPSRV.5584 (1) [11/10/08 18:31:39 GetCertificate](1) (NET.346): Failed to execute GetCertificate request
    PSAPPSRV.5584 (2) [11/10/08 18:35:45 GetCertificate](3) Error Setting Sign on PeopleCode context for User QEDMO@TRAVELPC7: Sign on PeopleCode was not executed
    PSAPPSRV.5584 (2) [11/10/08 18:35:45 GetCertificate](3) PeopleSoft ID and Password authentication failed. Invalid user QEDMO@TRAVELPC7.
    PSAPPSRV.5584 (2) [11/10/08 18:35:45 GetCertificate](1) (NET.502): QEDMO@TRAVELPC7 is an Invalid User ID, or you typed the wrong password. User ID and Password are required and case-sensitive. Make sure you're typing in the correct upper and lower case.
    PSAPPSRV.5584 (2) [11/10/08 18:35:45 GetCertificate](1) (NET.346): Failed to execute GetCertificate request
    PSAPPSRV.5584 (3) [11/10/08 18:35:47 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=183547_5584.3, Token=PSFT_HR/2008-11-10-10.35.47.000234/PS/ENG nAAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABRxo0+U3IHEtF9OLFkSVGTDW+/Im1wAAAAFAFNkYXRhUHicLYhLDkBAEETfjImlm5A2WriAz0oEeyu3dDg9E/WSV5V6gFB456xfT07YOSknNhaqtGcublYONCLGSE1rJMvvho7erAxmyUT7FD4EiAop
    PSAPPSRV.5584 (8) [11/10/08 18:35:49 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=183549_5584.8, Token=PSFT_HR/2008-11-10-10.35.49.000671/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABR0fEtz3pni7zhAyAK80s6LQnHBvV0AAAAFAFNkYXRhUXicLYlNDkAwGERfq7F0E/KhigP4WYlgb+WWDudrY17yZpJ5AJdZY7RfS4rbOcknNhaKuGcublYOfIMoAyW1Ei2/K1o6tWdUSyLQ68cHBNEKMA==
    PSAPPSRV.5584 (20) [11/10/08 18:36:06 GetCertificate](3) Error Setting Sign on PeopleCode context for User QEDMO@TRAVELPC7: Sign on PeopleCode was not executed
    PSAPPSRV.5584 (20) [11/10/08 18:36:06 GetCertificate](3) PeopleSoft ID and Password authentication failed. Invalid user QEDMO@TRAVELPC7.
    PSAPPSRV.5584 (20) [11/10/08 18:36:06 GetCertificate](1) (NET.502): QEDMO@TRAVELPC7 is an Invalid User ID, or you typed the wrong password. User ID and Password are required and case-sensitive. Make sure you're typing in the correct upper and lower case.
    PSAPPSRV.5584 (20) [11/10/08 18:36:06 GetCertificate](1) (NET.346): Failed to execute GetCertificate request
    PSAPPSRV.5584 (22) [11/10/08 18:36:12 GetCertificate](3) PeopleSoft ID and Password authentication failed. Invalid password for user PS@TRAVELPC7.
    PSAPPSRV.5584 (22) [11/10/08 18:36:12 GetCertificate](1) (NET.502): PS@TRAVELPC7 is an Invalid User ID, or you typed the wrong password. User ID and Password are required and case-sensitive. Make sure you're typing in the correct upper and lower case.
    PSAPPSRV.5584 (22) [11/10/08 18:36:12 GetCertificate](1) (NET.346): Failed to execute GetCertificate request
    PSAPPSRV.5584 (24) [11/10/08 18:36:18 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=183618_5584.24, Token=PSFT_HR/2008-11-10-10.36.17.999828/PS/ENG nAAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABRGfL1yB177ZbI+Ypj9oXv+BvImz1wAAAAFAFNkYXRhUHicLYZNDkAwGERfq7F0E9IfoQ7gZyVC91Zu6XC+NuZl3swDmEorJftqSszBRT2zs9Lkv5C42TjpPVaItDgh2/7uCAxixyieChEv5QMFwApL
    PSAPPSRV.5584 (31) [11/10/08 18:36:33 GetCertificate](3) Error Setting Sign on PeopleCode context for User QEDMO@TRAVELPC7: Sign on PeopleCode was not executed
    PSAPPSRV.5584 (31) [11/10/08 18:36:33 GetCertificate](3) PeopleSoft ID and Password authentication failed. Invalid user QEDMO@TRAVELPC7.
    PSAPPSRV.5584 (31) [11/10/08 18:36:33 GetCertificate](1) (NET.502): QEDMO@TRAVELPC7 is an Invalid User ID, or you typed the wrong password. User ID and Password are required and case-sensitive. Make sure you're typing in the correct upper and lower case.
    PSAPPSRV.5584 (31) [11/10/08 18:36:33 GetCertificate](1) (NET.346): Failed to execute GetCertificate request
    PSAPPSRV.5584 (39) [11/10/08 18:37:14 GetCertificate](3) Error Setting Sign on PeopleCode context for User QEDMO@SAJJAD: Sign on PeopleCode was not executed
    PSAPPSRV.5584 (39) [11/10/08 18:37:14 GetCertificate](3) PeopleSoft ID and Password authentication failed. Invalid user QEDMO@SAJJAD.
    PSAPPSRV.5584 (39) [11/10/08 18:37:14 GetCertificate](1) (NET.502): QEDMO@SAJJAD is an Invalid User ID, or you typed the wrong password. User ID and Password are required and case-sensitive. Make sure you're typing in the correct upper and lower case.
    PSAPPSRV.5584 (39) [11/10/08 18:37:14 GetCertificate](1) (NET.346): Failed to execute GetCertificate request
    PSAPPSRV.5584 (40) [11/10/08 18:39:25 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=183925_5584.40, Token=PSFT_HR/2008-11-10-10.39.24.999906/PS/ENG nAAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABQ3+W4XtDdyAym8UBAHH8NzifD5wVwAAAAFAFNkYXRhUHicLcZNDkAwEIbht9VYugkZ1Uh7AD8rEeyt3NLhTKXzJs83D+Aqa4zua/nP7ZzUExsLTf5nLm5WDoJHtEhLr2Wl2DGQVE9QU0kY4QMF3ApJ
    PSAPPSRV.5584 (58) [11/10/08 18:40:12 GetCertificate](3) Error Setting Sign on PeopleCode context for User QEDMO@SAJJAD: Sign on PeopleCode was not executed
    PSAPPSRV.5584 (58) [11/10/08 18:40:12 GetCertificate](3) PeopleSoft ID and Password authentication failed. Invalid user QEDMO@SAJJAD.
    PSAPPSRV.5584 (58) [11/10/08 18:40:12 GetCertificate](1) (NET.502): QEDMO@SAJJAD is an Invalid User ID, or you typed the wrong password. User ID and Password are required and case-sensitive. Make sure you're typing in the correct upper and lower case.
    PSAPPSRV.5584 (58) [11/10/08 18:40:12 GetCertificate](1) (NET.346): Failed to execute GetCertificate request
    PSAPPSRV.5584 (59) [11/10/08 18:45:59 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=184559_5584.59, Token=PSFT_HR/2008-11-10-10.45.59.000140/PS/ENG nQAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AZQg4AC4AMQAwABSaO0dC5ooPNpst4hSrWhY4sPryll0AAAAFAFNkYXRhUXicLYjLCYAwFAQnMeRoJ8qLJKAF+DmJqHdPdpnifAnuwOyyL+Aaa4x2ttS4gws/s7PSlr1w87BxEgdEGekISrH87okkdWJSSyXoJ/ABBMgKKQ==
    PSAPPSRV.5584 (95) [11/10/08 18:48:17 GetCertificate](3) Error Setting Sign on PeopleCode context for User QEDMO@SAJJAD: Sign on PeopleCode was not executed
    PSAPPSRV.5584 (95) [11/10/08 18:48:17 GetCertificate](3) PeopleSoft ID and Password authentication failed. Invalid user QEDMO@SAJJAD.
    PSAPPSRV.5584 (95) [11/10/08 18:48:17 GetCertificate](1) (NET.502): QEDMO@SAJJAD is an Invalid User ID, or you typed the wrong password. User ID and Password are required and case-sensitive. Make sure you're typing in the correct upper and lower case.
    PSAPPSRV.5584 (95) [11/10/08 18:48:17 GetCertificate](1) (NET.346): Failed to execute GetCertificate request
    PSAPPSRV.5584 (96) [11/10/08 19:08:27 GetCertificate](3) Error Setting Sign on PeopleCode context for User QEDMO@SAJJAD: Sign on PeopleCode was not executed
    PSAPPSRV.5584 (96) [11/10/08 19:08:27 GetCertificate](3) PeopleSoft ID and Password authentication failed. Invalid user QEDMO@SAJJAD.
    PSAPPSRV.5584 (96) [11/10/08 19:08:27 GetCertificate](1) (NET.502): QEDMO@SAJJAD is an Invalid User ID, or you typed the wrong password. User ID and Password are required and case-sensitive. Make sure you're typing in the correct upper and lower case.
    PSAPPSRV.5584 (96) [11/10/08 19:08:27 GetCertificate](1) (NET.346): Failed to execute GetCertificate request
    please suggest me what to do to resolve it.

    Check your trusted nodes in both applications.
    To do this go to PeopleTools->Security->Security Objects->Single Signon
    Make sure PSFT_HR is in the list under "Trust Authentication Tokens issued by these Nodes" in Enterprise Portal and PSFT_PA is in the list in HR/Campus Solutions.
    You could also check your authentication domain for both to make sure it is the same.
    This is set in PeopleTools->Web Profile->Web Profile Configuration under the General tab.

  • SSO Enabling a custom application with OAM

    Hi All !
    Am a bit stuck on a problem and need some urgent help. Actually we are trying to launch some custom-built (J2EE/.NET) web applications from the Oracle Portal with SSO i.e. once the user logs into the portal he would not have to log-in again to the applications which would be launched from the portal home page.
    We have successfully integrated the Oracle Portal with the OAM SSO, but facing some problems with SSO enabling the custom applications. Any help on what should be the ideal integration architecture and approach for SSO enabling the apps with minimum amount of modification of the application code.
    The licenses are available for OID, OVD, OAM.
    Thanks in advance. Any views/comments/links to useful material appreciated.
    Cheers
    Soumak

    If your custom application uses its own database for Authentication, then you have to modify the login process for your application. i.e. you have to trust the OAM to have done the authentication and then create any custom cookie that your application might use in its landing page.
    I am assuming that your custom application have some way of tracking if the user has logged in or not. You can protect the Custom application URL within OAM and once the user has logged in you can then generate your custom application cookie.
    Even if you use OVD, you stil have to modify login process in your custom appliation to trust the third party to have done the authentication.
    Thanks
    Ram

Maybe you are looking for

  • HT1339 Trying to reset iPod (classic 2nd generation)

    when trying to reset iPod (4gb 2nd gen) i get a picture of a frowny face iPod and instructions to contact support.  I plug the USB cable in, try to reset using iTunes, and my ipod is not recognized by computer (itunes or in My Computer).  Any help?

  • Mail not received by the receiver but successfully sent out

    hello sir i m new to java mail and i have installed one free server from in internet ........i have connected to that server through my programme .......... i have send mail through my programme ..... from : [email protected] to : [email protected] i

  • Can you change color of bars in bar chart?

    I have made a chart by using the spreadsheet and converting my data to a bar chart. I would like to change the default colors of the bars in the chart but so far haven't figured out how to do it, if indeed it is possible. Is it? If so, how should I g

  • Goods Issue to other Company Code

    Hi, is it possible to Goods issue to a plant under a different company code?

  • Merging consecutive rows of a table

    I want to merge consecutive rows of a table. i.e. if my table has 4 rows of data then my ouput of query will have only 3 rows because rows 1 and 2 are merged to first row of result rows 2 and 3 are merged to second row of result rows 3 and 4 are merg