Property toplink.server.platform.class.name is deprecated, property toplink

I am facing a current problem by trying to deploy my application which is using TopLink to OC4J 10.1.3. The problem is that it is written in the log.xml file:
<MESSAGE>
<HEADER>
<TSTZ_ORIGINATING>2008-06-20T14:57:05.816+03:00</TSTZ_ORIGINATING>
<COMPONENT_ID>toplink</COMPONENT_ID>
<MSG_TYPE TYPE="NOTIFICATION"></MSG_TYPE>
<MSG_LEVEL>1</MSG_LEVEL>
<HOST_ID>srv1</HOST_ID>
<HOST_NWADDR>192.168.65.211</HOST_NWADDR>
<MODULE_ID>essentials.session.file:/opt/oracleas/AS3/j2ee/reporting/applicat
ions/RM8/RM2/WEB-INF/classes/-RMPU.transaction</MODULE_ID>
<THREAD_ID>2</THREAD_ID>
<USER_ID>oracleas</USER_ID>
</HEADER>
<CORRELATION_DATA>
<EXEC_CONTEXT_ID><UNIQUE_ID>192.168.65.211:48034:1213962454879:36</UNIQUE_ID
<SEQ>0</SEQ></EXEC_CONTEXT_ID></CORRELATION_DATA>
<PAYLOAD>
<MSG_TEXT>property toplink.server.platform.class.name is deprecated, propert
y toplink.target-server should be used instead.</MSG_TEXT>
</PAYLOAD>
</MESSAGE>
But I can not find file -RMPU.transaction in my WAR package. That means it is created durring the deployment... When the undeployment phase starts after the unsuccessful deployment all the files are deleted too. I can't modify the -RMPU.transaction file to use property toplink.server.platform.class.name instead of toplink.target-server.
Why is the file -RMPU.transaction created? What does it do? How to get rid of it?
Is there any solution to this problem?

It was only a warning. The problem was that the container I was using for testing damaged somehow. I removed it and created an other one and everything went fine.

Similar Messages

  • SM2012R2 MP Authoring property shows instead of class name when selecting class

    I went ahead and created a new Management Pack through the authoring tool and defined a new class (base Service Request) labeled UserOnboarding. This class has around 10 different properties including firstname, lastname, mobilephone, etc
    When I go import the MP into Service Manager and choose to build a new Service Request and choose to brows the classes, the class name actually appears to be one of the property fields such as MobilePhone instead of the actual class name UserOnboarding.
    Is this a bug or am I missing something?

    SCSM requires some time to populate a table with translations. Then console's restart heal the issue.
    Cheers,
    Marat
    Site: www.scutils.com  Twitter:
      LinkedIn:
      Facebook:

  • How to specify class name in environment or system property

    Hi,
    Iam learning ejb. I was practicing the stateless session bean. I wrote a sample hello world application. While executing the client am getting the following error.
    {color:#ff0000}Exception in thread "main" javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
    at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
    at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
    at javax.naming.InitialContext.getURLOrDefaultInitCtx(Unknown Source)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at hw.HelloClient.main(HelloClient.java:20){color}
    My Client program:
    {color:#3366ff}package hw;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.*;
    import java.util.*;
    public class HelloClient {
    public static void main(String[] args)throws Exception {
    Properties prop = System.getProperties();
    Context ctx= new InitialContext(prop); {color:#800000}// {color}{color:#800000}(Line no :20) here only error is pointing{color}
    Object obj = ctx.lookup("HelloHome");
    HelloHome home = (HelloHome)javax.rmi.PortableRemoteObject.narrow(obj,HelloHome.class);
    Hello hello = home.create();
    System.out.println(hello.hello());
    hello.remove();
    }{color}
    please suggest me a solution.
    note: iam using eclipse ganymede and jboss app server
    Edited by: Arun_ece on Mar 10, 2009 1:13 AM

    Hi,
    You need to create a ejb-jar.xml and jboss.xml files to deploy the application on the servers.
    Also, put these lines of codes after getting System Properties.
    prop.put(Context.PROVIDER_URL, "iiop://localhost:[port_no]");Thanks,
    Srikant

  • Query on "serve servlet by class name" in weblogic

    Dear Experts,
    We are migrating our application from WebSphere application server/Jboss application server to Weblogic Application server 10.3
    I have the below query,
    One of our applications uses a number of servlets and all of them are not declared in the web deployment descriptor.
    The application makes calls to these servlets internally using relative url based on user actions. So, all these url contains the servlet class names.
    Application url looks like the below:
    https://mymachine.com:8443/MyApp/servlet/com.myApp.Test
    and the /servlet/ is responsible for invoking the successive servlets.
    In WebSphere application server, it provides a feature called "serveservletbyClassName" which enables the applications to work properly. and in Jboss application server, there is something called an invoker servlet to invoke the same. But when I moved to weblogic, I am forced to add all the servlets mapping in to web.xml. Could you please suggest any options where I can continue working with my application without adding the servlet mappings in web.xml?
    Please help me to resolve this.
    Thanks in advance
    SS
    Edited by: user12959134 on Apr 8, 2010 5:53 AM

    Please refer to Steve Button's Solution Here: How can we use class name in the url
    Hope this is what you are looking for.
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)

  • Servlet on "Sun Java System Application Server Platform Edition 9.0"

    Hi Friends,
    I'm using Sun Java System Application Server Platform Edition 9.0
    my server is instatted on "C:\Sun\AppServer\" and rest is default istallation path
    my web page is calling from "C:\Sun\AppServer\domains\domain1\docroot\" folder
    I wrote a test servert and placed the complied
    using the command
    C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\classes\in\muk>javac -cp C
    :\Sun\AppServer\lib\j2ee.jar TestServlet.java
    C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\classes\in\muk>
    and placed the class file in "C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\classes\in\muk\TestServlet.class" having following code
    package in.muk;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.Date;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class TestServlet extends HttpServlet {
         public void doGet(HttpServletRequest req, HttpServletResponse res)
              throws IOException, ServletException {
              res.setContentType("text/html");
              PrintWriter out = res.getWriter();
              out.println("<html><head><title>TestServlet</title>");
              out.println("\t<style>body { font-family: 'Lucida Grande', " +
                   "'Lucida Sans Unicode';font-size: 13px; }</style>");
              out.println("</head><body><p>Current Date/Time: " +     new Date().toString() + "</p>");
              out.println("</body></html>");
              out.close();
    The content of my "C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\web.xml" file is
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
              http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         version="2.5">
         <servlet>
              <servlet-name>TestServlet</servlet-name>
              <servlet-class>in.muk.TestServlet</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>TestServlet</servlet-name>
              <url-pattern>/TestServlet</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.jsp</welcome-file>
         </welcome-file-list>
    </web-app>--------------------
    The content of "C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\sun-web.xml"
    is
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE sun-web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 9.0 Servlet 2.5//EN" "http://www.sun.com/software/appserver/dtds/sun-web-app_2_5-0.dtd">
    <sun-web-app error-url="">
      <class-loader delegate="true"/>
      <jsp-config>
        <property name="keepgenerated" value="true">
          <description>Keep a copy of the generated servlet class' java code.</description>
        </property>
      </jsp-config>
    </sun-web-app>--------------
    The proble is I'm not able to call this servlet on web
    with URL
    *http://localhost:8080/TestServlet
    *it is giving "HTTP Status 404 - "
    Could anybody please help me in finding out why I'm not able to access the Servlet.
    Thank you with regards.
    Edited by: mu_kumar on Mar 5, 2008 9:00 PM

    Hello,
    Did you download the window version?
    Download it from
    https://sdlc4e.sun.com/ECom/EComActionServlet;jsessionid=127ACE07200555497A21DDC654885146
    And don't worry, it's the correct version. Also could you check on your PC,
    Start\Programs\ Sun Microsystems\ Application Server PE 9.
    Also which operative system are you using?
    eve

  • Servlet configration on "Sun Java System Application Server Platform Editio

    Hi Friends,
    I'm using Sun Java System Application Server Platform Edition 9.0
    my server is instatted on "C:\Sun\AppServer\" and rest is default istallation path
    my web page is calling from "C:\Sun\AppServer\domains\domain1\docroot\" folder
    I wrote a test servert and placed the complied class file in "C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\classes\in\muk\TestServlet.class" having following code
    using the command
    C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\classes\in\muk>javac -cp C
    :\Sun\AppServer\lib\j2ee.jar TestServlet.java
    C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\classes\in\muk>
    {noformat}<code>package in.muk;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.Date;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class TestServlet extends HttpServlet {
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws IOException, ServletException {
              res.setContentType("text/html");
              PrintWriter out = res.getWriter();
              out.println("<html><head><title>TestServlet</title>");
              out.println("\t<style>body { font-family: 'Lucida Grande', " +
                   "'Lucida Sans Unicode';font-size: 13px; }</style>");
              out.println("</head><body><p>Current Date/Time: " +     new Date().toString() + "</p>");
              out.println("</body></html>");
              out.close();
    </code>{noformat}
    The content of my "C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\web.xml" file is
    {noformat}<code><?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
              http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         version="2.5">
         <servlet>
              <servlet-name>TestServlet</servlet-name>
              <servlet-class>in.muk.TestServlet</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>TestServlet</servlet-name>
              <url-pattern>/TestServlet</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.jsp</welcome-file>
         </welcome-file-list>
    </web-app>
    </code>{noformat}
    The content of "C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\sun-web.xml"
    is -----
    {noformat}<code><?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE sun-web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 9.0 Servlet 2.5//EN" "http://www.sun.com/software/appserver/dtds/sun-web-app_2_5-0.dtd">
    <sun-web-app error-url="">
    <class-loader delegate="true"/>
    <jsp-config>
    <property name="keepgenerated" value="true">
    <description>Keep a copy of the generated servlet class' java code.</description>
    </property>
    </jsp-config>
    </sun-web-app>
    </code>{noformat}
    The proble is I'm not able to call this servlet on web
    with URL
    http://localhost:8080/TestServlet
    it is giving "HTTP Status 404 - "
    Could you please help me in finding out where is the error

    Thanks for the reply.
    I am using Sun Java System Application Server Platform Edition 8.2 (build b06-fcs). Could be some problem in the application itself. Can you suggest what may be missing? As suggested in the bug description i used the wscompile -infix option as well.

  • Application Server Platform Edition 8.1 2005Q2 fails to start - CLI156

    I have installed and re-installed PE8.1 on my laptop many times (with security off). I followed Quickstart and after 60 seconds end up with CLI156. I have upgraded from XP Home Edition to XP Professional. I have been going round and round for the last 4 days. I have searched for CLI156 and have tried many options. Any pointers (if not memory references) would be appreciated.
    Pertinent information is as follows:
    Machine information
    Vendor:TOSHIBA
    Machine Name:Satellite L15
    BIOS Name:Rev 1.0 XXX
    BIOS Version:V1.80
    Version:PSL10U-01X02FV
    CPU Maker:GenuineIntel
    CPU Name:Intel(R) Celeron(R) M processor 1.30GHz
    CPU Base Clock:400
    OS:Microsoft Windows XP Professional
    OS Build:2600
    OS SP:Service Pack 2
    Ram:768432
    Windows IP Configuration
    Host Name . . . . . . . . . . . . : FE
    Ethernet adapter Local Area Connection:
    Media State . . . . . . . . . . . : Media disconnected
    Description . . . . . . . . . . . : Realtek RTL8139/810x Family Fast Ethernet NIC
    Ethernet adapter Wireless Network Connection:
    Connection-specific DNS Suffix . : ph.cox.net
    Description . . . . . . . . . . . : INPROCOMM IPN2220 Wireless LAN Card
    Dhcp Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    Lease Obtained. . . . . . . . . . : Sunday, October 02, 2005 8:24:56 AM
    Lease Expires . . . . . . . . . . : Monday, October 03, 2005 8:24:56 AM
    Microsoft TCP/IP version 6
    Realtek RTL8139/810x Family Fast Ethernet NIC
    INPROCOMM IPN2220 Wireless LAN Card
    Microsoft Tun Miniport Adapter
    TOSHIBA Network Device Usermode I/O Protocol
    INPROCOMM IPN2220 Wireless LAN Card
    Realtek RTL8139/810x Family Fast Ethernet NIC
    Point to Point Protocol Over Ethernet
    INPROCOMM IPN2220 Wireless LAN Card
    Realtek RTL8139/810x Family Fast Ethernet NIC
    Point to Point Tunneling Protocol
    Layer 2 Tunneling Protocol
    Remote Access NDIS WAN Driver
    WAN Miniport (ATW)
    Direct Parallel
    WAN Miniport (PPPOE)
    WAN Miniport (PPTP)
    WAN Miniport (L2TP)
    RAS Async Adapter
    NDIS Usermode I/O Protocol
    INPROCOMM IPN2220 Wireless LAN Card
    Realtek RTL8139/810x Family Fast Ethernet NIC
    Message-oriented TCP/IP Protocol (SMB session)
    WINS Client(TCP/IP) Protocol
    Microsoft TCP/IP version 6
    Realtek RTL8139/810x Family Fast Ethernet NIC
    Microsoft TCP/IP version 6
    INPROCOMM IPN2220 Wireless LAN Card
    Microsoft TCP/IP version 6
    Microsoft Tun Miniport Adapter
    Internet Protocol (TCP/IP)
    INPROCOMM IPN2220 Wireless LAN Card
    Internet Protocol (TCP/IP)
    Realtek RTL8139/810x Family Fast Ethernet NIC
    Internet Protocol (TCP/IP)
    WAN Miniport (IP)
    Internet Protocol (TCP/IP)
    INPROCOMM IPN2220 Wireless LAN Card
    Realtek RTL8139/810x Family Fast Ethernet NIC
    WAN Miniport (IP)
    Network Device information
    Realtek RTL8139/810x Family Fast Ethernet NIC
    Device ID : PCI\VEN_10EC&DEV_8139&SUBSYS_FF311179&REV_10\4&16793A72&0&10F0
    Status : Enable
    Driver Vender : Realtek Semiconductor Corp.
    Driver Version : 5.618.1015.2004
    Driver Date : 10-15-2004
    INPROCOMM IPN2220 Wireless LAN Card
    Device ID : PCI\VEN_17FE&DEV_2220&SUBSYS_03101468&REV_00\4&16793A72&0&20F0
    Status : Enable
    Driver Vender : INPROCOMM
    Driver Version : 3.3.11.2004
    Driver Date : 11-4-2004
    Diagnostics results
    Ping Option : Off
    ConfigFree Version
    ConfigFree(TM) 4.90.57a
    Database 3.00.02
    Network Diagnostics
    No Problem found
    netstat -an before installation (cox high speed Internet security, IM, skype - off)
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    Active Connections
    Proto Local Address Foreign Address State
    TCP 0.0.0.0:25 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1025 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1429 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1435 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:19989 0.0.0.0:0 LISTENING
    TCP 192.168.1.101:139 0.0.0.0:0 LISTENING
    TCP [::]:135 [::]:0 LISTENING 0
    TCP [::]:1025 [::]:0 LISTENING 0
    TCP [::]:1429 [::]:0 LISTENING 0
    UDP 0.0.0.0:445 *:*
    UDP 0.0.0.0:500 *:*
    UDP 0.0.0.0:1436 *:*
    UDP 0.0.0.0:1640 *:*
    UDP 0.0.0.0:3456 *:*
    UDP 0.0.0.0:4500 *:*
    UDP 127.0.0.1:123 *:*
    UDP 127.0.0.1:1900 *:*
    UDP 192.168.1.101:123 *:*
    UDP 192.168.1.101:137 *:*
    UDP 192.168.1.101:138 *:*
    UDP 192.168.1.101:1900 *:*
    UDP 192.168.1.101:11206 *:*
    fport before installation (cox high speed Internet security, IM, skype - off)
    FPort v2.0 - TCP/IP Process to Port Mapper
    Copyright 2000 by Foundstone, Inc.
    http://www.foundstone.com
    Pid Process Port Proto Path
    1264 inetinfo -> 25 TCP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    1104 -> 135 TCP
    4 System -> 139 TCP
    4 System -> 445 TCP
    1684 LEXPPS -> 1025 TCP C:\WINDOWS\system32\LEXPPS.EXE
    1264 inetinfo -> 1429 TCP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    2768 -> 1435 TCP
    524 CFSServ -> 19989 TCP C:\Program Files\TOSHIBA\ConfigFree\CFSServ
    .exe
    524 CFSServ -> 123 UDP C:\Program Files\TOSHIBA\ConfigFree\CFSServ
    .exe
    0 System -> 123 UDP
    0 System -> 137 UDP
    0 System -> 138 UDP
    1264 inetinfo -> 445 UDP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    1104 -> 500 UDP
    4 System -> 1436 UDP
    1684 LEXPPS -> 1640 UDP C:\WINDOWS\system32\LEXPPS.EXE
    0 System -> 1900 UDP
    1264 inetinfo -> 3456 UDP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    2768 -> 4500 UDP
    0 System -> 11206 UDP
    fport after installation of App Server (cox high speed Internet security, IM, skype - off)
    FPort v2.0 - TCP/IP Process to Port Mapper
    Copyright 2000 by Foundstone, Inc.
    http://www.foundstone.com
    Pid Process Port Proto Path
    1264 inetinfo -> 25 TCP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    1104 -> 135 TCP
    4 System -> 139 TCP
    4 System -> 445 TCP
    1684 LEXPPS -> 1025 TCP C:\WINDOWS\system32\LEXPPS.EXE
    1264 inetinfo -> 1429 TCP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    2768 -> 1435 TCP
    524 CFSServ -> 19989 TCP C:\Program Files\TOSHIBA\ConfigFree\CFSServ
    .exe
    524 CFSServ -> 123 UDP C:\Program Files\TOSHIBA\ConfigFree\CFSServ
    .exe
    0 System -> 123 UDP
    0 System -> 137 UDP
    0 System -> 138 UDP
    1264 inetinfo -> 445 UDP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    1104 -> 500 UDP
    4 System -> 1436 UDP
    1684 LEXPPS -> 1640 UDP C:\WINDOWS\system32\LEXPPS.EXE
    0 System -> 1900 UDP
    1264 inetinfo -> 3456 UDP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    2768 -> 4500 UDP
    0 System -> 28459 UDP
    early in initializing App Server
    fport
    FPort v2.0 - TCP/IP Process to Port Mapper
    Copyright 2000 by Foundstone, Inc.
    http://www.foundstone.com
    Pid Process Port Proto Path
    1264 inetinfo -> 25 TCP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    1104 -> 135 TCP
    4 System -> 139 TCP
    4 System -> 445 TCP
    1684 LEXPPS -> 1025 TCP C:\WINDOWS\system32\LEXPPS.EXE
    1264 inetinfo -> 1429 TCP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    2768 -> 1435 TCP
    3960 appserv -> 1664 TCP C:\Sun\AppServer\lib\appserv.exe
    0 System -> 1666 TCP
    1664 java -> 1668 TCP C:\Sun\jdk1.5.0_02\bin\java.exe
    3960 appserv -> 1669 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1670 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1671 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1672 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1673 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1674 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1675 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1676 TCP C:\Sun\AppServer\lib\appserv.exe
    524 CFSServ -> 19989 TCP C:\Program Files\TOSHIBA\ConfigFree\CFSServ
    .exe
    0 System -> 123 UDP
    3960 appserv -> 123 UDP C:\Sun\AppServer\lib\appserv.exe
    1664 java -> 137 UDP C:\Sun\jdk1.5.0_02\bin\java.exe
    3960 appserv -> 138 UDP C:\Sun\AppServer\lib\appserv.exe
    1264 inetinfo -> 445 UDP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    1104 -> 500 UDP
    4 System -> 1436 UDP
    1684 LEXPPS -> 1640 UDP C:\WINDOWS\system32\LEXPPS.EXE
    3960 appserv -> 1900 UDP C:\Sun\AppServer\lib\appserv.exe
    1264 inetinfo -> 3456 UDP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    2768 -> 4500 UDP
    3960 appserv -> 34840 UDP C:\Sun\AppServer\lib\appserv.exe
    netstat -an early in initialization of App Server
    Active Connections
    Proto Local Address Foreign Address State
    TCP 0.0.0.0:25 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1025 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1429 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1435 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1664 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1664 127.0.0.1:1668 ESTABLISHED
    TCP 127.0.0.1:1666 127.0.0.1:1667 TIME_WAIT
    TCP 127.0.0.1:1668 127.0.0.1:1664 ESTABLISHED
    TCP 127.0.0.1:1669 127.0.0.1:1670 ESTABLISHED
    TCP 127.0.0.1:1670 127.0.0.1:1669 ESTABLISHED
    TCP 127.0.0.1:1671 127.0.0.1:1672 ESTABLISHED
    TCP 127.0.0.1:1672 127.0.0.1:1671 ESTABLISHED
    TCP 127.0.0.1:1673 127.0.0.1:1674 ESTABLISHED
    TCP 127.0.0.1:1674 127.0.0.1:1673 ESTABLISHED
    TCP 127.0.0.1:1675 127.0.0.1:1676 ESTABLISHED
    TCP 127.0.0.1:1676 127.0.0.1:1675 ESTABLISHED
    TCP 127.0.0.1:19989 0.0.0.0:0 LISTENING
    TCP 192.168.1.101:139 0.0.0.0:0 LISTENING
    TCP [::]:135 [::]:0 LISTENING 0
    TCP [::]:1025 [::]:0 LISTENING 0
    TCP [::]:1429 [::]:0 LISTENING 0
    TCP [::]:1668 [::]:0 LISTENING 0
    UDP 0.0.0.0:445 *:*
    UDP 0.0.0.0:500 *:*
    UDP 0.0.0.0:1436 *:*
    UDP 0.0.0.0:1640 *:*
    UDP 0.0.0.0:3456 *:*
    UDP 0.0.0.0:4500 *:*
    UDP 127.0.0.1:123 *:*
    UDP 127.0.0.1:1900 *:*
    UDP 192.168.1.101:123 *:*
    UDP 192.168.1.101:137 *:*
    UDP 192.168.1.101:138 *:*
    UDP 192.168.1.101:1900 *:*
    UDP 192.168.1.101:34840 *:*
    Starting Domain domain1, please wait.
    Log redirected to C:\Sun\AppServer\domains\domain1\logs\server.log.
    Full thread dump Java HotSpot(TM) Client VM (1.5.0_02-b09 mixed mode, sharing):
    "Thread-2" prio=5 tid=0x02d85588 nid=0x970 runnable [0x033cf000..0x033cf9e8]
    at java.io.FileInputStream.readBytes(Native Method)
    at java.io.FileInputStream.read(FileInputStream.java:177)
    at com.sun.enterprise.util.FlusherThread.run(ProcessExecutor.java:625)
    "RMI RenewClean-[192.168.1.101:1664,com.sun.enterprise.admin.server.core.channel
    .LocalRMIClientSocketFactory@1415de6]" daemon prio=5 tid=0x02dfad98 nid=0x8ec in
    Object.wait() [0x0333f000..0x0333fae8]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x22a8b3e8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x22a8b3e8> (a java.lang.ref.ReferenceQueue$Lock)
    at sun.rmi.transport.DGCClient$EndpointEntry$RenewCleanThread.run(DGCCli
    ent.java:500)
    at java.lang.Thread.run(Thread.java:595)
    "GC Daemon" daemon prio=2 tid=0x02de5e10 nid=0x27c in Object.wait() [0x032ff000.
    .0x032ffb68]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x22fe34d8> (a sun.misc.GC$LatencyLock)
    at sun.misc.GC$Daemon.run(GC.java:100)
    - locked <0x22fe34d8> (a sun.misc.GC$LatencyLock)
    "RMI RenewClean-[192.168.1.101:1664,com.sun.enterprise.admin.server.core.channel
    .LocalRMIClientSocketFactory@3ee284]" daemon prio=5 tid=0x02de5c90 nid=0x100 in
    Object.wait() [0x032bf000..0x032bfbe8]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x22fe30e8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x22fe30e8> (a java.lang.ref.ReferenceQueue$Lock)
    at sun.rmi.transport.DGCClient$EndpointEntry$RenewCleanThread.run(DGCCli
    ent.java:500)
    at java.lang.Thread.run(Thread.java:595)
    "Low Memory Detector" daemon prio=5 tid=0x00a6db08 nid=0x198 runnable [0x0000000
    0..0x00000000]
    "CompilerThread0" daemon prio=10 tid=0x00a6c6e0 nid=0xe10 waiting on condition [
    0x00000000..0x02bcf6c0]
    "Signal Dispatcher" daemon prio=10 tid=0x00a6ba00 nid=0x844 waiting on condition
    [0x00000000..0x00000000]
    "Finalizer" daemon prio=9 tid=0x00a68dd8 nid=0xf10 in Object.wait() [0x02b4f000.
    .0x02b4fa68]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x22f6a038> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x22f6a038> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=10 tid=0x00a478b0 nid=0xf34 in Object.wait() [0x
    02b0f000..0x02b0fae8]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x22f6a0b8> (a java.lang.ref.Reference$Lock)
    at java.lang.Object.wait(Object.java:474)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    - locked <0x22f6a0b8> (a java.lang.ref.Reference$Lock)
    "main" prio=5 tid=0x000377a8 nid=0x194 runnable [0x0007f000..0x0007fc38]
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    - locked <0x22adcf20> (a java.net.SocksSocketImpl)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:207)
    at com.sun.enterprise.admin.server.core.channel.LocalRMIClientSocketFact
    ory.createSocket(LocalRMIClientSocketFactory.java:65)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:94)
    at com.sun.enterprise.admin.server.core.channel.AdminChannelServer_Stub.
    getServerStatusCode(Unknown Source)
    at com.sun.enterprise.admin.server.core.channel.RMIClient.getInstanceSta
    tusCode(RMIClient.java:250)
    at com.sun.enterprise.admin.servermgmt.pe.PEInstancesManager.getInstance
    Status(PEInstancesManager.java:555)
    at com.sun.enterprise.admin.servermgmt.pe.PEInstancesManager.isInstanceS
    tarting(PEInstancesManager.java:278)
    at com.sun.enterprise.admin.servermgmt.pe.PEInstancesManager$1.check(PEI
    nstancesManager.java:417)
    at com.sun.enterprise.admin.servermgmt.pe.InstanceTimer.run(InstanceTime
    r.java:32)
    at com.sun.enterprise.admin.servermgmt.pe.PEInstancesManager.waitUntilSt
    arting(PEInstancesManager.java:423)
    at com.sun.enterprise.admin.servermgmt.pe.PEInstancesManager.waitUntilSt
    arting(PEInstancesManager.java:407)
    at com.sun.enterprise.admin.servermgmt.pe.PEInstancesManager.startInstan
    ce(PEInstancesManager.java:244)
    at com.sun.enterprise.admin.servermgmt.pe.PEInstancesManager.startInstan
    ce(PEInstancesManager.java:87)
    at com.sun.enterprise.admin.servermgmt.pe.PEDomainsManager.startDomain(P
    EDomainsManager.java:178)
    at com.sun.enterprise.cli.commands.StartDomainCommand.startDomain(StartD
    omainCommand.java:104)
    at com.sun.enterprise.cli.commands.StartDomainCommand.runCommand(StartDo
    mainCommand.java:141)
    at com.sun.enterprise.cli.framework.CLIMain.invokeCommand(CLIMain.java:1
    35)
    at com.sun.enterprise.cli.framework.CLIMain.main(CLIMain.java:46)
    "VM Thread" prio=10 tid=0x00a67010 nid=0x82c runnable
    "VM Periodic Task Thread" prio=10 tid=0x00a6ed18 nid=0x5a0 waiting on condition
    J2EE 1.4 SDK and Sun Java System Application Server Platform Edition 8.1 2005Q2 UR2 June 6,
    2005
    All in one and separate bundles
    sjsas_pe-8_1_02_2005Q2-windows
    netstat -an late in initializing App Server
    Active Connections
    Proto Local Address Foreign Address State
    TCP 0.0.0.0:25 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1025 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1429 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1435 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1664 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1664 127.0.0.1:1668 ESTABLISHED
    TCP 127.0.0.1:1668 127.0.0.1:1664 ESTABLISHED
    TCP 127.0.0.1:1669 127.0.0.1:1670 ESTABLISHED
    TCP 127.0.0.1:1670 127.0.0.1:1669 ESTABLISHED
    TCP 127.0.0.1:1671 127.0.0.1:1672 ESTABLISHED
    TCP 127.0.0.1:1672 127.0.0.1:1671 ESTABLISHED
    TCP 127.0.0.1:1673 127.0.0.1:1674 ESTABLISHED
    TCP 127.0.0.1:1674 127.0.0.1:1673 ESTABLISHED
    TCP 127.0.0.1:1675 127.0.0.1:1676 ESTABLISHED
    TCP 127.0.0.1:1676 127.0.0.1:1675 ESTABLISHED
    TCP 127.0.0.1:19989 0.0.0.0:0 LISTENING
    TCP 192.168.1.101:139 0.0.0.0:0 LISTENING
    TCP [::]:135 [::]:0 LISTENING 0
    TCP [::]:1025 [::]:0 LISTENING 0
    TCP [::]:1429 [::]:0 LISTENING 0
    TCP [::]:1668 [::]:0 LISTENING 0
    UDP 0.0.0.0:445 *:*
    UDP 0.0.0.0:500 *:*
    UDP 0.0.0.0:1436 *:*
    UDP 0.0.0.0:1640 *:*
    UDP 0.0.0.0:3456 *:*
    UDP 0.0.0.0:4500 *:*
    UDP 127.0.0.1:123 *:*
    UDP 127.0.0.1:1900 *:*
    UDP 192.168.1.101:123 *:*
    UDP 192.168.1.101:137 *:*
    UDP 192.168.1.101:138 *:*
    UDP 192.168.1.101:1900 *:*
    UDP 192.168.1.101:65456 *:*
    netstat -an at CLI156 error
    Active Connections
    Proto Local Address Foreign Address State
    TCP 0.0.0.0:25 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1025 0.0.0.0:0 LISTENING
    TCP 0.0.0.0:1429 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1435 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1664 0.0.0.0:0 LISTENING
    TCP 127.0.0.1:1669 127.0.0.1:1670 ESTABLISHED
    TCP 127.0.0.1:1670 127.0.0.1:1669 ESTABLISHED
    TCP 127.0.0.1:1671 127.0.0.1:1672 ESTABLISHED
    TCP 127.0.0.1:1672 127.0.0.1:1671 ESTABLISHED
    TCP 127.0.0.1:1673 127.0.0.1:1674 ESTABLISHED
    TCP 127.0.0.1:1674 127.0.0.1:1673 ESTABLISHED
    TCP 127.0.0.1:1675 127.0.0.1:1676 ESTABLISHED
    TCP 127.0.0.1:1676 127.0.0.1:1675 ESTABLISHED
    TCP 127.0.0.1:19989 0.0.0.0:0 LISTENING
    TCP 192.168.1.101:139 0.0.0.0:0 LISTENING
    TCP [::]:135 [::]:0 LISTENING 0
    TCP [::]:1025 [::]:0 LISTENING 0
    TCP [::]:1429 [::]:0 LISTENING 0
    UDP 0.0.0.0:445 *:*
    UDP 0.0.0.0:500 *:*
    UDP 0.0.0.0:1436 *:*
    UDP 0.0.0.0:1640 *:*
    UDP 0.0.0.0:3456 *:*
    UDP 0.0.0.0:4500 *:*
    UDP 127.0.0.1:123 *:*
    UDP 127.0.0.1:1900 *:*
    UDP 192.168.1.101:123 *:*
    UDP 192.168.1.101:137 *:*
    UDP 192.168.1.101:138 *:*
    UDP 192.168.1.101:1900 *:*
    UDP 192.168.1.101:31995 *:*
    fport at CLI156 error
    FPort v2.0 - TCP/IP Process to Port Mapper
    Copyright 2000 by Foundstone, Inc.
    http://www.foundstone.com
    Pid Process Port Proto Path
    1264 inetinfo -> 25 TCP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    1104 -> 135 TCP
    4 System -> 139 TCP
    4 System -> 445 TCP
    1684 LEXPPS -> 1025 TCP C:\WINDOWS\system32\LEXPPS.EXE
    1264 inetinfo -> 1429 TCP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    2768 -> 1435 TCP
    3960 appserv -> 1664 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1669 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1670 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1671 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1672 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1673 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1674 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1675 TCP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 1676 TCP C:\Sun\AppServer\lib\appserv.exe
    524 CFSServ -> 19989 TCP C:\Program Files\TOSHIBA\ConfigFree\CFSServ
    .exe
    3960 appserv -> 123 UDP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 137 UDP C:\Sun\AppServer\lib\appserv.exe
    3960 appserv -> 138 UDP C:\Sun\AppServer\lib\appserv.exe
    1264 inetinfo -> 445 UDP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    1104 -> 500 UDP
    4 System -> 1436 UDP
    1684 LEXPPS -> 1640 UDP C:\WINDOWS\system32\LEXPPS.EXE
    3960 appserv -> 1900 UDP C:\Sun\AppServer\lib\appserv.exe
    1264 inetinfo -> 3456 UDP C:\WINDOWS\system32\inetsrv\inetinfo.exe
    2768 -> 4500 UDP
    3960 appserv -> 21498 UDP C:\Sun\AppServer\lib\appserv.exe
    contnets of server.log
    [#|2005-10-02T08:31:05.873-0700|INFO|sun-appserver-pe8.1_02|javax.enterprise.tools.launcher|
    _ThreadID=10;|
    C:/Sun/jdk1.5.0_02\bin\java
    -client
    -Xmx512m
    -XX:NewRatio=2
    -Dcom.sun.aas.defaultLogFile=C:/Sun/AppServer/domains/domain1/logs/server.log
    -Djava.endorsed.dirs=C:/Sun/AppServer/lib/endorsed
    -Djava.security.policy=C:/Sun/AppServer/domains/domain1/config/server.policy
    -Djava.security.auth.login.config=C:/Sun/AppServer/domains/domain1/config/login.conf
    -Dsun.rmi.dgc.server.gcInterval=3600000
    -Dsun.rmi.dgc.client.gcInterval=3600000
    -Djavax.net.ssl.keyStore=C:/Sun/AppServer/domains/domain1/config/keystore.jks
    -Djavax.net.ssl.trustStore=C:/Sun/AppServer/domains/domain1/config/cacerts.jks
    -Djava.ext.dirs=C:/Sun/jdk1.5.0_02/jre/lib/ext;C:/Sun/AppServer/domains/domain1/lib/ext
    -Djdbc.drivers=com.pointbase.jdbc.jdbcUniversalDriver
    -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanSe
    rverBuilder
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serve
    rbeans.AppserverConfigEnvironmentFactory
    -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar
    -Dcom.sun.enterprise.taglisteners=jsf-impl.jar
    -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactor
    yImpl
    -Dcom.sun.aas.configName=server-config
    -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter
    -Ddomain.name=domain1
    -Djmx.invoke.getters=true
    -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentB
    uilderFactoryImpl
    -Dcom.sun.aas.promptForIdentity=true
    -Dorg.xml.sax.driver=com.sun.org.apache.xerces.internal.parsers.SAXParser
    -Dcom.sun.aas.instanceRoot=C:/Sun/AppServer/domains/domain1
    -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.Transf
    ormerFactoryImpl
    -Dcom.sun.aas.domainName=domain1
    -Djava.util.logging.manager=com.sun.enterprise.server.logging.ServerLogManager
    -Dproduct.name=Sun-Java-System/Application-Server
    -Dcom.sun.enterprise.overrideablejavaxpackages=javax.faces,javax.servlet.jsp.jstl,javax.xml.
    bind,javax.help
    -Dcom.sun.aas.configRoot=C:/Sun/AppServer/config
    -Djava.library.path=C:\Sun\jdk1.5.0_02\jre\bin\client;C:\Sun\AppServer\lib;C:\Sun\AppServer\
    lib;C:\Sun\jdk1.5.0_02\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\Sun\AppServer\lib;C:\Sun\AppS
    erver\bin;C:\Sun\AppServer\lib;C:\Sun\AppServer\bin;C:\Sun\AppServer\bin;C:\Sun\AppServer\bi
    n;C:\Sun\AppServer\bin;C:\Sun\jdk1.5.0_02\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\syst
    em32\WBEM;C:\Sun\AppServer\bin;xDefaultS-1-x�
    -Dcom.sun.aas.instanceName=server
    -Dcom.sun.aas.processLauncher=SE
    -cp
    C:/Sun/jdk1.5.0_02/lib/tools.jar;C:/Sun/AppServer/lib/appserv-rt.jar;C:/Sun/AppServer/lib\ac
    tivation.jar;C:/Sun/AppServer/lib\admin-cli.jar;C:/Sun/AppServer/lib\appserv-admin.jar;C:/Su
    n/AppServer/lib\appserv-cmp.jar;C:/Sun/AppServer/lib\appserv-ext.jar;C:/Sun/AppServer/lib\ap
    pserv-jstl.jar;C:/Sun/AppServer/lib\appserv-upgrade.jar;C:/Sun/AppServer/lib\commons-launche
    r.jar;C:/Sun/AppServer/lib\commons-logging.jar;C:/Sun/AppServer/lib\dom.jar;C:/Sun/AppServer
    /lib\j2ee-svc.jar;C:/Sun/AppServer/lib\j2ee.jar;C:/Sun/AppServer/lib\jax-qname.jar;C:/Sun/Ap
    pServer/lib\jaxr-api.jar;C:/Sun/AppServer/lib\jaxr-impl.jar;C:/Sun/AppServer/lib\jaxrpc-api.
    jar;C:/Sun/AppServer/lib\jaxrpc-impl.jar;C:/Sun/AppServer/lib\jmxremote.jar;C:/Sun/AppServer
    /lib\jmxremote_optional.jar;C:/Sun/AppServer/lib\jsf-api.jar;C:/Sun/AppServer/lib\jsf-impl.j
    ar;C:/Sun/AppServer/lib\mail.jar;C:/Sun/AppServer/lib\relaxngDatatype.jar;C:/Sun/AppServer/l
    ib\rmissl.jar;C:/Sun/AppServer/lib\saaj-api.jar;C:/Sun/AppServer/lib\saaj-impl.jar;C:/Sun/Ap
    pServer/lib\xalan.jar;C:/Sun/AppServer/lib\xercesImpl.jar;C:/Sun/AppServer/lib\xsdlib.jar;C:
    /Sun/AppServer/lib/install/applications/jmsra/imqjmsra.jar;C:/Sun/AppServer/imq/lib/jaxm-api
    .jar;C:/Sun/AppServer/imq/lib/fscontext.jar;C:/Sun/AppServer/lib/ant/lib/ant.jar;C:/Sun/AppS
    erver/pointbase/lib/pbclient.jar;C:/Sun/AppServer/pointbase/lib/pbembedded.jar
    com.sun.enterprise.server.PEMain
    start
    display
    native|#]
    set path
    Path=C:\Sun\AppServer\bin;C:\Sun\jdk1.5.0_02\bin;C:\WINDOWS\system32;C:\WINDOWS;
    C:\WINDOWS\system32\WBEM;C:\Sun\AppServer\bin;xDefaultS-1-x&#9786;^
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    set J2EE_HOME
    J2EE_HOME=C:\Sun\AppServer
    set JAVA_HOME
    JAVA_HOME=C:\sun\jdk1.5.0_02\bin
    set include
    INCLUDE=C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include\
    pertinent ports from domain.xml
    id="http-listener-1" address="0.0.0.0" port="8080" id="http-listener-2"
    address="0.0.0.0" port="8181"
    id="admin-listener" address="0.0.0.0" port="4848"
    id="orb-listener-1" address="0.0.0.0" port="3700"
    id="SSL" address="0.0.0.0" port="3820"
    id="SSL_MUTUALAUTH" address="0.0.0.0" port="3920"
    <jmx-connector accept-all="false" address="0.0.0.0" auth-realm-name="admin-realm"
    enabled="true" name="system" port="8686" protocol="rmi_jrmp" security-enabled="false"/>
    <jms-host name="default_JMS_host" host="FE" port="7676" admin-user-name="admin"
    admin-password="admin"/>
    <property name="DatabaseName"
    value="jdbc:pointbase:server://localhost:9092/sun-appserv-samples"/>
    contents of domain.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <!--
    Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved.
    Use is subject to license terms.
    -->
    <!-- Generated from default-domain.xml.template -->
    <!DOCTYPE domain PUBLIC "-//Sun Microsystems Inc.//DTD Application Server 8.0 Domain//EN"
    "http://www.sun.com/software/appserver/dtds/sun-domain_1_1.dtd">
    <domain application-root="${com.sun.aas.instanceRoot}/applications"
    log-root="${com.sun.aas.instanceRoot}/logs">
    <applications>
    <web-module name="adminapp" context-root="/web1"
    location="${com.sun.aas.install

    When I set it to false, the the server log no longer gets to display native!#]
    when it the hangs.
    I finally gave up the ghost, bought a 160G drive, installed it into my desktop, installed Fedora Linux and have not had a problem. Life would be much better if I could get it running on the laptop. My gut tells me that something is wrong with either JAVA_HOME or J2EE_HOME, but I cannot see it.

  • Can't deploy my app on  Sun Java System Application Server Platform Edition

    Hi,
    I am trying to deploy me app on the Sun's app server but I get the following error:
    I am using Sun Java System Application Server Platform Edition 8.2
    Invalid Deployment Descriptors in archive jag-ejb.jar in deployment descriptor file META-INF/ejb-jar.xml
    Line 29 Column 15 -- The content of element type "session" must match
    "(description?,display-name?,small-icon?,large-icon?,ejb-name,home?,remote?,local-home?,local?,ejb-class,session-type,transaction-type,env-entry*,ejb-ref*,ejb-local-ref*,security-role-ref*,security-identity?,resource-ref*,resource-env-ref*)". "It deploys on Orion 2.02
    The ejb.xml file is as follows:
      <enterprise-beans>
        <session>
          <display-name>Facade stateless session bean</display-name>
          <ejb-name>ejb/PetardsFacade</ejb-name>
          <home>com.jag.petardscmsbeans.interfaces.PetardsFacadeHome</home>
          <remote>com.jag.petardscmsbeans.interfaces.PetardsFacade</remote>
          <local-home>com.jag.businesslogic.interfaces.FacadeLocalHome</local-home
          ><local>com.jag.businesslogic.interfaces.FacadeLocal</local>
          <ejb-class>com.jag.petardscmsbeans.ejb.PetardsFacadeEJB</ejb-class>
          <session-type>Stateless</session-type>
          <transaction-type>Container</transaction-type>
          <resource-ref>
            <res-ref-name>jdbc/OracleDSRES</res-ref-name>
            <res-type>javax.sql.DataSource</res-type>
            <res-auth>Container</res-auth>
          </resource-ref>
          <env-entry>
            <env-entry-name>DSName</env-entry-name>
            <env-entry-type>java.lang.String</env-entry-type>
            <env-entry-value>jdbc/OracleDSRES</env-entry-value>
          </env-entry>
        </session>
      </enterprise-beans>also, in the error message what does ? and * signify?
    Thanks

    This is an element ordering issue. env-entry is before resource-ref in the schema so it must be declared in the same order.
    --ken                                                                                                                                                                                                                                                                               

  • Determine LVOOP class name? - of a child class...

    Hi,
    I have a number of modules (classes) that inherit from a base class called "Module".  I have these all in an array of type "Module", I would like to log some information from each of these modules, but I need to distinguish between each module.
    Is there a way to determine the class name from the data wire?
    I can use varient to flattened string, but I was just wondering if there was a built in property node/function for this?
    Thanks,
    Jonathan
    Examples Attached:
    Message Edited by malkier on 03-20-2009 12:39 PM
    LV 8.2/8.5/8.6 - WinXP
    Solved!
    Go to Solution.
    Attachments:
    Use_Module_BD.png ‏4 KB
    Modname_BD.png ‏4 KB
    ArrayResults_FP.png ‏3 KB

    malkier,
    There is no build in function that does exactly what you are looking for, but you can use the 'Get LV Class Path' VI to return the *.lvclass path of a given object.  Using this path, you can either parse out the name, or you can use VI server to get the name of the class, as shown in the attached image.
     Chris M
    Attachments:
    GetClassName.png ‏4 KB

  • User Role problems in Sun Java Application Server Platform Edition 8

    I am having two problems setting up user roles in Sun Java Application Server Platform Edition 8. At first, I thought that it was a problem with the higher level features that I was using, so I created a very simple example using the simplest authentication I can use, but the problem still occurs. I am using the file realm and configuring the users in the App Server Admin Console. I create 2 users in different roles. One user should have access, the other should not.
    1) The first problem is that both users can access the page
    2) The second problem is that the isUserInRole() method returns false for both users with the role that it should be authenticating against.
    Here is a sample of my code:
    Users Configured in Console:
    username password roles
    user1 ********** admin
    user2 ********** noaccess
    web.xml
         <security-role>
              <role-name>admin</role-name>
         </security-role>
         <security-constraint>
              <web-resource-collection>
                   <web-resource-name>My Protected Area</web-resource-name>
                   <url-pattern>/*</url-pattern>
              </web-resource-collection>
              <auth-constraint>
                   <role-name>admin</role-name>
              </auth-constraint>
              <user-data-constraint>
                   <transport-guarantee>NONE</transport-guarantee>
              </user-data-constraint>
         </security-constraint>
         <login-config>
              <auth-method>BASIC</auth-method>
              <realm-name>file</realm-name>
         </login-config>
         <servlet>
              <servlet-name>
                   TestServlet
              </servlet-name>
              <servlet-class>
                   mypackage.TestServlet
              </servlet-class>
              <security-role-ref>
                   <role-name>admin</role-name>
                   <role-link>admin</role-link>
              </security-role-ref>
         </servlet>
         <servlet-mapping>
              <servlet-name>
                   TestServlet
              </servlet-name>
              <url-pattern>
                   /TestServlet
              </url-pattern>
         </servlet-mapping>
    TestServlet.java:
              out.println("admin role: " + request.isUserInRole("admin") + "<BR/>");
    Thanks before hand for any responses.
    - Brian

    Hi Jeanfrancois,
    Your suggestion has lead me to find my problem. There were actually three problems.
    1) First, you suggestion to reorder my xml file did not cause any errors to occur. I got suspicious that my web.xml file was wrong. I looked at some sample web-xml files and found that I was missing the header as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN' 'http://java.sun.com/dtd/web-app_2_3.dtd'>
    2) When I added this information, the deploy feature failed stating the my web.xml file was out of order. I fixed the ordering. It now deployed, but the security still wasn't working.
    3) I then added the sun-web.xml file. This file was missing before hand as I thought it was unnessary. However, this file added the essential mapping from a role to a group. After adding this, it now started to work.
    Thanks so much for you time and effort. You really did help me.
    - Brian Blank

  • Javax.naming.NoInitialContextException: Need to specify class name...

    Hello,
    I am trying to use a Database Connection Pool.
    Here is the test class am using to verify the connection pool:
    public static void main(String[] args) { Connection connection = null; try { InitialContext initialContext = new InitialContext(); DataSource dataSource = (DataSource)initialContext.lookup("jdbc/<alias>"); connection= dataSource.getConnection(); } catch (SQLException e) { //   TODO Auto-generated catch block e.printStackTrace(); } catch (NamingException e) { //   TODO Auto-generated catch block e.printStackTrace(); } Statement stmt = null; try { String query = ""; stmt = connection.createStatement(); ResultSet resultSet = null; query = "SELECT <column> ...'"; resultSet = stmt.executeQuery(query); while(resultSet.next()){ System.out.println(resultSet.getString(<column>)); } stmt.close();   stmt = null; connection.close(); connection = null; } catch (SQLException e1) { // TODO Auto-generated catch block e1.printStackTrace(); }finally{ if (stmt != null) {   try {   stmt.close();   } catch (SQLException sqlex) {   // ignore -- as we can't do anything about it here   }   stmt = null;   }   if (connection != null) {   try { connection.close();   } catch (SQLException sqlex) {   // ignore -- as we can't do anything about it here   } connection = null;   } } }
    I get following exception..
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file:  java.naming.factory.initial at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:640) at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243) at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:280) at javax.naming.InitialContext.lookup(InitialContext.java:347) at com.internal.test.TestRun.main(TestRun.java:53) java.lang.NullPointerException at com.internal.test.TestRun.main(TestRun.java:66) Exception in thread "main"
    The exception points to
    DataSource dataSource = (DataSource)initialContext.lookup("jdbc/OrderStatus");
    Is this the correct way to test...?
    Thanks
    Srinivas

    java_2006 wrote:
    You can't access a jdbc pool like that (simply with a main method).
    The Database connection pool must be managed by a container (a servlet or application server) like tomcat.
    That is not entirely true but it certainly helps and is generally the only way it is used anyway so one might as well do it.

  • How to programmatically get the source for a class provided the class name?

    Hello,
    As a quick background, I am providing some tools to potential users of an in-house framework. One is the ability to generate quick prototypes from our existing demo applications. Assume a user downloads our jars and uses them in their project (we are using Eclipse, but that detail should not greatly affect my question). Included in the jars is a demos package that contains ready-to-run classes that serve to exhibit certain functionality. Since many users may just need quick extensions of these demos, I am trying to provide a way for them to be able to create a new project that starts with a copy of the demo class.
    So, the user is provided a list of the existing demos (each one uses a single class). When the user makes their selection, with the knowledge of our framework, I can translate that into what demo class they need (returned as a string of format package.subpack1.subpackn.DemoClassName). What I now want to do is to use that complete class name to get the source (look up the file) for the corresponding class, and copy it into to a new file in their project (the copying into the project can be done easily in Eclipse, so what I need help with is the bolded part). Is there a simple way to get the source given a class path for a class as described above? You may assume the source files are included in the jars for the framework.
    Thanks in advance.

    If there's a file named "package.subpack1.subpackn.DemoClassName.java" in a "demos" directory in the jar, then yes. You'd just use
    InputStream code = getResourceAsStream("/demos.package.subpack1.subpackn.DemoClassName.java");Or if those dots in the name actually separate directory names, i.e. you have a "package" directory under "demos" and a "subpack1" director under that and so on, then:
    InputStream code = getResourceAsStream("/demos/package/subpack1/subpackn/DemoClassName.java");

  • Can you determine a dragged objects Class Name when it is dropped?

    Is there a way to determine the class name for a dragged object.
    I have set up two objects. One is a JList that acts as a data source for the second object which is a JTable. Both objects serve as both drag source and drop targets. I need to be able to react to the following events:
    1. Drag value from JList to JTable.
    2. Drag value from JTable to JTable (itself) to reposition order.
    3. Drag value from JTable to JList (deletes item from JTable).
    So far, I have had no problem in getting #1 to work.
    The problem is determining how to consistently interpret which event is happening for 2 and 3. Both the drop (DropTargetDropEvent event) and the dragDropEnd (DragSourceDropEvent event) are fired for either 2 or 3 above. If I could identify the source class for the dragsource and the target class for the droptarget, the coding would be easy. I haven't been able to find anything on this while reviewing the API documentation.
    Any help would be appreciated.
    Thanks

    No, there are not multiple policies - the host names for all aliases on that single webserver are together in a single host identifier. And I realize I can only have a single challenge redirect, I just want to use a variable to redirect to the host name that was accessed as opposed to a static name.

  • "Bad Applet class name" error while recording on Oracle Forms 11g through OpenScript (JRE 1.7.0_17)

    Hi,
    I am trying to record automation functional test script on Oracle Forms 11g using OpenScript.
    Able to open the browser, but after accessing application URL, getting application error as "Bad Applet class name"
    Java Plug-in 10.17.2.02
    Using JRE version 1.7.0_17-b02 Java HotSpot(TM) Client VM
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    SSV dialog is suppressed........
    cracked oracle.forms.engine.Main
    Loading cached Forms Jars ...
    Is this version (Oracle forms 11g, JRE 1.7.0_17) supported by OATS-OpenScript ?
    Please advise if there is any work around here.
    Thanks.

    From the last OATS release notes available in the C:\OracleATS\docs directory:
    4.1 Oracle Functional Testing/OpenScript
    Oracle Functional Testing’s OpenScript scripting platform has the following system
    requirements:
    ■ Operating System (32-bit and 64-bit versions): Windows XP, Windows Vista,
    Windows 2003, Windows 7, Windows 2008, Windows 2008 R2.
    ■ Memory: Minimum 1 GB
    ■ System: x86, 32-bit or 64-bit processor, 2.6 GHz or faster
    ■ Disk Space: 4 GB minimum
    ■ Browser: Internet Explorer 7.x, 8.x., 9.x; Firefox 3.5/3.6, 6.x, 10; Chrome 27+
    (playback only).
    ■ Java Runtime Environment: JRE 1.6 minimum (up to build 38), JRE 1.7 (up to build
    11) .
    So basically, it's not supported... Can you try with another JRE version?
    As always don't forget to run OpenScript as administrator on W7/8 or equivalent
    JB

  • Definition class name missing in XML file of type taskFlow

    Hi all,
    I am trying to invoke a bounded taskflow from a region on a jspx page.
    My jspx page has: *<af:region value="#{bindings.citySearchTF.regionModel}" id="r1" />*
    Its page def file has :
    *<taskFlow id="citySearchTF" taskFlowId="/WEB-INF/tfs/bounded/cities/city-search-tf.xml#city-search-tf"*
    xmlns="http://xmlns.oracle.com/adf/controller/binding"/>
    My taskFlow file is :
    *<?xml version="1.0" encoding="windows-1252" ?>*
    *<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">*
    *<task-flow-definition id="city-search-tf">*
    *<default-activity>search-city.jsff</default-activity>*
    *<data-control-scope>*
    *<shared/>*
    *</data-control-scope>*
    *<view id="search-city.jsff">*
    *<page>/view/bounded/city/search-city.jsff</page>*
    *</view>*
    *<use-page-fragments/>*
    *</task-flow-definition>*
    *</adfc-config>*
    Now, while running this jspx page, I am getting the following errors:
    On Browser : ADF_FACES-30179:For more information, please see the server's error log for an entry beginning with: The UIViewRoot is null. Fatal exception during PhaseId: RESTORE_VIEW 1.
    On WLS Logs :
    oracle.jbo.PersistenceException: JBO-34000: Definition class name missing in XML file of type taskFlow
         at oracle.adf.model.binding.DCDefBase.createAndLoadFromXML(DCDefBase.java:402)
         at oracle.adf.model.binding.DCBindingContainerDef.loadExecutables(DCBindingContainerDef.java:1482)
         at oracle.adf.model.binding.DCBindingContainerDef.loadChildrenFromXML(DCBindingContainerDef.java:1278)
         at oracle.adf.model.binding.DCDefBase.loadFromXML(DCDefBase.java:325)
         at oracle.adf.model.binding.DCDefBase.createAndLoadFromXML(DCDefBase.java:409)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.createFromXML(JUMetaObjectManager.java:1274)
         at oracle.jbo.mom.PersistableDefObject.createFromXML(PersistableDefObject.java:84)
         at oracle.jbo.mom.DefinitionManager.loadDefObject(DefinitionManager.java:961)
         at oracle.jbo.mom.DefinitionManager.doFindSessionDefObject(DefinitionManager.java:1037)
         at oracle.jbo.mom.DefinitionManager.findSessionDefObject(DefinitionManager.java:705)
         at oracle.adf.model.binding.DCBindingContainerDef.findSessionDefObject(DCBindingContainerDef.java:351)
         at oracle.adf.model.binding.DCBindingContainerDef.findDefObject(DCBindingContainerDef.java:316)
         at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:127)
         at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:95)
         at oracle.adf.model.BindingContext.get(BindingContext.java:1089)
         at oracle.adf.model.BindingContext.findBindingContainer(BindingContext.java:807)
         at oracle.adf.model.BindingContext.findBindingContainerByPath(BindingContext.java:1598)
         at oracle.adfinternal.controller.application.model.UpdateBindingListener.setBindingELVariable(UpdateBindingListener.java:112)
         at oracle.adfinternal.controller.application.model.UpdateBindingListener.beforePhase(UpdateBindingListener.java:61)
         at oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper.beforePhase(ADFLifecycleImpl.java:550)
         at oracle.adfinternal.controller.lifecycle.LifecycleImpl.internalDispatchBeforeEvent(LifecycleImpl.java:100)
         at oracle.adfinternal.controller.lifecycle.LifecycleImpl.dispatchBeforePagePhaseEvent(LifecycleImpl.java:147)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$PhaseInvokerImpl.dispatchBeforePagePhaseEvent(ADFPhaseListener.java:119)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.beforePhase(ADFPhaseListener.java:63)
         at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.beforePhase(ADFLifecyclePhaseListener.java:44)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:319)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:122)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    There is some issue with PageDef but I am not able to figure it out. Searched a lot on internet but didn't succeed. Thanks in advance.
    Edited by: 965225 on Dec 17, 2012 3:43 AM

    Hi all,
    I am trying to invoke a bounded taskflow from a region on a jspx page.
    My jspx page has: *<af:region value="#{bindings.citySearchTF.regionModel}" id="r1" />*
    Its page def file has :
    *<taskFlow id="citySearchTF" taskFlowId="/WEB-INF/tfs/bounded/cities/city-search-tf.xml#city-search-tf"*
    xmlns="http://xmlns.oracle.com/adf/controller/binding"/>
    My taskFlow file is :
    *<?xml version="1.0" encoding="windows-1252" ?>*
    *<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">*
    *<task-flow-definition id="city-search-tf">*
    *<default-activity>search-city.jsff</default-activity>*
    *<data-control-scope>*
    *<shared/>*
    *</data-control-scope>*
    *<view id="search-city.jsff">*
    *<page>/view/bounded/city/search-city.jsff</page>*
    *</view>*
    *<use-page-fragments/>*
    *</task-flow-definition>*
    *</adfc-config>*
    Now, while running this jspx page, I am getting the following errors:
    On Browser : ADF_FACES-30179:For more information, please see the server's error log for an entry beginning with: The UIViewRoot is null. Fatal exception during PhaseId: RESTORE_VIEW 1.
    On WLS Logs :
    oracle.jbo.PersistenceException: JBO-34000: Definition class name missing in XML file of type taskFlow
         at oracle.adf.model.binding.DCDefBase.createAndLoadFromXML(DCDefBase.java:402)
         at oracle.adf.model.binding.DCBindingContainerDef.loadExecutables(DCBindingContainerDef.java:1482)
         at oracle.adf.model.binding.DCBindingContainerDef.loadChildrenFromXML(DCBindingContainerDef.java:1278)
         at oracle.adf.model.binding.DCDefBase.loadFromXML(DCDefBase.java:325)
         at oracle.adf.model.binding.DCDefBase.createAndLoadFromXML(DCDefBase.java:409)
         at oracle.jbo.uicli.mom.JUMetaObjectManager.createFromXML(JUMetaObjectManager.java:1274)
         at oracle.jbo.mom.PersistableDefObject.createFromXML(PersistableDefObject.java:84)
         at oracle.jbo.mom.DefinitionManager.loadDefObject(DefinitionManager.java:961)
         at oracle.jbo.mom.DefinitionManager.doFindSessionDefObject(DefinitionManager.java:1037)
         at oracle.jbo.mom.DefinitionManager.findSessionDefObject(DefinitionManager.java:705)
         at oracle.adf.model.binding.DCBindingContainerDef.findSessionDefObject(DCBindingContainerDef.java:351)
         at oracle.adf.model.binding.DCBindingContainerDef.findDefObject(DCBindingContainerDef.java:316)
         at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:127)
         at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:95)
         at oracle.adf.model.BindingContext.get(BindingContext.java:1089)
         at oracle.adf.model.BindingContext.findBindingContainer(BindingContext.java:807)
         at oracle.adf.model.BindingContext.findBindingContainerByPath(BindingContext.java:1598)
         at oracle.adfinternal.controller.application.model.UpdateBindingListener.setBindingELVariable(UpdateBindingListener.java:112)
         at oracle.adfinternal.controller.application.model.UpdateBindingListener.beforePhase(UpdateBindingListener.java:61)
         at oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper.beforePhase(ADFLifecycleImpl.java:550)
         at oracle.adfinternal.controller.lifecycle.LifecycleImpl.internalDispatchBeforeEvent(LifecycleImpl.java:100)
         at oracle.adfinternal.controller.lifecycle.LifecycleImpl.dispatchBeforePagePhaseEvent(LifecycleImpl.java:147)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$PhaseInvokerImpl.dispatchBeforePagePhaseEvent(ADFPhaseListener.java:119)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.beforePhase(ADFPhaseListener.java:63)
         at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.beforePhase(ADFLifecyclePhaseListener.java:44)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:319)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:122)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    There is some issue with PageDef but I am not able to figure it out. Searched a lot on internet but didn't succeed. Thanks in advance.
    Edited by: 965225 on Dec 17, 2012 3:43 AM

Maybe you are looking for