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

Similar Messages

  • Configuring default web apps for virtual hosts

    Hi,
    This posting is meant save time for anyone trying to specify a default web app
    for each of their virtual hosts (as opposed to specifying a default web app for
    each of their wl servers). This applies to weblogic 6.1, on NT. (I haven't tried
    this on other platforms).
    If you are trying to use the admin console to do this, give up. It's not possible.
    The "Virtual Host/Configuration" window lets you specify everything about that
    vhost configuration EXCEPT a default web app. (The "Default Web Application" drop
    down menu will always have only one option to choose from: "none").
    Instead, shutdown your server, and edit your domain's config.xml file manually.
    Attached is an example config file that specifies that the web app "kz" should
    be the default web app for the vhost "wl.kz.com", and that the web app "kahuna"
    should be the default web app for the vhost "www.kahuna.com".
    Hope this helps,
    Brian O'Donnell
    Lead Developer, Learning Network
    [config.xml]

    Hi,
    Is it possible to configure default web appls for virtual hosts
    with Weblogic 6.0 on NT platform? I tried to configure the configure.xml as Brian
    did, it doesnot work. I am just wondering if there's any other possible way to
    do this.
    Thanks.
    Mei
    "Brian O'Donnell" <[email protected]> wrote:
    >
    >
    >
    Hi,
    This posting is meant save time for anyone trying to specify a default
    web app
    for each of their virtual hosts (as opposed to specifying a default web
    app for
    each of their wl servers). This applies to weblogic 6.1, on NT. (I haven't
    tried
    this on other platforms).
    If you are trying to use the admin console to do this, give up. It's
    not possible.
    The "Virtual Host/Configuration" window lets you specify everything about
    that
    vhost configuration EXCEPT a default web app. (The "Default Web Application"
    drop
    down menu will always have only one option to choose from: "none").
    Instead, shutdown your server, and edit your domain's config.xml file
    manually.
    Attached is an example config file that specifies that the web app "kz"
    should
    be the default web app for the vhost "wl.kz.com", and that the web app
    "kahuna"
    should be the default web app for the vhost "www.kahuna.com".
    Hope this helps,
    Brian O'Donnell
    Lead Developer, Learning Network

  • Problem when configuring WebLogic 6.0 for CGI - URGENT

    Hello,
    Can U please write back for the below described problem.
    We are using WebLogic Server 6.0 and we have configured the WLS for CGI support,so
    that Oracle Report Server 6.0 cud be used to generate reports.Following is the
    series of steps that have been followed for the configuration and generating
    a report:
    1.The Rwcgi60.exe has been copied from D:\orant\bin ( assumed that D is the drive
    wherein Oracle Report Server6.0 has been installed) to the directory C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp_myserver\cgi-bin
    ( assumed that C is the drive wherein Weblogic Server6.0 has been installed)
    2.The web.xml in the following directory C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp_myserver\WEB-INF,
    has the following details
    <?xml version="1.0" ?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 1.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
         <servlet>
              <servlet-name>CGIServlet</servlet-name>
              <servlet-class>weblogic.servlet.CGIServlet</servlet-class>
              <init-param>
              <param-name>cgiDir</param-name>
              <param-value>/bea/wlserver6.0/config/mydomain/applications/DefaultWebApp_myserver/cgi-bin</param-value>
              </init-param>
         </servlet>
         <servlet-mapping>
              <servlet-name>CGIServlet</servlet-name>
              <url-pattern>/cgi-bin/*</url-pattern>
         </servlet-mapping>
    </web-app>
    3.Environment Variables Settings as mentioned below have been set in the registry,
    REPORTS60_SHARED_CACHE = NO
    REPORTS60_VIRTUAL_MAP = /CACHE
    REPORTS60_PHYSICAL_MAP = D:\orant\REPORT60\SERVER\CACHE
    REPORTS60_PATh = D:\orant\REPORT60\ADMIN\TEMPLATE\US;D:\orant\REPORT60;c:\web_reports\reports
    REPORTS_CGIMAP = D:\orant\REPORT60\SERVER\cgicmd.dat
    4.Started the startWebLogic.cmd, in the directory C:\bea\wlserver6.0\config\mydomain
    5.On giving the following URL in the IE5.5, http://bet-pc0080:7001/cgi-bin/rwcgi60.exe?report=Rept4-PriceStructuresCreated.rdf+server=REP60_BET-PC0080+userid=dstnew/dstnew@dstnew+desformat=html+destype=cache+Retailer_id=001010010200103
    It shows up the following error in the startWebLogic.cmd and the IE icon on the
    browser keeps rotating.
    java.lang.ClassCastException: weblogic.utils.Executable$Drainer
    at weblogic.servlet.internal.ResponseHeaders.setDateHeader(ResponseHeaders.java:273)
    at weblogic.servlet.internal.ServletResponseImpl.setDateHeader(ServletResponseImpl.java:467)
    at weblogic.servlet.internal.ServletResponseImpl.writeHeaders(ServletResponseImpl.java:672)
    at weblogic.servlet.internal.ServletOutputStreamImpl.flush(ServletOutputStreamImpl.java:130)
    at weblogic.servlet.internal.ServletOutputStreamImpl.flushWithCheck(ServletOutputStreamImpl.java:412)
    at weblogic.servlet.internal.ServletOutputStreamImpl.checkForFlush(ServletOutputStreamImpl.java:548)
    at weblogic.servlet.internal.ServletOutputStreamImpl.write(ServletOutputStreamImpl.java:210)
    at weblogic.servlet.internal.WLOutputStreamWriter.flushBuffer(WLOutputStreamWriter.java:139)
    at weblogic.servlet.internal.WLOutputStreamWriter.write(WLOutputStreamWriter.java:104)
    at weblogic.servlet.internal.WLOutputStreamWriter.write(WLOutputStreamWriter.java:67)
    at java.io.PrintWriter.write(PrintWriter.java:173)
    at weblogic.servlet.CGIServlet$CGICharArrayWriter.write(CGIServlet.java:292)
    at weblogic.utils.Executable$Drainer.run(Executable.java:266)
    Please send in a solution at the earliest.
    Thanks,
    Kavitha

    Hello,
    Can U please write back for the below described problem.
    We are using WebLogic Server 6.0 and we have configured the WLS for CGI support,so
    that Oracle Report Server 6.0 cud be used to generate reports.Following is the
    series of steps that have been followed for the configuration and generating
    a report:
    1.The Rwcgi60.exe has been copied from D:\orant\bin ( assumed that D is the drive
    wherein Oracle Report Server6.0 has been installed) to the directory C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp_myserver\cgi-bin
    ( assumed that C is the drive wherein Weblogic Server6.0 has been installed)
    2.The web.xml in the following directory C:\bea\wlserver6.0\config\mydomain\applications\DefaultWebApp_myserver\WEB-INF,
    has the following details
    <?xml version="1.0" ?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 1.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
         <servlet>
              <servlet-name>CGIServlet</servlet-name>
              <servlet-class>weblogic.servlet.CGIServlet</servlet-class>
              <init-param>
              <param-name>cgiDir</param-name>
              <param-value>/bea/wlserver6.0/config/mydomain/applications/DefaultWebApp_myserver/cgi-bin</param-value>
              </init-param>
         </servlet>
         <servlet-mapping>
              <servlet-name>CGIServlet</servlet-name>
              <url-pattern>/cgi-bin/*</url-pattern>
         </servlet-mapping>
    </web-app>
    3.Environment Variables Settings as mentioned below have been set in the registry,
    REPORTS60_SHARED_CACHE = NO
    REPORTS60_VIRTUAL_MAP = /CACHE
    REPORTS60_PHYSICAL_MAP = D:\orant\REPORT60\SERVER\CACHE
    REPORTS60_PATh = D:\orant\REPORT60\ADMIN\TEMPLATE\US;D:\orant\REPORT60;c:\web_reports\reports
    REPORTS_CGIMAP = D:\orant\REPORT60\SERVER\cgicmd.dat
    4.Started the startWebLogic.cmd, in the directory C:\bea\wlserver6.0\config\mydomain
    5.On giving the following URL in the IE5.5, http://bet-pc0080:7001/cgi-bin/rwcgi60.exe?report=Rept4-PriceStructuresCreated.rdf+server=REP60_BET-PC0080+userid=dstnew/dstnew@dstnew+desformat=html+destype=cache+Retailer_id=001010010200103
    It shows up the following error in the startWebLogic.cmd and the IE icon on the
    browser keeps rotating.
    java.lang.ClassCastException: weblogic.utils.Executable$Drainer
    at weblogic.servlet.internal.ResponseHeaders.setDateHeader(ResponseHeaders.java:273)
    at weblogic.servlet.internal.ServletResponseImpl.setDateHeader(ServletResponseImpl.java:467)
    at weblogic.servlet.internal.ServletResponseImpl.writeHeaders(ServletResponseImpl.java:672)
    at weblogic.servlet.internal.ServletOutputStreamImpl.flush(ServletOutputStreamImpl.java:130)
    at weblogic.servlet.internal.ServletOutputStreamImpl.flushWithCheck(ServletOutputStreamImpl.java:412)
    at weblogic.servlet.internal.ServletOutputStreamImpl.checkForFlush(ServletOutputStreamImpl.java:548)
    at weblogic.servlet.internal.ServletOutputStreamImpl.write(ServletOutputStreamImpl.java:210)
    at weblogic.servlet.internal.WLOutputStreamWriter.flushBuffer(WLOutputStreamWriter.java:139)
    at weblogic.servlet.internal.WLOutputStreamWriter.write(WLOutputStreamWriter.java:104)
    at weblogic.servlet.internal.WLOutputStreamWriter.write(WLOutputStreamWriter.java:67)
    at java.io.PrintWriter.write(PrintWriter.java:173)
    at weblogic.servlet.CGIServlet$CGICharArrayWriter.write(CGIServlet.java:292)
    at weblogic.utils.Executable$Drainer.run(Executable.java:266)
    Please send in a solution at the earliest.
    Thanks,
    Kavitha

  • 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

  • "problem reading configuration"  Bug in Admin for Graphite and Snow

    Background: Bought a used "graphite" (M5757 SN PW9495EYH93) for a friend with only dial-up access. Downloaded Airport Admin for Graphite and Snow. System seemed to be operating fine - I could see it on WiFi and even connect. Of course I was missing some passwords, so I needed to get it back to default settings by doing a hard reset-"perform a local reload". Support article HT2439 provided instructions: I plugged in a wired connection.
    But "Auto" address selection didn't seem to work - I kept getting "problem reading configuration" messages.
    So I tried "Manual" for entering IP address and password.
    OOPS! When selecting "manual" for setting the IP address, the IP address triplets entered were reversed when saved in the device. Or at least they display reversed in AirPort Admin, while other nearby AirPort addresses display correctly.
    For instance, when I set the device to the Apple default address of 192.42.249.13, the address displayed in AirPort Admin was 13.249.42.192. This was reliably repeatable, and worked around by entering the desired triplets in reverse order. Once I inverted the triplets and got the IP address I expected into the AirPort, configuration proceeded smoothly.
    This bug can lead to frustration finding and reconfiguring AirPort devices, communicating over ethernet (since of course the network address and subnet masks work perfectly, but not as expected) and displaying/changing configurations. I didn't spend more time investigating the boundaries of the problem after finding the work-around and getting this particular AirPort working, but the problem might be the cause of some of the other configuration issues that seem to crop up regularly.

    Hello Dudlington. Welcome to the Apple Discussions!
    The "Airport Admin Utility for Graphite and Snow" seems to be at version 4.2.5 for OS X and was released in April 2008, yet only supports the "dual ethernet" versions.
    Not to worry, the "Dual Ethernet" and "Snow" actually refer to the same model. The 802.11b Snow is the predecessor to the 802.11b/g AirPort Extreme Base Station (AEBS) and followed the "Graphite."

  • 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

  • REFUSES TO DOWNLOAD SITES.....HAVING TERRIBLE PROBLEMS ALL YEAR AFTER USING FIREFOX FOR YEARS.....

    I used firefox for years.....This year it's not been working properly.......I have reset it numerous times but it always reverts back to problems...Latest one : won't download sites I'm needing to use...'

    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''

  • I cannot scroll using Firefox. I can scroll in I.E. and Chrome. This is a new problem. I've used Firefox for years.

    Using my mouse pad scroll feature I cannot scroll in Firefox. I've been using Firefox for years and never had a problem before. I can scroll in Chrome and I.E. There are a few websites I can scroll in but not in Yahoo and several other sites. and I can't scroll on the page I'm typing this question on.

    Try to modify the pref ui.trackpoint_hack.enabled on the about:config page from the default value -1 to 0 or 1 to see if that makes the scroll pad work.
    Close and restart Firefox after changing the pref.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold (user set).
    *Preferences can be reset to the default via the right-click context menu if they are user set
    *Preferences can be changed via the right-click context menu: Modify (String or Integer) or Toggle (Boolean)

  • 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

  • How to set Develoment Environmnet  in Linux using Tomcat for Application

    Hi All,
    I am facing problem while craeting development environment in Linux for Tomcat.
    I have installed Tomcat in /opt/tomcat directory.
    Within Tomcat i made a Application Dir name "eprosys".
    /opt/tomcat/eprosys/WEB-INF/classes
    /web.xml
    and then configure server.xml in conf directory
    <Context path="/project"
    docBase="opt/tomcat/eprosys"
    reloadable="true"
    debug="0"/>
    </Host>
    then i started tomcat
    [root@localhost bin]# ./startup.sh
    Using CATALINA_BASE: /opt/tomcat
    Using CATALINA_HOME: /opt/tomcat
    Using CATALINA_TMPDIR: /opt/tomcat/temp
    Using JRE_HOME: /usr/java/jdk1.5.0_07/
    [root@localhost bin]#
    In catalina.out message which i get.
    Aug 26, 2006 6:39:21 PM org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8009
    Aug 26, 2006 6:39:21 PM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/30 config=null
    Aug 26, 2006 6:39:22 PM org.apache.catalina.storeconfig.StoreLoader load
    INFO: Find registry server-registry.xml at classpath resource
    Aug 26, 2006 6:39:23 PM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 17978 ms
    [raingauge] DEBUG [Timer-0] LocationDailyGraphManagerImpl.createLocationDailyGraphs(62) | Location Daily Graph. Creating graphs at Time=Sat Aug 26 18:39:43 IST 2006
    But when i use browser like
    http://localhost:8080/project
    I get this message .
    HTTP Status 404 - /project/
    type Status report
    message /project/
    description The requested resource (/project/) is not available
    So, please help me where i am wrong. Same thing i do in Windows O/s it works.
    But in Linux i face problem,
    Bye,
    Prabhat

    aiGrace wrote:
    I want to set the options "-server -Xms128m -Xmx512m -Dcom.sun.management.jmxremote.port=8999 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.rmi.server.hostname=11.40.5.62" as my java default options so that I only have to use
    java -classpath . HelloWorldUse the *nix alias command
    alias java="java -server -Xms128m -Xmx512m -Dcom.sun.management.jmxremote.port=8999 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.rmi.server.hostname=11.40.5.62"

  • Help needed in implementing Cisco Unity SSO using SAML

    Hello,
    I am aware that Cisco Unity 8.x  has a SSO checklist that requires:
    - Cisco Unity
    - MS AD on Win2003/8
    - Open AM
    - Apache Tomcat 7.0
    We already have a single sign-on solution at our organization that uses the Novell Access Manager (NAM). Would we be able to do Federated solution between another SSO product and the OpenAM on the Cisco Unity product. In this architecture all we will do is setup Open AM  as Service Provider (SP) fronting the Cisco Unity Apps and then do a SAML 2.0 protocol with an Identity Provider (IdP)  which would the NAM.
    The idea is that we have single Identity Provider  (IdP). I have a difficult time understanding why setting up SSO for Cisco Unity app requires installing a full suite of OpenAM SSO. I imagine most companies have their SSO solutions that have been implemented using products such as Oracle AM, Tivoli etc and all they would need to do is federate with the Cisco App, instead of of setting up a parallel SSO suite.
    Thanks in advance!

    Instead of registering the plug-in can u try placing it in the plugins folder under Oracle_IDM1/server folder.
    at times restart is required. esp when the server is running in production mode.
    Regards
    user12841694

  • Managed System Configuration: SSO setup failed for Solution Manager 7.1 sp11

    Hi Folks,
    While doing Managed System Configuration for Soman system i am getting error in SSO Setup
    Currently I am in
    8. Configure Automatically :Single Sign On Setup
    This is i am going for managed System (Solution Manager System Itself)
    Below is error log..
    SSO setup failed : a problem occured while attempting to add login modules for ticket authentication
    Screen shot attached.
    Found SID for SSO ACL entry : SMP
    Found login.ticket_client for SSO ACL entry : 000
    The Read entry permission on TicketKeystore/SAPLogonTicketKeypair-cert was given to sap.com/tc~webadministrator~solmandiag/servlet_jsp/smd/root/WEB-INF/lib/SetupLib.jar
    The TicketKeystore/SAPLogonTicketKeypair-cert was succesfully read (619 bytes)
    The SSO ticket Certificate <OU=J2EE,CN=SMP> has been successfully imported into ticket Keystore
    SSO setup failed : a problem occured while attempting to add login modules for ticket authentication
    SSO setup failed : error while updating login modules : Caller not authorized.; nested exception is:
    java.lang.SecurityException: com.sap.engine.services.security.exceptions.BaseSecurityException: Caller not authorized.
    at com.sap.engine.services.security.resource.ResourceHandleImpl.checkPermission(ResourceHandleImpl.java:634)
    at com.sap.engine.services.security.resource.ResourceHandleImpl.checkPermission(ResourceHandleImpl.java:520)
    at com.sap.engine.services.security.resource.ResourceContextImpl.checkPermission(ResourceContextImpl.java:45)
    at com.sap.engine.services.security.restriction.Restrictions.checkPermission(Restrictions.java:170)
    at com.sap.engine.services.security.restriction.Restrictions.checkPermissionRemote(Restrictions.java:158)
    at com.sap.engine.services.security.remoteimpl.RemoteSecurityImpl.getPolicyConfiguration(RemoteSecurityImpl.java:63)
    at com.sap.engine.services.security.remoteimpl.RemoteSecurityImplp4_Skel.dispatch(RemoteSecurityImplp4_Skel.java:225)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:336)
    at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)
    at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    The SSO ticket Certificate <CN=SMP> has been successfully imported into ticket Keystore
    SSO setup failed : a problem occured while attempting to add login modules for ticket authentication
    SSO setup failed : error while updating login modules : Caller not authorized.; nested exception is:
    java.lang.SecurityException: com.sap.engine.services.security.exceptions.BaseSecurityException: Caller not authorized.
    at com.sap.engine.services.security.resource.ResourceHandleImpl.checkPermission(ResourceHandleImpl.java:634)
    at com.sap.engine.services.security.resource.ResourceHandleImpl.checkPermission(ResourceHandleImpl.java:520)
    at com.sap.engine.services.security.resource.ResourceContextImpl.checkPermission(ResourceContextImpl.java:45)
    at com.sap.engine.services.security.restriction.Restrictions.checkPermission(Restrictions.java:170)
    at com.sap.engine.services.security.restriction.Restrictions.checkPermissionRemote(Restrictions.java:158)
    at com.sap.engine.services.security.remoteimpl.RemoteSecurityImpl.getPolicyConfiguration(RemoteSecurityImpl.java:63)
    at com.sap.engine.services.security.remoteimpl.RemoteSecurityImplp4_Skel.dispatch(RemoteSecurityImplp4_Skel.java:225)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:336)
    at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)
    at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Exception
    java.rmi.RemoteException: Caller not authorized.; nested exception is:
    java.lang.SecurityException: com.sap.engine.services.security.exceptions.BaseSecurityException: Caller not authorized.
    at com.sap.engine.services.security.resource.ResourceHandleImpl.checkPermission(ResourceHandleImpl.java:634)
    at com.sap.engine.services.security.resource.ResourceHandleImpl.checkPermission(ResourceHandleImpl.java:520)
    at com.sap.engine.services.security.resource.ResourceContextImpl.checkPermission(ResourceContextImpl.java:45)
    at com.sap.engine.services.security.restriction.Restrictions.checkPermission(Restrictions.java:170)
    at com.sap.engine.services.security.restriction.Restrictions.checkPermissionRemote(Restrictions.java:158)
    at com.sap.engine.services.security.remoteimpl.RemoteSecurityImpl.getPolicyConfiguration(RemoteSecurityImpl.java:63)
    at com.sap.engine.services.security.remoteimpl.RemoteSecurityImplp4_Skel.dispatch(RemoteSecurityImplp4_Skel.java:225)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:336)
    at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)
    at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    at com.sap.engine.services.security.restriction.Restrictions.checkPermissionRemote(Restrictions.java:160)
    at com.sap.engine.services.security.remoteimpl.RemoteSecurityImpl.getPolicyConfiguration(RemoteSecurityImpl.java:63)
    at com.sap.engine.services.security.remoteimpl.RemoteSecurityImplp4_Skel.dispatch(RemoteSecurityImplp4_Skel.java:225)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:336)
    at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)
    at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Caused by: java.lang.SecurityException: com.sap.engine.services.security.exceptions.BaseSecurityException: Caller not authorized.
    at com.sap.engine.services.security.resource.ResourceHandleImpl.checkPermission(ResourceHandleImpl.java:634)
    at com.sap.engine.services.security.resource.ResourceHandleImpl.checkPermission(ResourceHandleImpl.java:520)
    at com.sap.engine.services.security.resource.ResourceContextImpl.checkPermission(ResourceContextImpl.java:45)
    at com.sap.engine.services.security.restriction.Restrictions.checkPermission(Restrictions.java:170)
    at com.sap.engine.services.security.restriction.Restrictions.checkPermissionRemote(Restrictions.java:158)
    at com.sap.engine.services.security.remoteimpl.RemoteSecurityImpl.getPolicyConfiguration(RemoteSecurityImpl.java:63)
    at com.sap.engine.services.security.remoteimpl.RemoteSecurityImplp4_Skel.dispatch(RemoteSecurityImplp4_Skel.java:225)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:336)
    at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)
    at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    at com.sap.engine.services.security.exceptions.BaseSecurityException.writeReplace(BaseSecurityException.java:349)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:331)
    at java.io.ObjectStreamClass.invokeWriteReplace(ObjectStreamClass.java:910)
    at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1024)
    at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1344)
    at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1316)
    at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1260)
    at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1065)
    at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:282)
    at com.sap.engine.services.rmi_p4.DispatchImpl.throwException(DispatchImpl.java:147)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:338)
    ... 8 more
    Regards,
    San

    Hi Sandeep,
    It seems authorization issue. Please check the below SAP Note :
    1988642 - Warning 'caller not authorized' in Step 'Single Sign On Setup'
    Hope this helps.
    Thanks & Regards,
    Nisha

  • SAP SSO using CUA for Transport Express implementation

    I am implementing Transport Express application as part of a larger project on a Dual Track environment. The business want TE to be integrated into the SSO landscape. This is where I am having difficulties. I need advice from anyone having implemented BTI's Transport Express into SAP requiring SSO with CUA as part of the business landscape? Our Domain Controller is Solution Manager. The TE settings in SolMan allow for a Web UI email notification, this contains a hyperlink to a user Dashboard. The expectation with SSO is that clicking on the hyperlink will automatically connect us to the Web UI Dashboard. Currently this does not work. Any suggestions?
    I have also been given three options to concider; 1. Our Portal manages ABAP and Java SSO, 2. SPNego is for ABAP systems, 3. A system to system config might work.

    Hi,
    Now SPNego is working on ABAP stack as well as Java stack.
    If you want to use this solution, the following videos may help.
    Single Sign-On with Kerberos
    Best regards,
    Shuai

  • Using ALEAUD for application reply? or build a new IDOC ?

    Hello.
    I have a scenario where a 3rd party sends me a message, that I map in my PI to an ACC_DOCUMENT IDOC.
    I need to send a reply on the ACC_DOCUMENT IDOC after processing it.
    The reply must contain several applicative values from the IDOC - so that the 3rd party will be able to
    "understand" on what message it receives the reply.
    Should I use ALEAUD in this case? I'll have to add an extension so that it will contain the applicative values.
    Or should I build a new IDOC or ABAP proxy to send the reply back? will I be able to generate it when I process the IDOC?
    Anyone has a Rule of thumb on this matter?
    Thanks in advance,
    Imanuel Rahamim.

    Hi,
    If you want to give the application response with minimal effor, you might want to change the ACC_DOCUMENT IDoc used so far to calling BAPI_ACC_DOCUMENT_POST. Actually, their data structures are identical, because ACC_DOCUMENT is an ALE interface generated for this BAPI. Thanks to this, you will immediately receive application response from your ECC system, including information like document number of the document posted, and similar.
    Alternatively, if you do not want to use synchronous scenario, I recommend developing a custom ABAP Proxy that you will use to pass posting information from ECC to PI to your 3rd party system. You can call this Proxy after each IDoc is posted, or on a regular basis to collect multiple postings information into a single call. I think this will be easier to do it from scratch than to enhance ALEAUD message.
    Or you can go one step further and configure FIDCC2 IDoc distribution to have the financial postings automatically sent from ECC to PI to 3rd party, immediately after the posting document is created. It is up to you to decide, based on the actual requirements and possibilities of the 3rd party system.
    Hope you'll find this useful,
    Greg

  • Configure Service Principle Name for Application Pool account and web application?

    Hello Community
        On WS2012 Server running Sharepoint 2013 Server when you
    configure SPN you configure it for the SQL server object "MSSQLSvc" (domain account)
    and the user object "HTTP" (domain account).
        The question is if you also should configure SPN for the Application Pool account and
    configure SPN for the web application, how do you configure SPN for the Application Pool
    account and the web application?
        Thank you
        Shabeaut

    The Web Application is only an IIS Site. You're configuring the SPN for the Domain User running the IIS Application Pool (that the Web Application (IIS Site) leverages).
    So you would just need to use the format of:
    setspn -A HTTP/webAppUrl domain\iisapppoolacctusername
    setspn -A HTTP/webAppUrl.fqdn.com domain\iisapppoolacctusername
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for

  • Collection assign issue in OID provisioning environment

    Hy Tom, I am interested in LDAP with OID PROVISIONING in portal 10g application. we create a register procedure. however. i got an error message as ORA-06502: PL/SQL: numeric or value error: NULL index table key value. After debuging, we found that i

  • Make jsp page read only

    dera frds, im working on a site,i make a web page based on jsp,that page has a download file,i want the authorized user can download that file,other can see that file as read only mode,but can't download,so plz provode me some program to make jsp pag

  • Document.write in Portal?

    This is a continuation of an issue I posted in a previous thread. My college's Portal home page displays a pagelet containing a Flash animation that provides rotating content for students, such as news about registration, ongoing contests, etc. Becau

  • Why does the iphone5 battery drain so quickly

    My iPhone 5 is great; unfortunately the batter drains in no time.  I end up recharging it twice to 3 times a day.  I wish I had kept my iPhone4.

  • What is the best way to remove footage from the middle of a clip?

    What is the best way to remove unwanted footage from the middle of a clip? I have a clip that I've trimmed from the start and finsih, but I need to remove "boring" footage from inbetween.