WebSAPconsole - problem with J2EE

I am trying to install WebSAPconsole (GUI 6.40), but I have some problems with J2EE (SAPJ2EE620C_39-10001433.sar). OS is Win XP Pro Polish.
After instalation of J2EE I've tried to start dispatcher and server, and next check HTTP service - but there is no listening on 80 port, and there is no listening on p4 port (3011 - because of this no possibility to start visual administrator).
Dispatcher and server are listening on ports 2055 and 2077, and I have 2 java.exe processes in Task Manager...
No any other software occupying 80 and 3011 ports.
Any suggestions?

Hello vjara,
I' new to SAP.Could you please tell me where I can find jstartup/trimming_properties = standard in the instance profile.I try to install WS 6.4 sneak preview and I'm getting error,Unable to start SAP J2EE Engine at step 22.I would appreciate for your help and guidance
Thanks
Subha

Similar Messages

  • Urgent! Serious problem with J2EE Classloader!

    Hi all,
    I'm having a serious problem with j2ee Classloading.
    I have "inherited" a J2EE application where all business classes (invoked by the EJB) are placed in the Application's Server classpath (Weblogic 8.1.4).
    Very bad because every time a class is changed the a.s. must be restarted.
    So I re-enginereed the package putting the business classes in a jar that is referenced by the EJB's MANIFEST file.
    This way all the classes would be loaded by the EJB classloader and no need to start/stop weblogic.
    Unfortunately it's not such !! I discovered that all business classes are loaded via REFLECTION
    Object objCommand = objClass.newInstance();
    Object[] param = new Object[1];
    param[0] = aDataContainer;
    objDataContainerReturn = (DataContainer) objMethod.invoke(objCommand,param);
    and the application server cannot find them using the standard J2EE Classloader mechanism.
    java.lang.reflect.InvocationTargetException
    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:324)
    at irma.business.Dispatcher.callService(Dispatcher.java:70)
    Caused by: java.lang.NoClassDefFoundError: irma/utility/log/LogPrintStream
    at irma.business.service.LoginService.login(LoginService.java:79)
    On the other hand they're found if I put the classes on the application server classpath.
    Has anybody got advice for this ? Should I refactor the application giving up reflection ?
    Thanks a lot in advance.

    Reflection uses the classloader as well so it should work fine.
    A common cause of a NoClassDefFoundError is something in a parent classloader that refers to something only available in a child loader.
    For instance, do you have any of your application classes which are in the $CLASSPATH but reference something that is only (now) in the business.jar in your ear?
    -- Rob
    -- Rob
    WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • Compiler problems with J2EE

    Hi,
    I�am only new to the J2EE platform but have experience with J2SE. I have installed J2EE 1.4 and Tomcat server 5.0.28 to study for the Web Component Developer Exam.
    When I go to compile my java files, the compiler doesn�t not recognise the J2EE parts of the file. I have imported the correct classes (even the import statements, it doesn�t recognise!) and when I compile, the errors are associated with J2EE classes (i.e. doesn�t recognise HttpServlet....)
    I compile in command prompt by typing: javac myFile.java.
    I am aware that the file servlet-api.jar is required for these J2EE extras when compiling and I think this is my problem. I have put the location of this file on my classpath (set classpath=.;C:\fileDir\servlet-api.jar) by it still fails to compile. I have also put this location of the file directly into my PATH by this doesnt help!
    Can anybody help me out with this configuration problem?
    Thanks very much for any help!

    You need to have j2ee.jar (which can be found in <j2ee_install_dir>/lib directory in your classpath in order to successfully compile.

  • Problem with J2EE

    Hi, I am new to Java Enterprise Edition. I am trying to install J2EE 1.3.1 on Win 2000 with service pack 4, and I am getting the following error
    16 bit Windows Subsystem
    c:\WINNT\SYSTEM32\AUTOEXEC.NT. The system file is not suitable for running MSDOS and Microsoft Windows applications. Choose 'Close' to terminate the application.
    Plz help me to solve this problem.

    Open that autoexec.nt and check if it matches with this:
    @echo off
    REM AUTOEXEC.BAT is not used to initialize the MS-DOS environment.
    REM AUTOEXEC.NT is used to initialize the MS-DOS environment unless a
    REM different startup file is specified in an application's PIF.
    REM Install CD ROM extensions
    lh %SystemRoot%\system32\mscdexnt.exe
    REM Install network redirector (load before dosx.exe)
    lh %SystemRoot%\system32\redir
    REM Install DPMI support
    lh %SystemRoot%\system32\dosx

  • Crystal Report problem with J2EE - OutOfMemory

    Dear All,
    I am having a problem about generating PDF from J2EE (Tomcat, Java 1.4)  WebApplication by Crystal report.
    When generating a PDF it sometimes got an out of memory error.
    However the Web Application is still working fine, just when regenerate the same crystal report the out of memory error occur again. when i generate the other report it works fine.
    Please help .
    Many Thanks

    Hi,
    It's a good idea to set the minimum and maximum heap size to the same value. In any case, don't let the minimum heap size exceed the maximum.
    Stop Tomcat server, set environment variable CATALINA_OPTS, and then restart Tomcat.
    Look at the file tomcat-install/bin/catalina.sh or catalina.bat for how this variable is used.
    For example,
    set CATALINA_OPTS="-Xms512m -Xmx512m"  (Windows)
    export CATALINA_OPTS="-Xms512m -Xmx512m" (ksh/bash)
    setenv CATALINA_OPTS "-Xms512m -Xmx512m"  (tcsh/csh)
    In catalina.bat or catallina.sh, you may have noticed CATALINA_OPTS, JAVA_OPTS,
    or both can be used to specify Tomcat JVM options.
    What is the difference between CATALINA_OPTS and JAVA_OPTS?
    The name CATALINA_OPTS is specific for Tomcat servlet container,
    whereas JAVA_OPTS may be used by other java applications (e.g., JBoss).
    Since environment variables are shared by all applications, we don't want Tomcat to inadvertently pick up the JVM options intended for other apps. I prefer to use CATALINA_OPTS.
    You have specified size by a capiital "M" ?(3072M) use "m".
    Please let me know the results.
    Regards,
    Neeraj

  • Problems with J2ee tutorial-Bookstore1 example--Plz help

    Hi,
    I have been working on the bookstore1 example servlets from the J2ee tutoril for quite a few days.
    I followed the same procedure as given in the tutorials to deploy the application.
    Wen i type
    http://localhost:8080/bookstore1 on the browser,
    I get the erropage.html and the .gif file listed.
    But when i try to use
    http://localhost:8080/bookstore1/bookstore it issues an error message
    saying "The application is unavailable. Please try later."
    I happened to see the same question posted by many,,,and the solution being,,the Pointbase server should be started in the background
    I think my Pointbase server is running fine...But anyway i would be greatful if anyone cud reply in much detail about the configuration and working of the pointbase server.Or if my problem is due to some other cause,,please let me know.I jave all the properties set in the "asant listprops".
    Please help
    S&S

    Hi,
    I have been working on the bookstore1 example servlets from the J2ee tutoril for quite a few days.
    I followed the same procedure as given in the tutorials to deploy the application.
    Wen i type
    http://localhost:8080/bookstore1 on the browser,
    I get the erropage.html and the .gif file listed.
    But when i try to use
    http://localhost:8080/bookstore1/bookstore it issues an error message
    saying "The application is unavailable. Please try later."
    I happened to see the same question posted by many,,,and the solution being,,the Pointbase server should be started in the background
    I think my Pointbase server is running fine...But anyway i would be greatful if anyone cud reply in much detail about the configuration and working of the pointbase server.Or if my problem is due to some other cause,,please let me know.I jave all the properties set in the "asant listprops".
    Please help
    S&S

  • Security problem with j2ee 5.0 environement

    Hi dear all,,
    I am currently trying to run an application, which was running on j2se successfully after changing the java security files in jdk security folder.
    But now i have moved to j2ee environement and trying to run the same code but it is giving me following exceptions.
    Exception in thread "main" java.lang.VerifyError: class edu.emory.mathcs.backport.java.util.concurrent.helpers.AbstractOwnableQueuedSynchronizer overrides final method setExclusiveOwnerThread.(Ljava/lang/Thread;)V
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at edu.emory.mathcs.backport.java.util.concurrent.LinkedBlockingQueue.<init>(LinkedBlockingQueue.java:87)
    at edu.emory.mathcs.backport.java.util.concurrent.LinkedBlockingQueue.<init>(LinkedBlockingQueue.java:169)
    at com.torunski.crawler.MultiThreadedCrawler.<init>(MultiThreadedCrawler.java:67)
    at mywebtracker.web_tracker.Tracker.startTracking(Tracker.java:84)
    at mywebtracker.web_tracker.TrackerController.main(TrackerController.java:37)
    Java Result: 1
    I have tried to change the policy files in the {java_home}./jre/lib/security but it does not work.
    can any one tell me, how to changes security settings in j2ee environment. i am using netbeans 5.5 with SDK 5, JDK 6 and sun application server 9.0
    i would be grateful
    zaman

    http://publib.boulder.ibm.com/infocenter/wasinfo/topic/com.ibm.wasee.doc/info/ee/ae/tdat_migdaapp.html
    The answer will be to make your JSP a JSP 1.2 JSP. (Basically the servlet 2.3 spec). Please refer to the link above for a step by step procedure to accomplish it.
    Vijay

  • Problem with J2EE server start

    hello,
    I install J2EE SDK sever and I want to start this. So I have typed this line:
    J2ee -verbose and I have this error:
    Logging for J2EE Server Version: 1.3.1-b17 started at: Wed Mar 29 15:24:15 CEST 2006..
    Using the Java HotSpot(TM) Client VM and the version number 1.5.0_06 from Sun Microsystems Inc..
    VM is using the classpath: C:\j2sdkee1.3.1\lib\system\cloudscape.jar;C:\j2sdkee1.3.1\lib\system\tools.jar;C:\j2sdkee1.3.1\lib\cloudscape\RmiJdbc.jar;C:\j2sdkee1.3.1\lib\cloudscape\cloudclient.jar;C:\j2sdkee1.3.1\lib\classes;C:\j2sdkee1.3.1\classes;C:\j2sdkee1.3.1\lib\j2ee.jar;C:\j2sdkee1.3.1\lib\toolclasses;C:\j2sdkee1.3.1\lib\j2eetools.jar;C:\j2sdkee1.3.1\lib\locale;;C:\jdk1.5.0_06\lib\tools.jar;C:\j2sdkee1.3.1\lib\jhall.jar .
    J2EE Home Directory has been set to: C:\j2sdkee1.3.1.
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/corba/se/internal/util/IdentityHashtable
         at com.sun.corba.ee.internal.javax.rmi.CORBA.Util.<clinit>(Util.java:87)
         at com.sun.corba.ee.internal.POA.POAImpl.activate(POAImpl.java:935)
         at com.sun.corba.ee.internal.POA.POAImpl.activate_object(POAImpl.java:895)
         at com.sun.corba.ee.internal.CosNaming.TransientNameService.initialize(TransientNameService.java:117)
         at com.sun.corba.ee.internal.CosNaming.TransientNameService.<init>(TransientNameService.java:70)
         at com.sun.enterprise.iiop.POAProtocolMgr.initializeNaming(POAProtocolMgr.java:103)
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:226)
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)I have the JDK 1.5.0_06 and the J2sdkee1.3.1.
    Have an idea what is the problem, and what I must modify in order to do working my server?
    thank you for your help
    Antitrust1982

    Hello
    I use this version because I try to execute the tutorial of JMS, but I can't working it. The version porpose are these one : http://java.sun.com/products/jms/tutorial/1_3_1-fcs/doc/client.html#1025256
    Thank you for your help.

  • Web Service problem with J2EE server

    Hi,
    I am trying to test my web service from WSADMIN and it's giving me following error:
    HTTP Status 404 - /wsnavigator/jsps/index.jsp
    type Status report
    message /wsnavigator/jsps/index.jsp
    description The requested resource (/wsnavigator/jsps/index.jsp) is not available.
    As my SAP System is not running on J2EE server, So i downloaded J2EE (SDK) from sun web site
    and after starting the server i tested my webservice but still it's giving the above error.
    J2EE server Address that i entered in WSADMIN is http://localhost:8080.
    So please tell me what should i do to run this web service and let me know is it possible to use web service if sap sytem is not on J2EE server.
    Thanks,
    Rahul

    Hi Rahul,
    If you don't mind, can you explain how did you resolve the error.
    Thanks in advance.
    Shiven

  • I have problems with j2ee standalone and de crm server

    Hello guys,
    I have installed a crm server and a j2ee standalone,
    the j2ee intance have been intalled sacesfully but when the java application was deployed, it had ocurred the following error.
    WARNING    2009-03-03 11:21:51
               CJSlibModule::writeWarning_impl()
    Found profile of Java instance JC01 in supposed system based on AS-ABAP C18. Setting hasABAP status to undefined.
    TRACE      [iaxxejsexp.cpp:199]
               EJS_Installer::writeTraceToLogBook()
    2009-03-03 11:21:51.808 NW._setHasABAP(undefined)
    TRACE      [iaxxejsexp.cpp:199]
               EJS_Installer::writeTraceToLogBook()
    NWException thrown: nw.hasABAPswitchABAP:
    SAP system C18 is a ABAP or double stack system. Cannot switch this to a Java standalone system.
    TRACE      [iaxxejsexp.cpp:199]
               EJS_Installer::writeTraceToLogBook()
    t_NW_Options.updateRow(, WHERE name='collected'), updating
    ERROR      2009-03-03 11:21:51
               CJSlibModule::writeError_impl()
    CJS-30036  SAP system C18 is a ABAP or double stack system. Cannot switch this to a Java standalone system.
    And now this error show when i want to do something.
    Now I want to uninstall the j2ee but the result is the same.
    Thank you.

    Hi,
    >SAP system C18 is a ABAP or double stack system. Cannot switch this to a Java standalone system
    It seems that your CRM server was installed as a dual stack system.
    Did you change your mind and want now a separate java stack ?
    You have to find how to tell the abap stack to not use its integrated java stack.
    If you find, I will be interested because I intend to do exactly that : separate the abap and java stacks from a CRM 2007 system because this is a mess to manage.
    Regards,
    Olivier

  • Problems with J2EE/WAS 6.2 startup, after installing patch 23!!

    Hello,                                                                  
    We are in the process of installing EP6.0 SP2 on Solaris OS on a single  server. Initial installation of all components was successful. Upon patching WAS 6.20 to P23 we received the error below when attempting    
    to start the server. This after manually starting the   state controlled and the dispatcher. Then the Application Node fails.   
                                                             Would appreciate any pointers!!               
    Regards, Suman                                                                               
    Error:                                                                  
    [com.sapportals.portal.prt.dispatcher.Dispatcher@4fcd9a, 7/12/04 3:05:55
    PM EDT, Client_Thread_23] Exiting main initialization procedure because 
    of exception:java.lang.NoClassDefFoundError: com/sap/tc/logging         
    /LogController                                                          
    at com.sapportals.portal.prt.core.logger.LoggerManager.<clinit>         
    (LoggerManager.java:62)                                                 
    at com.sapportals.portal.prt.runtime.Portal.getLogger(Portal.java:400)  
    at com.sapportals.portal.prt.runtime.Portal.init(Portal.java:281)       
    at com.sapportals.portal.prt.core.PortalCoreInitializer.coreInit        
    (PortalCoreInitializer.java:55)                                         
    at com.sapportals.portal.prt.dispatcher.PortalInitializer.<init>        
    (PortalInitializer.java:129)                                            
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doSetupPortal        
    Initializer.run(Dispatcher.java:160)                                    
    at java.security.AccessController.doPrivileged(Native Method)           
    (Dispatcher.java:358)                                               
    at com.sapportals.portal.prt.dispatcher.Dispatcher.access$000       
    (Dispatcher.java:40)                                                
    at com.sapportals.portal.prt.dispatcher.Dispatcher$InitRunner.run   
    (Dispatcher.java:113)                                               
    at com.sapportals.portal.prt.dispatcher.Dispatcher.init             
    (Dispatcher.java:391)                                               
    at com.inqmy.services.servlets_jsp.server.ServletContextFacade.     
    getServletLocal(ServletContextFacade.java:3554)                     
    at com.inqmy.services.servlets_jsp.server.InvokerServlet.service    
    (InvokerServlet.java:74)                                            
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     
    at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet     
    (RunServlet.java:149)                                               
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.       
    startServlet(ServletsAndJspImpl.java:832)                           
    at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename
    (RequestAnalizer.java:665)                                          
    at com.inqmy.services.httpserver.server.RequestAnalizer.handle      
    (RequestAnalizer.java:312)                                          
    at com.inqmy.services.httpserver.server.Response.handle             
    (Response.java:173)                                                 
    at com.inqmy.services.httpserver.server.HttpServerFrame.request     
    (HttpServerFrame.java:1245)                                         
    at com.inqmy.core.service.context.container.session.Application     
    SessionMessageListener.process(ApplicationSessionMessageListener.   
    java:36)                                                            
    at com.inqmy.core.cluster.impl5.ParserRunner.run                      
    (ParserRunner.java:55)                                                
    at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46) 
    at java.security.AccessController.doPrivileged(Native Method)         
    at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    WARNING: Dispatcher could not be set up:                                                                               
    javax.servlet.UnavailableException: Initialization of Dispatcher failed
    javax.servlet.UnavailableException: Initialization of Dispatcher failed
    at com.sapportals.portal.prt.dispatcher.Dispatcher.initDispatcher     
    (Dispatcher.java:370)                                                 
    at com.sapportals.portal.prt.dispatcher.Dispatcher.access$000         
    (Dispatcher.java:40)                                                  
    at com.sapportals.portal.prt.dispatcher.Dispatcher$InitRunner.run     
    (Dispatcher.java:113)                                                 
    at com.sapportals.portal.prt.dispatcher.Dispatcher.init               
    (Dispatcher.java:391)                                                 
    at com.inqmy.services.servlets_jsp.server.ServletContextFacade.       
    getServletLocal(ServletContextFacade.java:3554)                       
    at com.inqmy.services.servlets_jsp.server.InvokerServlet.service      
    (InvokerServlet.java:74)                                              
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)       
    at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet       
    (RunServlet.java:149)                                                 
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.         
    startServlet(ServletsAndJspImpl.java:832)                             
    at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename 
    (RequestAnalizer.java:665)                                            
    at com.inqmy.services.httpserver.server.RequestAnalizer.handle          
    (RequestAnalizer.java:312)                                              
    at com.inqmy.services.httpserver.server.Response.handle                 
    (Response.java:173)                                                     
    at com.inqmy.services.httpserver.server.HttpServerFrame.request         
    (HttpServerFrame.java:1245)                                                                               
    at com.inqmy.core.service.context.container.session.ApplicationSession  
    MessageListener.process(ApplicationSessionMessageListene                
    r.java:36)                                                              
    at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)  
    at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)   
    at java.security.AccessController.doPrivileged(Native Method)           
    at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)  
    [com.sapportals.portal.prt.dispatcher.Dispatcher@4fcd9a, 7/12/04 3:05:55
    PM EDT, Client_Thread_23] Exiting main initialization procedure because
    of exception:                                                           
    com.sapportals.portal.prt.dispatcher.DispatcherException: Previous      
    dispatcher initialization failed. Check logs for details.               
    at com.sapportals.portal.prt.dispatcher.Dispatcher.initDispatcher       
    (Dispatcher.java:256)                                                   
    at com.sapportals.portal.prt.dispatcher.Dispatcher.initDispatcher       
    (Dispatcher.java:212)                                                   
    at com.sapportals.portal.prt.dispatcher.Dispatcher.access$400           
    (Dispatcher.java:40)                                                    
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run        
    (Dispatcher.java:447)                                                   
    at java.security.AccessController.doPrivileged(Native Method)

    Hello,                                                                  
    We are in the process of installing EP6.0 SP2 on Solaris OS on a single  server. Initial installation of all components was successful. Upon patching WAS 6.20 to P23 we received the error below when attempting    
    to start the server. This after manually starting the   state controlled and the dispatcher. Then the Application Node fails.   
                                                             Would appreciate any pointers!!               
    Regards, Suman                                                                               
    Error:                                                                  
    [com.sapportals.portal.prt.dispatcher.Dispatcher@4fcd9a, 7/12/04 3:05:55
    PM EDT, Client_Thread_23] Exiting main initialization procedure because 
    of exception:java.lang.NoClassDefFoundError: com/sap/tc/logging         
    /LogController                                                          
    at com.sapportals.portal.prt.core.logger.LoggerManager.<clinit>         
    (LoggerManager.java:62)                                                 
    at com.sapportals.portal.prt.runtime.Portal.getLogger(Portal.java:400)  
    at com.sapportals.portal.prt.runtime.Portal.init(Portal.java:281)       
    at com.sapportals.portal.prt.core.PortalCoreInitializer.coreInit        
    (PortalCoreInitializer.java:55)                                         
    at com.sapportals.portal.prt.dispatcher.PortalInitializer.<init>        
    (PortalInitializer.java:129)                                            
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doSetupPortal        
    Initializer.run(Dispatcher.java:160)                                    
    at java.security.AccessController.doPrivileged(Native Method)           
    (Dispatcher.java:358)                                               
    at com.sapportals.portal.prt.dispatcher.Dispatcher.access$000       
    (Dispatcher.java:40)                                                
    at com.sapportals.portal.prt.dispatcher.Dispatcher$InitRunner.run   
    (Dispatcher.java:113)                                               
    at com.sapportals.portal.prt.dispatcher.Dispatcher.init             
    (Dispatcher.java:391)                                               
    at com.inqmy.services.servlets_jsp.server.ServletContextFacade.     
    getServletLocal(ServletContextFacade.java:3554)                     
    at com.inqmy.services.servlets_jsp.server.InvokerServlet.service    
    (InvokerServlet.java:74)                                            
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     
    at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet     
    (RunServlet.java:149)                                               
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.       
    startServlet(ServletsAndJspImpl.java:832)                           
    at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename
    (RequestAnalizer.java:665)                                          
    at com.inqmy.services.httpserver.server.RequestAnalizer.handle      
    (RequestAnalizer.java:312)                                          
    at com.inqmy.services.httpserver.server.Response.handle             
    (Response.java:173)                                                 
    at com.inqmy.services.httpserver.server.HttpServerFrame.request     
    (HttpServerFrame.java:1245)                                         
    at com.inqmy.core.service.context.container.session.Application     
    SessionMessageListener.process(ApplicationSessionMessageListener.   
    java:36)                                                            
    at com.inqmy.core.cluster.impl5.ParserRunner.run                      
    (ParserRunner.java:55)                                                
    at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46) 
    at java.security.AccessController.doPrivileged(Native Method)         
    at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    WARNING: Dispatcher could not be set up:                                                                               
    javax.servlet.UnavailableException: Initialization of Dispatcher failed
    javax.servlet.UnavailableException: Initialization of Dispatcher failed
    at com.sapportals.portal.prt.dispatcher.Dispatcher.initDispatcher     
    (Dispatcher.java:370)                                                 
    at com.sapportals.portal.prt.dispatcher.Dispatcher.access$000         
    (Dispatcher.java:40)                                                  
    at com.sapportals.portal.prt.dispatcher.Dispatcher$InitRunner.run     
    (Dispatcher.java:113)                                                 
    at com.sapportals.portal.prt.dispatcher.Dispatcher.init               
    (Dispatcher.java:391)                                                 
    at com.inqmy.services.servlets_jsp.server.ServletContextFacade.       
    getServletLocal(ServletContextFacade.java:3554)                       
    at com.inqmy.services.servlets_jsp.server.InvokerServlet.service      
    (InvokerServlet.java:74)                                              
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)       
    at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet       
    (RunServlet.java:149)                                                 
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.         
    startServlet(ServletsAndJspImpl.java:832)                             
    at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename 
    (RequestAnalizer.java:665)                                            
    at com.inqmy.services.httpserver.server.RequestAnalizer.handle          
    (RequestAnalizer.java:312)                                              
    at com.inqmy.services.httpserver.server.Response.handle                 
    (Response.java:173)                                                     
    at com.inqmy.services.httpserver.server.HttpServerFrame.request         
    (HttpServerFrame.java:1245)                                                                               
    at com.inqmy.core.service.context.container.session.ApplicationSession  
    MessageListener.process(ApplicationSessionMessageListene                
    r.java:36)                                                              
    at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)  
    at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)   
    at java.security.AccessController.doPrivileged(Native Method)           
    at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)  
    [com.sapportals.portal.prt.dispatcher.Dispatcher@4fcd9a, 7/12/04 3:05:55
    PM EDT, Client_Thread_23] Exiting main initialization procedure because
    of exception:                                                           
    com.sapportals.portal.prt.dispatcher.DispatcherException: Previous      
    dispatcher initialization failed. Check logs for details.               
    at com.sapportals.portal.prt.dispatcher.Dispatcher.initDispatcher       
    (Dispatcher.java:256)                                                   
    at com.sapportals.portal.prt.dispatcher.Dispatcher.initDispatcher       
    (Dispatcher.java:212)                                                   
    at com.sapportals.portal.prt.dispatcher.Dispatcher.access$400           
    (Dispatcher.java:40)                                                    
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run        
    (Dispatcher.java:447)                                                   
    at java.security.AccessController.doPrivileged(Native Method)

  • The problem is occurred with J2ee server node which is disabled it from MMC

    Dear SAP Consultants,
    The problem is occurred with J2ee server node which is disabled J2ee server node from MMS Console and the abap work process is working fine but the dispatcher is yellow status and I can login to the abap system but Iu2019m not able to start the j2ee from Tcode u201CSmicmu201D as well
    The system parameters are:
    BI 7.0 System as ABAP & JAVA add on, windows 2003 on Oracle database, 24 GB Ram
    Paging files: Driveu201D Os system: minimum: 1525, maximum: 3048
    Driveu201DEu201D application: minimum: 70855, maximum: 70855
    I can see the log files as follow:
    From dev_disp:
    Sun Jun 21 13:10:28 2009
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 2892
      argv[0] = E:\usr\sap\BWD\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = E:\usr\sap\BWD\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=E:\usr\sap\BWD\SYS\profile\BWD_DVEBMGS00_cai-bwdev
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=64990
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=BWD
      argv[7] = -DSAPMYNAME=cai-bwdev_BWD_00
      argv[8] = -DSAPPROFILE=E:\usr\sap\BWD\SYS\profile\BWD_DVEBMGS00_cai-bwdev
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Sun Jun 21 13:10:29 2009
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1032
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1362) [nixxi.cpp    4424]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=2892)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Sun Jun 21 13:10:48 2009
    DpEnvCheckJ2ee: switch off j2ee start flag
    From dev_jcontrol :
    [Thr 2124] Sun Jun 21 13:10:29 2009
    [Thr 2124] *** ERROR => invalid return code of process [bootstrap] (exitcode = 66) [jstartxx.c   1642]
    [Thr 2124] JControlExecuteBootstrap: error executing bootstrap node [bootstrap] (rc = 66)
    [Thr 2124] JControlCloseProgram: started (exitcode = 66)
    [Thr 2124] JControlCloseProgram: good bye... (exitcode = 66)
    From dev_bootstrap :
    JHVM_BuildArgumentList: main method arguments of node [bootstrap]
    -> arg[  0]: com.sap.engine.bootstrap.Bootstrap
    -> arg[  1]: ./bootstrap
    -> arg[  2]: ID0072573
    -> arg[  3]: -XX:NewSize=57M
    -> arg[  4]: -XX:MaxNewSize=57M
    -> arg[  5]: -Xms256M
    -> arg[  6]: -Xmx256M
    -> arg[  7]: -XX:+DisableExplicitGC
    -> arg[  8]: -verbose:gc
    -> arg[  9]: -Djava.security.policy=.java.policy
    -> arg[ 10]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 11]: -Djco.jarm=1
    [Thr 5216] JLaunchIExitJava: exit hook is called (rc = 66)
    [Thr 5216] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 5216] JLaunchCloseProgram: good bye (exitcode = 66)
    From server.0.log :
    #1.5 #001E4F208703008A0001C7470000092000046A4414D60A1F#1242740546634#/System/Server##com.sap.caf.eu.gp.schedule.impl.ScheduleWorker#J2EE_GUEST#0##n/a##27772ea0447811deb9bf001e4f208703#SAPEngine_Application_Thread[impl:3]_25##0#0#Error#1#com.sap.caf.eu.gp.schedule.impl.ScheduleWorker#Plain###ERROR_ACQUIRE_CONNECTION
    com.sap.caf.eu.gp.base.exception.EngineException: ERROR_ACQUIRE_CONNECTION
         at com.sap.caf.eu.gp.base.db.ConnectionPoolJ2EE.getConnection(ConnectionPoolJ2EE.java:92)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleDbImpl.getScheduleToProcess(ScheduleDbImpl.java:1936)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleService.getScheduleToProcess(ScheduleService.java:432)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.work(ScheduleWorker.java:77)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.run(ScheduleWorker.java:63)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: com.sap.engine.services.dbpool.exceptions.BaseSQLException: ResourceException in method ConnectionFactoryImpl.getConnection(): com.sap.engine.services.dbpool.exceptions.BaseResourceException: SQLException thrown by the physical connection: com.sap.sql.log.OpenSQLException: Error while accessing secure store: File "
    cai-bwdev
    sapmnt
    BWD
    SYS
    global
    security
    data
    SecStore.properties" does not exist although it should..
         at com.sap.engine.services.dbpool.cci.ConnectionFactoryImpl.getConnection(ConnectionFactoryImpl.java:59)
         at com.sap.caf.eu.gp.base.db.ConnectionPoolJ2EE.getConnection(ConnectionPoolJ2EE.java:89)
         ... 8 more
    Caused by: com.sap.engine.services.dbpool.exceptions.BaseResourceException: SQLException thrown by the physical connection: com.sap.sql.log.OpenSQLException: Error while accessing secure store: File "
    cai-bwdev
    sapmnt
    BWD
    SYS
    global
    security
    data
    SecStore.properties" does not exist although it should..
         at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:193)
         at com.sap.engine.services.connector.jca.ConnectionHashSet.match(ConnectionHashSet.java:338)
         at com.sap.engine.services.connector.jca.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:267)
         at com.sap.engine.services.dbpool.cci.ConnectionFactoryImpl.getConnection(ConnectionFactoryImpl.java:51)
         ... 9 more
    Caused by: com.sap.sql.log.OpenSQLException: Error while accessing secure store: File "
    cai-bwdev
    sapmnt
    BWD
    SYS
    global
    security
    data
    SecStore.properties" does not exist although it should..
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:106)
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:145)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.setDataSourceName(OpenSQLDataSourceImpl.java:226)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.setDataSourceName(OpenSQLDataSourceImpl.java:197)
         at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:117)
         ... 12 more
    Caused by: com.sap.security.core.server.secstorefs.FileMissingException: File "
    cai-bwdev
    sapmnt
    BWD
    SYS
    global
    security
    data
    SecStore.properties" does not exist although it should.
         at com.sap.security.core.server.secstorefs.StorageHandler.openExistingStore(StorageHandler.java:372)
         at com.sap.security.core.server.secstorefs.SecStoreFS.openExistingStore(SecStoreFS.java:1946)
         at com.sap.sql.connect.OpenSQLConnectInfo.getStore(OpenSQLConnectInfo.java:802)
         at com.sap.sql.connect.OpenSQLConnectInfo.lookup(OpenSQLConnectInfo.java:783)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.setDataSourceName(OpenSQLDataSourceImpl.java:209)
         ... 14 more
    Please advice with the right solution,
    Regards,
    Ahmed

    thanks

  • Problem with XI J2EE Stack

    We are getting the following error when the XI stack starts up. It seems to point to a problem in the Exchange Profile. However, I am not sure whether it is complaining because of incorrect parameters or because it is unable to access it. This instance of XI has been running just fine for the last few months and we have had no problems with it. All the J2EE services are shut down as the exception shows. Any insight into what the problem might be is well appreciated.
    FYI, We haven't added any patches for the last couple of months. It was working fine during that time.
    Included is the output from the log.
    stdout/stderr redirect
    node name   : server0
    pid         : 4500
    system name : XID
    system nr.  : 00
    started at  : Thu Jan 20 14:57:26 2005
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude iaik/security/md/SHA a
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    SAP J2EE Engine Version 6.40   PatchLevel 87037.313 is starting...
    Loading: LogManager ... 4687 ms.
    Loading: PoolManager ... 16 ms.
    Loading: ApplicationThreadManager ... 142 ms.
    Loading: ThreadManager ... 158 ms.
    Loading: IpVerificationManager ... 126 ms.
    Loading: ClassLoaderManager ... 78 ms.
    Loading: ClusterManager ... 1558 ms.
    Loading: LockingManager ... 724 ms.
    Loading: ConfigurationManager ... 5647 ms.
    Loading: LicensingManager ... 47 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service cross started. (47 ms).
      Service memory started. (47 ms).
      Service file started. (173 ms).
      Service timeout started. (126 ms).
      Service userstore started. (31 ms).
      Service runtimeinfo started. (31 ms).
      Service tcsecvsi~service started. (362 ms).
      Service p4 started. (1541 ms).
      Service trex.service started. (692 ms).
      Service jmx_notification started. (865 ms).
      Service classpath_resolver started. (126 ms).
      Service tcsecwssec~service started. (661 ms).
      Service deploy started. (10662 ms).
      Service log_configurator started. (11997 ms).
      Service locking started. (16 ms).
      Service apptracing started. (424 ms).
      Service http started. (533 ms).
      Service naming started. (816 ms).
      Service ts started. (203 ms).
      Service javamail started. (298 ms).
      Service failover started. (220 ms).
      Service licensing started. (47 ms).
      Service appclient started. (282 ms).
      Service jmsconnector started. (455 ms).
      Service connector started. (204 ms).
      Service configuration started. (16 ms).
      Service webservices started. (2887 ms).
      Service dbpool started. (9428 ms).
      Service com.sap.aii.af.svc started. (942 ms).
      Service com.sap.security.core.ume.service started. (4048 ms).
      Service security started. (5083 ms).
      Service applocking started. (486 ms).
      Service shell started. (675 ms).
      Service tceCATTPingservice started. (189 ms).
      Service classload started. (549 ms).
      Service telnet started. (220 ms).
      Service keystore started. (1789 ms).
      Service ssl started. (156 ms).
      Service ejb started. (2322 ms).
      Service servlet_jsp started. (2400 ms).
      Service tcsecsecurestorage~service started. (753 ms).
      Service dsr started. (2150 ms).
      Service jmx started. (2730 ms).
      Service webdynpro started. (2526 ms).
      Service tcsecdestinations~service started. (753 ms).
      Service pmi started. (392 ms).
      Service basicadmin started. (894 ms).
      Service adminadapter started. (659 ms).
      Service sld started. (2824 ms).
      Service rfcengine started. (5098 ms).
      Service monitor started. (4032 ms).
      Service tc.monitoring.logviewer started. (7608 ms).
      Service com.sap.aii.af.ms.svc started. (7640 ms).
      Service jms_provider started. (11437 ms).
      Service com.sap.aii.af.cpa.svc started. (11718 ms).
      Service com.sap.aii.adapter.marketplace.svc started. (188 ms).
      Service com.sap.aii.adapter.xi.svc started. (282 ms).
      Service com.sap.aii.af.security.service started. (204 ms).
      Service com.sap.aii.adapter.bc.svc started. (361 ms).
      Service com.sap.aii.adapter.mail.svc started. (94 ms).
      Service com.sap.aii.adapter.jms.svc started. (644 ms).
      Service com.sap.aii.adapter.jdbc.svc started. (612 ms).
      Service com.sap.aii.adapter.file.svc started. (659 ms).
      Service com.sap.aii.af.ispeak.svc started. (706 ms).
      Service com.sap.aii.adapter.rfc.svc started. (1882 ms).
    ServiceManager started for 69917 ms.
    Framework started for 84184 ms.
    SAP J2EE Engine Version 6.40   PatchLevel 87037.313 is running!
    PatchLevel 87037.313 October 19, 2004 19:52 GMT
    >### Excluding compile:  iaik.security.md.SHA::a
    Jan 22, 2005 3:03:51 AM         com.sap.engine.core.configuration [Thread[Timeout Service Internal Thread,5,SAPEngine_System_Thread[impl:5]_Group]] Fatal: Error event: java.sql.SQLException: Io exception: Connection reset by peer: socket write error
    Jan 25, 2005 10:17:28... ...utilxi.prop.api.PropertySourceFactory [SAPEngine_Application_Thread[impl:3]_0] Fatal: XI properties could not be initialized. Check ExchangeProfile (or aii.properties).
    Thrown:
    java.lang.Throwable: dummy Throwable for stack trace
         at com.sap.aii.utilxi.prop.api.PropertySourceFactory.getPropertySource(PropertySourceFactory.java:55)
         at com.sap.aii.utilxi.misc.api.AIIProperties.sync(AIIProperties.java:528)
         at com.sap.aii.utilxi.misc.api.AIIProperties.<init>(AIIProperties.java:301)
         at com.sap.aii.utilxi.misc.api.AIIProperties.getInstance(AIIProperties.java:328)
         at com.sap.aii.ib.server.util.perf.TimerFactory.<clinit>(TimerFactory.java:86)
         at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:73)
         at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0.processFunction(MappingServiceObjectImpl0.java:131)
         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:324)
         at com.sap.engine.services.ejb.session.stateless_sp5.ObjectStubProxyImpl.invoke(ObjectStubProxyImpl.java:187)
         at $Proxy30.processFunction(Unknown Source)
         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:324)
         at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:95)
         at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequestInternal(RFCJCOServer.java:113)
         at com.sap.engine.services.rfcengine.RFCJCOServer$ApplicationRunnable.run(RFCJCOServer.java:171)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Jan 29, 2005 7:37:28 AM         com.sap.engine.core.configuration [SAPEngine_Application_Thread[impl:3]_23] Fatal: Error event: java.sql.SQLException: Io exception: Connection reset by peer: socket write error
    Jan 31, 2005 4:11:19 PM  ...l.cache.WebResourceCache.startService [Thread[Thread-1140,5,SAPEngine_Application_Thread[impl:3]_Group]] Fatal: Tried to save: ~wd_key0_1107205757104
    Feb 5, 2005 3:07:25 AM          com.sap.engine.core.configuration [Thread[Timeout Service Internal Thread,5,SAPEngine_System_Thread[impl:5]_Group]] Fatal: Error event: java.sql.SQLException: Io exception: Connection reset by peer: socket write error
    Feb 5, 2005 3:02:56 PM          com.sap.engine.core.configuration [SAPEngine_System_Thread[impl:5]_78] Fatal: Error event: java.sql.SQLException: Io exception: Connection reset by peer: socket write error
    Feb 6, 2005 3:03:13 PM          com.sap.engine.core.configuration [SAPEngine_System_Thread[impl:5]_77] Fatal: Error event: java.sql.SQLException: Io exception: Connection reset by peer: socket write error
    Feb 19, 2005 3:15:45 AM         com.sap.engine.core.configuration [Thread[Timeout Service Internal Thread,5,SAPEngine_System_Thread[impl:5]_Group]] Fatal: Error event: java.sql.SQLException: Io exception: Connection reset by peer: socket write error
    SAP J2EE Engine Version 6.40   PatchLevel 87037.313 is shutting down!  PatchLevel 87037.313 October 19, 2004 19:52 GMT
    Stopping services.
      Service com.sap.aii.adapter.rfc.svc stopped. (439 ms)
      Service com.sap.aii.af.ispeak.svc stopped. (78 ms)
      Service com.sap.aii.adapter.marketplace.svc stopped. (15 ms)
      Service com.sap.aii.adapter.jdbc.svc stopped. (79 ms)

    Hi Sunit,
    Did you figure out what happened? We're seeing the same issue.
    Thanks,
    Jay

  • Problems with Duke's Bookstore Examples (Chapter 3 of the J2EE 1.4 Tut)

    Hi
    Please help me, I am going through the J2EE tutorial (I have the Sun App Server 8 installed on a Win XP Service Pack 2 machine) but am running into problems.
    I'm having a problem with the
    1. asant build and
    2. asant create-db_common
    commands.
    1. asant build
    ===========
    When trying to use the command asant build I get the following problems:
    D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore>asant build
    Buildfile: build.xml
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\common\targets.xml could not be found
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\web\common\targets.xml could not be found
    init:
    prepare:
    build:
    [javac] Compiling 11 source files to D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\booksto
    re\build
    BUILD FAILED
    file:D:/P.Files%20Ext/MJ%20Ext/J2EE%201.4%20Tutorial%20EXT/j2eetutorial14/examples/web/bookstore/build.xml:54: D:\lib not found.
    Total time: 8 seconds
    I then created an empty folder = D:\lib
    It then seemed to work?? but still could not find targets.xml as below
    D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore>asant build
    Buildfile: build.xml
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\common\targets.xml could not be found
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\web\common\targets.xml could not be found
    init:
    prepare:
    build:
    [javac] Compiling 11 source files to D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore\build
    BUILD SUCCESSFUL
    Total time: 18 seconds
    D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore>
    2. asant create-db_common
    ======================
    When trying to use the command asant create-db_common I get the following problems (I had to create an empty folder - D:\pointbase\lib to get this far)
    D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore>asant create-db_common
    Buildfile: build.xml
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\common\targets.xml could not be found
    D:\P.Files%20Ext\MJ%20Ext\J2EE%201.4%20Tutorial%20EXT\j2eetutorial14\examples\web\common\targets.xml could not be found
    init:
    create-db_common:
    [java] java.lang.NoClassDefFoundError: com/pointbase/tools/toolsCommander
    [java] Exception in thread "main"
    [java] Java Result: 1
    BUILD SUCCESSFUL
    Total time: 8 seconds
    D:\P.Files Ext\MJ Ext\J2EE 1.4 Tutorial EXT\j2eetutorial14\examples\web\bookstore>
    Now I know that creating empty folders is not the solution so if anyone has any ideas as to what is wrong PLEASE tell me. I think there is something I need to add to a configuration file or something. I have re-installed the App Server but I still get the same problems. Thanks for your time!!

    Hi
    I have the same problem with the hello2 example, in the tutorial... You didnt??
    anyway maybe you are not setting the j2ee.home.
    somebody named " Jennifer " give me this advise ( i told you this to recognice that i was helped before)
    " Hello,
    You are probably not setting j2ee.home correctly. Please go to the following page and read section Building The Examples. Pay special attention to the Note in that section.
    http://java.sun.com/j2ee/1.4/docs/tutorial/doc/About.html
    thanks,
    Jennifer "
    good luck, see ya

  • Problem with starting j2ee stack

    We have Netweaver 2004s ABAP+J2EE (Add-in). ABAP stack starts ok, but j2ee stack not :(.
    dev_jcontrol:
    [Thr 6040] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 6040] INFO: Invalid property value [javaVMPath=C:\j2sdk1.4.2_09]
    [Thr 6040] INFO: Invalid property value [javaVMVersion=1.4.2_09-b05]
    [Thr 6040] INFO: Invalid property value [javaVMVendor=Java HotSpot(TM) Server VM (Sun Microsystems Inc.)]
    [Thr 6040] INFO: Invalid property value [javaVMCpu=x86]
    [Thr 6040] INFO: Invalid property value [javaVMLibPath=C:\j2sdk1.4.2_09\jre\bin\server;C:\j2sdk1.4.2_09\jre\bin]
    [Thr 6040] INFO: Invalid property value [javaVMExePath=C:\j2sdk1.4.2_09\bin]
    [Thr 6040] *** ERROR => Main class not specified [jstartxx.c   2592]
    [Thr 6040] *** ERROR => node [bootstrap] not found [jstartxx.c   1593]
    [Thr 6040] JControlExecuteBootstrap: error executing bootstrap node [bootstrap] (rc = -18)
    [Thr 6040] JControlCloseProgram: started (exitcode = -18)
    [Thr 6040] JControlCloseProgram: good bye... (exitcode = -18)
    instance.properties
    #bootstrap. : -
    #bootstrap. : generated VM parameters
    #bootstrap. : Thu Apr 20 14:36:35 2006
    #bootstrap. : -
    bootstrap.javaVMPath=C:\j2sdk1.4.2_09
    bootstrap.javaVMVersion=1.4.2_09-b05
    bootstrap.javaVMVendor=Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    bootstrap.javaVMType=server
    bootstrap.javaVMCpu=x86
    bootstrap.javaVMLibPath=C:\j2sdk1.4.2_09\jre\bin\server;C:\j2sdk1.4.2_09\jre\bin
    bootstrap.javaVMExePath=C:\j2sdk1.4.2_09\bin
    And I can't understand what can be problem with java props. Any suggestion?
    Thanks in advance,
    Aliaksandr Kuchar

    Thank you Vladimir for your replies, it's very helpful.
    Actually we managed to restore properties file on our files system. And now sap mmc shows that j2ee server starts well. But we cann't connect it by http neither deafult page of server nor any other (portal f.e.), but can connect Visual Admin.
    std_server0.out
    SAP J2EE Engine Version 7.00   PatchLevel is starting...
    Loading: LogManager ... 1782 ms.
    Loading: PoolManager ... 15 ms.
    Loading: ApplicationThreadManager ... 141 ms.
    Loading: ThreadManager ... 31 ms.
    Loading: IpVerificationManager ... 47 ms.
    Loading: ClassLoaderManager ... 31 ms.
    Loading: ClusterManager ... 453 ms.
    Loading: LockingManager ... 110 ms.
    Loading: ConfigurationManager ... 8281 ms.
    Loading: LicensingManager ... 47 ms.
    Loading: CacheManager ... 125 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service DQE started. (0 ms).
      Service runtimeinfo started. (32 ms).
      Service memory started. (188 ms).
      Service cross started. (172 ms).
      Service file started. (250 ms).
      Service timeout started. (219 ms).
      Service cafeuodi~mnuacc started. (0 ms).
      Service trex.service started. (31 ms).
      Service p4 started. (969 ms).
      Service classpath_resolver started. (78 ms).
      Service cafeucc~api started. (2922 ms).
      Service jmx_notification started. (93 ms).
      Service userstore started. (47 ms).
      Service log_configurator started. (8000 ms).
      Service locking started. (15 ms).
      Service naming started. (1187 ms).
      Service failover started. (78 ms).
      Service appclient started. (140 ms).
      Service javamail started. (641 ms).
      Service ts started. (609 ms).
      Service http started. (1469 ms).
      Service licensing started. (31 ms).
      Service jmsconnector started. (562 ms).
      Service connector started. (546 ms).
      Service iiop started. (656 ms).
      Service webservices started. (3625 ms).
      Service deploy started. (15578 ms).
      Service configuration started. (47 ms).
      Service MobileSetupGeneration started. (47 ms).
      Service MigrationService started. (79 ms).
      Service MobileArchiveContainer started. (63 ms).
      Service bimmrdeployer started. (0 ms).
      Service dbpool started. (2266 ms).
      Service cafeugpmailcf started. (62 ms).
      Service com.sap.security.core.ume.service started. (2578 ms).
      Service security started. (1296 ms).
      Service classload started. (156 ms).
      Service applocking started. (344 ms).
      Service shell started. (328 ms).
      Service tceCATTPingservice started. (78 ms).
      Service telnet started. (78 ms).
      Service webdynpro started. (859 ms).
      Service cafummetadata~imp started. (937 ms).
      Service ejb started. (2219 ms).
      Service servlet_jsp started. (2937 ms).
      Service dsr started. (1500 ms).
      Service developmentserver started. (2687 ms).
      Service keystore started. (3593 ms).
      Service ssl started. (78 ms).
      Service tcsecsecurestorage~service started. (562 ms).
      Service cafumrelgroups~imp started. (3297 ms).
      Service tcsecwssec~service started. (235 ms).
      Service tcsecdestinations~service started. (703 ms).
      Service pmi started. (500 ms).
      Service sld started. (2875 ms).
      Service cafruntimeconnectivity~impl started. (28656 ms).
      Service cafeugp~model started. (375 ms).
      Service tcsecvsi~service started. (1797 ms).
      Service tceujwfuiwizsvc started. (16 ms).
      service tcdisdic~srv ================= ERROR =================
      Service jmx started. (6110 ms).
      Service cafeuer~service started. (1781 ms).
      Service tc.CBS.Service started. (9578 ms).
      Service prtbridge started. (5954 ms).
      Service CUL started. (5703 ms).
      Service com.adobe~DataManagerService started. (6047 ms).
    Jun 7, 2007 3:08:03 PM   ...utilxi.prop.api.PropertySourceFactory [SAPEngine_System_Thread[impl:5]_43] Fatal: XI properties could not be initialized. Check ExchangeProfile (or aii.properties).
    Thrown:
    java.lang.Throwable: dummy Throwable for stack trace
         at com.sap.aii.utilxi.prop.api.PropertySourceFactory.getPropertySource(PropertySourceFactory.java:55)
         at com.sap.aii.utilxi.misc.api.AIIProperties.sync(AIIProperties.java:548)
         at com.sap.aii.utilxi.misc.api.AIIProperties.<init>(AIIProperties.java:319)
         at com.sap.aii.utilxi.misc.api.AIIProperties.getInstance(AIIProperties.java:346)
         at com.sap.aii.af.service.sld.SLDAccess.syncExchangeProfile(SLDAccess.java:43)
         at com.sap.aii.af.service.cpa.impl.util.SLDReader.run(SLDReader.java:89)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
      Service apptracing started. (3125 ms).
      Service basicadmin started. (7422 ms).
      Service com.adobe~LicenseService started. (531 ms).
      Service com.adobe~DocumentServicesConfiguration started. (859 ms).
      Service adminadapter started. (3531 ms).
      Service com.sap.portal.pcd.gl started. (156 ms).
      Service com.adobe~DocumentServicesBinaries2 started. (4156 ms).
      Service com.adobe~DocumentServicesDestProtoService started. (4250 ms).
      Service com.adobe~DocumentServicesLicenseSupportService started. (3391 ms).
      Service com.adobe~TrustManagerService started. (2906 ms).
      Service jms_provider started. (14734 ms).
      Service monitor started. (6047 ms).
      Service com.sap.portal.prt.sapj2ee started. (93 ms).
      Service com.sap.aii.af.cpa.svc started. (18157 ms).
      Service com.sap.aii.af.svc started. (1640 ms).
      Service com.sap.aii.af.security.service started. (515 ms).
      Service com.sap.aii.af.ms.svc started. (672 ms).
      Service com.sap.aii.adapter.marketplace.svc started. (437 ms).
      Service com.sap.aii.adapter.jms.svc started. (765 ms).
      Service com.sap.aii.adapter.xi.svc started. (734 ms).
      Service com.sap.aii.adapter.bc.svc started. (1016 ms).
      Service com.sap.aii.adapter.mail.svc started. (610 ms).
      Service com.sap.aii.adapter.jdbc.svc started. (640 ms).
      Service com.sap.aii.adapter.rfc.svc started. (1063 ms).
      Service com.sap.aii.adapter.file.svc started. (766 ms).
      Service com.sap.aii.af.ispeak.svc started. (437 ms).
      Service com.adobe~FontManagerService started. (19078 ms).
      Service com.adobe~PDFManipulation started. (18281 ms).
      Service com.adobe~XMLFormService started. (4468 ms).
      Service tc.monitoring.logviewer started. (32672 ms).
      Service rfcengine started. (43672 ms).
    ServiceManager started for 81656 ms.
    Framework started for 93172 ms.
    SAP J2EE Engine Version 7.00   PatchLevel is running!
    PatchLevel October 23, 2006 07:41 GMT
    Could it be forced by absence of aii.property or by service tcdisdic~srv ================= ERROR =================? How could I indicate problem in more exact way?

Maybe you are looking for