Problem during configuring SSO with APEX 4.1

Hello everybody,
I'm trying to configure my APEX application to use SSO, but I have big problems with ssosdk902.zip file.
During execution of the loadsdk.sql script it creates package "wwsec_sso_enabler" but APEX 4.1 wants to have "wwsec_sso_enabler_private". For me it a clear sign, that I'm using some old SSOSDK.
Can somebody tell me where to find the current "ssosdk"?
I'm using OAS10gR2 and the interesting thing is that in the DB schema ORASSO package "wwsec_sso_enabler_private" exists, but it doesn't helps me. It is at the other machine. I must have it on the same instance, where APEX is running.
It looks like packaging error by Oracle. Can somebody help me?
Thanks,
Ianko

Hi Anton,
that's why I added the IF statement around the code block, to guarantee that it only runs if the URL contains auto-login data (i.e. P101_UNAME). Setting FSP_AFTER_LOGIN_URL to null avoids a loop when the login fails. If we keep FSP_AFTER_LOGIN_URL, the wwv_flow_custom_auth_std.login procedure will redirect to page 101 and the before header process will run again, re-executing wwv_flow_custom_auth_std.login , etc.
It might be clearer to put the before header code into the authentication itself. The invalid session procedure is the right place for that, but it's use is very sparsely documented yet.
I created a 2nd copy of your original application (22274), where I removed the before header process and added this invalid session procedure:
procedure autologon_on_invalid_session
is
  v_user                VARCHAR2(4000);
  v_pass                VARCHAR2(4000);
  v_fsp_after_login_url VARCHAR2(4000) := :FSP_AFTER_LOGIN_URL;
  v_user_pos            pls_integer    := instr(v_fsp_after_login_url, 'P101_UNAME:');
BEGIN
  if apex_application.g_flow_step_id != 101 and v_user_pos > 0 then
    v_user := substr(v_fsp_after_login_url, v_user_pos+11);
    wwv_flow_custom_auth_std.login(
        P_UNAME       => v_user,
        P_PASSWORD    => v_pass,
        P_SESSION_ID  => v('APP_SESSION'),
        P_FLOW_PAGE   => :APP_ID||':1' );
    apex_application.stop_apex_engine;
  end if;
END;If the current page is not 101 (the login page) and the URL (which was copied into the deep link item) contains the autologin credentials, call login. The finall call to apex_application.stop_apex_engine stops Apex from continuing it's default invalid session handling, which is to redirect to the login page.
Regards,
Christian

Similar Messages

  • How to configure sso with SSL step by step

    Purpose
    In this document, you can learn how to configure SSO with SSL. After user have certificate installed in browser, he can login without input username and password.
    Overview
    In this document we will demonstrate:
    1.     How to configure OHS support SSL
    2.     How to Register SSO with SSL
    3.     Configure SSO for certificates
    Prerequisites
    Before start this document, you should have:
    1.     Oracle AS 10g infrastructure installed (10.1.2)
    2.     OCA installed
    Note:
    1.     “When you install Oracle infrastructure, please make sure you have select OCA.
    2.     How Certificate-Enabled Authentication Works:
    a.     The user tries to access a partner application.
    b.     The partner application redirects the user to the single sign-on server for authentication. As part of this redirection, the browser sends the user's certificate to the login URL of the server (2a). If it is able to verify the certificate, the server returns the user to the requested application.
    c.     The application delivers content. Users whose browsers are configured to prompt for a certificate-store password may only have to present this password once, depending upon how their browser is configured. If they log out and then attempt to access a partner application, the browser passes their certificate to the single sign-on server automatically. This means that they never really log out. To effectively log out, they must close the browser.
    Enable SSL on the Single Sign-On Middle Tier
    The following steps involve configuring the Oracle HTTP Server. Perform them on the single sign-on middle tier. In doing so, keep the following in mind:
    l     You must configure SSL on the computer where the single sign-on middle tier is running.
    l     You are configuring one-way SSL.
    l     You may enable SSL for simple network encryption; PKI authentication is not required. Note though that you must use a valid wallet and server certificate. The default wallet location is ORACLE_HOME/Apache/Apache/conf/ssl.wlt/default.
    1.     Back up the opmn.xml file, found at ORACLE_HOME/opmn/conf
    2.     In opmn.xml, change the value for the start-mode parameter to ssl-enabled. This parameter appears in boldface in the xml tag immediately following.
    <ias-component id="HTTP_Server">
    <process-type id="HTTP_Server" module-id="OHS">
    <module-data>
    <category id="start-parameters">
    <data id="start-mode" value="ssl-enabled"/>
    </category>
    </module-data>
    <process-set id="HTTP_Server" numprocs="1"/>
    </process-type>
    </ias-component>
    3.     Update the distributed cluster management database with the change: ORACLE_HOME/dcm/bin/dcmctl updateconfig -ct opmn
    4.     Reload the modified opmn configuration file:
    ORACLE_HOME/opmn/bin/opmnctl reload
    5.     Keep a non-SSL port active. The External Applications portlet communicates with the single sign-on server over a non-SSL port. The HTTP port is enabled by default. If you have not disabled the port, this step requires no action.
    6.     Apply the rule mod_rewrite to SSL configuration. This step involves modifying the ssl.conf file on the middle-tier computer. The file is at ORACLE_HOME/Apache/Apache/conf. Back up the file before editing it.
    Because the Oracle HTTP Server has to be available over both HTTP and HTTPS, the SSL host must be configured as a virtual host. Add the lines that follow to the SSL Virtual Hosts section of ssl.conf if they are not already there. These lines ensure that the single sign-on login module in OC4J_SECURITY is invoked when a user logs in to the SSL host.
    <VirtualHost ssl_host:port>
    RewriteEngine on
    RewriteOptions inherit
    </VirtualHost>
    Save and close the file.
    7.     Update the distributed cluster management database with the changes:
    ORACLE_HOME/dcm/bin/dcmctl updateconfig -ct ohs
    8.     Restart the Oracle HTTP Server:
    ORACLE_HOME/opmn/bin/opmnctl stopproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl startproc process-type=HTTP_Server
    9.     Verify that you have enabled the single sign-on middle tier for SSL by trying to access the OracleAS welcome page, using the format https://host:ssl_port.
    Reconfigure the Identity Management Infrastructure Database
    Change all references of http in single sign-on URLs to https within the identity management infrastructure database. When you change single sign-on URLs in the database, you must also change these URLs in the targets.xml file on the single sign-on middle tier. targets.xml is the configuration file for the various "targets" that Oracle Enterprise Manager monitors. One of these targets is OracleAS Single Sign-On.
    1.     Change Single Sign-On URLs
    Run the ssocfg script, taking care to enter the command on the computer where the single sign-on middle tier is located. Use the following syntax:
    UNIX:
    $ORACLE_HOME/sso/bin/ssocfg.sh protocol host ssl_port
    Windows:
    %ORACLE_HOME%\sso\bin\ssocfg.bat protocol host ssl_port
    In this case, protocol is https. (To change back to HTTP, use http.) The parameter host is the host name, or server name, of the Oracle HTTP listener for the single sign-on server.
    Here is an example:
    ssocfg.sh https login.acme.com 4443
    2. Restart OC4J_SECURITY instance and verify the configuration
    To determine the correct port number, examine the ssl.conf file. Port 4443 is the port number that the OracleAS installer assigns during installation.
    If you run ssocfg successfully, the script returns a status 0. To confirm that you were successful, restart the OC4J_SECURITY instance:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Then try logging in to the single sign-on server at its SSL address:
    https://host:ssl_port/pls/orasso/
         3. Back up the file targets.xml:
    cp ORACLE_HOME/sysman/emd/targets.xml ORACLE_HOME/sysman/emd/targets.xml.backup
    4. Open the file and find the target type oracle_sso_server. Within this target type, locate and edit the three attributes that you passed to ssocfg:
    ·     HTTPMachine—the server host name
    ·     HTTPPort—the server port number
    ·     HTTPProtocol—the server protocol
    If, for example, you run ssocfg like this:
    ORACLE_HOME/sso/bin/ssocfg.sh http sso.mydomain.com:4443
    Update the three attributes this way:
    <Property NAME="HTTPMachine" VALUE="sso.mydomain.com"/>
    <Property NAME="HTTPPort" VALUE="4443"/>
    <Property NAME="HTTPProtocol" VALUE="HTTPS"/>
    5.Save and close the file.
    6.     Reload the OracleAS console:
         ORACLE_HOME/bin/emctl reload
    7. Issue these two commands:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Registering mod_osso
    1.     This command sequence that follows shows a mod_osso instance being reregistered with the single sign-on server.
    $ORACLE_HOME/sso/bin/ssoreg.sh
         -oracle_home_path $ORACLE_HOME
         -config_mod_osso TRUE
         -mod_osso_url https://myhost.mydomain.com:4443
    2.     Restarting the Oracle HTTP Server
    After running ssoreg, restart the Oracle HTTP Server:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    Configuring the Single Sign-On System for Certificates
    1.     Configure policy.properties with the Default Authentication Plugin
    Update the DefaultAuthLevel section of the policy.properties file with the correct authentication level for certificate sign-on. This file is at ORACLE_HOME/sso/conf. Set the default authentication level to this value:
    DefaultAuthLevel = MediumHighSecurity
    Then, in the Authentication plugins section, pair this authentication level with the default authentication plugin:
    MediumHighSecurity_AuthPlugin = oracle.security.sso.server.auth.SSOX509CertAuth
    2.     Restart the Single Sign-On Middle Tier
    After configuring the server, restart the middle tier:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Bringing the SSO Users to OCA User Certificate Request URL
    The OCA server reduces the administrative and maintenance cost of provisioning a user certificate. The OCA server achieves this by authenticating users by using OracleAS SSO server authentication. All users who have an Oracle AS SSO server account can directly get a certificate by using the OCA user interface. This reduces the time normoally requidred to provision a certificate by a certificate authority.
    The URL for the SSO certificate Request is:
    https://<Oracle_HTTP_host>:<oca_ssl_port>/oca/sso_oca_link
    You can configure OCA to provide the user certificate request interface URL to SSO server for display whenever SSO is not using a sertificate to authenticate a user. After the OracleAS SSO server authenticates a user, it then display the OCA screen enabling that user to request a certificate.
    To link the OCA server to OracleAS SSO server, use the following command:
    ocactl linksso
    opmnctl stoproc type=oc4j instancename=oca
    opmnctl startproc type=oc4j instancename=oca
    You also can use ocactl unlinksso to unlink the OCA to SSO.

    I have read the SSO admin guide, and performed the steps for enabling SSL on the SSO, and followed the steps to configure mod_osso with virtual host on port 4443 as mentioned in the admin guide.
    The case now is that when I call my form (which is developed by forms developer suite 10g and deployed on the forms server which is SSO enabled) , it calls the SSO module on port 7777 using http (the default behaviour).
    on a URL that looks like this :
    http://myhostname:7777/pls/orasso/orasso.wwsso_app_admin.ls_login?Site2pstoreToken=.......
    and gives the error :
    ( Forbidden
    You don't have permisission to access /sso/auth on this server at port 7777)
    when I manually change the URL to :
    https://myhostname:4443/pls/orasso/orasso.wwsso_app_admin.ls_login?Site2pstoreToken=.......
    the SSO works correctly.
    The question is :
    How can I change this default behaviour and make it call SSO on port 4443 using https instead ?
    Any ideas ?
    Thanks in advance

  • 10g - how to configure sso with iis-

    hi, experts, I have followed Oracle® Business Intelligence Enterprise Edition Deployment Guide to configure SSO with IIS.
    but I always meet this message.
    Not Logged In
    You are not currently logged in to the Oracle BI Server.
    If you have already logged in, your connection might have timed out, or a communications or server error may have occurred
    what steps are missing?
    how to check?

    hi, experts,
    I checked C:\OracleBIData\web\log\sawlog0.log on the obi server (windows server 2003 standard).
    at Thu Feb 17 14:48:46 2011 , I logined OBI on another machine (not via the browser on the obi server).
    however, the log shows the login user is the administrator of the obiserver (obiserver\administrator ).
    any setup on IIS are wrong? thank you very much!
    =========================================================================================
    Running job 'MinutelyMonitor' took 7422 milliseconds, 12.3% of job's frequency (60 seconds).
    Type: Error
    Severity: 40
    Time: Thu Feb 17 14:48:46 2011
    File: project/webodbcaccess/odbcconnectionimpl.cpp Line: 371
    Properties: ConnId-1,1;ThreadID-1796
    Location:
         saw.odbc.connection.open
         saw.connectionPool.getConnection
         saw.subsystem.security.checkAuthenticationImpl
         saw.threadPool
         saw.threads
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43001] Authentication failed for obiserver\administrator in repository Star: invalid user/password. (08004)
    Type: Error
    Severity: 42
    Time: Thu Feb 17 14:48:46 2011
    File: project/webconnect/connection.cpp Line: 276
    Properties: ThreadID-1796
    Location:
         saw.connectionPool.getConnection
         saw.subsystem.security.checkAuthenticationImpl
         saw.threadPool
         saw.threads
    Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    ---------------------------------------

  • SSO with APEX anyone seen this before?

    Hi,
    I have followed the instructions from Metalink on
    "Configuring an APEX Application to Use SSO With SDK in Separate Schema"
    and have followed all the instructions but when I try and access application with SSO
    turned on I am seeing this page
    Thu, 3 Feb 2011 01:21:53 GMT
    Bad parameter name: none specified
      DAD name: apexwamsx
      PROCEDURE  : f
      URL        : http://lv700.light.ci.seattle.wa.us:7961/pls/apexwamsx/f?=
      PARAMETERS :
      ===========
      ENVIRONMENT:
      ============
        PLSQL_GATEWAY=WebDb
        GATEWAY_IVERSION=2
        SERVER_SOFTWARE=Oracle-Application-Server-10g/10.1.2.2.0 Oracle-HTTP-Server
        GATEWAY_INTERFACE=CGI/1.1
        SERVER_PORT=7961
        SERVER_NAME=lv700.light.ci.seattle.wa.us
        REQUEST_METHOD=GET
        QUERY_STRING==
        PATH_INFO=/f
        SCRIPT_NAME=/pls/apexwamsx
        REMOTE_HOST=
        REMOTE_ADDR=156.74.12.139
        SERVER_PROTOCOL=HTTP/1.1
        REQUEST_PROTOCOL=HTTP
        REMOTE_USER=APEX_PUBLIC_USER
        ORACLE_SSO_USER=
        OSSO_IDLE_TIMEOUT_EXCEEDED=
        OSSO_USER_GUID=
        HTTP_CONTENT_LENGTH=
        HTTP_CONTENT_TYPE=
        HTTP_USER_AGENT=Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 (.NET CLR 3.5.30729)
        HTTP_HOST=lv700:7961
        HTTP_ACCEPT=text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
        HTTP_ACCEPT_ENCODING=gzip,deflate
        HTTP_ACCEPT_LANGUAGE=en-us,en;q=0.5
        HTTP_ACCEPT_CHARSET=ISO-8859-1,utf-8;q=0.7,*;q=0.7
        HTTP_COOKIE=ORA_WWV_REMEMBER_UN=ALBAM:commonws; ORA_WWV_USER=AC8796116B48095E; orasso=9.0.3+en-us+us+AMERICA+9B51BFB45D462A72E04400144FFABD7C+376A4AC4D470C5123650D53D83C6BF30A23BB27BB0F175D642AB7583249FBFF0B6AB6DAA9A2455BA6ACDA4CF36AD1646846B6E8310D16BDC569B61C08864631839C257F2EA1DD635005F1B4DE8B641FF755CFD4DAF89DA85
        HTTP_IF_MODIFIED_SINCE=
        HTTP_REFERER=http://lv700:7961/pls/apexwamsx/f?p=140:500:872061270446623:::::
        HTTP_SOAPACTION=
        HTTP_ORACLE_ECID=1296696113:156.74.21.244:28393:0:16,0
        HTTP_ORACLE_CACHE_VERSION=
        HTTP_AUTHORIZATION=
        WEB_AUTHENT_PREFIX=
        DAD_NAME=apexwamsx
        DOC_ACCESS_PATH=docs
        DOCUMENT_TABLE=wwv_flow_file_objects$
        PATH_ALIAS=
        REQUEST_CHARSET=WE8ISO8859P1
        REQUEST_IANA_CHARSET=ISO-8859-1
        SCRIPT_PREFIX=/pls
        HTTP_IF_MATCH=
        HTTP_CACHE_CONTROL=
        SOAP_BODY=
        HTTP_X_ORACLE_DEVICE_CLASS=
        HTTP_X_ORACLE_DEVICE_ORIENTATION=
        HTTP_X_ORACLE_DEVICE_MAXDOCSIZE=
        HTTP_X_ORACLE_DEVICE=
        HTTP_X_ORACLE_ORIG_ACCEPT=
        HTTP_X_ORACLE_ORIG_USER_AGENT=
        HTTP_X_ORACLE_USER_LOCALE=
        HTTP_X_ORACLE_USER_NAME=
        HTTP_X_ORACLE_USER_DISPLAYNAME=
        HTTP_X_ORACLE_USER_USERKIND=
        HTTP_X_ORACLE_USER_AUTHKIND=
        HTTP_X_ORACLE_USER_DEVICEID=
        HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE1=
        HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE2=
        HTTP_X_ORACLE_USER_LOCATION_ADDRESSLASTLINE=
        HTTP_X_ORACLE_USER_LOCATION_BLOCK=
        HTTP_X_ORACLE_USER_LOCATION_CITY=
        HTTP_X_ORACLE_USER_LOCATION_COMPANYNAME=
        HTTP_X_ORACLE_USER_LOCATION_COUNTY=
        HTTP_X_ORACLE_USER_LOCATION_STATE=
        HTTP_X_ORACLE_USER_LOCATION_POSTALCODE=
        HTTP_X_ORACLE_USER_LOCATION_POSTALCODEEXT=
        HTTP_X_ORACLE_USER_LOCATION_COUNTRY=
        HTTP_X_ORACLE_USER_LOCATION_TYPE=
        HTTP_X_ORACLE_USER_LOCATION_X=
        HTTP_X_ORACLE_USER_LOCATION_Y=
        HTTP_X_ORACLE_SERVICE_HOME_URL=
        HTTP_X_ORACLE_SERVICE_PARENT_URL=
        HTTP_X_ORACLE_HOME_URL=
        HTTP_X_ORACLE_MODULE_CALLBACK_URL=
        HTTP_X_ORACLE_MODULE_CALLBACK_LABEL=
        HTTP_X_ORACLE_CACHE_USER=
        HTTP_X_ORACLE_CACHE_SUBID=
        HTTP_X_ORACLE_CACHE_AUTH=
        HTTP_X_ORACLE_CACHE_DEVICE=
        HTTP_X_ORACLE_CACHE_LANG=
        HTTP_X_ORACLE_CACHE_ENCRYPT=
        HTTP_X_ORACLE_ASSERT_USER=Thanks so much for any insight!

    Jonnycake please see AAM doesn't update to Creative Cloud desktop Application for information on how to enable the AAM Detect Plug-in within Safari.

  • 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 configure printing with apex 3.1.2

    I am trying to use Apache FOP with Apex 3.1.2 and I am unable to find the place to configure Apex.
    The document I am using is located at [http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html] and the important paragraph is the following:
    Step 2: Configure Oracle Application Express to use the JSP for PDF printing
    Once you have the FOP installed, access the Report Printing parameters:
    1. Access the Administration Services home page
    2. Select Manage Service
    3. Select Instance Settings, under Manage Environment Settings
    4. Click Report Printing to focus on just the Report Printing attributes
    I am trying to locate those settings. In the page with the breadcrumb "Home&gt;Administration&gt;Manage Services" the is no "Manage Environment Settings".
    Am I looking in the wrong place? Is there a special user that should be used, like sys?
    The installation is an Oracle XE with the Apex upgraded to 3.1.2

    You need to be logged in to the 'internal' workspace .
    Varad

  • SSO with Apex 4.1.1.00.23

    Hello Apex community,
    i want to implement a SSO solution between an apex and non-apex application. This solution worked with Apex 4.0 but seems not to work with current 4.1.1.00.23.
    I've set up a test case on hosted environment.
    Dev User:
    Workspace: authtest
    User: authtest
    Pass: authtest
    End User:
    User: test
    Pass: test1
    Things i've done:
    (1) Created a custom authentication scheme (marked as current) "auth_scheme" with following authentication function:
    create or replace FUNCTION auth_function(
          p_username IN VARCHAR2,
          p_password IN VARCHAR2)
        RETURN BOOLEAN
      AS
        v_is_authenticated BOOLEAN := false;
      BEGIN
          IF lower(p_username)= 'test' OR APEX_UTIL.IS_LOGIN_PASSWORD_VALID(p_username => p_username,
                                                                            p_password => p_password)
        THEN
          v_is_authenticated := true;
        ELSE
          v_is_authenticated := false;
        END IF;
        RETURN v_is_authenticated;
      END auth_function;(2) Created an "On Load - Before Header" process with sequence 5 on page 101:
    DECLARE
      v_user                VARCHAR2(4000);
      v_pass                VARCHAR2(4000);
      v_fsp_after_login_url VARCHAR2(4000) := :FSP_AFTER_LOGIN_URL;
    BEGIN
      SELECT SUBSTR(v_fsp_after_login_url, instr(v_fsp_after_login_url, 'P101_UNAME') + LENGTH('P101_UNAME') + 1)
      INTO v_user
      FROM dual;
      wwv_flow_custom_auth_std.login(
        P_UNAME       => v_user,
        P_PASSWORD    => v_pass,
        P_SESSION_ID  => v('APP_SESSION'),
        P_FLOW_PAGE   => :APP_ID||':1'
    END;Process condition: request = AUTOLOGON:
    (3) Created a hidden item "P101_UNAME" on page 101.
    (4) Expected behaviour: user loads following URL:
    http://apex.oracle.com/pls/apex/f?p=30964:1::AUTOLOGON:YES::P101_UNAME:testuser schould be logged in without typing in his credentials.
    What happens: user faces login page. What I don't understand: setting process condition to "none", autologon works. But if you have a look into debug report, apex recognizes the request "AUTOLOGON" even if autologon doesn't work. On my dev environment with Apex 4.1.1.00.23 changing process condition doesn't help.
    I can't figure out what I'm doing wrong. With the patchset 4.1.1 there were certain changes concerning FSP_AFTER_LOGIN_URL Re: Deep Link (FSP_AFTER_LOGIN_URL) Not Working in APEX 4.1 I would appreciate any hint.
    Thank you very much for your answers.
    Kind regards,
    Anton
    Edit: Any ideas? I would appreciate any hint.
    Edit2: Any hints maybe? Explicitly setting the FSP_AFTER_LOGIN_URL in the Url doesn't help either...
    Edited by: anton on 20.08.2012 01:26

    Hi Anton,
    that's why I added the IF statement around the code block, to guarantee that it only runs if the URL contains auto-login data (i.e. P101_UNAME). Setting FSP_AFTER_LOGIN_URL to null avoids a loop when the login fails. If we keep FSP_AFTER_LOGIN_URL, the wwv_flow_custom_auth_std.login procedure will redirect to page 101 and the before header process will run again, re-executing wwv_flow_custom_auth_std.login , etc.
    It might be clearer to put the before header code into the authentication itself. The invalid session procedure is the right place for that, but it's use is very sparsely documented yet.
    I created a 2nd copy of your original application (22274), where I removed the before header process and added this invalid session procedure:
    procedure autologon_on_invalid_session
    is
      v_user                VARCHAR2(4000);
      v_pass                VARCHAR2(4000);
      v_fsp_after_login_url VARCHAR2(4000) := :FSP_AFTER_LOGIN_URL;
      v_user_pos            pls_integer    := instr(v_fsp_after_login_url, 'P101_UNAME:');
    BEGIN
      if apex_application.g_flow_step_id != 101 and v_user_pos > 0 then
        v_user := substr(v_fsp_after_login_url, v_user_pos+11);
        wwv_flow_custom_auth_std.login(
            P_UNAME       => v_user,
            P_PASSWORD    => v_pass,
            P_SESSION_ID  => v('APP_SESSION'),
            P_FLOW_PAGE   => :APP_ID||':1' );
        apex_application.stop_apex_engine;
      end if;
    END;If the current page is not 101 (the login page) and the URL (which was copied into the deep link item) contains the autologin credentials, call login. The finall call to apex_application.stop_apex_engine stops Apex from continuing it's default invalid session handling, which is to redirect to the login page.
    Regards,
    Christian

  • Login problem after configuring SSO

    Hi All,
    After configuring SSO I am not able to login in PORTAL as J2EE_ADMIN User.After entering the password its again redirecting the same screen with any error.
    Please help.
    Thanks,
    Prashant.
    Edited by: Prashant Shukla on Mar 12, 2008 8:27 AM

    Hi All,
    After restarting the server In SAPMMC Java process sserver0 is not getting up its throwing an error with exit code -11113.
    Details of developer trace-:
    trc file: "D:\usr\sap\EC6\DVEBMGS01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID13670550
    pid         : 5840
    system name : EC6
    system nr.  : 01
    started at  : Mon Mar 17 11:33:25 2008
    arguments       :
           arg[00] : D:\usr\sap\EC6\DVEBMGS01\exe\jlaunch.exe
           arg[01] : pf=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[02] : -DSAPINFO=EC6_01_server
           arg[03] : pf=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=3479
           arg[06] : -DSAPSYSTEM=01
           arg[07] : -DSAPSYSTEMNAME=EC6
           arg[08] : -DSAPMYNAME=sapserver1_EC6_01
           arg[09] : -DSAPPROFILE=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 7132] Mon Mar 17 11:33:25 2008
    [Thr 7132] *** WARNING => INFO: Unknown property [instance.box.number=EC6DVEBMGS01sapserver1] [jstartxx.c   841]
    [Thr 7132] *** WARNING => INFO: Unknown property [instance.en.host=sapserver1] [jstartxx.c   841]
    [Thr 7132] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 7132] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties]
    -> ms host    : sapserver1
    -> ms port    : 3900
    -> OS libs    : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : sapserver1
    -> ms port    : 3900
    -> os libs    : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID13670500 : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID13670550 : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID13670500           : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID13670550           : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    [Thr 7132] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 7132] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 3180] JLaunchRequestFunc: Thread 3180 started as listener thread for np messages.
    [Thr 2140] WaitSyncSemThread: Thread 2140 started as semaphore monitor thread.
    [Thr 7132] NiInit3: NI already initialized; param 'maxHandles' ignored (1;402)
    [Thr 7132] CPIC (version=700.2005.12.02)
    [Thr 7132] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16
    [Thr 7132] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID13670550]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_16
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\EC6\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 7132] JLaunchISetDebugMode: set debug mode [no]
    [Thr 7520] JLaunchIStartFunc: Thread 7520 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=D:\usr\sap\EC6\SYS\global
    -> arg[ 25]: -Dapplication.home=D:\usr\sap\EC6\DVEBMGS01\exe
    -> arg[ 26]: -Djava.class.path=D:\usr\sap\EC6\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=C:\j2sdk1.4.2_16\jre\bin\server;C:\j2sdk1.4.2_16\jre\bin;C:\j2sdk1.4.2_16\bin;D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;D:\OraHome_1\bin;D:\OraHome_1\jre\1.4.2\bin\client;D:\OraHome_1\jre\1.4.2\bin;D:\oracle\product\10.1.0\Db_1\bin;D:\oracle\product\10.1.0\Db_1\jre\1.4.2\bin\client;D:\oracle\product\10.1.0\Db_1\jre\1.4.2\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\j2sdk1.4.2_16\bin;D:\usr\sap\EC6\SYS\exe\uc\NTI386
    -> arg[ 28]: -Dmemory.manager=1024M
    -> arg[ 29]: -Xmx1024M
    -> arg[ 30]: -Xms1024M
    -> arg[ 31]: -DLoadBalanceRestricted=no
    -> arg[ 32]: -Djstartup.mode=JCONTROL
    -> arg[ 33]: -Djstartup.ownProcessId=5840
    -> arg[ 34]: -Djstartup.ownHardwareId=B0245063248
    -> arg[ 35]: -Djstartup.whoami=server
    -> arg[ 36]: -Djstartup.debuggable=no
    -> arg[ 37]: -DSAPINFO=EC6_01_server
    -> arg[ 38]: -DSAPSTART=1
    -> arg[ 39]: -DCONNECT_PORT=3479
    -> arg[ 40]: -DSAPSYSTEM=01
    -> arg[ 41]: -DSAPSYSTEMNAME=EC6
    -> arg[ 42]: -DSAPMYNAME=sapserver1_EC6_01
    -> arg[ 43]: -DSAPPROFILE=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
    -> arg[ 44]: -DFRFC_FALLBACK=ON
    -> arg[ 45]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 46]: -DSAPSTARTUP=1
    -> arg[ 47]: -DSAPSYSTEM=01
    -> arg[ 48]: -DSAPSYSTEMNAME=EC6
    -> arg[ 49]: -DSAPMYNAME=sapserver1_EC6_01
    -> arg[ 50]: -DSAPDBHOST=sapserver1
    -> arg[ 51]: -Dj2ee.dbhost=sapserver1
    Mon Mar 17 11:33:26 2008
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    [Thr 7520] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 4220] Mon Mar 17 11:33:28 2008
    [Thr 4220] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 4220] Mon Mar 17 11:33:29 2008
    [Thr 4220] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 4220] JLaunchISetClusterId: set cluster id 13670550
    [Thr 4220] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 4220] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 4696] Mon Mar 17 11:34:07 2008
    [Thr 4696] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 4696] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 4292] Mon Mar 17 11:34:08 2008
    [Thr 4292] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 4292] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "D:\usr\sap\EC6\DVEBMGS01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID13670550
    pid         : 7852
    system name : EC6
    system nr.  : 01
    started at  : Mon Mar 17 11:34:11 2008
    arguments       :
           arg[00] : D:\usr\sap\EC6\DVEBMGS01\exe\jlaunch.exe
           arg[01] : pf=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[02] : -DSAPINFO=EC6_01_server
           arg[03] : pf=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=3479
           arg[06] : -DSAPSYSTEM=01
           arg[07] : -DSAPSYSTEMNAME=EC6
           arg[08] : -DSAPMYNAME=sapserver1_EC6_01
           arg[09] : -DSAPPROFILE=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 4868] Mon Mar 17 11:34:11 2008
    [Thr 4868] *** WARNING => INFO: Unknown property [instance.box.number=EC6DVEBMGS01sapserver1] [jstartxx.c   841]
    [Thr 4868] *** WARNING => INFO: Unknown property [instance.en.host=sapserver1] [jstartxx.c   841]
    [Thr 4868] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 4868] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties]
    -> ms host    : sapserver1
    -> ms port    : 3900
    -> OS libs    : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : sapserver1
    -> ms port    : 3900
    -> os libs    : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID13670500 : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID13670550 : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID13670500           : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID13670550           : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    [Thr 4868] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 4868] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 6192] WaitSyncSemThread: Thread 6192 started as semaphore monitor thread.
    [Thr 6632] JLaunchRequestFunc: Thread 6632 started as listener thread for np messages.
    [Thr 4868] NiInit3: NI already initialized; param 'maxHandles' ignored (1;402)
    [Thr 4868] CPIC (version=700.2005.12.02)
    [Thr 4868] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16
    [Thr 4868] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID13670550]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_16
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\EC6\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 4868] JLaunchISetDebugMode: set debug mode [no]
    [Thr 5632] JLaunchIStartFunc: Thread 5632 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=D:\usr\sap\EC6\SYS\global
    -> arg[ 25]: -Dapplication.home=D:\usr\sap\EC6\DVEBMGS01\exe
    -> arg[ 26]: -Djava.class.path=D:\usr\sap\EC6\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=C:\j2sdk1.4.2_16\jre\bin\server;C:\j2sdk1.4.2_16\jre\bin;C:\j2sdk1.4.2_16\bin;D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;D:\OraHome_1\bin;D:\OraHome_1\jre\1.4.2\bin\client;D:\OraHome_1\jre\1.4.2\bin;D:\oracle\product\10.1.0\Db_1\bin;D:\oracle\product\10.1.0\Db_1\jre\1.4.2\bin\client;D:\oracle\product\10.1.0\Db_1\jre\1.4.2\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\j2sdk1.4.2_16\bin;D:\usr\sap\EC6\SYS\exe\uc\NTI386
    -> arg[ 28]: -Dmemory.manager=1024M
    -> arg[ 29]: -Xmx1024M
    -> arg[ 30]: -Xms1024M
    -> arg[ 31]: -DLoadBalanceRestricted=no
    -> arg[ 32]: -Djstartup.mode=JCONTROL
    -> arg[ 33]: -Djstartup.ownProcessId=7852
    -> arg[ 34]: -Djstartup.ownHardwareId=B0245063248
    -> arg[ 35]: -Djstartup.whoami=server
    -> arg[ 36]: -Djstartup.debuggable=no
    -> arg[ 37]: -DSAPINFO=EC6_01_server
    -> arg[ 38]: -DSAPSTART=1
    -> arg[ 39]: -DCONNECT_PORT=3479
    -> arg[ 40]: -DSAPSYSTEM=01
    -> arg[ 41]: -DSAPSYSTEMNAME=EC6
    -> arg[ 42]: -DSAPMYNAME=sapserver1_EC6_01
    -> arg[ 43]: -DSAPPROFILE=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
    -> arg[ 44]: -DFRFC_FALLBACK=ON
    -> arg[ 45]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 46]: -DSAPSTARTUP=1
    -> arg[ 47]: -DSAPSYSTEM=01
    -> arg[ 48]: -DSAPSYSTEMNAME=EC6
    -> arg[ 49]: -DSAPMYNAME=sapserver1_EC6_01
    -> arg[ 50]: -DSAPDBHOST=sapserver1
    -> arg[ 51]: -Dj2ee.dbhost=sapserver1
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    [Thr 5632] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 6052] Mon Mar 17 11:34:13 2008
    [Thr 6052] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 6052] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 6052] JLaunchISetClusterId: set cluster id 13670550
    [Thr 6052] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 6052] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 6040] Mon Mar 17 11:34:40 2008
    [Thr 6040] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 6040] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 5440] Mon Mar 17 11:34:41 2008
    [Thr 5440] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 5440] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "D:\usr\sap\EC6\DVEBMGS01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID13670550
    pid         : 6036
    system name : EC6
    system nr.  : 01
    started at  : Mon Mar 17 11:34:41 2008
    arguments       :
           arg[00] : D:\usr\sap\EC6\DVEBMGS01\exe\jlaunch.exe
           arg[01] : pf=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[02] : -DSAPINFO=EC6_01_server
           arg[03] : pf=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=3479
           arg[06] : -DSAPSYSTEM=01
           arg[07] : -DSAPSYSTEMNAME=EC6
           arg[08] : -DSAPMYNAME=sapserver1_EC6_01
           arg[09] : -DSAPPROFILE=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 5572] Mon Mar 17 11:34:41 2008
    [Thr 5572] *** WARNING => INFO: Unknown property [instance.box.number=EC6DVEBMGS01sapserver1] [jstartxx.c   841]
    [Thr 5572] *** WARNING => INFO: Unknown property [instance.en.host=sapserver1] [jstartxx.c   841]
    [Thr 5572] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 5572] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties]
    -> ms host    : sapserver1
    -> ms port    : 3900
    -> OS libs    : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : sapserver1
    -> ms port    : 3900
    -> os libs    : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID13670500 : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID13670550 : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID13670500           : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID13670550           : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    [Thr 5572] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 5572] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 6780] WaitSyncSemThread: Thread 6780 started as semaphore monitor thread.
    [Thr 5824] JLaunchRequestFunc: Thread 5824 started as listener thread for np messages.
    [Thr 5572] NiInit3: NI already initialized; param 'maxHandles' ignored (1;402)
    [Thr 5572] CPIC (version=700.2005.12.02)
    [Thr 5572] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16
    [Thr 5572] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID13670550]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_16
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\EC6\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 5572] JLaunchISetDebugMode: set debug mode [no]
    [Thr 6056] JLaunchIStartFunc: Thread 6056 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=D:\usr\sap\EC6\SYS\global
    -> arg[ 25]: -Dapplication.home=D:\usr\sap\EC6\DVEBMGS01\exe
    -> arg[ 26]: -Djava.class.path=D:\usr\sap\EC6\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=C:\j2sdk1.4.2_16\jre\bin\server;C:\j2sdk1.4.2_16\jre\bin;C:\j2sdk1.4.2_16\bin;D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;D:\OraHome_1\bin;D:\OraHome_1\jre\1.4.2\bin\client;D:\OraHome_1\jre\1.4.2\bin;D:\oracle\product\10.1.0\Db_1\bin;D:\oracle\product\10.1.0\Db_1\jre\1.4.2\bin\client;D:\oracle\product\10.1.0\Db_1\jre\1.4.2\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\j2sdk1.4.2_16\bin;D:\usr\sap\EC6\SYS\exe\uc\NTI386
    -> arg[ 28]: -Dmemory.manager=1024M
    -> arg[ 29]: -Xmx1024M
    -> arg[ 30]: -Xms1024M
    -> arg[ 31]: -DLoadBalanceRestricted=no
    -> arg[ 32]: -Djstartup.mode=JCONTROL
    -> arg[ 33]: -Djstartup.ownProcessId=6036
    -> arg[ 34]: -Djstartup.ownHardwareId=B0245063248
    -> arg[ 35]: -Djstartup.whoami=server
    -> arg[ 36]: -Djstartup.debuggable=no
    -> arg[ 37]: -DSAPINFO=EC6_01_server
    -> arg[ 38]: -DSAPSTART=1
    -> arg[ 39]: -DCONNECT_PORT=3479
    -> arg[ 40]: -DSAPSYSTEM=01
    -> arg[ 41]: -DSAPSYSTEMNAME=EC6
    -> arg[ 42]: -DSAPMYNAME=sapserver1_EC6_01
    -> arg[ 43]: -DSAPPROFILE=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
    -> arg[ 44]: -DFRFC_FALLBACK=ON
    -> arg[ 45]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 46]: -DSAPSTARTUP=1
    -> arg[ 47]: -DSAPSYSTEM=01
    -> arg[ 48]: -DSAPSYSTEMNAME=EC6
    -> arg[ 49]: -DSAPMYNAME=sapserver1_EC6_01
    -> arg[ 50]: -DSAPDBHOST=sapserver1
    -> arg[ 51]: -Dj2ee.dbhost=sapserver1
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    [Thr 6056] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 5680] Mon Mar 17 11:34:43 2008
    [Thr 5680] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 5680] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 5680] JLaunchISetClusterId: set cluster id 13670550
    [Thr 5680] Mon Mar 17 11:34:44 2008
    [Thr 5680] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 5680] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 3952] Mon Mar 17 11:35:11 2008
    [Thr 3952] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 3952] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 352] Mon Mar 17 11:35:12 2008
    [Thr 352] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 352] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "D:\usr\sap\EC6\DVEBMGS01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID13670550
    pid         : 5564
    system name : EC6
    system nr.  : 01
    started at  : Mon Mar 17 11:35:13 2008
    arguments       :
           arg[00] : D:\usr\sap\EC6\DVEBMGS01\exe\jlaunch.exe
           arg[01] : pf=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[02] : -DSAPINFO=EC6_01_server
           arg[03] : pf=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=3479
           arg[06] : -DSAPSYSTEM=01
           arg[07] : -DSAPSYSTEMNAME=EC6
           arg[08] : -DSAPMYNAME=sapserver1_EC6_01
           arg[09] : -DSAPPROFILE=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 7448] Mon Mar 17 11:35:13 2008
    [Thr 7448] *** WARNING => INFO: Unknown property [instance.box.number=EC6DVEBMGS01sapserver1] [jstartxx.c   841]
    [Thr 7448] *** WARNING => INFO: Unknown property [instance.en.host=sapserver1] [jstartxx.c   841]
    [Thr 7448] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 7448] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties]
    -> ms host    : sapserver1
    -> ms port    : 3900
    -> OS libs    : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : sapserver1
    -> ms port    : 3900
    -> os libs    : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID13670500 : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID13670550 : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID13670500           : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID13670550           : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\instance.properties
    [Thr 7448] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 7448] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 4468] JLaunchRequestFunc: Thread 4468 started as listener thread for np messages.
    [Thr 1984] WaitSyncSemThread: Thread 1984 started as semaphore monitor thread.
    [Thr 7448] NiInit3: NI already initialized; param 'maxHandles' ignored (1;402)
    [Thr 7448] CPIC (version=700.2005.12.02)
    [Thr 7448] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16
    [Thr 7448] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID13670550]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_16
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : D:\usr\sap\EC6\DVEBMGS01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\EC6\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 7448] JLaunchISetDebugMode: set debug mode [no]
    [Thr 4420] JLaunchIStartFunc: Thread 4420 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=D:\usr\sap\EC6\SYS\global
    -> arg[ 25]: -Dapplication.home=D:\usr\sap\EC6\DVEBMGS01\exe
    -> arg[ 26]: -Djava.class.path=D:\usr\sap\EC6\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\EC6\DVEBMGS01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=C:\j2sdk1.4.2_16\jre\bin\server;C:\j2sdk1.4.2_16\jre\bin;C:\j2sdk1.4.2_16\bin;D:\usr\sap\EC6\DVEBMGS01\j2ee\os_libs;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;D:\OraHome_1\bin;D:\OraHome_1\jre\1.4.2\bin\client;D:\OraHome_1\jre\1.4.2\bin;D:\oracle\product\10.1.0\Db_1\bin;D:\oracle\product\10.1.0\Db_1\jre\1.4.2\bin\client;D:\oracle\product\10.1.0\Db_1\jre\1.4.2\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\j2sdk1.4.2_16\bin;D:\usr\sap\EC6\SYS\exe\uc\NTI386
    -> arg[ 28]: -Dmemory.manager=1024M
    -> arg[ 29]: -Xmx1024M
    -> arg[ 30]: -Xms1024M
    -> arg[ 31]: -DLoadBalanceRestricted=no
    -> arg[ 32]: -Djstartup.mode=JCONTROL
    -> arg[ 33]: -Djstartup.ownProcessId=5564
    -> arg[ 34]: -Djstartup.ownHardwareId=B0245063248
    -> arg[ 35]: -Djstartup.whoami=server
    -> arg[ 36]: -Djstartup.debuggable=no
    -> arg[ 37]: -DSAPINFO=EC6_01_server
    -> arg[ 38]: -DSAPSTART=1
    -> arg[ 39]: -DCONNECT_PORT=3479
    -> arg[ 40]: -DSAPSYSTEM=01
    -> arg[ 41]: -DSAPSYSTEMNAME=EC6
    -> arg[ 42]: -DSAPMYNAME=sapserver1_EC6_01
    -> arg[ 43]: -DSAPPROFILE=D:\usr\sap\EC6\SYS\profile\EC6_DVEBMGS01_sapserver1
    -> arg[ 44]: -DFRFC_FALLBACK=ON
    -> arg[ 45]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 46]: -DSAPSTARTUP=1
    -> arg[ 47]: -DSAPSYSTEM=01
    -> arg[ 48]: -DSAPSYSTEMNAME=EC6
    -> arg[ 49]: -DSAPMYNAME=sapserver1_EC6_01
    -> arg[ 50]: -DSAPDBHOST=sapserver1
    -> arg[ 51]: -Dj2ee.dbhost=sapserver1
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    [Thr 4420] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 7152] Mon Mar 17 11:35:15 2008
    [Thr 7152] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 7152] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 7152] Mon Mar 17 11:35:16 2008
    [Thr 7152] JLaunchISetClusterId: set cluster id 13670550
    [Thr 7152] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 7152] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 6032] Mon Mar 17 11:35:42 2008
    [Thr 6032] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 6032] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 6136] Mon Mar 17 11:35:43 2008
    [Thr 6136] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 6136] JLaunchCloseProgram: good bye (exitcode = -11113)
    Thanks
    Prashant

  • Configure SSO with CAS for calendar

    Hello
    i try to configure SSO Calendar through communications servers trusted circle technology. I configure ics.conf :
    sso.appid = "ics50"
    sso.appprefix = "ssogrp1"
    sso.cookiedomain = ".univ.fr"
    sso.enable = "1"
    sso.singlesignoff = "true"
    sso.userdomain = ".univ.fr"
    sso.ics50.url = "http://pipeau.univ.fr/socp/verifySSO.jsp?"
    and then I restart Calendar. pipeau is my CAS/LDAP/tomcat server.
    When I launch http://solaris.univ.fr (my calendar server) in my web browser,
    there is no request to pipeau (http://pipeau.univ.fr/socp/verifySSO.jsp?) in order to find a valid cookie.
    Thank for your help
    hugo

    I have others informations to give you
    I have a correct cookie in my favorite web browser when I was authenticated.
    .univ.fr||/||ssogrp1-ics50||SOT-zvAdApsYTyTibGDZud06UZIb3EzK5NQ8W9bOghQHaDzpMtmhiC||false||0
    When I test my verifySSO.jsp with IP adress of my computer ( http://pipeau.univ.fr/socp/verifySSO.jsp?client=xxx.xxx.xxx.xxx), I get this :
    fquid=my_login
    authtype=plaintext
    My calendar server doesn't seem to test if I am already logged with SSO.
    Any ideas ?
    Hugo

  • Problem during configuration of webutil

    My Dears;
    during configuration of webutil
    when I sign the jar file
    I Write as C:\DevSuiteHome_1\forms\webutil\sign_webutil C:\DevSuiteHome_1\forms\java\frmwebutil.jar
    in cmd
    it give me like this
    http://www14.0zz0.com/2010/11/08/06/734584338.jpg
    what is the reason for this error
    I try more but....
    I remove oracle before but also no good
    plz help me
    Thanks In advance

    GO through this thread it has similar issues ...
    WebUtil Demo Runtime "Bean not found" Error

  • Problem of FOP memory with APEX ...

    Hello everyone !!!!
    I installed FOP in Oracle Applications Server, and said ApEx to use FOP to generate PDF files.
    However, the memory of FOP is very limited because it can't create PDF files if there are more than about 1.200 lines in the Report I want to print.
    I found on the net there was something to do for this :
    - launch the JVM with "java -Xmx1G" to use a memory of 1Go
    - create FOP_OPTS="-Xmx1G"in the file $HOME/.foprc
    But the file doesn't exist, and I don't access to any JVM ...
    Could anyone help me to know what to do ????
    Thanks by advance,
    Pierre C.

    Hi Varad,
    I tried your solution, however it didn't function :
    I found the opmn.xml file and changed the java-option for the OC4J contener of my application, setting it to "... -Xms512m -Xmx512m".
    Then I tried to print a PDF Report with about 1.700 lines, but the file was "corrupted", but with 1.300 lines it's ok.
    I also tried the Metalink note 744866.1.
    Is there any other think to do in order to solve this problem ??
    Thanks by advance,
    Pierre C.

  • Reinstall of ADFS 3.0 fails during configuration step with error ADRepository.CreateTopContainer

    I am installing ADFS 3.0 alongside an existing ADFS 2.0 farm.  I followed the steps as detailed here:
    http://office365support.ca/migrating-ad-fs-2-0-to-ad-fs-3-0-for-office365-single-sign-on-2/
    That worked fine initially, but I ran into problems and decided to remove ADFS 3.0 completely and start over.  When I rerun the the Active Directory Federation Services Configuration Wizard, it gets almost all the way through, but fails with a generic
    error of: An error occurred while trying to configure this machine.  
    Down below in the Detailed operation results, it displays:
    ADRepository.CreateTopContainer
    I am guessing I haven't cleared out something in Active Directory, but I'm not sure what that is.
    In my research, I found suggestions for deleting everything under ProgramData\Microsoft\ADFS, but I don't believe I can do that since I am still relying on the ADFS 2.0 installation until I can cut over.
    Any help would be much appreciated.
    Regards,
    David Collins

    ADFS 2.0 uses IIS and so the installation is under /inetpub/adfs/ls.
    There's also a backup here:
    ADFS : Restoring / re-installing ADFS v 2.0.

  • Threading problem during File Upload with Apache faces upload tag

    First I am going to tell you "My Understanding of how JSF Apache Upload works, Correct me if i am wrong".
    1) Restores View (to show Input box and Browse button to facilitate users to select a file for upload)
    2) Translates Request Parameters to Component Values (Creates equivalent components to update them with request values).
    3) Validates Input(Checks to see whether the User has input the correct file)
    4) Updates Backing Bean or Model to reflect the values.
    5) Renders response to user.
    I am uploading huge files of sizes 400MB and above with the help of JSF apache extensions tag
    <h:form id="uploadForm" enctype="multipart/form-data">
    <x:inputFileUpload style="height:20px;" id="upload" value="#{backingbean.fileContents}" storage="file" size="50" />
    </h:form>
    In the backing bean
    private UploadedFile fileContents;
         public UploadedFile getFileContents() {
              return fileContents;
         public void setFileContents(UploadedFile fileContents) {
              System.out.println("File being uploaded...");
              this.fileContents = fileContents;
    Since, the file size is so huge, I am using temp folder to use for the apache tag instead of memory.
    In web.xml i am using like this
    <filter>
    <filter-name>ExtensionsFilter</filter-name>
    <filter-class>org.apache.myfaces.component.html.util.ExtensionsFilter</filter-class>
    <init-param>
    <param-name>uploadMaxFileSize</param-name>
    <param-value>600m</param-value>
    </init-param>
    <init-param>
    <param-name>uploadThresholdSize</param-name>
    <param-value>10m</param-value>
    </init-param>
         <init-param>
    <param-name>uploadRepositoryPath</param-name>
    <param-value>/uploadfolder/</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>ExtensionsFilter</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    The upload process is working perfectly fine.
    Now coming to the problem:
    Suppose one user is logging into the application & uploading say 400MB of files.
    Until these files are linked to the model objects as my understanding of step 2, if second user tries to open the application he gets stuck with the loading page.
    The page gets loaded only after the request files are linked to the component values(Step 2 above) and updates the backing bean's values.
    I don't see any error in the logs. User is getting stuck. The user is getting stuck only when uploading the files. The other operations like searching are not blocking any other activities performed by the user.
    Server used: IBM Application Server V6.0. CPU is normal, memory usage is normal.

    Dear friend,
    i am also trying to upload using the common file upload.
    when try to run the file error is coming
    can give some suggestion.
    can i use if concurrent user file upload at a time

  • Problem in configuring mysql with JBoss 4

    Hello Forum
    I m having following exceptions while invoking my session bean from servlet
    java.rmi.ServerException: RuntimeException; nested exception is: java.lang.NullPointerException I have put mysql-ds.xml file in :\jboss-4.0.3SP1\server\default\deploy directory and mysql-connector-java-3.1.10-bin.jar in :\jboss-4.0.3SP1\server\default\lib directory.
    my mysql-ds.xml code is (which I take from connector-j doc)
    <datasources>
        <local-tx-datasource>
            <!-- This connection pool will be bound into JNDI with the name
                 "java:/MySQLDB" -->
            <jndi-name>MySQLDB</jndi-name>
            <connection-url>jdbc:mysql://localhost:3306/student</connection-url>
            <driver-class>com.mysql.jdbc.Driver</driver-class>
            <user-name>root</user-name>
            <password>pakistan</password>
            <min-pool-size>5</min-pool-size>
            <max-pool-size>20</max-pool-size>
            <idle-timeout-minutes>5</idle-timeout-minutes>
            <exception-sorter-class-name>com.mysql.jdbc.integration.jboss.ExtendedMysqlExceptionSorter</exception-sorter-class-name>
            <valid-connection-checker-class-name>com.mysql.jdbc.integration.jboss.MysqlValidConnectionChecker</valid-connection-checker-class-name>
        </local-tx-datasource>
    </datasources>and my session bean code is:
    imports ....
    public class JBSessionBean implements javax.ejb.SessionBean, JBSession.JBSessionRemoteBusiness {
        private javax.ejb.SessionContext context;
        public void ejbCreate() { }
        public java.sql.ResultSet setDbConnection()
            InitialContext ctx ;
            String jndiName = "java:/MySQLDB";
            DataSource ds = null;
            Connection conn = null;
            ResultSet rs = null;                
            String query = "SELECT * FROM stdinfo";
            try
                ctx = new InitialContext();
            catch (NamingException e)
                System.out.println (e.toString());
            //Lookup the data source
            ctx = null;
            try
                ds = (DataSource) ctx.lookup(jndiName);
            catch(NamingException e)
                System.out.println (e.toString() + "Error in Creating the DataSource");
            try
                conn = ds.getConnection();
            catch(SQLException e)
                System.out.println (e.toString() + "Error in Creating Connection");
            try
                Statement stmt = conn.createStatement( );
                System.out.println("got statmnet");
                rs= stmt.executeQuery( query ) ;
                System.out.println("got rs");     
            catch(SQLException e)
                System.out.println (e.toString() + "Error in Creating statement n query");
            return rs;
    }and my servlet code is
    public class JBossWeb extends HttpServlet {
        protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            response.setContentType("text/html;charset=UTF-8");
            PrintWriter out = response.getWriter();
            ResultSet rSet = null;
            JBSessionRemote remoteRef = lookupJBSessionBean();
            try {
               rSet =  remoteRef.setDbConnection();
            } catch (RemoteException ex) {
                out.println(ex.toString());
            } catch (SQLException ex) {
                out.println(ex.toString());
            } catch (Exception ex){
                out.println(ex.toString());
            out.println("<html>");
            out.println("<head>");
            out.println("<title>Servlet JBossWeb</title>");
            out.println("</head>");
            out.println("<body>");
            out.println("<h1>Servlet JBossWeb</h1>");
            out.println(remoteRef.printTemp());
            if (rSet == null)
                out.println("Resultset null");
            out.println("</body>");
            out.println("</html>");
            out.close();
        private JBSession.JBSessionRemote lookupJBSessionBean() {
            try {
                javax.naming.Context c = new javax.naming.InitialContext();
                Object remote = c.lookup("java:comp/env/ejb/JBSessionBean");
                JBSession.JBSessionRemoteHome rv = (JBSession.JBSessionRemoteHome) javax.rmi.PortableRemoteObject.narrow(remote, JBSession.JBSessionRemoteHome.class);
                return rv.create();
            catch(javax.naming.NamingException ne) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne);
                throw new RuntimeException(ne);
            catch(javax.ejb.CreateException ce) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ce);
                throw new RuntimeException(ce);
            catch(java.rmi.RemoteException re) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,re);
                throw new RuntimeException(re);
    }I m using NetBeans IDE 5. Am I missing anything regarding more configuration in JBoss regarding mysql?
    I could not found why I got exception, please tell me after reviewing my code.
    hope I will got solution from u ppl
    Thanx in advance

    dear dvohra09
    it still giving me the same exception
    java.rmi.ServerException: RuntimeException; nested exception is: java.lang.NullPointerException as u suggested
    <application-policy name = "MySqlDbRealm">
    <authentication>
    <login-module code = "org.jboss.resource.security.ConfiguredIdentityLoginModule" flag = "required">
    <module-option name ="principal"></module-option>
    <module-option name ="userName">root</module-option>
    <module-option name ="password">pakistan</module-option>
    <module-option name ="managedConnectionFactoryName"> jboss.jca:service=LocalTxCM,name=MySQLDB
    </module-option>
    </login-module>
    </authentication>
    </application-policy>but still I didnt able to connect my database to JBoss
    any idea...???

  • Problem in configuring SSL with IIS 5.0 server and weblogic 6.1

    Dear Freinds,
    I m configuring the IIS 5.0 and weblogic 6.1.
    I M using IIS and Proxy and Weblogic as Main Server.
    I m able to route the Http request from IIS to wblogic but when i type in Https for
    connecting to the weblogic resources it throws error and says that SSL is not Initialized.
    I m using the Bea document for configuring the same.
    Please Help me ASAP.
    Thanks
    Praveen Rana

    In the environment definition,
    -> External Application JDBC
    -> Properties
    -> Outbound JDBC Connection
    You have the database URL in the "DriverProperties" field
    Valid URL would be : jdbc:mysql://localhost:3306/caps
    !! The doc says that this field is optional !! Seems to be an error in the doc:
    Hope this helps
    Seb

Maybe you are looking for

  • Issue when using HP deskjet D1660 shared by printer server

    Hi, I'm trying to use HP D1660 through ReadyNAS's (network storage) printer server feature. I connected D1660 and ReadyNAS through USB link. Using system preference-printer&fax, my mac perfectly sees exact printer name broadcasted through bonjour and

  • Error while trying to retrieve text ......

    Hello, while connecting to Oracle 8i from my VB program i get the following error. -2147217843[Oracle][ODBC][Ora] Error while trying to retrieve text for error ORA-12154. but i get the connection in debug mode. please give any guidance. I am using Or

  • IMovie08 to FCE4 to iDVD

    I am having problems getting my video format to stay the same when moving between these three applications. I have imported video from my Canon Elura100 (16:9 aspect ratio) into iMovie08. I then export the video using Quicktime. The default resolutio

  • How to lock wallpaper in Ipad

    Hello! I am responsible for 60 iPads in a school. I have researched for a solution to prevent students from changing wallpaper, but until now I don't have sucess. Would be excelent to block, because I need to keep always school logo screen. Below I f

  • Hide the Notification Bar in my sub site in Sharepoint Online

    Hi All, I have this annoying notification or status bar right at top of my Team Site that continuously displays the message -  This site can be shared with people outside this organisation. Learn More When I click the learn more option it says that t