WebModule[/amserver]PWC1396:

Get the following when starting my instance on the web
failure: WebModule[amserver]StandardWrapper.Throwable
java.lang.ExceptionInInitializerError
at com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth(LoginLogoutMapping.java:89)
at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:74)
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1150)
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:979)
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4352)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4709)
at com.sun.webserver.connector.nsapi.WebModule.start(WebModule.java:170)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1089)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:838)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1089)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:514)
at org.apache.catalina.startup.Embedded.start(Embedded.java:917)
at com.sun.enterprise.web.PwcWebContainer.onStartup(PwcWebContainer.java:47)
at com.sun.webserver.connector.nsapi.WebContainer.start(WebContainer.java:464)
at com.sun.webserver.init.J2EERunner.confPostInit(J2EERunner.java:292)
Caused by: java.lang.NullPointerException
at com.sun.identity.authentication.service.AuthD.<clinit>(AuthD.java:206)
... 15 more
failure: WebModule[amserver]PWC1396: Servlet /amserver threw load() exception
java.lang.ExceptionInInitializerError
at com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth(LoginLogoutMapping.java:89)
at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:74)
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1150)
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:979)
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4352)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4709)
at com.sun.webserver.connector.nsapi.WebModule.start(WebModule.java:170)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1089)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:838)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1089)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:514)
at org.apache.catalina.startup.Embedded.start(Embedded.java:917)
at com.sun.enterprise.web.PwcWebContainer.onStartup(PwcWebContainer.java:47)
at com.sun.webserver.connector.nsapi.WebContainer.start(WebContainer.java:464)
at com.sun.webserver.init.J2EERunner.confPostInit(J2EERunner.java:292)
Caused by: java.lang.NullPointerException
at com.sun.identity.authentication.service.AuthD.<clinit>(AuthD.java:206)
... 15 more
Anybody got any ideas.

We are running AM 7.1 patch 3 deployed in Sun WebServer 7. We were receiving the error below in the amAuth debug logs:
09/18/2009 03:32:52:831 AM EDT: Thread[main,5,main]
ERROR: AuthD failed to get session service instance
09/18/2009 03:32:52:832 AM EDT: Thread[main,5,main]
ERROR: AuthD init()
java.lang.NullPointerException
at com.sun.identity.authentication.service.AuthD.initAuthSessions(AuthD
.java:751)
at com.sun.identity.authentication.service.AuthD.<init>(AuthD.java:251)
at com.sun.identity.authentication.service.AuthD.getAuth(AuthD.java:510
at com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth
(LoginLogoutMapping.java:89)
We saw the following error in the WebServer error logs:
[18/Sep/2009:15:48:25] failure (19331): WebModule[amserver]StandardWrapper.Thr
owable
java.lang.NullPointerException
at com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth
(LoginLogoutMapping.java:89)
at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogo
utMapping.java:74)
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper
.java:1165)
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:9
94)
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardConte
xt.java:4731)
The only way we figured out this problem was to look at what the open source code to see wha was happening. We first looked
at the amAuth.java and determined that the get of the SessionService was throwing the ERROR:AuthD failed to get session service instance:
901 static SessionService getSS() {
902 SessionService ss = SessionService.getSessionService();
903 if (ss == null) {
904 debug.error("AuthD failed to get session service instance");
905 }
906 return ss;
907 }
In looking at the SessionService.java, we see it will only create a new SessionService if the isServerMode is true.
public static SessionService getSessionService() {
if (WebtopNaming.isServerMode()) {
synchronized (SessionService.class) {
if (sessionService == null) {
sessionService = new SessionService();
return sessionService;
In looking at the WebtopNaming.java, isServerMode default is false and is populated from constants property SERVER_MODE.
private static boolean serverMode = false;
static {
serverMode = Boolean.valueOf(
System.getProperty(Constants.SERVER_MODE, SystemProperties.get(
Constants.SERVER_MODE, "false"))).booleanValue();
try {
getAMServer();
} catch (Exception ex) {
debug.error("Failed to initialize server properties", ex);
In our case the SERVER_MODE was in and WebServer JVM option.
<jvm-options>-Dcom.iplanet.am.serverMode=true</jvm-options>
We had lost the servermode parameter when we have uninstalled Access Manager from the web container and reinstalled.

Similar Messages

  • Failure: WebModule[/amserver]: WEB2680: Exception starting filter amlcontro

    We have installed JES2005Q1 on solaris 10, and it worked well. But after setting some configrations on WEB server admin console and apply changes, the server.xml has been changed automatically, returning to original unconfigured version, many items such as /amserver,/amconsole lost. Then we fix this problem as following steps:
    1.We insert these lost items(/amserver,/amconsole, etc) into server.xml, and restart.
    2.It prompted that some classes can not found. Then we add these related jar(all jars under SUNWam/lib) to "Classpath Suffix" on admin console, restart.
    3.It still throw exception during the loading of /amserver, the output on console when the exception occured is attached.
    4.Then we do not know how to go on without detailed prompt about the exception.
    **********************************************copyed from solaris console begin************************************
    # ./start
    Sun ONE Web Server 6.1SP4 B12/16/2004 11:42
    info: CORE3016: daemon is running as super-user
    info: CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.5.0_01] from [Sun Microsystems Inc.]
    info: WEB0100: Loading web module in virtual server [https-tspportal.gdsoftpark.com] at []
    info: WEB0100: Loading web module in virtual server [https-tspportal.gdsoftpark.com] at [amconsole]
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    info: WEB0100: Loading web module in virtual server [https-tspportal.gdsoftpark.com] at [amserver]
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    info: WEB0100: Loading web module in virtual server [https-tspportal.gdsoftpark.com] at [ampassword]
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    info: WEB0100: Loading web module in virtual server [https-tspportal.gdsoftpark.com] at [amcommon]
    info: WEB0100: Loading web module in virtual server [https-tspportal.gdsoftpark.com] at [search]
    failure: WebModule[amserver]: WEB2680: Exception starting filter amlcontroller
    java.lang.NoClassDefFoundError
    at com.iplanet.services.ldap.LDAPUser.getPasswd(LDAPUser.java:117)
    at com.iplanet.services.ldap.ServerInstance.getPasswd(ServerInstance.java:128)
    at com.sun.identity.security.ServerInstanceAction.run(ServerInstanceAction.java:92)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.iplanet.ums.DataLayer.getInstance(DataLayer.java:210)
    at com.sun.identity.sm.ldap.SMSLdapObject.initialize(SMSLdapObject.java:143)
    at com.sun.identity.sm.ldap.SMSLdapObject.<init>(SMSLdapObject.java:118)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at com.sun.identity.sm.SMSEntry.<clinit>(SMSEntry.java:116)
    at com.sun.identity.sm.ServiceSchemaManager.<clinit>(ServiceSchemaManager.java:67)
    at com.iplanet.am.util.AMClientDetector.getServiceSchemaManager(AMClientDetector.java:219)
    at com.iplanet.am.util.AMClientDetector.<clinit>(AMClientDetector.java:94)
    at com.sun.mobile.filter.AMLController.init(AMLController.java:85)
    at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:262)
    at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:322)
    at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:120)
    at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3271)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3747)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    failure: WebModule[amserver]: WEB2705: Context startup failed due to previous errors
    info: HTTP3072: [LS ls1] http://tspportal.gdsoftpark.com:80 ready to accept requests
    startup: server started successfully
    **********************************************end************************************

    I have the same problem , I am using JES 2005Q4 on Redhat LE 3 AS, I have tried to remove the access manager and reinstall it again , but the same problem still, also I have re install the mobile access packages again (--force) but it does not fix my problem.
    Is there is any recommednations ????
    Please update me on [email protected]
    the error message as follows :
    [17/Jan/2006:11:10:47] failure (11396):      WebModule[amserver]: WEB2680: Exception starting filter amlcontroller
         java.lang.ClassNotFoundException: com.sun.mobile.filter.AMLController
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1465)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1301)
         at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:260)
         at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:322)
         at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:120)
         at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3271)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:3747)
         at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
         at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
         at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
         at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
         at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    [17/Jan/2006:11:10:47] failure (11396):      WebModule[amserver]: WEB2705: Context startup failed due to previous errors
    [17/Jan/2006:11:10:50] info (11396):      HTTP3072: [LS ls1] http://redhat.omnixco.com:90 ready to accept requests
    [17/Jan/2006:11:10:53] info (11396):      CORE3274: successful server startup

  • Application server + amserver + HTTP status 404,resource () not available

    hello,
    I have application server 9.1 installed on x86 machine with solaris 10 OS.
    I have configured AMServer 7.1 using amsamplesilent file.
    I can see the amserver,amcommon,ampassword in application server. I also restarted domain instance which is default domain1. I have two ds 6.3 servers running in MMR.
    However when I access /amserver it gives error
    [#|2008-08-20T15:34:06.701+0530|SEVERE|sun-appserver9.1|javax.enterprise.system.container.web|_Thr
    eadID=17;_ThreadName=pool-1-thread-15;_RequestID=a2517b48-5a56-4260-99f7-1eba91289255;|WebModule[/
    amserver]PWC1396: Servlet /amserver threw load() exception
    java.lang.ExceptionInInitializerError
            at com.sun.identity.sm.SMSEntry.<clinit>(SMSEntry.java:169)
            at com.sun.identity.sm.ServiceManager.<clinit>(ServiceManager.java:74)
            at com.sun.identity.authentication.service.AuthD.<init>(AuthD.java:247)
            at com.sun.identity.authentication.service.AuthD.getAuth(AuthD.java:507)
            at com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth(LoginLogoutMapping
    .java:89)
            at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:74)
            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:585)
            at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:276)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
            at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:309)
            at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:192)
            at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:145)
            at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1172)
            at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1007)
            at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4808)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:5196)
            at com.sun.enterprise.web.WebModule.start(WebModule.java:326)
            at com.sun.enterprise.web.LifecycleStarter.doRun(LifecycleStarter.java:58)
            at com.sun.appserv.management.util.misc.RunnableBase.runSync(RunnableBase.java:304)
            at com.sun.appserv.management.util.misc.RunnableBase.run(RunnableBase.java:341)
            at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:417)
            at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:269)
            at java.util.concurrent.FutureTask.run(FutureTask.java:123) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
            at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.NullPointerException
            at com.iplanet.am.util.AdminUtils.<clinit>(AdminUtils.java:84)
            ... 30 more
    |#]Am I missing something? or doing something wrong?
    regards,
    sumant

    hello,
    I found that while configuration of AM there was an warning
    Command deploy executed successfully with following warning messages: Error occurred during application loading phase. The application will not run properly. Please fix your application and redeploy.
    WARNING: com.sun.enterprise.deployment.backend.IASDeploymentException: ContainerBase.addChild: start: LifecycleException:  java.lang.NoClassDefFoundError
    Successfully deployed /amserverthis might help in resolving the issue.
    regards,
    sumant

  • Error in running sun portal server 7.2 on windows platform

    I have downloaded portal-7.2-windows-x86.zip
    Extract it at C:\
    Run C:\PS7.2\setup.bat
    Opened: http://localhost:8080/portal/dt
    The following error was displayed:
    type Exception report
    message description
    The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: PWC1391: Servlet.init() for servlet desktopServlet threw exception
    root cause
    com.sun.portal.desktop.context.ContextError: PSDesktopContextFactory.getDesktopAppContext():
    root cause
    java.lang.NoClassDefFoundError: Could not initialize class com.sun.identity.sm.SMSEntry
    note The full stack traces of the exception and its root causes are available in the Sun Java System Application Server 9.1_01 logs.When i opened the http://localhost:8080/psconsole
    and Logged in as amadmin/password
    an error was displayed
    Authentication Failed
    Please reenter username and password
    How to solve this problem?

    Here is server.log
    Jul 27, 2008 8:55:04 AM com.sun.enterprise.admin.servermgmt.launch.ASLauncher buildCommand
    INFO:
    C:/PS7.2/java/jdk1.6\bin\java
    -Dcom.sun.aas.instanceRoot=C:/PS7.2/appserver/domains/domain1
    -DLOG_COMPATMODE=Off
    -Dcom.iplanet.am.serverMode=true
    -Dcom.sun.aas.ClassPathPrefix=C:/PS7.2/appserver/lib/jsf-api.jar;C:/PS7.2/share/lib/sax.jar;C:/PS7.2/share/lib/dom.jar;C:/PS7.2/share/lib/saaj-api.jar;C:/PS7.2/share/lib/saaj-impl.jar;C:/PS7.2/share/lib/commons-logging.jar;
    -Dcom.sun.aas.ClassPathSuffix=;C:/PS7.2/share/lib/ldapjdk.jar;C:/PS7.2/share/lib/jss4.jar;C:/PS7.2/share/lib/xmlsec.jar;C:/PS7.2/share/lib/xalan.jar;C:/PS7.2/share/lib/dom.jar;C:/PS7.2/share/lib/saaj-api.jar;C:/PS7.2/share/lib/jaxrpc-api.jar;C:/PS7.2/share/lib/jaxrpc-impl.jar;C:/PS7.2/share/lib/jaxrpc-spi.jar;C:/PS7.2/share/lib/saaj-impl.jar;C:/PS7.2/share/lib/mail.jar;C:/PS7.2/share/lib/activation.jar;C:/PS7.2/share/lib/xsdlib.jar;C:/PS7.2/share/lib/jaxb-api.jar;C:/PS7.2/share/lib/jaxb-impl.jar;C:/PS7.2/share/lib/jaxb-libs.jar;C:/PS7.2/share/lib/jaxb-xjc.jar;C:/PS7.2/share/lib/relaxngDatatype.jar;C:/PS7.2/share/lib/jdmkrt.jar;C:/PS7.2/share/lib/jmxremote.jar;C:/PS7.2/share/lib/jmx.jar;C:/PS7.2/share/lib/jaxp-api.jar;C:/PS7.2/share/lib/sax.jar;C:/PS7.2/share/mfwk/lib/xercesImpl.jar;C:/PS7.2/share/mfwk/lib/mfwk_instrum_tk.jar;C:/PS7.2/identity/lib/am_sdk.jar;C:/PS7.2/identity/lib/am_services.jar;C:/PS7.2/identity/lib/am_sso_provider.jar;C:/PS7.2/identity/lib/am_logging.jar;C:/PS7.2/identity/lib/amclientsdk.jar;C:/PS7.2/identity/lib/jaas.jar;C:/PS7.2/identity/lib/swec.jar;C:/PS7.2/identity/lib/acmecrypt.jar;C:/PS7.2/identity/lib/iaik_ssl.jar;C:/PS7.2/identity/lib/iaik_jce_full.jar;C:/PS7.2/identity/lib/jax-qname.jar;C:/PS7.2/identity/lib/namespace.jar;C:/PS7.2/share/MobileAccess/lib/wireless_rendering.jar;C:/PS7.2/share/MobileAccess/lib/wireless_rendering_util.jar;C:/PS7.2/share/MobileAccess/lib/mobile_services.jar;C:/PS7.2/share/MobileAccess/lib/ccpp-1_0.jar;C:/PS7.2/share/MobileAccess/lib/ccpp-ri-1_0.jar;C:/PS7.2/share/MobileAccess/lib/jena-1.4.0.jar;C:/PS7.2/share/MobileAccess/lib/rdffilter.jar;C:/PS7.2/identity/lib/mobile_identity.jar;C:/PS7.2/identity/config;C:/PS7.2/identity/locale;C:/PS7.2/share/lib/;C:/PS7.2/identity/lib/;;C:/PS7.2/portal/lib/db.jar;;C:/PS7.2/portal/config;C:/PS7.2/portal/lib;C:/PS7.2/portal/lib/communitymc.jar;C:/PS7.2/portal/lib/jpox.jar;C:/PS7.2/portal/lib/jdo2.jar;C:/PS7.2/portal/lib/ps_util.jar;C:/PS7.2/portal/lib/pslogcommon.jar;C:/PS7.2/portal/lib/ubt.jar;C:/PS7.2/portal/lib/portletinterceptor.jar;C:/PS7.2/portal/lib/jdom.jar;C:/PS7.2/portal/lib/container.jar;C:/PS7.2/portal/lib/portlet20.jar;C:/PS7.2/portal/lib/java-portlet-container.jar;C:/PS7.2/portal/lib/portletserviceprovision.jar;C:/PS7.2/portal/lib/communitymgmnt-api.jar;C:/PS7.2/portal/lib/communityadmin.jar;C:/PS7.2/portal/lib/ssoadapter.jar;C:/PS7.2/portal/lib/psamsdk.jar;C:/PS7.2/portal/lib/log4j.jar;C:/PS7.2/portal/lib/credentialvault.jar;C:/PS7.2/appserver/javadb/lib/derbyclient.jar;C:/PS7.2/portal/lib/defaulttheme.jar;C:/PS7.2/share/cacao_2/lib/cacao_cacao.jar;C:/PS7.2/share/cacao_2/share/lib/cacao_cacao.jar;jesmf.lib.location/mfwk_instrum_tk.jar;C:/PS7.2/portal/lib/saw-api.jar;C:/PS7.2/portal/lib/mirage-api.jar;C:/PS7.2/portal/lib/mirage-jcr-impl.jar;C:/PS7.2/portal/lib/jcr.jar;C:/PS7.2/portal/lib/freemarker.jar;
    -Dcom.sun.aas.ServerClassPath=
    -Dcom.sun.aas.classloader.appserverChainJars.ee=
    -Dcom.sun.aas.classloader.appserverChainJars=admin-cli.jar,admin-cli-ee.jar,j2ee-svc.jar
    -Dcom.sun.aas.classloader.excludesList=admin-cli.jar,appserv-upgrade.jar,sun-appserv-ant.jar
    -Dcom.sun.aas.classloader.optionalOverrideableChain.ee=
    -Dcom.sun.aas.classloader.optionalOverrideableChain=webservices-rt.jar,webservices-tools.jar
    -Dcom.sun.aas.classloader.serverClassPath.ee=/lib/hadbjdbc4.jar,C:/PS7.2/appserver/lib/SUNWjdmk/5.1/lib/jdmkrt.jar,/lib/dbstate.jar,/lib/hadbm.jar,/lib/hadbmgt.jar,/lib/mfwk_instrum_tk.jar
    -Dcom.sun.aas.classloader.serverClassPath=C:/PS7.2/appserver/lib/install/applications/jmsra/imqjmsra.jar,C:/PS7.2/appserver/imq/lib/jaxm-api.jar,C:/PS7.2/appserver/imq/lib/fscontext.jar,C:/PS7.2/appserver/imq/lib/imqbroker.jar,C:/PS7.2/appserver/imq/lib/imqjmx.jar,C:/PS7.2/appserver/lib/ant/lib/ant.jar,C:/PS7.2/appserver/lib/SUNWjdmk/5.1/lib/jdmkrt.jar
    -Dcom.sun.aas.classloader.sharedChainJars.ee=appserv-se.jar,appserv-ee.jar,jesmf-plugin.jar,/lib/dbstate.jar,/lib/hadbjdbc4.jar,jgroups-all.jar,/lib/mfwk_instrum_tk.jar
    -Dcom.sun.aas.classloader.sharedChainJars=javaee.jar,C:/PS7.2/java/jdk1.6/lib/tools.jar,install/applications/jmsra/imqjmsra.jar,com-sun-commons-launcher.jar,com-sun-commons-logging.jar,C:/PS7.2/appserver/imq/lib/jaxm-api.jar,C:/PS7.2/appserver/imq/lib/fscontext.jar,C:/PS7.2/appserver/imq/lib/imqbroker.jar,C:/PS7.2/appserver/imq/lib/imqjmx.jar,C:/PS7.2/appserver/imq/lib/imqxm.jar,webservices-rt.jar,webservices-tools.jar,mail.jar,appserv-jstl.jar,jmxremote_optional.jar,C:/PS7.2/appserver/lib/SUNWjdmk/5.1/lib/jdmkrt.jar,activation.jar,appserv-rt.jar,appserv-admin.jar,appserv-cmp.jar,C:/PS7.2/appserver/updatecenter/lib/updatecenter.jar,C:/PS7.2/appserver/jbi/lib/jbi.jar,C:/PS7.2/appserver/imq/lib/imqjmx.jar,C:/PS7.2/appserver/lib/ant/lib/ant.jar,dbschema.jar
    -Dcom.sun.aas.configName=server-config
    -Dcom.sun.aas.configRoot=C:/PS7.2/appserver/config
    -Dcom.sun.aas.defaultLogFile=C:/PS7.2/appserver/domains/domain1/logs/server.log
    -Dcom.sun.aas.domainName=domain1
    -Dcom.sun.aas.installRoot=C:/PS7.2/appserver
    -Dcom.sun.aas.instanceName=server
    -Dcom.sun.aas.processLauncher=SE
    -Dcom.sun.aas.promptForIdentity=true
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
    -Dcom.sun.enterprise.overrideablejavaxpackages=javax.help,javax.portlet
    -Dcom.sun.enterprise.server.ss.ASQuickStartup=false
    -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar
    -Dcom.sun.enterprise.taglisteners=jsf-impl.jar
    -Dcom.sun.portal.instance.id=psinstance
    -Dcom.sun.portal.log.config.file=C:/PS7.2/portal/data/portals/portal1/config/PSLogConfig.properties
    -Dcom.sun.portal.portal.id=portal1
    -Dcom.sun.updatecenter.home=C:/PS7.2/appserver/updatecenter
    -Ddomain.name=domain1
    -Djava.awt.headless=true
    -Djava.endorsed.dirs=C:/PS7.2/appserver/lib/endorsed
    -Djava.ext.dirs=C:/PS7.2/java/jdk1.6/lib/ext;C:/PS7.2/java/jdk1.6/jre/lib/ext;C:/PS7.2/appserver/domains/domain1/lib/ext;C:/PS7.2/appserver/javadb/lib
    -Djava.library.path=C:\PS7.2\share\lib;C:\PS7.2\appserver\lib;.;C:/PS7.2/portal/lib;C:\PS7.2\appserver\bin;C:\PS7.2\portal\lib;C:\PS7.2\share\lib
    -Djava.protocol.handler.pkgs=com.iplanet.services.comm
    -Djava.security.auth.login.config=C:/PS7.2/appserver/domains/domain1/config/login.conf
    -Djava.security.policy=C:/PS7.2/appserver/domains/domain1/config/server.policy.disable
    -Djava.util.logging.manager=com.sun.enterprise.server.logging.ServerLogManager
    -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder
    -Djavax.net.ssl.keyStore=C:/PS7.2/appserver/domains/domain1/config/keystore.jks
    -Djavax.net.ssl.trustStore=C:/PS7.2/appserver/domains/domain1/config/cacerts.jks
    -Djdbc.drivers=org.apache.derby.jdbc.ClientDriver
    -Djmx.invoke.getters=true
    -Dorg.jackrabbit.useDataStore=false
    -Ds1is.java.util.logging.config.class=com.sun.identity.log.s1is.LogConfigReader
    -Dsun.rmi.dgc.client.gcInterval=3600000
    -Dsun.rmi.dgc.server.gcInterval=3600000
    -server
    -XX:+UnlockDiagnosticVMOptions
    -XX:MaxPermSize=192m
    -Xmx512m
    -XX:NewRatio=2
    -Xms512m
    -Xss128k
    -XX:NewSize=168M
    -XX:MaxNewSize=168M
    -XX:PermSize=192M
    -XX:MaxPermSize=192M
    -XX:+DisableExplicitGC
    -XX:SoftRefLRUPolicyMSPerMB=0
    -XX:+PrintGCTimeStamps
    -XX:+PrintHeapAtGC
    -XX:+PrintClassHistogram
    -Xloggc:C:/PS7.2/appserver/domains/domain1/logs/gc.log
    -XX:+LogVMOutput
    -XX:LogFile=C:/PS7.2/appserver/domains/domain1/logs/jvm.log
    -cp
    C:/PS7.2/appserver/lib/jhall.jar;C:\PS7.2\appserver\lib\appserv-launch.jar;C:/PS7.2/share/MobileAccess/config
    com.sun.enterprise.server.PELaunch
    start
    [#|2008-07-27T08:55:10.154+0200|INFO|sun-appserver9.1|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;|Starting Sun Java System Application Server 9.1_01 (build b09d-fcs) ...|#]
    [#|2008-07-27T08:55:11.338+0200|INFO|sun-appserver9.1|javax.enterprise.system.core|_ThreadID=11;_ThreadName=pool-1-thread-2;com.sun.enterprise.interceptor.DynamicInterceptor;|MBeanServer started: com.sun.enterprise.interceptor.DynamicInterceptor|#]
    [#|2008-07-27T08:55:12.614+0200|INFO|sun-appserver9.1|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;Java HotSpot(TM) Server VM;1.6.0_10-ea;Sun Microsystems Inc.;|CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.6.0_10-ea] from [Sun Microsystems Inc.]|#]
    [#|2008-07-27T08:55:12.952+0200|INFO|sun-appserver9.1|javax.enterprise.system.core.security|_ThreadID=12;_ThreadName=pool-1-thread-4;|SEC1002: Security Manager is OFF.|#]
    [#|2008-07-27T08:55:13.013+0200|INFO|sun-appserver9.1|javax.enterprise.resource.jms|_ThreadID=13;_ThreadName=pool-1-thread-7;|Using MQ RA for Broker lifecycle control|#]
    [#|2008-07-27T08:55:21.469+0200|INFO|sun-appserver9.1|javax.enterprise.system.stream.out|_ThreadID=10;_ThreadName=main;|C:/PS7.2/appserver/domains/domain1/config/.__com_sun_appserv_pid|#]
    [#|2008-07-27T08:55:23.007+0200|INFO|sun-appserver9.1|javax.enterprise.system.tools.admin|_ThreadID=10;_ThreadName=main;|ADM0001:SunoneInterceptor is now enabled|#]
    [#|2008-07-27T08:55:23.698+0200|INFO|sun-appserver9.1|javax.enterprise.system.core.security|_ThreadID=10;_ThreadName=main;com.sun.enterprise.security.provider.PolicyWrapper;|SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.|#]
    [#|2008-07-27T08:55:25.297+0200|INFO|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;server;|WEB0114: SSO is disabled in virtual server [server]|#]
    [#|2008-07-27T08:55:25.328+0200|INFO|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;__asadmin;|WEB0114: SSO is disabled in virtual server [__asadmin]|#]
    [#|2008-07-27T08:55:28.680+0200|INFO|sun-appserver9.1|javax.enterprise.system.container.ejb|_ThreadID=10;_ThreadName=main;|EJBSCLookup:: sc.getEjbContainerAvailabilityEnabledFromConfig() ==> false|#]
    [#|2008-07-27T08:55:31.247+0200|INFO|sun-appserver9.1|javax.enterprise.system.core.transaction|_ThreadID=10;_ThreadName=main;3700;|JTS5014: Recoverable JTS instance, serverId = [3700]|#]
    [#|2008-07-27T08:55:32.231+0200|INFO|sun-appserver9.1|javax.enterprise.system.tools.admin|_ThreadID=10;_ThreadName=main;|ADM1079: Initialization of AMX MBeans started|#]
    [#|2008-07-27T08:55:33.753+0200|INFO|sun-appserver9.1|javax.enterprise.system.tools.admin|_ThreadID=14;_ThreadName=Thread-15;service:jmx:rmi:///jndi/rmi://M_FAROUK.unitedofoq.com:8686/jmxrmi;|ADM1504: Here is the JMXServiceURL for the Standard JMXConnectorServer: [service:jmx:rmi:///jndi/rmi://M_FAROUK.unitedofoq.com:8686/jmxrmi].  This is where the remote administrative clients should connect using the standard JMX connectors|#]
    [#|2008-07-27T08:55:33.753+0200|INFO|sun-appserver9.1|javax.enterprise.system.tools.admin|_ThreadID=14;_ThreadName=Thread-15;true;|ADM1506: Status of Standard JMX Connector: Active = [true]|#]
    [#|2008-07-27T08:55:34.983+0200|INFO|sun-appserver9.1|javax.enterprise.resource.resourceadapter|_ThreadID=10;_ThreadName=main;|JMS Service Connection URL is :mq://ps-engpc2:7676/|#]
    [#|2008-07-27T08:55:35.075+0200|INFO|sun-appserver9.1|javax.resourceadapter.mqjmsra.lifecycle|_ThreadID=10;_ThreadName=main;|MQJMSRA_RA1101: SJSMQ JMS Resource Adapter starting...|#]
    [#|2008-07-27T08:55:36.428+0200|INFO|sun-appserver9.1|com.sun.mfwk.Mfwk MfConfig|_ThreadID=10;_ThreadName=main;|url: jar:file:/C:/PS7.2/share/mfwk/lib/mfwk_instrum_tk.jar!/com/sun/mfwk/config/MfConfig.class|#]
    [#|2008-07-27T08:55:36.428+0200|INFO|sun-appserver9.1|com.sun.mfwk.Mfwk MfConfig|_ThreadID=10;_ThreadName=main;|url: jar:file:/C:/PS7.2/share/mfwk/lib/mfwk_instrum_tk.jar!/com/sun/mfwk/config/MfConfig.class|#]
    [#|2008-07-27T08:55:36.443+0200|INFO|sun-appserver9.1|com.sun.mfwk|_ThreadID=10;_ThreadName=main;|LogFile is: C:/PS7.2/share/mfwk/logs\instrum.%g|#]
    [#|2008-07-27T08:55:38.688+0200|INFO|sun-appserver9.1|javax.resourceadapter.mqjmsra.lifecycle|_ThreadID=10;_ThreadName=main;|MQJMSRA_EB1101: EMBEDDED broker started with code =0|#]
    [#|2008-07-27T08:55:38.703+0200|INFO|sun-appserver9.1|javax.resourceadapter.mqjmsra.lifecycle|_ThreadID=10;_ThreadName=main;|MQJMSRA_RA1101: SJSMQ JMSRA Started:DIRECT|#]
    [#|2008-07-27T08:55:41.763+0200|INFO|sun-appserver9.1|javax.enterprise.resource.corba|_ThreadID=13;_ThreadName=pool-1-thread-7;|POARemoteRefFactory checking if SFSBVersionPolicy need to be added|#]
    [#|2008-07-27T08:55:41.778+0200|INFO|sun-appserver9.1|javax.enterprise.system.container.ejb|_ThreadID=13;_ThreadName=pool-1-thread-7;|EJBSCLookup:: sc.getEjbContainerAvailabilityEnabledFromConfig() ==> false|#]
    [#|2008-07-27T08:55:41.778+0200|INFO|sun-appserver9.1|javax.enterprise.resource.corba|_ThreadID=13;_ThreadName=pool-1-thread-7;|POARemoteRefFactory addSFSBVersionPolicy? false|#]
    [#|2008-07-27T08:55:41.794+0200|INFO|sun-appserver9.1|javax.enterprise.resource.corba|_ThreadID=13;_ThreadName=pool-1-thread-7;|POARemoteRefFactory checking if SFSBVersionPolicy need to be added|#]
    [#|2008-07-27T08:55:41.794+0200|INFO|sun-appserver9.1|javax.enterprise.system.container.ejb|_ThreadID=13;_ThreadName=pool-1-thread-7;|EJBSCLookup:: sc.getEjbContainerAvailabilityEnabledFromConfig() ==> false|#]
    [#|2008-07-27T08:55:41.794+0200|INFO|sun-appserver9.1|javax.enterprise.resource.corba|_ThreadID=13;_ThreadName=pool-1-thread-7;|POARemoteRefFactory addSFSBVersionPolicy? false|#]
    [#|2008-07-27T08:55:43.131+0200|INFO|sun-appserver9.1|javax.enterprise.system.core.classloading|_ThreadID=13;_ThreadName=pool-1-thread-7;MEjbApp;|LDR5010: All ejb(s) of [MEjbApp] loaded successfully!|#]
    [#|2008-07-27T08:55:44.346+0200|INFO|sun-appserver9.1|javax.enterprise.system.container.ejb|_ThreadID=16;_ThreadName=pool-1-thread-3;jdbc/__TimerPool;|EJB5109:EJB Timer Service started successfully for datasource [jdbc/__TimerPool]|#]
    [#|2008-07-27T08:55:44.346+0200|INFO|sun-appserver9.1|javax.enterprise.system.core.classloading|_ThreadID=16;_ThreadName=pool-1-thread-3;__ejb_container_timer_app;|LDR5010: All ejb(s) of [__ejb_container_timer_app] loaded successfully!|#]
    [#|2008-07-27T08:55:44.961+0200|INFO|sun-appserver9.1|com.sun.jbi.framework|_ThreadID=16;_ThreadName=pool-1-thread-3;|JBIFW0010: JBI framework ready to accept requests.|#]
    [#|2008-07-27T08:55:46.437+0200|INFO|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;|WEB0302: Starting Sun-Java-System/Application-Server.|#]
    [#|2008-07-27T08:55:48.804+0200|INFO|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;8080;|WEB0712: Starting Sun-Java-System/Application-Server HTTP/1.1 on 8080|#]
    [#|2008-07-27T08:55:49.189+0200|INFO|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;8181;|WEB0712: Starting Sun-Java-System/Application-Server HTTP/1.1 on 8181|#]
    [#|2008-07-27T08:55:49.265+0200|INFO|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;4848;|WEB0712: Starting Sun-Java-System/Application-Server HTTP/1.1 on 4848|#]
    [#|2008-07-27T08:55:53.160+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=13;_ThreadName=pool-1-thread-7;/psconsole;|Initializing Sun's JavaServer Faces implementation (1.2_04-b20-p03) for context '/psconsole'|#]
    [#|2008-07-27T08:56:06.550+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=13;_ThreadName=pool-1-thread-7;/surveys;|Initializing Sun's JavaServer Faces implementation (1.2_04-b20-p03) for context '/surveys'|#]
    [#|2008-07-27T08:56:06.721+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webservices.jaxws.server.http|_ThreadID=16;_ThreadName=pool-1-thread-3;|WSSERVLET12: JAX-WS context listener initializing|#]
    [#|2008-07-27T08:56:18.279+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=17;_ThreadName=pool-1-thread-9;/portal;|Initializing Sun's JavaServer Faces implementation (1.2_04-b20-p03) for context '/portal'|#]
    [#|2008-07-27T08:56:21.200+0200|SEVERE|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=pool-1-thread-7;_RequestID=7022036b-06f6-4a22-a77b-6005450f2563;|WebModule[/amserver]StandardWrapper.Throwable
    java.lang.UnsatisfiedLinkError: C:\PS7.2\share\lib\jss4.dll: The specified procedure could not be found
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1778)
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1703)
         at java.lang.Runtime.loadLibrary0(Runtime.java:823)
         at java.lang.System.loadLibrary(System.java:1030)
         at org.mozilla.jss.CryptoManager.loadNativeLibraries(CryptoManager.java:1339)
         at org.mozilla.jss.CryptoManager.initialize(CryptoManager.java:827)
         at com.iplanet.services.util.JSSEncryption.<clinit>(JSSEncryption.java:250)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:169)
         at com.iplanet.services.util.Crypt.createInstance(Crypt.java:133)
         at com.iplanet.services.util.Crypt.<clinit>(Crypt.java:103)
         at com.iplanet.services.ldap.LDAPUser.getPasswd(LDAPUser.java:117)
         at com.iplanet.services.ldap.ServerInstance.getPasswd(ServerInstance.java:128)
         at com.sun.identity.security.ServerInstanceAction.run(ServerInstanceAction.java:92)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.iplanet.am.util.AdminUtils.<clinit>(AdminUtils.java:82)
         at com.sun.identity.sm.SMSEntry.<clinit>(SMSEntry.java:169)
         at com.sun.identity.sm.ServiceManager.<clinit>(ServiceManager.java:74)
         at com.sun.identity.authentication.service.AuthD.<init>(AuthD.java:247)
         at com.sun.identity.authentication.service.AuthD.getAuth(AuthD.java:507)
         at com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth(LoginLogoutMapping.java:89)
         at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:74)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1178)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1007)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4808)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:5196)
         at com.sun.enterprise.web.WebModule.start(WebModule.java:326)
         at com.sun.enterprise.web.LifecycleStarter.doRun(LifecycleStarter.java:58)
         at com.sun.appserv.management.util.misc.RunnableBase.runSync(RunnableBase.java:304)
         at com.sun.appserv.management.util.misc.RunnableBase._submit(RunnableBase.java:176)
         at com.sun.appserv.management.util.misc.RunnableBase.submit(RunnableBase.java:192)
         at com.sun.enterprise.web.VirtualServer.startChildren(VirtualServer.java:1672)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1231)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:955)
         at com.sun.enterprise.web.LifecycleStarter.doRun(LifecycleStarter.java:58)
         at com.sun.appserv.management.util.misc.RunnableBase.runSync(RunnableBase.java:304)
         at com.sun.appserv.management.util.misc.RunnableBase.run(RunnableBase.java:341)
         at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
         at java.util.concurrent.FutureTask.run(FutureTask.java:138)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:619)
    |#]
    [#|2008-07-27T08:56:21.215+0200|SEVERE|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=pool-1-thread-7;_RequestID=7022036b-06f6-4a22-a77b-6005450f2563;|WebModule[/amserver]PWC1396: Servlet /amserver threw load() exception
    java.lang.UnsatisfiedLinkError: C:\PS7.2\share\lib\jss4.dll: The specified procedure could not be found
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1778)
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1703)
         at java.lang.Runtime.loadLibrary0(Runtime.java:823)
         at java.lang.System.loadLibrary(System.java:1030)
         at org.mozilla.jss.CryptoManager.loadNativeLibraries(CryptoManager.java:1339)
         at org.mozilla.jss.CryptoManager.initialize(CryptoManager.java:827)
         at com.iplanet.services.util.JSSEncryption.<clinit>(JSSEncryption.java:250)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:169)
         at com.iplanet.services.util.Crypt.createInstance(Crypt.java:133)
         at com.iplanet.services.util.Crypt.<clinit>(Crypt.java:103)
         at com.iplanet.services.ldap.LDAPUser.getPasswd(LDAPUser.java:117)
         at com.iplanet.services.ldap.ServerInstance.getPasswd(ServerInstance.java:128)
         at com.sun.identity.security.ServerInstanceAction.run(ServerInstanceAction.java:92)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.iplanet.am.util.AdminUtils.<clinit>(AdminUtils.java:82)
         at com.sun.identity.sm.SMSEntry.<clinit>(SMSEntry.java:169)
         at com.sun.identity.sm.ServiceManager.<clinit>(ServiceManager.java:74)
         at com.sun.identity.authentication.service.AuthD.<init>(AuthD.java:247)
         at com.sun.identity.authentication.service.AuthD.getAuth(AuthD.java:507)
         at com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth(LoginLogoutMapping.java:89)
         at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:74)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1178)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1007)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4808)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:5196)
         at com.sun.enterprise.web.WebModule.start(WebModule.java:326)
         at com.sun.enterprise.web.LifecycleStarter.doRun(LifecycleStarter.java:58)
         at com.sun.appserv.management.util.misc.RunnableBase.runSync(RunnableBase.java:304)
         at com.sun.appserv.management.util.misc.RunnableBase._submit(RunnableBase.java:176)
         at com.sun.appserv.management.util.misc.RunnableBase.submit(RunnableBase.java:192)
         at com.sun.enterprise.web.VirtualServer.startChildren(VirtualServer.java:1672)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1231)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:955)
         at com.sun.enterprise.web.LifecycleStarter.doRun(LifecycleStarter.java:58)
         at com.sun.appserv.management.util.misc.RunnableBase.runSync(RunnableBase.java:304)
         at com.sun.appserv.management.util.misc.RunnableBase.run(RunnableBase.java:341)
         at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
         at java.util.concurrent.FutureTask.run(FutureTask.java:138)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:619)
    |#]
    [#|2008-07-27T08:56:23.266+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webservices.jaxws.servlet.http|_ThreadID=16;_ThreadName=pool-1-thread-3;|WSSERVLET14: JAX-WS servlet initializing|#]
    [#|2008-07-27T08:56:23.328+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webservices.jaxws.server.http|_ThreadID=17;_ThreadName=pool-1-thread-9;|WSSERVLET12: JAX-WS context listener initializing|#]
    [#|2008-07-27T08:56:31.235+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webservices.jaxws.servlet.http|_ThreadID=17;_ThreadName=pool-1-thread-9;|WSSERVLET14: JAX-WS servlet initializing|#]
    [#|2008-07-27T08:56:31.422+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=16;_ThreadName=pool-1-thread-3;/filesharing;|Initializing Sun's JavaServer Faces implementation (1.2_04-b20-p03) for context '/filesharing'|#]
    [#|2008-07-27T08:56:35.196+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=13;_ThreadName=pool-1-thread-7;/guessnumberportlet;|Initializing Sun's JavaServer Faces implementation (1.2_04-b20-p03) for context '/guessnumberportlet'|#]
    [#|2008-07-27T08:56:37.402+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=17;_ThreadName=pool-1-thread-9;/ccd;|Initializing Sun's JavaServer Faces implementation (1.2_04-b20-p03) for context '/ccd'|#]
    [#|2008-07-27T08:56:39.826+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=13;_ThreadName=pool-1-thread-7;/blogportlet;|Initializing Sun's JavaServer Faces implementation (1.2_04-b20-p03) for context '/blogportlet'|#]
    [#|2008-07-27T08:56:41.612+0200|INFO|sun-appserver9.1|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=13;_ThreadName=pool-1-thread-7;/communityportlets;|Initializing Sun's JavaServer Faces implementation (1.2_04-b20-p03) for context '/communityportlets'|#]
    [#|2008-07-27T08:56:45.496+0200|SEVERE|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=pool-1-thread-7;_RequestID=7022036b-06f6-4a22-a77b-6005450f2563;|WEB0207: Error starting web context StandardEngine[com.sun.appserv].StandardHost[server].StandardContext[/amserver] on virtual server server
    LifecycleException:  java.lang.UnsatisfiedLinkError: C:\PS7.2\share\lib\jss4.dll: The specified procedure could not be found
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4818)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:5196)
         at com.sun.enterprise.web.WebModule.start(WebModule.java:326)
         at com.sun.enterprise.web.LifecycleStarter.doRun(LifecycleStarter.java:58)
         at com.sun.appserv.management.util.misc.RunnableBase.runSync(RunnableBase.java:304)
         at com.sun.appserv.management.util.misc.RunnableBase._submit(RunnableBase.java:176)
         at com.sun.appserv.management.util.misc.RunnableBase.submit(RunnableBase.java:192)
         at com.sun.enterprise.web.VirtualServer.startChildren(VirtualServer.java:1672)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1231)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:955)
         at com.sun.enterprise.web.LifecycleStarter.doRun(LifecycleStarter.java:58)
         at com.sun.appserv.management.util.misc.RunnableBase.runSync(RunnableBase.java:304)
         at com.sun.appserv.management.util.misc.RunnableBase.run(RunnableBase.java:341)
         at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
         at java.util.concurrent.FutureTask.run(FutureTask.java:138)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:619)
    |#]
    [#|2008-07-27T08:56:46.055+0200|INFO|sun-appserver9.1|javax.enterprise.system.core.selfmanagement|_ThreadID=10;_ThreadName=main;|SMGT0007: Self Management Rules service is enabled|#]
    [#|2008-07-27T08:56:46.226+0200|INFO|sun-appserver9.1|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;|Application server startup complete.|#]Sorry for being late
    Regards,
    Bakr
    Edited by: bakr_awad on Jul 26, 2008 11:05 PM

  • Delegated admin 6.3 Invalid login ID or password, please try again

    Dear Oracle,
    I am having problem login to delegated admin. previously the login was OK
    until recently not sure what cause the login fail.
    Please advice where should i start to t/s
    Cheer
    Sam

    Dear Oracle,
    I found the DA fail might related to access manager not functioning
    after several time restart webserver for da & amserver
    the error log shown as below
    20/Nov/2010:14:17:31      failure      Click to view more details for this
    message WebModule[amserver]StandardWrapper.Throwable
    java.lang.NullPointerException at
    com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth(LoginLogoutMapping.java:89)
    at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:74)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1165)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:994)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4731)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:5123)
    at com.sun.webserver.connector.nsapi.WebModule.start(WebModule.java:182)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1224)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:924)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1224)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:520)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:917) at
    com.sun.enterprise.web.PwcWebContainer.onStartup(PwcWebContainer.java:70)
    at com.sun.webserver.connector.nsapi.WebContainer.start(WebContainer.java:472)
    at com.sun.webserver.init.J2EERunner.confPostInit(J2EERunner.java:304)
    20/Nov/2010:14:17:31      failure      Click to view more details for this
    message WebModule[amserver]PWC1396: Servlet /amserver threw load()
    exception
    0/Nov/2010:14:11:03      failure      Click to view more details for this
    message for host 10.0.1.28 trying to GET /amserver/UI/Login,
    service-j2ee reports: WebModule[amserver][ERROR] Uncaught application
    exception
    java.util.MissingResourceException: Can't find resource for bundle
    java.util.PropertyResourceBundle, key at
    java.util.ResourceBundle.getObject(ResourceBundle.java:325) at
    java.util.ResourceBundle.getObject(ResourceBundle.java:322) at
    java.util.ResourceBundle.getString(ResourceBundle.java:285) at
    com.sun.identity.authentication.client.AuthClientUtils.getErrorVal(AuthClientUtils.java:1389)
    at com.sun.identity.authentication.client.AuthClientUtils.getErrorTemplate(AuthClientUtils.java:453)
    at com.sun.identity.authentication.UI.LoginViewBean.setErrorMessage(LoginViewBean.java:1650)
    at com.sun.identity.authentication.UI.LoginViewBean.forwardTo(LoginViewBean.java:373)
    at com.iplanet.jato.ApplicationServletBase.dispatchRequest(ApplicationServletBase.java:981)
    at com.iplanet.jato.ApplicationServletBase.processRequest(ApplicationServletBase.java:615)
    at com.iplanet.jato.ApplicationServletBase.doGet(ApplicationServletBase.java:459)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:796) at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:917) at
    org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:398)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:304)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
    at com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:86)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:217)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:255)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:188)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:556)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:187)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:556)
    at com.sun.webserver.connector.nsapi.NSAPIProcessor.service(NSAPIProcessor.java:160)
    20/Nov/2010:14:11:03      failure      Click to view more details for this
    messagefor host 10.0.1.28 trying to GET /amserver/UI/Login,
    service-j2ee reports: StandardWrapperValve[LoginServlet]: PWC1406:
    Servlet.service() for servlet LoginServlet threw exception
    Cheers
    Sam

  • Help with Deployment Example Comm Suite 6 Update 1 on Single Host

    Our site would like to evaluate Sun's Collaboration Suite, but we are unable to get the eval copy working.
    We are installing the SPARC version.
    I went through the install and got to "Verify the Installation".
    cd /var/opt/SUNWwbsvr7/admin-server/bin
    ./stopserv
    ./startserv
    cd /var/opt/SUNWwbsvr7/https-wireless.comms.beta.com/bin
    ./stopserv
    ./startserv
    The last startserv threw some errors (shown below), but said "successfully started".
    http://<host>:8080/amconsole does not work..says "Not found"
    http://<host> gives "http status 500"
    I also tried https://<host>:8989..and that seems to work fine.
    Any help would be appreciated.
    Thanks
    # ./stopserv
    server not running
    # ./startserv
    Sun Java System Web Server 7.0U1 B07/18/2007 15:51
    info: CORE3016: daemon is running as super-user
    info: CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.5.0_12] from [Sun Microsystems Inc.]
    info: WEB0100: Loading web module in virtual server [<host>] at [amserver]
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    failure: WebModule[amserver]StandardWrapper.Throwable
    java.lang.ExceptionInInitializerError
    at com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth(LoginLogoutMapping.java:89)
    at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:74)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1165)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:994)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4731)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:5123)
    at com.sun.webserver.connector.nsapi.WebModule.start(WebModule.java:182)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1224)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:924)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1224)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:520)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:917)
    at com.sun.enterprise.web.PwcWebContainer.onStartup(PwcWebContainer.java:70)
    at com.sun.webserver.connector.nsapi.WebContainer.start(WebContainer.java:472)
    at com.sun.webserver.init.J2EERunner.confPostInit(J2EERunner.java:304)
    Caused by: java.lang.NullPointerException
    at com.sun.identity.authentication.service.AuthD.<clinit>(AuthD.java:206)
    ... 15 more
    failure: WebModule[amserver]PWC1396: Servlet /amserver threw load() exception
    java.lang.ExceptionInInitializerError
    at com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth(LoginLogoutMapping.java:89)
    at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:74)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1165)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:994)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4731)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:5123)
    at com.sun.webserver.connector.nsapi.WebModule.start(WebModule.java:182)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1224)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:924)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1224)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:520)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:917)
    at com.sun.enterprise.web.PwcWebContainer.onStartup(PwcWebContainer.java:70)
    at com.sun.webserver.connector.nsapi.WebContainer.start(WebContainer.java:472)
    at com.sun.webserver.init.J2EERunner.confPostInit(J2EERunner.java:304)
    Caused by: java.lang.NullPointerException
    at com.sun.identity.authentication.service.AuthD.<clinit>(AuthD.java:206)
    ... 15 more
    info: HTTP3072: http-listener-1: http://<host>:8080 ready to accept requests
    info: CORE3274: successful server startup

    ala_umn wrote:
    I did have trouble with the Identity Suite 5 Update 1 install and ended up uninstalling that and repeating that step.Cleaning up after a failed JES5u1 install/deployment is difficult e.g. "uninstalling" Access Manager does not remove entries/configuration from the Directory Server instance. I usually just re-install Solaris afresh and start again.
    The directory server instance was running, but I did a stop/start-slapd just to be sure. The error you provided indicates there was an authentication problem, usually to the Directory Server instance. There can be any number of causes of this problem including the directory server not running, or the AM authentication details e.g. cn=dsameuser/cn=puser being inconsistent between the DS instance and AM configuration.
    Regards,
    Shane.

  • Recurent error with amserver.war on Sun AS 9.1

    I found 2 main problems installing with amconfig script :
    This first one i'm going to post if anyone else runs against this problem
    1. java.lang.UnsatisfiedLinkError: no jss4 in java.library.path
    (Stack trace ignored )
    i solved this error adding the jss4.jar and libjss4.so to the java.library.path variable ( JVM Configuration on Sun AS 9 )
    The second one however seems to require a bit more work :
    [#|2007-12-19T15:41:07.056+0200|SEVERE|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;_RequestID=53bc39bc-e0e3-40d4-aa2c-64006e6bfe16;|WebModule[/amserver]StandardWrapper.Throwable
    java.lang.StackOverflowError
    at sun.nio.cs.UTF_8$Encoder.encodeArrayLoop(UTF_8.java:446)
    at sun.nio.cs.UTF_8$Encoder.encodeLoop(UTF_8.java:517)
    at java.nio.charset.CharsetEncoder.encode(CharsetEncoder.java:544)
    at sun.nio.cs.StreamEncoder.implWrite(StreamEncoder.java:252)
    at sun.nio.cs.StreamEncoder.write(StreamEncoder.java:106)
    at sun.nio.cs.StreamEncoder.write(StreamEncoder.java:116)
    at java.io.OutputStreamWriter.write(OutputStreamWriter.java:203)
    at java.io.Writer.write(Writer.java:140)
    at java.io.PrintWriter.newLine(PrintWriter.java:436)
    at java.io.PrintWriter.println(PrintWriter.java:585)
    at java.io.PrintWriter.println(PrintWriter.java:696)
    at com.sun.identity.util.impl.DebugImpl.writeIt(DebugImpl.java:240)
    at com.sun.identity.util.impl.DebugImpl.writeIt(DebugImpl.java:220)
    at com.sun.identity.util.impl.DebugImpl.record(DebugImpl.java:208)
    at com.sun.identity.util.impl.DebugImpl.message(DebugImpl.java:189)
    at com.iplanet.am.util.Debug.message(Debug.java:394)
    at com.iplanet.services.naming.WebtopNaming.updateSiteIdMappings(WebtopNaming.java:790)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:703)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:724)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:724)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    (about 200 more lines like those )
    end
    If anyone has any sugestions of what config files should i post , please ask .
    Thank you .

    seems you runned the conf script many times and the script added the site id lots of times in the service. You can avoid this issue by editing the entry in LDAP, under the service.

  • WebServer 6.1SP4 fails starting amserver module

    I have a working Directory Server 5.2 installation . Now I added Java Access Manager and Web Server 6.1SP4 to test the RSAauthentication module. Everything looks ok througth the installation / configure late process, but when I try to start the Web server, the amserver module fails
    failure: WebModule[amserver]: WEB2680: Exception starting filter amlcontroller
    Below is the complete message.Advice is welcome
    Thanks
    Ileana
    # ./start
    Sun ONE Web Server 6.1SP4 B12/16/2004 11:42
    info: CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.5.0_01] from [Sun Microsystems Inc.]
    info: WEB0100: Loading web module in virtual server [https-supimialab1.supreme.com] at [amconsole]
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    info: WEB0100: Loading web module in virtual server [https-supimialab1.supreme.com] at [amserver]
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    info: WEB0100: Loading web module in virtual server [https-supimialab1.supreme.com] at [ampassword]
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    info: WEB0100: Loading web module in virtual server [https-supimialab1.supreme.com] at [amcommon]
    info: WEB0100: Loading web module in virtual server [https-supimialab1.supreme.com] at [search]
    failure: WebModule[amserver]: WEB2680: Exception starting filter amlcontroller
    java.lang.ClassNotFoundException: com.sun.mobile.filter.AMLController
    at org.apache.catalina.loader.WebappClassLoader.loadClass(Webap pClassLoader.java:1465)
    at org.apache.catalina.loader.WebappClassLoader.loadClass(Webap pClassLoader.java:1301)
    at org.apache.catalina.core.ApplicationFilterConfig.getFilter(A pplicationFilterConfig.java:260)
    at org.apache.catalina.core.ApplicationFilterConfig.setFilterDe f(ApplicationFilterConfig.java:322)
    at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:120)
    at org.apache.catalina.core.StandardContext.filterStart(Standar dContext.java:3271)
    at org.apache.catalina.core.StandardContext.start(StandardConte xt.java:3747)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.j ava:1133)
    at org.apache.catalina.core.StandardHost.start(StandardHost.jav a:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.j ava:1133)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine .java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995 )
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431 )
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer. java:500)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.ja va:161)
    failure: WebModule[amserver]: WEB2705: Context startup failed due to previous errors
    info: HTTP3072: [LS ls1] http://supimialab1.supreme.com:80 ready to accept requests
    startup: server started successfully

    Please check out your SUNWma* packages whether has installed correctly or missing. Applying prodreg command and check above mobile access packages. If they are incompleted, please remove and clean up and reinstall it again. HTH, Jerry

  • JES 2005Q1 Access Manager failed to start amserver

    I installed directory server schema 2 messaging server web server access management server and delegated admin on the same machine runing on solaris 9. The following is error message.
    failure: WebModule[amserver]: WEB2680: Exception starting filter amlcontroller
    java.lang.ClassNotFoundException: com.sun.mobile.filter.AMLController
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1465)
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1301)
    at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:260)
    at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:322)
    at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:120)
    at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3271)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3747)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    failure: WebModule[amserver]: WEB2705: Context startup failed due to previous errors

    Hi,
    there's apparently a problem under Linux RedHat ES3 as well... (JES 2005Q1 ISO version for Linux)
    Only the amserver module fails, the webserver gets started with other modules.
    When starting the webserver:
    failure: WebModule[amserver]: WEB2783: Servlet /amserver threw load() exception
    javax.servlet.ServletException: WEB2778: Servlet.init() for servlet LoginLogoutMapping threw exception
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:949)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3478)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    ----- Root Cause -----
    java.lang.NullPointerException
    at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:71)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:921)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3478)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)

  • Error in Starting WebServer (Ver 7) Admin Server

    Hi,
    I am getting the error shown below when starting the Webserver 7 admin
    server. The Web server starts and I can administer the server but when deploying Access Manager getting agan the same java.lang.NoClassDefFoundError and can't AM complete configuration.
    Please help me. After attending Access Manager 7.1 training
    wanted to practice on this env.
    My Env is:
    uname -a:
    SunOS sun1 5.10 Generic_120012-14 i86pc i386 i86pc
    /etc/release:
    Solaris 10 8/07 s10x_u4wos_12b X86
    Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 16 August 2007
    cat release_info :
    Product=Java Enterprise System 5U1
    Date=Mon Aug 20 18:05:55 PDT 2007
    Build=08b
    PatchLevel=000
    [25/Dec/2007:19:06:54] info ( 8308): CORE1116: Sun Java System Web
    Server 7.0U1 B07/18/2007 14:21
    [25/Dec/2007:19:06:55] info ( 8309): CORE5076: Using [Java HotSpot(TM)
    Server VM, Version 1.5.0_12] from [Sun Microsystems Inc.]
    [25/Dec/2007:19:06:59] info ( 8309): WEB0100: Loading web module in
    virtual server [admin-server] at [admingui]
    [25/Dec/2007:19:07:00] info ( 8309): WEB0100: Loading web module in
    virtual server [admin-server] at [jmxconnector]
    [25/Dec/2007:19:07:06] info ( 8309): PWC1412: WebModule[jmxconnector]
    ServletContext.log():PWC1409: Marking servlet remotejmx as unavailable
    [25/Dec/2007:19:07:06] failure ( 8309): WebModule[jmxconnector]PWC1396:
    Servlet /jmxconnector threw load() exception
    java.lang.NoClassDefFoundError: javax/management/remote/message/Message
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:2357)
    at java.lang.Class.getConstructor0(Class.java:2671)
    at java.lang.Class.newInstance0(Class.java:321)
    at java.lang.Class.newInstance(Class.java:303)
    at
    org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1119)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:994)
    at
    org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4731)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:5123)
    at com.sun.webserver.connector.nsapi.WebModule.start(WebModule.java:182)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1224)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:924)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1224)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:520)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:917)
    at com.sun.enterprise.web.PwcWebContainer.onStartup(PwcWebContainer.java:70)
    at
    com.sun.webserver.connector.nsapi.WebContainer.start(WebContainer.java:472)
    at com.sun.webserver.init.J2EERunner.confPostInit(J2EERunner.java:304)
    [25/Dec/2007:19:07:06] info ( 8309): HTTP3072: admin-ssl-port:
    https://sun1.mysite.com:8989 ready to accept requests
    [25/Dec/2007:19:07:06] info ( 8309): HTTP3072: admin-http-port:
    http://sun1.mysite.com:8800 ready to accept requests
    [25/Dec/2007:19:07:06] info ( 8309): CORE3274: successful server startup

    jmxremote_optional.jar has
    javax/management/remote/message/Message.class
    <server-class-path> in admin-server/config/server.xml contains path to this jar file. You may want to check if this jar file exists and has correct permissions.

  • Load Balancing Directory Servers with Access Manager - Simple questions

    Hi.
    We are in the process of configuring 2 Access Manager instances (servers) accessing the same logical LDAP repository (comprising physically of two Directory Servers working together with Multi-Master Replication configured and tested) For doing this, we are following guide number 819-6258.
    The guide uses BigIP load balancer for load balancing the directory servers. However, we intend to use Directory Proxy Server. Since we faced some (unresolved) issues last time that we used DPS, there are some simple questions that I would be very grateful to have answers to:
    1. The guide, in section 3.2.10 (To configure Access Manager 1 with the Directory Server load balancer), talks about making changes at 4 places, and replacing the existing entry (hostname and port) with the load balancer's hostname and port (assuming that the load balancer has already been configured). It says that changes need not be made on Access Manager 2 since the LDAPs are in replication, and hence changes will be replicated at all places. However, the guide also states that changes have to be made in two files, namely AMConfig.properties, and the serverconfig.xml file. But these changes will not be reflected on Access Manager 2, since these files are local on each machine.
    Question 1. Do changes have to be made in AMConfig.properties and serverconfig.xml files on the other machine hosting Access Manager 2?
    Question 2: What is the purpose of putting these values here? Specifically, what is achieved by specifying the Directory server host and port in AMConfig.properties, as well as in serverconfig.xml?
    Question 3. In the HTTP console, there is the option of specifying multiple primary LDAP servers, as well as multiple secondary LDAP servers. What is the purpose of these? Are secondary servers attempted when none of the list in the primary list are accessible? Also, if there are multiple entries in the primary server list, are they accessed in a round robin fashion (hereby providing rudimentary load balancing), or are other servers accessed only when the one mentioned first is not reachable etc.?
    2. Since I do not have a load balancer setup yet, I tried the following deviation to the above, which, according to me, should have worked. If viewed in the HTTP console, LDAP / Membership / MSISDN and Policy configuration all pointed to the DS on host 1. When I changed all these to point to the directory server on host 2 (and made AMConfig.properties and serverconfig.xml on host 1 point to DS of host 2 as well), things should have worked fine, but apparently Access manager 1 could not be started. Error from Webserver:
    [14/Aug/2006:04:30:36] info (13937): WEB0100: Loading web module in virtual server [https-machine_1_FQDN] at [search]
    [14/Aug/2006:04:31:48] warning (13937): CORE3283: stderr: Exception in thread "EventService" java.lang.ExceptionInInitializerError
    [14/Aug/2006:04:31:48] warning (13937): CORE3283: stderr: at com.iplanet.services.ldap.event.EventServicePolling.run(EventServicePolling.java:132)
    [14/Aug/2006:04:31:48] warning (13937): CORE3283: stderr: at java.lang.Thread.run(Thread.java:595)
    [14/Aug/2006:04:31:48] warning (13937): CORE3283: stderr: Caused by: java.lang.InterruptedException
    [14/Aug/2006:04:31:48] warning (13937): CORE3283: stderr: at com.sun.identity.sm.ServiceManager.<clinit>(ServiceManager.java:74)
    [14/Aug/2006:04:31:48] warning (13937): CORE3283: stderr: ... 2 more
    In effect, AM on 1 did not start. On rolling back the changes, things again worked like previously.
    Will be really grateful for any help / insight / experience on dealing with the above.
    Thanks!

    Update to the above, incase anyone is reading:
    We setup a similar setup in Windows, and it worked. Here is a detailed account of what was done:
    1. Host 1: Start installer, install automatically, chose Directory server, Directory Administration server, Directory Proxy server, Web server, Access Manager.
    All installed, and worked fine. (AMConfig.properties, serverconfig.xml, and the info in LDAP service, all pointed to HOST1:389)
    2. Host 2: Start installer, install automatically, chose Directory server, Directory Administration server, Directory Proxy server, Web server, Access Manager.
    All installed, and worked fine. (AMConfig.properties, serverconfig.xml, and the info in LDAP service, all pointed to HOST2:389)
    3. Host 1: Started replication. Set to Master
    4. Host 2: Started replication. Set to Master
    5. Host 1: Setup replication agreement to Host 2
    6. Host 2: Setup replication agreement to Host 1
    7. Initiated the remote replica from Host 1 ----> Host 2
    Note that since default installation uses abc.....xyz as the encryption key, setting this to same was not an issue.
    9. Started webserver for Host 1 and logged into AM as amadmin.
    10. Added Host 2 FQDN in DNS Aliases / Realms
    11. Added http://HOST2_FQDN:80 in the Platform server (instance) list.
    12. Started Host 2 webserver. Logged in AM on Host 2, things worked fine.
    At this stage, note the following:
    a) Host 1:
    AMConfig.properties file has
    com.iplanet.am.directory.host=host1_FQDN
    and
    com.iplanet.am.directory.port=389
    serverconfig.xml has:
    <Server name="Server1" host="host1_FQDN" port="389" type="SIMPLE" />
    b) Host 2:
    AMConfig.properties file has
    com.iplanet.am.directory.host=host2_FQDN
    and
    com.iplanet.am.directory.port=389
    serverconfig.xml has:
    <Server name="Server1" host="host2_FQDN" port="389" type="SIMPLE" />
    c) If one logs into AM, and checks LDAP servers for LDAP / Policy Configuration / Membership etc services, they all contain Host2_FQDN:389 (which makes sense, since replica 2 was initialized from 1)
    Returning back to the configuations:
    13. On Host 1, login into the Admin server console of the Directory server. Navigate to the DPS, and confgure the following:
    a) Network Group
    b) LDAP servers
    c) Load Balancing
    d) Change Group
    e) Action on-bind
    f) Allow all actions (permit modification / deletion etc.).
    g) any other configuations required - Am willing to give detailed steps if someone needs them to help me / themselves! :)
    So now, we have DPS configured and running on Host1:489, and distributing load to DS1 and DS2 on a 50:50 basis.
    14. Now, log into AM on Host 1, and instead of Host1_fqdn:389 (for DS) in the following places, specify Host1_fqdn:489 (for the DPS)--
    LDAP Authentication
    MSISDN server
    Membership Service
    Policy configuation.
    Verified that this propagated to the Policy Configuration service and the LDAP authentication service that are already registered with the default organization.
    15. Log out of AM. Following the documentation, modify directory.host and directory.port in AMConfig.properties to point to Host 1_FQDN and 489 respectively. Make this change in AMConfig.properties of both Host 1 as well as 2.
    16. Edit serverconfig.xml on both hosts, and instead of they pointing to their local directory servers, point both to host1_FQDN:489
    17. When you start the webserver, it will refuse to start. Will spew errors such as:
    [https-host1_FQDN]: Sun ONE Web Server 6.1SP5 B06/23/2005 17:36
    [https-host1_FQDN]: info: CORE3016: daemon is running as super-user
    [https-host1_FQDN]: info: CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.5.0_04] from [Sun Microsystems Inc.]
    [https-host1_FQDN]: info: WEB0100: Loading web module in virtual server [https-host1_FQDN] at [amserver]
    [https-host1_FQDN]: warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    [https-host1_FQDN]: info: WEB0100: Loading web module in virtual server [https-host1_FQDN] at [ampassword]
    [https-host1_FQDN]: warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    [https-host1_FQDN]: info: WEB0100: Loading web module in virtual server [https-host1_FQDN] at [amcommon]
    [https-host1_FQDN]: info: WEB0100: Loading web module in virtual server [https-host1_FQDN] at [amconsole]
    [https-host1_FQDN]: warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    [https-host1_FQDN]: info: WEB0100: Loading web module in virtual server [https-host1_FQDN] at [search]
    [https-host1_FQDN]: warning: CORE3283: stderr: netscape.ldap.LDAPException: error result (32); matchedDN = dc=sun,dc=com; No such object (DN changed)
    [https-host1_FQDN]: warning: CORE3283: stderr: Got LDAPServiceException code=-1
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.services.ldap.DSConfigMgr.getConnection(DSConfigMgr.java:357)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.services.ldap.DSConfigMgr.getNewFailoverConnection(DSConfigMgr.java:314)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.services.ldap.DSConfigMgr.getNewConnection(DSConfigMgr.java:253)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.services.ldap.DSConfigMgr.getNewProxyConnection(DSConfigMgr.java:184)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.services.ldap.DSConfigMgr.getNewProxyConnection(DSConfigMgr.java:194)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.ums.DataLayer.initLdapPool(DataLayer.java:1248)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.ums.DataLayer.(DataLayer.java:190)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.ums.DataLayer.getInstance(DataLayer.java:215)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.ums.DataLayer.getInstance(DataLayer.java:246)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.sun.identity.sm.ldap.SMSLdapObject.initialize(SMSLdapObject.java:156)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.sun.identity.sm.ldap.SMSLdapObject.(SMSLdapObject.java:124)
    [https-host1_FQDN]: warning: CORE3283: stderr: at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    [https-host1_FQDN]: warning: CORE3283: stderr: at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    [https-host1_FQDN]: warning: CORE3283: stderr: at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    [https-host1_FQDN]: warning: CORE3283: stderr: at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    [https-host1_FQDN]: warning: CORE3283: stderr: at java.lang.Class.newInstance0(Class.java:350)
    [https-host1_FQDN]: warning: CORE3283: stderr: at java.lang.Class.newInstance(Class.java:303)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.sun.identity.sm.SMSEntry.(SMSEntry.java:216)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.sun.identity.sm.ServiceSchemaManager.(ServiceSchemaManager.java:67)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.am.util.AMClientDetector.getServiceSchemaManager(AMClientDetector.java:219)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.am.util.AMClientDetector.(AMClientDetector.java:94)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.sun.mobile.filter.AMLController.init(AMLController.java:85)
    [https-host1_FQDN]: warning: CORE3283: stderr: at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:262)
    [https-host1_FQDN]: warning: CORE3283: stderr: at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:322)
    [https-host1_FQDN]: warning: CORE3283: stderr: at org.apache.catalina.core.ApplicationFilterConfig.(ApplicationFilterConfig.java:120)
    [https-host1_FQDN]: warning: CORE3283: stderr: at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3271)
    [https-host1_FQDN]: warning: CORE3283: stderr: at org.apache.catalina.core.StandardContext.start(StandardContext.java:3747)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    [https-host1_FQDN]: warning: CORE3283: stderr: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    [https-host1_FQDN]: warning: CORE3283: stderr: at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    [https-host1_FQDN]: warning: CORE3283: stderr: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    [https-host1_FQDN]: warning: CORE3283: stderr: at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    [https-host1_FQDN]: warning: CORE3283: stderr: at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    [https-host1_FQDN]: warning: CORE3283: stderr: at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    [https-host1_FQDN]: failure: WebModule[amserver]: WEB2783: Servlet /amserver threw load() exception
    [https-host1_FQDN]: javax.servlet.ServletException: WEB2778: Servlet.init() for servlet LoginLogoutMapping threw exception
    [https-host1_FQDN]: at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:949)
    [https-host1_FQDN]: at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
    [https-host1_FQDN]: at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3478)
    [https-host1_FQDN]: at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
    [https-host1_FQDN]: at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    [https-host1_FQDN]: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    [https-host1_FQDN]: at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    [https-host1_FQDN]: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    [https-host1_FQDN]: at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    [https-host1_FQDN]: at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    [https-host1_FQDN]: at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    [https-host1_FQDN]: at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    [https-host1_FQDN]: at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    [https-host1_FQDN]: ----- Root Cause -----
    [https-host1_FQDN]: java.lang.NullPointerException
    [https-host1_FQDN]: at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:71)
    [https-host1_FQDN]: at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:921)
    [https-host1_FQDN]: at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
    [https-host1_FQDN]: at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3478)
    [https-host1_FQDN]: at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
    [https-host1_FQDN]: at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    [https-host1_FQDN]: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    [https-host1_FQDN]: at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    [https-host1_FQDN]: at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    [https-host1_FQDN]: at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    [https-host1_FQDN]: at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    [https-host1_FQDN]: at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    [https-host1_FQDN]: at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    [https-host1_FQDN]: at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    [https-host1_FQDN]:
    [https-host1_FQDN]: info: HTTP3072: [LS ls1] http://host1_FQDN:58080 [i]ready to accept requests
    [https-host1_FQDN]: startup: server started successfully
    Success!
    The server https-host1_FQDN has started up.
    The server infact, didn't start up (nothing even listening on 58080).
    However, if AMConfig.properties is left as it originally was, and only serverconfig.xml files were changed as mentioned above, web servers started fine, and things worked all okay. (Alright, except for some glitches when viewed in /amconsole. If /amserver/console is accessed, all is good. Can this mean that all is still not well? I am not sure).
    So far so good. Now comes the sad part. When the same is done on Solaris 9, things dont work. You continue to get the above error, OR the following error, and the web server will refuse to start:
    Differences in Solaris and Windows are as follows:
    1. Windows hosts have 1 IP and hostname. Solaris hosts have 3 IPs and hostnames (for DS, DPS, and webserver).
    No other difference from an architectural perspective.
    Any help / insight on why the above is not working (and why the hell does the documentation seem so sketchy / insecure / incorrect).
    Thanks a bunch!

  • Installation of JES5 on Solaris10 and error when starting the server

    Hi ..
    This is my first time that i tried to install JES5 on SOlaris10 system
    I finished the installation process and when i tried to start the domain1 i recieved an error in the log file and the server won't start.
    Here is the error message in the server log file :
    Thanks for the help
    [#|2007-12-17T12:28:13.977+0200|WARNING|sun-appserver-ee8.2|javax.enterprise.system.stream.err|_ThreadID=10;|netscape.ldap.LDAPException: failed to connect to server ldap://poolsun3.precise.com:389 (91); Cannot connect to the LDAP server
    Got LDAPServiceException code=-1
         at com.iplanet.services.ldap.DSConfigMgr.getConnection(DSConfigMgr.java:404)
         at com.iplanet.services.ldap.DSConfigMgr.getNewFailoverConnection(DSConfigMgr.java:358)
         at com.iplanet.services.ldap.DSConfigMgr.getNewConnection(DSConfigMgr.java:287)
         at com.iplanet.services.ldap.DSConfigMgr.getNewProxyConnection(DSConfigMgr.java:211)
         at com.iplanet.services.ldap.DSConfigMgr.getNewProxyConnection(DSConfigMgr.java:223)
         at com.iplanet.ums.DataLayer.initLdapPool(DataLayer.java:1270)
         at com.iplanet.ums.DataLayer.<init>(DataLayer.java:203)
         at com.iplanet.ums.DataLayer.getInstance(DataLayer.java:228)
         at com.iplanet.ums.DataLayer.getInstance(DataLayer.java:249)
         at com.sun.identity.sm.ldap.SMSLdapObject.initialize(SMSLdapObject.java:157)
         at com.sun.identity.sm.ldap.SMSLdapObject.<init>(SMSLdapObject.java:125)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at java.lang.Class.newInstance0(Class.java:350)
         at java.lang.Class.newInstance(Class.java:303)
         at com.sun.identity.sm.SMSEntry.<clinit>(SMSEntry.java:229)
         at com.sun.identity.sm.ServiceManager.<clinit>(ServiceManager.java:74)
         at com.sun.identity.authentication.internal.AuthContext.getOrganizationName(AuthContext.java:762)
         at com.sun.identity.authentication.internal.AuthContext.getSSOToken(AuthContext.java:792)
         at com.sun.identity.security.AdminTokenAction.getSSOToken(AdminTokenAction.java:271)
         at com.sun.identity.security.AdminTokenAction.run(AdminTokenAction.java:174)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.iplanet.am.util.AMClientDetector.getServiceSchemaManager(AMClientDetector.java:220)
         at com.iplanet.am.util.AMClientDetector.<clinit>(AMClientDetector.java:93)
         at com.sun.mobile.filter.AMLController.init(AMLController.java:79)
         at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:229)
         at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:312)
         at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:83)
         at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3881)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4527)
         at com.sun.enterprise.web.WebModule.start(WebModule.java:241)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1086)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:847)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1086)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:483)
         at org.apache.catalina.startup.Embedded.start(Embedded.java:894)
         at com.sun.enterprise.web.WebContainer.start(WebContainer.java:741)
         at com.sun.enterprise.web.HttpServiceWebContainer.startInstance(HttpServiceWebContainer.java:935)
         at com.sun.enterprise.web.HttpServiceWebContainerLifecycle.onStartup(HttpServiceWebContainerLifecycle.java:50)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:300)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:294)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    |#]
    [#|2007-12-17T12:28:32.183+0200|INFO|sun-appserver-ee8.2|javax.enterprise.resource.webservices.rpc.server.http|_ThreadID=10;|JAXRPCSERVLET12: JAX-RPC context listener initializing|#]
    [#|2007-12-17T12:28:32.721+0200|INFO|sun-appserver-ee8.2|javax.enterprise.resource.webservices.rpc.server.http|_ThreadID=10;|JAXRPCSERVLET14: JAX-RPC servlet initializing|#]
    [#|2007-12-17T12:28:40.048+0200|SEVERE|sun-appserver-ee8.2|javax.enterprise.system.container.web|_ThreadID=10;|WebModule[/amserver]StandardWrapper.Throwable
    java.lang.NullPointerException
         at com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth(LoginLogoutMapping.java:89)
         at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:74)
         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:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:118)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1093)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:931)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4183)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4535)
         at com.sun.enterprise.web.WebModule.start(WebModule.java:241)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1086)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:847)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1086)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:483)
         at org.apache.catalina.startup.Embedded.start(Embedded.java:894)
         at com.sun.enterprise.web.WebContainer.start(WebContainer.java:741)
         at com.sun.enterprise.web.HttpServiceWebContainer.startInstance(HttpServiceWebContainer.java:935)
         at com.sun.enterprise.web.HttpServiceWebContainerLifecycle.onStartup(HttpServiceWebContainerLifecycle.java:50)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:300)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:294)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    |#]
    [#|2007-12-17T12:28:40.052+0200|SEVERE|sun-appserver-ee8.2|javax.enterprise.system.container.web|_ThreadID=10;|WebModule[/amserver]Servlet /amserver threw load() exception
    javax.servlet.ServletException: Servlet.init() for servlet LoginLogoutMapping threw exception
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1142)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:931)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4183)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4535)
         at com.sun.enterprise.web.WebModule.start(WebModule.java:241)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1086)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:847)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1086)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:483)
         at org.apache.catalina.startup.Embedded.start(Embedded.java:894)
         at com.sun.enterprise.web.WebContainer.start(WebContainer.java:741)
         at com.sun.enterprise.web.HttpServiceWebContainer.startInstance(HttpServiceWebContainer.java:935)
         at com.sun.enterprise.web.HttpServiceWebContainerLifecycle.onStartup(HttpServiceWebContainerLifecycle.java:50)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:300)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:294)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    ----- Root Cause -----
    java.lang.NullPointerException
         at com.sun.identity.authentication.UI.LoginLogoutMapping.initializeAuth(LoginLogoutMapping.java:89)
         at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:74)
         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:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:118)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1093)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:931)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4183)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4535)
         at com.sun.enterprise.web.WebModule.start(WebModule.java:241)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1086)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:847)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1086)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:483)
         at org.apache.catalina.startup.Embedded.start(Embedded.java:894)
         at com.sun.enterprise.web.WebContainer.start(WebContainer.java:741)
         at com.sun.enterprise.web.HttpServiceWebContainer.startInstance(HttpServiceWebContainer.java:935)
         at com.sun.enterprise.web.HttpServiceWebContainerLifecycle.onStartup(HttpServiceWebContainerLifecycle.java:50)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:300)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:294)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    |#]
    [#|2007-12-17T12:28:44.594+0200|INFO|sun-appserver-ee8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB3040 : Initializing HttpService|#]
    [#|2007-12-17T12:28:44.639+0200|ALERT|sun-appserver-ee8.2|javax.enterprise.system.container.web|_ThreadID=10;|security (22532): CORE3192: Temporary directory /var/opt/SUNWappserver/domains/domain1/generated/tmp (specified by the TempDir magnus.conf directive) is accessible to others.  Please change TempDir or modify the permissions of the directory and restart the server.
    |#]
    [#|2007-12-17T12:28:44.640+0200|SEVERE|sun-appserver-ee8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB3004 : Received an exception while initializing the HTTP service
    com.sun.httpservice.spi.HttpServiceSPIException: exception thrown from native
         at com.sun.httpservice.spi.HttpService.httpservice_init(Native Method)
         at com.sun.httpservice.spi.HttpService.init(HttpService.java:234)
         at com.sun.enterprise.web.HttpServiceWebContainer.initHttpService(HttpServiceWebContainer.java:1102)
         at com.sun.enterprise.web.HttpServiceWebContainer.initAndRunHttpService(HttpServiceWebContainer.java:1057)
         at com.sun.enterprise.web.HttpServiceWebContainer.startInstance(HttpServiceWebContainer.java:936)
         at com.sun.enterprise.web.HttpServiceWebContainerLifecycle.onStartup(HttpServiceWebContainerLifecycle.java:50)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:300)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:294)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    |#]
    [#|2007-12-17T12:28:44.643+0200|SEVERE|sun-appserver-ee8.2|javax.enterprise.system.core|_ThreadID=10;|CORE5071: An error occured during initialization
    java.lang.RuntimeException: java.lang.RuntimeException: com.sun.httpservice.spi.HttpServiceSPIException: exception thrown from native
         at com.sun.enterprise.web.HttpServiceWebContainer.initAndRunHttpService(HttpServiceWebContainer.java:1060)
         at com.sun.enterprise.web.HttpServiceWebContainer.startInstance(HttpServiceWebContainer.java:936)
         at com.sun.enterprise.web.HttpServiceWebContainerLifecycle.onStartup(HttpServiceWebContainerLifecycle.java:50)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:300)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:294)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    Caused by: java.lang.RuntimeException: com.sun.httpservice.spi.HttpServiceSPIException: exception thrown from native
         at com.sun.enterprise.web.HttpServiceWebContainer.initHttpService(HttpServiceWebContainer.java:1108)
         at com.sun.enterprise.web.HttpServiceWebContainer.initAndRunHttpService(HttpServiceWebContainer.java:1057)
         ... 5 more
    Caused by: com.sun.httpservice.spi.HttpServiceSPIException: exception thrown from native
         at com.sun.httpservice.spi.HttpService.httpservice_init(Native Method)
         at com.sun.httpservice.spi.HttpService.init(HttpService.java:234)
         at com.sun.enterprise.web.HttpServiceWebContainer.initHttpService(HttpServiceWebContainer.java:1102)
         ... 6 more
    |#]
    [#|2007-12-17T12:28:44.645+0200|SEVERE|sun-appserver-ee8.2|javax.enterprise.system.core|_ThreadID=10;|Server Startup failed. Exiting...|#]
    [#|2007-12-17T12:28:44.645+0200|INFO|sun-appserver-ee8.2|javax.enterprise.system.core|_ThreadID=10;|Server shutdown in progress...|#]
    [#|2007-12-17T12:28:44.646+0200|INFO|sun-appserver-ee8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB3046 : Stopping HttpService|#]
    [#|2007-12-17T12:28:44.646+0200|WARNING|sun-appserver-ee8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB3048 : HttpService: Received exception while stoping HttpService
    com.sun.httpservice.spi.HttpServiceSPIException: Illegal state, cannot perform call
         at com.sun.httpservice.spi.HttpService.stop(HttpService.java:287)
         at com.sun.enterprise.web.HttpServiceWebContainer.stopHttpService(HttpServiceWebContainer.java:1151)
         at com.sun.enterprise.web.HttpServiceWebContainer.stopInstance(HttpServiceWebContainer.java:959)
         at com.sun.enterprise.web.HttpServiceWebContainerLifecycle.onShutdown(HttpServiceWebContainerLifecycle.java:62)
         at com.sun.enterprise.server.ApplicationServer.onShutdown(ApplicationServer.java:414)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:317)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    |#]
    [#|2007-12-17T12:28:44.651+0200|INFO|sun-appserver-ee8.2|javax.enterprise.system.stream.out|_ThreadID=10;|SHUTDOWN-about to gather shutdownCleanupCapables|#]

    Looks like you cannot connect to LDAP. Are you configured correctly?

  • JES 2005Q4 on Redhat 3 AS - AM problem

    I am using JES 2005Q4 on Redhat Linux 3 AS.
    After Installing DS, admin server, then Msg server and all are ok.
    I installed AM using web server as the web container - also uninstall and reinstall AM, but still facing the same problem
    When I start the web server it start successfully but the am server not and it giving the following errors
    =====
    failure: WebModule[amserver]: WEB2783: Servlet /amserver threw load() exceptionjavax.servlet.ServletException: WEB2778: Servlet.init() for servlet LoginLogoutMapping threw exception
    ----- Root Cause -----
    java.lang.NullPointerException
    at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.j ava:71)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:921)< br> at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:347 8)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133) at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133) at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500) at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    info: HTTP3072: [LS ls1] http://redhat.omnixco.com:90 ready to accept requests
    startup: server started successfully
    Please help as it is urgent installtion and if you can advise which user provisioning tool I can use untill we fix this problem.

    Could you set debug to "message" and have a look into amAuth debug log?
    -Bernhard

  • Access Manager Upgrade from 2005Q1 to 2005Q4 Failed Miserably

    I really could use some help. I tried to upgrade our calendar server from 2005Q1 to 2005Q4 last week. Everything was going fine (calendar and webserver upgraded ok) until I upgraded the Access Manager piece. Now, Access Manager isn't running correctly. When I start the webserver container, it starts, but some parts of Access Manager (amserver) fails. I cannot get into the AMConsole web interface. Users cannot authenticate to their calendars through AM (we've got them working through an older method for now).
    We've uninstalled/reinstalled AM several times. Run the amconfig tool to undeploy and redeploy. Rerun the amupgrade tool to redeploy the directory server objects...
    We've opened a ticket with Sun but so far it hasn't been much help.
    I'd just like to at least get AM to start so I can at least get into AMConsole...can anyone help?
    Here's the error the webserver gives off when it starts....
    failure: WebModule[amserver]: WEB2783: Servlet /amserver threw load() exception
    javax.servlet.ServletException: WEB2778: Servlet.init() for servlet LoginLogoutMapping threw exception
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:949)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3478)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    ----- Root Cause -----
    java.lang.NullPointerException
    at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:71)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:921)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3478)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    ...and here's the error I see in the amAuth debug log...
    01/31/2006 09:31:19:261 AM CST: Thread[main,5,main]
    AuthD initializing
    01/31/2006 09:31:19:301 AM CST: Thread[main,5,main]
    ERROR: AuthD failed to get session service instance
    01/31/2006 09:31:19:301 AM CST: Thread[main,5,main]
    ERROR: AuthD init()
    java.lang.NullPointerException
    at com.sun.identity.authentication.service.AuthD.initAuthSessions(AuthD.java:706)
    at com.sun.identity.authentication.service.AuthD.<init>(AuthD.java:229)
    at com.sun.identity.authentication.service.AuthD.getAuth(AuthD.java:494)
    at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:71)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:921)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3478)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    Thanks for any help...
    Matt

    Sorry, I have no idea otherwise.
    In our case, where we had the same exceptions, we could resolve the issue with reindexing the directory.
    Most probably this has to do with the services
    ldapsearch -b ou=services,o=root -D "cn=puser,ou=DSAME Users,o=root" -w password "(objectClass=sunService)" dn | wc -l
    In my case I get 164 lines.
    puser should be able to find all services. If not, you have probably have an ACI or index issue. If you get no services and get with the same search and Directory Manager as user 220 (in my case) entries, it is ACI.
    If DM does not get any entries either, there is probably something wrong with indexes.
    Ok, now lets assume you get the services. Another possible issue might be that your server is not in the "iplanet-am-platform-server-list"
    Look into iPlanetAMPlatformService and check if the server you entered in AMConfig.properties(protocoll + "://" + host + ":" + port) is in the list.
    hth Chris

  • Error while Starting portal On Sun Webserver.

    HI All,
    I have installed Sun portal server 7.1. on Sun Webserve 7.1 and while starting Webserver is throwing Errrors.
    Every thing is fine before but after change of IP Address I am getting these kind of errors.
    Below is the error log.
    Sun Java System Web Server 7.0 B12/04/2006 10:15
    info: WEB0100: Loading web module in virtual server [sso.example.com] at [/portal]
    info: JAXRPCSERVLET12: JAX-RPC context listener initializing
    failure: WebModule[/portal]StandardWrapper.Throwable
    com.sun.portal.desktop.context.ContextError: DSAMEConnection.getGlobalAttributes(): SunPortalportal1DesktopService       
    *Caused by: Message:Service does not exist : SunPortalportal1DesktopService*      
    *failure: WebModule[/portal]PWC1396: Servlet /portal threw load() exception*
    com.sun.portal.desktop.context.ContextError: DSAMEConnection.getGlobalAttributes(): SunPortalportal1DesktopService
            at com.sun.portal.desktop.context.DSAMEConnection.getGlobalAttributes(DSAMEConnection.java:956)
            at com.sun.portal.desktop.context.DSAMEConnection.getGlobalAttributeMultiValueFromROC(DSAMEConnection.java:1465)
            at com.sun.portal.desktop.context.DSAMEConnection.getGlobalAttributeFromROC(DSAMEConnection.java:1449)
            at com.sun.portal.desktop.context.DSAMEServiceAppContext.getTemplateContextClassName(DSAMEServiceAppContext.java:108)
            at com.sun.portal.desktop.context.PSDesktopAppContext.getTemplateContextClassName(PSDesktopAppContext.java:387)
            at com.sun.portal.desktop.context.PSDesktopAppContext.initTemplateContext(PSDesktopAppContext.java:320)
            at com.sun.portal.desktop.context.PSDesktopAppContext.init(PSDesktopAppContext.java:87)
            at com.sun.portal.desktop.context.PSDesktopContextFactory.initDesktopAppContext(PSDesktopContextFactory.java:141)
            at com.sun.portal.desktop.context.PSDesktopContextFactory.init(PSDesktopContextFactory.java:105)
            at com.sun.portal.desktop.context.PSDesktopContextFactoryManager.getFactory(PSDesktopContextFactoryManager.java:21)
            at com.sun.portal.desktop.DesktopServlet.getDesktopContextFactory(DesktopServlet.java:195)
            at com.sun.portal.desktop.DesktopServlet.init(DesktopServlet.java:237)
            at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1150)
            at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:979)
            at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4352)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:4709)
            at com.sun.webserver.connector.nsapi.WebModule.start(WebModule.java:170)
            at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1089)
            at org.apache.catalina.core.StandardHost.start(StandardHost.java:838)
            at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1089)
            at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:514)
            at org.apache.catalina.startup.Embedded.start(Embedded.java:917)
            at com.sun.enterprise.web.PwcWebContainer.onStartup(PwcWebContainer.java:47)
            at com.sun.webserver.connector.nsapi.WebContainer.start(WebContainer.java:464)
            at com.sun.webserver.init.J2EERunner.confPostInit(J2EERunner.java:292)
    Caused by: Message:Service does not exist : SunPortalportal1DesktopService
            at com.sun.identity.sm.ServiceManager.getVersions(ServiceManager.java:752)
            at com.sun.identity.sm.ServiceManager.checkServiceNameAndVersion(ServiceManager.java:783)
            at com.sun.identity.sm.ServiceSchemaManagerImpl.<init>(ServiceSchemaManagerImpl.java:97)
            at com.sun.identity.sm.ServiceSchemaManagerImpl.getInstance(ServiceSchemaManagerImpl.java:480)
            at com.sun.identity.sm.ServiceSchemaManager.<init>(ServiceSchemaManager.java:107)
            at com.sun.identity.sm.ServiceManager.getSchemaManager(ServiceManager.java:170)
            at com.sun.portal.desktop.context.DSAMEConnection.getGlobalAttributes(DSAMEConnection.java:952)
            ... 24 more
    info: url: jar:file:/opt/SUNWmfwk/lib/mfwk_instrum_tk.jar!/com/sun/mfwk/config/MfConfig.class
    info: url: jar:file:/opt/SUNWmfwk/lib/mfwk_instrum_tk.jar!/com/sun/mfwk/config/MfConfig.class
    info: LogFile is: //var/opt/SUNWmfwk/logs/instrum.%g
    info: HTTP3072: http-listener-1: http://sso.example.com:80 ready to accept requests
    info: CORE3274: successful server startup
    From log, I removed exceptions thown by java classes  for posting in this forum
    Thanks in Advance
    Madhu

    the application works fine when I try with webservice code that was built on worshop 8 ..but when i changed the code to workshop 10 it is getting build properly only during startup its giving issue....All Jar are same as the old one...only the new that I have created from wsdl for xjava is the new jar..
    I have included the same in the set environment and use it from from my ant build.

Maybe you are looking for

  • AEpress Completely Stuck Due to Firmware Rollback

    Right off the bat, the symptoms I am having is an Airport Express (wireless-N) that is completely stuck in one state. I can't change any settings on it. When I try to access the Airport Express from the Airport Utility, I get error -6722 ("An error o

  • Major installation problems

    I am running into some serious headache installing the Java ES on a Solaris 10 / x86 platform. However I was having the same difficulties on a Sparc Platform and I am trying to install it in a non-global zone. I did try to install it in a global zone

  • Can a web dynpro call a web service that calls a jsp?

    I'm trying to connect a web dynpro java [2004s] calling a web service that calls a jsp page. then a jsp page that calls a web service that goes to the web dynpro. is this possible? Thanks!

  • What is this slot? DV7 series notebook

    I have a HP Pavilion dv7-3060us Windows 7 64 bit system: under the 2nd hard drive cover near the graphics chip and little battery there is a slot looks almost like a PCI slot or something.  Can anyone tell me what this is for or what can be plugged i

  • Compa Ratio- Calculation logic query

    Everytime I am changing the salary of employee in PS9.2 HCM, I am getting some different Compa-Ratio. Can anyone please explain the logic behind calculation of Compa-Rati0. I have already tried to verify by formula Actual Salary/Sal Mid Point on Grad