Thread timeout

Hi All,
I have problem Please help me it is very urgent.
I have a class that is calling one-third party API method. That method is returning int.
The problem is we don�t know when the third party method is returning the value. I need to wait up to certain time, if I didn�t get any value I have to terminate that process and repeat the new process again. Please do the needful. My mail id is [email protected]
Advance thanks to everyone.
Thanks and Regards,
Mohaideen S.

Hi Sameer,
I tried with your idea. But the system is hanging. Please help me. Herewith i attached my code.
My programme
public class MyThread implements Runnable
     private Object lock;
     private String name;
     Thread t1;
     long start;
     long end;
     int i=0;
     wrapper w;
     public MyThread()
          t1=new Thread(this);
          t1.start();
     public static void main(String[] args)
          new MyThread();
     public void run()
          while(true)
               try
                    w=new wrapper();
                    System.out.println("AAAA");
                    Thread.sleep(5000);
                    i=w.geti();
                    if(i==0)
               throw new NullPointerException("Mohaideen");
               catch(Exception e)
                    System.out.println(e.toString());
Wrapper class
public class wrapper extends MyThread1 implements Runnable
     int i=0;
     Thread t;
     public wrapper()
          //System.out.println(Thread.activeCount());
          t=new Thread(this);
          t.start();
     public void run()
          i=mohaiValue();
     public int geti()
          System.out.println("i----->"+i);
          return i;
Third party API class simulation
public class MyThread1
     public MyThread1()
     public int mohaiValue()
          System.out.println("Inside");
          int j=10;
          for(double i=0;i<650000000;i++)
          return j;
I am looking your reply.
Thanks and Regards,
Mohaideen S.

Similar Messages

  • How Stuck Thread Timeout and JTA timeout values are related.

    Hi All,
    Can some one help me in understanding the the relation between Stuck Thread Time out and JTA timeout values.
    Thanks,
    Vardhan

    Hi,
    Both are totally different in this case.
    Stuck thread timeout is specific to weblogic monitoring guide line which inform you how long every thread is in process continuously by default it would 600 sec if any thread is taken more than 600 sec to finish off its work then weblogic will throw an error message that specific thread took more than 600 seconds.
    Note: Mostly of the time these stuck thread are not really an issue
    Where are JTA timeout on global side is specific to your every transaction either from EJB or JMS or JDBC transaction.
    This timeout will rule on every individual.
    Hope you got address your query.
    Regards,
    Kal

  • Rdep Thread TImeout

    I am running with Sensor 4215 with IPS version 5.1 and IPS-K9-patch-5.1-1p1. I was able to use Web interface on TLS. Since last week I am unable to connect to the web interface. Everytime I try to connect to it it loads itself to 77% and give me an error "Error connecting to sensor. Failed to load sensor - Rdep Thread Timeout".
    My web interface start working if I disable TLS. Please let me know what should I do to make it work back again.
    Thank!

    You might try to restart the cids services using the service account. To restart, type the following command at the service account prompt(you must su to root first).
    /etc/init.d/cids restart
    If this doesn't resolve the issue, then type "reboot" at the prompt. If all else fails, cycle the power by pulling the plug.
    Hope this helps....

  • Sockets, thread resources and timeouts

    Is there any way to manage the threads within Weblogic, such as the thread
    timeout or a way to kill specific threads that are hung?
    A little background: Our web-based application opens sockets to communicate
    with external devices and there are some cases where the socket does not
    return and then hangs the thread. After this happens X amount of times
    (usually the number of threads in the pool), the server serve any more
    requests. We can probably handle this a variety of ways:
    1. Manage the socket communication with our own threading mechanism where
    we can timeout these threads ourselves.
    2. Timeout the threads within Weblogic after a period of time.
    It seems that ideally we would want to manage the socket communication more
    carefully. Any ideas on how to do that?
    Within the servlet:
    sock = new Socket(IP,port)
    Is there any alternative way to do this with a timout?
    Thanks.
    Steve

    Thanks. It looks like the timedSocket is our best bet.
    "Dimitri Rakitine" <[email protected]> wrote in message
    news:[email protected]..
    Aha. Socket connect timeout is added in 1.4. For now you can use something
    like this (ugly): http://www.javaworld.com/jw-09-1999/jw-09-timeout.html
    or JNI (also ugly).
    Steve Schroeder <[email protected]> wrote:
    Yes, this works for us once we have the socket opened. But the case we
    are
    stumped on is the initial creation of the socket:
    sock = new Socket(IP,port)
    In the case that it cannot find the device it is looking for, the
    browser
    will timeout or the user will stop browsing the page and load another.In
    any case the thread will hang waiting to connect to the device. Isthere a
    default timeout for the thread?
    "Dimitri Rakitine" <[email protected]> wrote in message
    news:[email protected]..
    Did you try socket.setSoTimeout(timeout) ?
    Steve Schroeder <[email protected]> wrote:
    Is there any way to manage the threads within Weblogic, such as the
    thread
    timeout or a way to kill specific threads that are hung?
    A little background: Our web-based application opens sockets to
    communicate
    with external devices and there are some cases where the socket does
    not
    return and then hangs the thread. After this happens X amount oftimes
    (usually the number of threads in the pool), the server serve anymore
    requests. We can probably handle this a variety of ways:
    1. Manage the socket communication with our own threading mechanism
    where
    we can timeout these threads ourselves.
    2. Timeout the threads within Weblogic after a period of time.
    It seems that ideally we would want to manage the socket
    communication
    more
    carefully. Any ideas on how to do that?
    Within the servlet:
    sock = new Socket(IP,port)
    Is there any alternative way to do this with a timout?
    Thanks.
    Steve--
    Dimitri
    Dimitri

  • Stopping thread with timeout using threadpool

    Is there any way to set thread timeout within Executor.newFixedThreadPool ? I have a long queue around 5M which is creating with:
    ExecutorService executor = Executors.newFixedThreadPool(500);
    total = 10000;
    while (totalRows > 0) {
                    localStatement.executeQuery("SELECT domainID, domain FROM com WHERE status = '' LIMIT " + total);
                    totalRows -= total;
                    localResultSet = localStatement.getResultSet();
                    while (localResultSet.next()) {
                        HttpGet httpget = new HttpGet("http://" + localResultSet.getString("domain").toLowerCase());
                        executor.submit(new GetThread(httpClient, httpget, localResultSet.getInt("domainID")));
                    Thread.sleep(1000);
                    while (((ThreadPoolExecutor) executor).getActiveCount() > 10) {
                        try {
                            Thread.sleep(1000);
                        } catch (InterruptedException e) {
                            e.printStackTrace();
                    localResultSet.close();
                    System.out.println("New cycle");
                }But sometimes threads lock and cycle can't finish. Is there anyway to stop thread after N seconds? I can encapsulate Runnable into another Runnable and stop it from there, but it doubles threads, and I believe its not a good way.

    yes, you need at least one more thread. you could use one thread to monitor multiple other threads, but you need at least one more thread to wake up after the timeout and check on/cancel the main task.

  • Thread Error

    Hi Guys,
    I have a problem with a thread. I would appreciate any help.
    I have an applet (called BaseApplet) that is the basis for all my applets. This BaseApplet is basically an extension of Applet that implements Runnable. A thread runs which simply waits for a given time then aborts (basically a timeout). I am getting the following error, apparently randomly);
    java.lang.NullPointerException
         at com/innsite/applet/BaseApplet.run
         at java/lang/Thread.run
    The BaseApplet is defined as follows;
    public class BaseApplet extends Applet implements Runnableand the code to execute the thread is as follows;
      public void init()
        super.init();
        // start the timeout monitor
        timeout = new Thread(this);
        timeout.setDaemon(true);
        timeout.start();
      }First of all can I ask;
    Is the error because some code is trying to execute the thread that is not instantiated? If not what could be causing this error?
    I can provide the run() method if required but I have put some System.out's and it doesn't appear to run when I get this error. The application does time out as required. I have searched the application and cannot find any other call to start this thread.
    Sorry to be so vague. The application is large/commercial so I cannot realistically post all of it.
    Has anyone experienced problems with threads being executed?
    Thanks in advance.
    Slacks

    I have a little example. Running this eample if you press 'Destroy Thread' then close the the applet you get a similar error. This error gives the line number etc.
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.net.MalformedURLException;
    import java.net.URL;
    public class BaseApplet extends Applet implements Runnable {
         protected static BaseApplet instance;
         private transient Thread timeout = null;
         private transient Thread timeout1 = null;
         public BaseApplet() {
              super();
              instance = this;
         public void init() {
              super.init();
              // start the timeout monitor
              timeout = new Thread(this);
              timeout.setDaemon(true);
              timeout.start();
              timeout1 = new Thread(this);
              timeout1.setDaemon(true);
              timeout1.start();
              Panel p = new Panel();
              Button b1 = new Button("Reset");
              b1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent arg0) {
                        System.out.println("Timeout Reset : ");
                        resetTimeout();
              Button b2 = new Button("Distroy thread");
              b2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent arg0) {
                        System.out.println("Destroy Thread : ");
                        timeout=null;
                        timeout1=null;
              p.add(b1);
              p.add(b2);
              add(p);
         public void run() {
              int delay = 30000;
              boolean stopped = false;
              URL exitPage = null;
              try {
                   exitPage = new URL("http://127.0.0.1/homepage.html");
              } catch (MalformedURLException e1) {
                   e1.printStackTrace();
              while (!stopped) {
                   try {
                        synchronized (timeout) {
                             // wait for n milliseconds or until interrupted
                             timeout.wait(delay);
                             System.out.println("Timeout!!!!");
                             stopped = true;
                             getAppletContext().showDocument(exitPage, "_self");
                   } catch (InterruptedException e) {
                        // Invoked when interrupt() is called on the timeout thread.
                        // Means that the timeout whould either reset or stop.
              timeout = null;
         public final static void resetTimeout() {
              if ((instance != null) && (instance.timeout != null))
                   instance.timeout.interrupt();

  • Timeout Functionality needed...

    I have a method called myMethod(). I want to write a java program so that I can interrupt this method when we have a timout.
    I tried writing following method. Please let me know what is wrond in this:
    import java.io.*;
    class Example5 extends Thread {
         public static void main( String args[] ) throws Exception {
         Example5 thread = new Example5();
         System.out.println( "Starting thread..." );
         thread.start();
         public void run() {
              long startTime = System.currentTimeMillis();
              Thread thisThread = Thread.currentThread();
              long timeout = 10;
              long finishTime = startTime + 1;
              System.out.println("@@@@@@@@@@@@@ Start time is @@@@@@@" + startTime + "###### finish time is " + finishTime);
              if(System.currentTimeMillis() >= finishTime){
                   Thread.currentThread().interrupt();
              else{
                   try {
                        myMethod(finishTime);
                   } catch ( Exception e ) {
                        System.out.println( "Could not create the socket..." );
         public void myMethod(long finishTime){
              while(System.currentTimeMillis() <= finishTime){
                   long total = 0;
                   for (int i = 0; i < 100; i++) {
                   total += i;
                        System.out.println("################ doVerbFor Called###############" +i);
    }

    Use code tags when you post a code.
    /* thread timeout example */
    import java.util.*;
    class Example5 extends Thread {
      static boolean done = false;
      long period = 100; // 0.1 second
      public static void main( String args[] ) throws Exception {
        Example5 thread = new Example5();
        TimerTask tt = new TimerTask(){
          public void run(){
            done = true;
        Timer tm = new Timer(true);
        System.out.println( "Starting thread..." );
        thread.start();
        tm.schedule(tt, thread.period);
      public void run(){
        int total = 0;
        while (! done){
          System.out.println("@@@@@@");
          myMethod(++total);
      public void myMethod(int arg){
        System.out.println("### myMethod running ### " + arg);
    }

  • Risk, if any, of closing ServletOutputStream using a user thread?

    Hello All,
    What is the risk of writing/flushing/closing ServletOutputStream using a user thread other than the HTTP thread associated with the request?
    I want to do that to implement client request timeouts. Currently in our application, for every request received we are creating a new thread to make the HTTP thread timeout after a configurable amount of time is elapsed. Though creating a new thread is doing the job just fine but that approach is creating another problem that the servers are not scaling to the load we receive. We frequently get "unable to create threads due to unavailable memory" errors. At any point in time, any of our servers receive ~200 requests, which means that server has to create/handle 400+ threads. If the servers are slow due to external systems, then a lot more threads will be accumulated in the server. When the thread count reaches 500+ it fails to accept any further requests. So as a possible alternative to current approach, I am thinking of running few threads (may be a couple of threads) in the background and timeout the requests by closing the associated ServletOutputStream with TimeoutException.
    Note: I know that as another possible solution, I can go for few more servers in the cluster but before that I want to check if the above approach is a possible solution because it is less complex and saves money on the hardware.
    Thanks,
    Srinivas

    Hello Kaj,
    Sorry for the cross-post. Actually, I couldn't decide if I should post it as a concurrency, Java Servlet or as a design question.
    Maxideon,
    Sure, it can be done with single thread also. I said a couple of threads because a single thread may not get sufficient CPU time to handle all timeouts. But otherwise yes, we can try it with single thread also.
    ejp,
    We do not own the client application. We are a web services application and there are many clients who consume our services.
    The standard solution to handle timeouts in the server is by creating an additional thread, which is what we have followed. Now, that design is posing a new problem to us.
    No. A custom TimeoutException.
    I want to use 2 or 3 user threads to timeout the request if needed. That way I do not have to create 1 thread for each request. In the current approach server creates/handles 400 threads for 200 requests. With the alternative solution I can make it to create/handle 202 or 203 threads for 200 requests.
    dubwai,
    Here I am answering to your reply to my same question in the other forum.
    The current design is working just fine for timeouts. But sometimes it is failing to scale to the load we receive. In the current design we have created 1 thread for each request to timeout HTTP thread, which means that for 200 requests we will have 400 threads (200 HTTP threads and 200 user threads) in the server. For some reason, if the load increases to 250 requests or if external systems are slow then more threads accumulate in the server and it fails to accept incoming requests when thread count reaches ~500. That is the problem we are having.
    In the alternative design I proposed that we will create just a couple (may be 2 or 3) of threads running in the background, instead of 1 thread for each request. These background threads monitor HTTP threads and timeout the request if needed by writing and closing ServlerOutputStream. This way server will have to create/handle only ~200 HTTP threads plus a couple of user threads. For this approach to work I have to close ServletOutputStream using background threads instead of HTTP thread and want to know what is the rick of doing that?
    To All,
    Here is a rough implementation of user thread. The HTTP thread registers itself in threadMap variable with its starttime and in threadResponse variable with its associated HttpServletResponse. This user thread uses these values to find request timeout (10 seconds) and close response if needed.
    public class TimeoutMonitor implements Runnable {
        public static Map<Thread, Long> threadMap = new HashMap<Thread, Long>();
        public static Map<Thread, HttpServletResponse> threadResponse =
            new HashMap<Thread, HttpServletResponse>();
         @Override
         public void run() {
             while(true) {
              try {
                  wait(1000);
                  Set<Thread> keys = threadMap.keySet();
                  Iterator<Thread> threads = keys.iterator();
                  while(threads.hasNext()) {
                      Thread thread = threads.next();
                      Long startTime = threadMap.get(thread);
                   if((System.currentTimeMillis() - startTime) > 10000) {
                       HttpServletResponse response =
                                    threadResponse.get(thread);
                       try {
                        PrintWriter writer = response.getWriter();
                        writer.write("Timeout Exception");
                        writer.flush();
                        writer.close();
                        threadMap.remove(thread);
                        threadResponse.remove(thread);
                       } catch (IOException e) {
                        e.printStackTrace();
              } catch (InterruptedException e1) {
                  // TODO Auto-generated catch block
                  e1.printStackTrace();
        }I have test run this program in tomcat and seem to be working fine. Please note that here response/writer are closed by user thread and not HTTP thread. My questions is, do you see any problem in doing that?
    Thanks,
    Srinivas

  • SAP CE 7.1.1 Error

    Hello all,
                 I am getting a repeated log in my Log Viewer with the below messages:
    1)
    Message: Logical Port <100.SystemName.ECC.SystemNumber.0020194035.SystemHome.HYDSAPUPG001> for Proxy Definition <sap.com/tcesiespwsil_sap.comtcesiespwsilweb_WEB/inspection.wsil/Service_SRT_WSP_MASS_CONFIG_WS_TEST_ML_default_SRT_WSP_MASS_CONFIG_API>
    [EXCEPTION]
    com.sap.esi.esp.lib.mm.config.exceptions.ObjectNotExistsException: Logical Port <100.SystemName.ECC.SystemNumber.0020194035.SystemHome.HYDSAPUPG001> for Proxy Definition <sap.com/tcesiespwsil_sap.comtcesiespwsilweb_WEB/inspection.wsil/Service_SRT_WSP_MASS_CONFIG_WS_TEST_ML_default_SRT_WSP_MASS_CONFIG_API>
    at com.sap.esi.esp.service.server.ESPServiceInterfaceImpl.getLogicalPortAuthType(ESPServiceInterfaceImpl.java:953)
    at com.sap.esi.esp.service.server.mass.ConfigurationScenarioHandler.createABAPEndpoints(ConfigurationScenarioHandler.java:287)
    at com.sap.esi.esp.service.server.mass.ConfigurationScenarioHandler.updatePorts(ConfigurationScenarioHandler.java:233)
    at com.sap.esi.esp.service.server.mass.ConfigurationScenarioHandler.processConsumerAssignments(ConfigurationScenarioHandler.java:629)
    at com.sap.esi.esp.service.server.mass.ConfigurationScenarioHandler.processAllScenarios(ConfigurationScenarioHandler.java:129)
    at com.sap.esi.esp.service.server.mass.ConfigurationScenarioHandler.process(ConfigurationScenarioHandler.java:114)
    at com.sap.esi.esp.service.server.SOATimeoutListenerImpl.process(SOATimeoutListenerImpl.java:353)
    at com.sap.esi.esp.service.server.SOATimeoutListenerImpl.run(SOATimeoutListenerImpl.java:190)
    at com.sap.esi.esp.service.server.SOATimeoutListenerImpl.timeout(SOATimeoutListenerImpl.java:103)
    at com.sap.esi.esp.service.server.SOATimeoutListenerImpl.timeout(SOATimeoutListenerImpl.java:84)
    at com.sap.engine.services.timeout.TimeoutNode.run(TimeoutNode.java:71)
    at com.sap.engine.frame.core.thread.Task.run(Task.java:73)
    at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:162)
    at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:260)
    Date: 2009-03-03
    Time: 17:56:50:166
    Category: com.sap.esi.esp.service.server.mass.ConfigurationScenarioHandler
    Location: com.sap.esi.esp.service.server.mass.ConfigurationScenarioHandler
    Application: 
    Thread: Timeout Event Processor [8]
    Data Source: j2ee\cluster\server0\log\defaultTrace_00.trc
    Arguments: 
    DSR Transaction: a69682d0070b11dea31f000e0c602248
    Message Code: 
    Session: 
    Transaction: 
    User: 
    TimeZone: +0530
    CSN Component: BC-ESI-WS-JAV
    DC Component: tcesiesp~srv
    Correlation ID: 6582850000175331
    DSR Root Context ID: A69682D0070B11DEA31F000E0C602248
    DSR Connection: a69682d0070b11dea31f000e0c602248
    DSR Counter: 0
    Host: blrkecsaptst2
    System: CE2
    Instance: J00
    Node: server0
    Log ID: 000E0C60224800380000004400000D88
    2)
    Message: Processing of SOAObjectId{key={711}100.SystemName.ECC.SystemNumber.0020194035.SystemHome.HYDSAPUPG001, type=DESTINATION_TEMPLATE, processingState=NOT_PROCESSED, processingTraceId=000E0C60224800020000005B00000D88, delete=false} has failed.
    Date: 2009-03-03
    Time: 17:56:50:073
    Category: com.sap.esi.esp.service.server.mass.BatchJobRun
    Location: com.sap.esi.esp.service.server.mass.BatchJobRun
    Application: 
    Thread: Timeout Event Processor [8]
    Data Source: j2ee\cluster\server0\log\defaultTrace_00.trc
    Arguments: 
    DSR Transaction: a69682d0070b11dea31f000e0c602248
    Message Code: 
    Session: 
    Transaction: 
    User: 
    TimeZone: +0530
    CSN Component: BC-ESI-WS-JAV
    DC Component: tcesiesp~srv
    Correlation ID: 6582850000175331
    DSR Root Context ID: A69682D0070B11DEA31F000E0C602248
    DSR Connection: a69682d0070b11dea31f000e0c602248
    DSR Counter: 0
    Host: blrkecsaptst2
    System: CE2
    Instance: J00
    Node: server0
    Log ID: 000E0C60224800380000003B00000D88
    Can anybody please tell me the reason for the above two errors?
    How can i solve this problem?

    Hello Guy, at least you should write how did you run into this error?(what steps did you perform?)
    Kind regards!

  • Memory is low after some days

    Hello.
    We're running a NW6.5.8 machine on a HP Proliant ML350 G3. The server works
    well since several years. Three weeks ago the server makes some problems.
    After restarting the machine the memory runs low after 3 or for days. I
    can't see a reason for this.
    Do you have an idea for this?
    Here is my config.txt of this machine:
    Novell File Server Configuration Report For Server: FS1
    Novell File Server Configuration Report Created: Tue, Apr 6, 2010 8:24 am
    Novell File Server Configuration Report. [Produced by CONFIG.NLM v3.10.17]
    Novell NetWare 5.70.08 October 3, 2008
    (C) Copyright 1983-2008 Novell Inc. All Rights Reserved.
    Server name...............: FS1
    OS Version................: v5.70
    OS revision number........: 8
    Product Version...........: v6.50
    Product Revision Number...: 8
    Server Up Time(D:H:M:Sec).: 5:00:07:55
    Serial number.............: XXXXXXXX
    Internal Net. Addr........: 0EB0C408h
    Security Restriction Level: 1
    SFT Level.................: 2
    Engine Type...............: NATIVE
    TTS Level.................: 1
    Total Server memory.......: 2559.60 MB or 2683933696 Bytes
    Processor speed rating....: 200081
    Original cache buffers....: 654204
    Current Cache Buffers.....: 153274
    LRU Sitting Time(D:H:M:S).: 5:00:07:55
    Current FSP's.............: 26
    Current MP FSP's..........: 58
    Current Receive Buffers...: 3000
    Directory cache buffers...: 0
    Workstations Connected....: 48
    Max Workstations Connected: 58
    Server language...........: ENGLISH (4)
    Timesync active...........: Yes
    Time is synchronized......: Yes
    Total Processors..........: 1
    Server DOS Country ID.....: 49
    Server DOS Code Page......: 850
    Boot Loader...............: DOS
    Top of Modules List 286 Modules Loaded.
    ACPIASL.NLM v1.05.16 Jan. 16, 2007 ACPI Architecture Services
    Layer for ACPI compliant systems
    ACPICA.NLM v1.05.16 Jan. 16, 2007 ACPI Component Architecture
    for ACPI compliant systems
    ACPICMGR.NLM v1.05.16 Jan. 16, 2007 ACPI Component Manager for
    ACPI compliant systems
    ACPIDRV.PSM v1.05.19 Jan. 16, 2007 ACPI Platform Support Module
    for ACPI compliant systems
    ACPIPWR.NLM v1.05.16 Jan. 16, 2007 ACPI Power Management Driver
    for ACPI compliant systems
    ADPT160M.HAM v18.33.13 Nov. 17, 2005 Adaptec Ultra160 Host Adapter
    Module
    AD_ASPI.NLM v7.50 Feb. 17, 2006 Backup Exec ASPI Device Driver
    for NetWare
    APACHE2.NLM v2.00.63 Apr. 25, 2008 Apache Web Server 2.0.63
    APRLIB.NLM v0.09.17 Apr. 25, 2008 Apache Portability Runtime
    Library 0.9.17
    AUTHLDAP.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 LDAP
    Authentication Module
    AUTHLDDN.NLM v1.00 Nov. 9, 2005 LdapDN Module
    BKUPEXEC.NLM v9.20 Jan. 11, 2006 Backup Exec SureStart
    BROKER.NLM v3.00.12 Feb. 20, 2008 NDPS Broker
    BSDSOCK.NLM v6.82 Nov. 20, 2007 Novell BSDSOCK Module
    BSPXCOM.NLM v7.90 Apr. 15, 2003 BSPXCOM.NLM v7.90.000, Build
    253
    BTCPCOM.NLM v7.90 Jul. 9, 2003 BTCPCOM.NLM v7.90.000, Build
    253
    BTRIEVE.NLM v7.90 Mar. 21, 2001 BTRIEVE.NLM v7.90.000
    CALNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWCalls Runtime
    Library
    CCS.NLM v27510.02.01 Aug. 25, 2008 Controlled Cryptography
    Services from Novell, Inc.
    CDBE.NLM v6.01 Sep. 21, 2006 NetWare Configuration DB
    Engine
    CDDVD.NSS v3.27 Nov. 13, 2008 NSS Loadable Storage System
    (LSS) for CD/UDF (Build 163 MP)
    CERTLCM.NLM v28000806.23 Jun. 23, 2008 Novell SASL EXTERNAL Proxy LCM
    2.8.0.0 20080623
    CERTLSM.NLM v28000806.23 Jun. 23, 2008 Novell SASL EXTERNAL LSM
    2.8.0.0 20080623
    CHARSET.NLM v1.01 Jun. 4, 2003 Display Character Set Support
    For NetWare
    CIOS.NLM v1.60 Feb. 12, 2008 Consolidated IO System
    CLIB.NLM v5.90.15 Mar. 10, 2008 (Legacy) Standard C Runtime
    Library for NLMs
    CLNNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWClient Runtime
    Library
    CLXNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWCLX Runtime Library
    COMN.NSS v3.27 Nov. 13, 2008 NSS Common Support Layer
    (COMN) (Build 163 MP)
    CONFIG.NLM v3.10.17 Feb. 12, 2008 NetWare Server Configuration
    Reader
    CONLOG.NLM v3.01.02 Aug. 8, 2006 System Console Logger
    CONNAUD.NLM v3.17 May. 10, 2005 NLS - Connection Metering
    CONNMGR.NLM v5.60.01 Sep. 7, 2006 NetWare Connection Manager
    NLM
    CPQASM.NLM v1.20 May. 11, 2007 HP ProLiant Server Health
    Driver Tier 2
    CPQBSSA.NLM v7.90 Jul. 6, 2007 HP Insight Management Base
    System Agent
    CPQDASA.NLM v7.90 Jun. 21, 2007 HP Management Array Subsystem
    Agent
    CPQFCASA.NLM v7.90 Jun. 21, 2007 HP Management Fibre Channel
    Array Agent
    CPQHLTH.NLM v5.22 May. 11, 2007 HP ProLiant Server Health
    Driver Tier 1
    CPQHMMO.NLM v3.92 Jun. 10, 2003 Compaq HMMO Services Provider
    for NetWare
    CPQHOST.NLM v7.90 Jul. 6, 2007 HP Insight Management Host
    Agent
    CPQHTHSA.NLM v7.90 Jul. 6, 2007 HP Insight Management Health
    Agent
    CPQIDESA.NLM v7.90 Jun. 21, 2007 HP Management IDE Subsystem
    Agent
    CPQNCSA.NLM v7.90 May. 24, 2007 HP Insight NIC Agent
    CPQRAID.HAM v2.15 Jul. 5, 2005 HP Unified RAID driver
    CPQSCSA.NLM v7.90 Jun. 21, 2007 HP Management SCSI Subsystem
    Agent
    CPQSHD.CDM v2.08 Feb. 19, 2008 HP NWPA SCSI Disk Driver
    CPQSSSA.NLM v7.90 Jun. 21, 2007 HP Management Storage Box
    Subsystem Agent
    CPQTHRSA.NLM v7.90 Jul. 6, 2007 HP Insight Management
    Threshold Agent
    CPQWEBAG.NLM v7.90 Jul. 6, 2007 HP Web Based Management Agent
    CPUCHECK.NLM v5.60.01 Dec. 6, 2007 NetWare Processor Checking
    Utility
    CRLSM.NLM v2.08.01 Oct. 28, 2008 Challenge Response LSM
    v2.8.1.0
    CRON.NLM v1.70 Jun. 8, 1998 NetWare Scheduler
    CSATPXY.NLM v1.02 Nov. 17, 1999 CS Audit Trail Proxy Agent
    CSAUDIT.NLM v6.00.02 Sep. 4, 2003 CSLIB: Audit Trail Facility
    CSL.NLM v2.06.02 Jan. 13, 2000 NetWare Call Support Layer For
    NetWare
    CSLIND.NLM v4.21 Dec. 7, 1999 TCPIP CSL INDEPENDENCE MODULE
    7Dec99 7Dec99
    CSSYSMSG.NLM v1.01.08 Mar. 18, 1999 CSLIB: System Messages
    Facility
    DBNET6.NLM v1.45.02 Mar. 16, 2006 Debug Network IO Support
    DFSLIB.NLM v3.27 Nov. 13, 2008 DFS Common Library (Build 163
    MP)
    DHCPSRVR.NLM v3.14 Oct. 30, 2008 DHCP Server
    DHOST.NLM v10010.97 Sep. 18, 2006 Novell DHost Portability
    Interface 1.0.0 SMP
    DIAG500.NLM v3.04.03 Oct. 31, 2007 Diagnostic/coredump utility
    for NetWare 6.x
    DPLSV386.NLM v1.15.01 May. 21, 2007 NetWare 6.x Distributed Print
    Library - DPLSV386
    DPRPCNLM.NLM v3.00.17 Oct. 10, 2006 Novell NDPS RPC Library NLM
    DS.NLM v20216.83 Jul. 6, 2008 Novell eDirectory Version 8.8
    SP3 SMP
    DSAPI.NLM v6.00.04 Jan. 27, 2006 NetWare NWNet Runtime Library
    DSEVENT.NLM v6.01.03 Aug. 26, 2008 NetWare DSEvent Runtime
    Library
    DSLOADER.NLM v20216.83 Jul. 6, 2008 Novell eDirectory Version
    8.8.0 Loader SMP
    DSLOG.NLM v20216.83 Jul. 6, 2008 DS Log for Novell eDirectory
    8.8.0
    ETHERTSM.NLM v3.90 Mar. 20, 2006 Novell Ethernet Topology
    Specific Module
    EXPATLBC.NLM v1.00.02 Aug. 31, 2004 Scripting - Expat XML Parser
    Library (LibC Based) 1.95.2
    EXPIRES.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 Expires Module
    FATFS.NLM v1.24 Aug. 27, 2007 FAT Filesystem Module for
    NetWare
    FILESYS.NLM v5.14 Apr. 16, 2008 NetWare File System NLM
    FLOPPY.HAM v1.03 Feb. 3, 2006 Novell FLOPPY Driver
    GAMS.NLM v2.00 Mar. 19, 2008 Graded Authentication
    Management Service
    HEADERS.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 Headers Module
    HOSTMIB.NLM v5.03.01 Dec. 1, 2006 NetWare 5.x/6.x Host Resources
    MIB
    HTTPSTK.NLM v4.03 Sep. 4, 2008 Novell Small Http Interface
    HWDETECT.NLM v1.19.05 Feb. 20, 2003 Novell Hardware
    Insertion/Removal Detection
    IDEATA.HAM v4.34 May. 5, 2007 Novell IDE/ATA/ATAPI/SATA Host
    Adapter Module
    IDECD.CDM v4.13 Apr. 4, 2007 Novell ATA/IDE CD/DVD Custom
    Device Module
    IFACE.NLM v7.02.10 Mar. 5, 2010 SAV Interface for NetWare
    INETCFG.NLM v6.51.03 Jul. 17, 2007 Internetworking Configuration
    Production_17July2007
    IPCLINFO.NLM v1.11.01 Dec. 17, 1999 IP Client Info Module
    17Dec99
    IPMCFG.NLM v1.01.16 Oct. 22, 2005 Web Interface for IP Address
    Management
    IPMGMT.NLM v1.03.01 May. 29, 2007 TCPIP - NetWare IP Address
    Management
    IPPSRVR.NLM v4.01.04 Oct. 14, 2008 Novell iPrint Server
    IPXS.NLM v4.10.01 Feb. 12, 1998 NetWare STREAMS IPX Protocol
    IPXSPX.NLM v5.60 Feb. 1, 2006 NetWare IPX/SPX Protocol Stack
    NLM
    JAVA.NLM v1.43 Oct. 16, 2008 java.nlm (based on 1.4.2_18)
    Build 08101613
    JNET.NLM v1.43 Oct. 16, 2008 Java jnet (based on 1.4.2_18)
    JSMSG.NLM v3.27 Nov. 13, 2008 Jetstream Message Layer (Build
    163 MP)
    JSOCK.NLM v1.43 Oct. 16, 2008 Support For Java Sockets
    (loader)
    JSOCK6X.NLM v1.43 Oct. 16, 2008 NetWare 6.x Support For Java
    Sockets (JDK 1.4.2)
    JSTCP.NLM v3.27 Nov. 13, 2008 Jetstream TCP Transport Layer
    (Build 163 MP)
    JVM.NLM v1.43 Oct. 16, 2008 Java Hotspot 1.4.2_18
    Interpreter
    JVMLIB.NLM v1.43 Oct. 16, 2008 Java jvmlib (based on
    1.4.2_18)
    KEYB.NLM v2.10 Jul. 26, 2001 NetWare National Keyboard
    Support
    LANGMANI.NLM v10310.47 Aug. 9, 2004 Novell Cross-Platform Language
    Manager
    LBURP.NLM v20214.51 Jul. 1, 2008 LDAP Bulkload
    Update/Replication Protocol service extension for Novell eDirectory 8.8
    LCMCIFS2.NLM v2.00.09 Nov. 29, 2005 Windows Native File Access
    Login Methods (Build 84 SP)
    LCMMD5.NLM v28000806.23 Jun. 23, 2008 Novell SASL DIGEST-MD5 Proxy
    LCM 2.8.0.0 20080623
    LDAPSDK.NLM v3.05.02 Jul. 10, 2008 LDAP SDK Library (Clib
    version)
    LDAPXS.NLM v3.05.01 Jul. 10, 2008 (Clib version)
    LFS.NLM v5.12 Sep. 21, 2005 NetWare Logical File System
    NLM
    LIB0.NLM v5.90.15 Mar. 10, 2008 Novell Ring 0 Library for
    NLMs
    LIBC.NLM v9.00.05 Oct. 3, 2008 Standard C Runtime Library for
    NLMs [optimized, 7]
    LIBGCC_S.NLM v3.04.03 Apr. 29, 2005 gcc runtime and intrinsics
    support
    LIBNSS.NLM v3.27 Nov. 13, 2008 Generic Library used by NSS
    (Build 163 MP)
    LIC_API.NLM v2.01 Jun. 30, 1997 License APIs IP020A.G03
    LLDAPSDK.NLM v3.05.02 Jul. 10, 2008 LDAP SDK Library (LibC
    version)
    LLDAPSSL.NLM v3.05.01 Jul. 10, 2008 NetWare SSL Library for LDAP
    SDK (LibC version)
    LLDAPX.NLM v3.05.01 Jul. 10, 2008 NetWare Extension APIs for
    LDAP SDK (LibC version)
    LOCNLM32.NLM v6.00.04 Nov. 29, 2005 NetWare NWLocale Runtime
    Library
    LSAPI.NLM v5.02 Jan. 7, 2003 NLS LSAPI Library
    LSL.NLM v4.86 Feb. 2, 2006 Novell NetWare Link Support
    Layer
    LSMAFP3.NLM v2.00.11 May. 10, 2004 Macintosh Native File Access
    Login Methods (Build 103 SP)
    LSMCIFS2.NLM v2.00.07 Nov. 29, 2005 Windows Native File Access
    Login Methods (Build 95 SP)
    LSMMD5.NLM v28000806.23 Jun. 23, 2008 Novell SASL DIGEST-MD5 LSM
    2.8.0.0 20080623
    LSSS.NLM v3.40 Aug. 8, 2008 Novell SecretStore LDAP
    Extension Manager 3.4.1.2
    MAL.NSS v3.27 Nov. 13, 2008 NSS Media Access Layer (MAL)
    (Build 163 MP)
    MALHLP.NLM v3.27 Nov. 13, 2008 NSS Configure help messages
    (Build 163 MP)
    MANAGE.NSS v3.27 Nov. 13, 2008 NSS Management Functions
    (Build 163 MP)
    MASV.NLM v2.00.01 Sep. 2, 2008 Mandatory Access Control
    Service
    MM.NLM v3.22.07 Aug. 20, 2008 NetWare 6.5 Media Manager
    MOD_IPP.NLM v1.00.04 Jun. 7, 2006 iPrint Module
    MOD_JK.NLM v1.02.23 Apr. 25, 2008 Apache 2.0 plugin for Tomcat
    MOD_PHP5.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - Apache 2.0 Module
    MONDATA.NLM v6.00 Jul. 18, 2003 NetWare 5.x/6.x Monitor MIB
    MONITOR.NLM v12.02.02 Apr. 4, 2006 NetWare Console Monitor
    MSM.NLM v4.12 Aug. 22, 2007 Novell Multi-Processor Media
    Support Module
    NAMED.NLM v6.07.05 Dec. 18, 2009 eDirectory integrated Novell
    DNS Server
    NBI.NLM v3.01.01 Jul. 13, 2007 NetWare Bus Interface
    NCP.NLM v5.61.01 Sep. 30, 2008 NetWare Core Protocol (NCP)
    Engine
    NCPIP.NLM v6.02.01 Sep. 30, 2008 NetWare NCP Services over IP
    NCPIPX.NLM v5.60.01 Sep. 30, 2008 Novell NCP/IPX Stack NLM
    NCPNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWNCP Runtime Library
    NDMPD.NLM v9.20 Jan. 25, 2006 Backup Exec NDMP Server
    Module
    NDPSGW.NLM v4.00.17 Aug. 5, 2008 NDPS Gateway
    NDPSM.NLM v3.02.07 Oct. 7, 2008 NDPS Manager
    NDSAUDIT.NLM v2.09 May. 22, 2003 Directory Services Audit
    NDSIMON.NLM v20113.18 Oct. 24, 2007 NDS iMonitor 2.4
    NEB.NLM v5.60 Sep. 27, 2004 Novell Event Bus
    NETDB.NLM v4.11.05 Jan. 6, 2005 Network Database Access
    Module
    NETLIB.NLM v6.50.22 Feb. 12, 2003 Novell TCPIP NETLIB Module
    NETNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWNet Runtime Library
    NICISDI.NLM v27510.02.01 Aug. 25, 2008 Security Domain
    Infrastructure
    NILE.NLM v7.00.01 Aug. 20, 2007 Novell N/Ties NLM ("")
    Release Build with symbols
    NIPPED.NLM v1.03.09 Jul. 11, 2006 NetWare 5.x, 6.x INF File
    Editing Library - NIPPED
    NIPPZLIB.NLM v1.00.01 Nov. 28, 2005 General Purpose ZIP File
    Library for NetWare
    NIRMAN.NLM v1.06.04 Sep. 18, 2007 TCPIP - NetWare
    Internetworking Remote Manager
    NIT.NLM v5.90.15 Mar. 10, 2008 NetWare Interface Tools
    Library for NLMs
    NLDAP.NLM v20216.73 Jul. 10, 2008 LDAP Agent for Novell
    eDirectory 8.8 SP3
    NLMLIB.NLM v5.90.15 Mar. 10, 2008 Novell NLM Runtime Library
    NLSADPT2.NLM v2.00 Sep. 9, 2003 NLS and Metering adapter for
    iManager 2.0 plugin
    NLSAPI.NLM v5.02 Aug. 7, 2003 NLSAPI
    NLSLRUP.NLM v4.01.07 May. 10, 2005 NLS - Usage Metering
    NLSLSP.NLM v5.02 May. 25, 2005 NLS - License Service
    Provider
    NLSMETER.NLM v3.43 May. 10, 2005 NLS - Software Usage Metering
    Database
    NLSTRAP.NLM v5.02 Feb. 19, 2004 NetWare License Server Trap
    NMAS.NLM v33100811.12 Nov. 12, 2008 Novell Modular Authentication
    Service 3.3.1.0 20081112
    NMASGPXY.NLM v33100811.12 Nov. 12, 2008 NMAS Generic Proxy 3.3.1.0
    20081112
    NMASLDAP.NLM v33100811.12 Nov. 12, 2008 NMAS LDAP Extensions 3.3.1.0
    20081112
    NPKIAPI.NLM v3.32 Sep. 24, 2008 Public Key Infrastructure
    Services
    NPKIT.NLM v3.32 Sep. 24, 2008 Public Key Infrastructure
    Services
    NRLTLI.NLM v9.20 Jan. 11, 2006 Backup Exec - Remote
    Workstation Backup Software
    NSPDNS.NLM v6.20.03 Sep. 8, 2003 NetWare Winsock 2.0 NSPDNS.NLM
    Name Service Providers
    NSPNDS.NLM v6.20 Nov. 12, 2001 NetWare Winsock 2.0 NSPNDS.NLM
    Name Service Provider
    NSPSAP.NLM v6.20.02 Sep. 8, 2003 NetWare Winsock 2.0 NLM
    NSPSAP.NLM Name Service Provider
    NSPSLP.NLM v6.20.04 Dec. 6, 2007 NetWare Winsock 2.0 NSPSLP.NLM
    Name Service Provider
    NSS.NLM v3.27 Nov. 13, 2008 NSS (Novell Storage Services)
    (Build 163 MP)
    NSSIDK.NSS v3.27 Nov. 13, 2008 NSS Pool Configuration Manager
    (Build 163 MP)
    NSSWIN.NLM v3.27 Nov. 13, 2008 NSS ASCI Window API Library
    (Build 163 MP)
    NTFYDPOP.ENM v2.00.03 Feb. 26, 1999 Directed Pop-Up Delivery
    Method
    NTFYLOG.ENM v2.00.03 May. 25, 1999 Log File Delivery Method
    NTFYPOP.ENM v2.00.03 May. 21, 1999 Pop Up Delivery Method
    NTFYRPC.ENM v2.00.03 Feb. 26, 1999 RPC Delivery Method
    NTFYSPX.ENM v2.00.03 Feb. 26, 1999 SPX Delivery Method
    NTFYSRVR.NLM v3.00.05 May. 10, 2005 NDPS Notification Server
    NTFYWSOC.ENM v2.00.03 Feb. 26, 1999 Winsock Delivery Method
    NTLS.NLM v20410.01 Aug. 12, 2008 NTLS 2.0.4.0 based on OpenSSL
    0.9.7m
    NWAIF103.NLM v7.94 Nov. 30, 2001 nwaif103.nlm v7.94, Build 251
    NWBSRVCM.NLM v7.90 Mar. 20, 2001 NWBSRVCM.NLM v7.90.000, Build
    230
    NWENC103.NLM v7.90 Feb. 24, 2001 NWENC103.NLM v7.90.000 (Text
    Encoding Conversion Library)
    NWIDK.NLM v3.01.01 Sep. 19, 2003 CDWare Volume Module
    NWKCFG.NLM v2.16 Jun. 24, 2005 NetWare Kernel Config NLM
    NWMKDE.NLM v7.94 Dec. 11, 2001 NWMKDE.NLM v7.94.251.000
    NWPA.NLM v3.21.02 Oct. 29, 2008 NetWare 6.5 NetWare Peripheral
    Architecture NLM
    NWPALOAD.NLM v3.00 Jul. 10, 2000 NetWare 5 NWPA Load Utility
    NWSA.NSS v3.27 Nov. 13, 2008 NSS NetWare Semantic Agent
    (NWSA) (Build 163 MP)
    NWSEC.NLM v1.00.02 Sep. 13, 2005 Scripting - Security Library
    NWSNUT.NLM v7.00.01 Jul. 11, 2008 NetWare NLM Utility User
    Interface
    NWTERMIO.NLM v1.00 Sep. 11, 2006 NetWare Terminal Emulation
    NWTRAP.NLM v6.00.05 Jun. 6, 2005 NetWare 5.x/6.x Trap Monitor
    NWUCMGR.NLM v1.05 Mar. 14, 2001 NWUCMGR.NLM v1.5 Build 230
    NWUTIL.NLM v3.00.02 Aug. 20, 2007 Novell Utility Library NLM
    (_NW65[SP7]{""})
    N_PRDDAT.NLM v1.00 Feb. 3, 2003 N_PRDDAT
    OHCIDRV.CAD v1.07 Feb. 26, 2008 Novell Universal Serial Bus
    OHCI driver
    PARTAPI.NLM v2.00 Apr. 17, 2002 Partition APIs for NetWare
    6.1
    PHP2UCS.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - UCS Extension -
    Zend API Number 20041030
    PHP5LIB.NLM v1.00.03 Dec. 6, 2005 PHP 5.0.5 - Script Interpreter
    and Library - Zend API Number 20041030
    PHP_GD2.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - GD2 Extension -
    Zend API Number 20041030
    PHP_LDAP.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - LDAP Extension -
    Zend API Number 20041030
    PHP_OSSL.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - OpenSSL Extension
    - Zend API Number 20041030
    PHP_XML.NLM v1.00.02 Oct. 3, 2005 PHP 5.0.5 - XML Extension -
    Zend API Number 20041030
    PKI.NLM v3.32 Aug. 25, 2008 Novell Certificate Server
    PKIAPI.NLM v2.23.10 Nov. 20, 2004 Public Key Infrastructure
    Services
    PMLODR.NLM v1.26 Oct. 7, 2005 PMLodr for NW65
    PMPORTAL.NLM v2.16 Nov. 21, 2003 NetWare License Information
    Portal
    POLIMGR.NLM v6.27 Nov. 3, 2005 NetWare License Policy
    Manager
    PORTAL.NLM v4.03 Sep. 22, 2008 Novell Remote Manager NLM
    PSVCS.NLM v251.00 Nov. 30, 2001 Portability Services
    PVER500.NLM v3.00 Feb. 1, 2007 NetWare 6.XX Version Library
    PWDLCM.NLM v28000806.23 Jun. 23, 2008 Novell Simple Password Proxy
    LCM 2.8.0.0 20080623
    PWDLSM.NLM v28000806.23 Jun. 23, 2008 Novell Simple Password LSM
    2.8.0.0 20080623
    Q57.LAN v10.41 Feb. 1, 2007 HP NC10xx/NC32xx/NC67xx/NC77xx
    Gigabit Server Adapter
    QUEUE.NLM v5.60 May. 24, 2001 NetWare Queue Services NLM
    RCONAG6.NLM v6.11 Nov. 20, 2007 RConsole Agent for Netware
    REGSRVR.NLM v3.00.06 May. 10, 2005 NDPS Service Registry
    REQUESTR.NLM v5.90.15 Mar. 10, 2008 Novell NCP Requestor for NLMs
    REWRITE.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 Rewrite Module
    RMANSRVR.NLM v3.06.04 Oct. 23, 2008 NDPS Resource Manager
    ROLLCALL.NLM v5.00 Jul. 27, 1998 RollCall NLM (101, API 1.0)
    ROTLOGS.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 Log Rotation
    Utility for NetWare
    SAL.NLM v20411.47 Jul. 1, 2008 Novell System Abstraction
    Layer Version 2.3.1
    SAS.NLM v1.75 Mar. 13, 2004 Secure Authentication
    Services
    SASDFM.NLM v27510.02.01 Aug. 25, 2008 SAS Data Flow Manager
    SASL.NLM v33100811.12 Nov. 12, 2008 Simple Authentication and
    Security Layer 3.3.1.0 20081112
    SAVENGIN.NLM v3.06 Mar. 5, 2010 SAV Interface engine
    SCRCB.NLM v1.00 Oct. 3, 2005 Scripting - LibC-CLib Context
    Broker
    SERVINST.NLM v5.00.13 Nov. 21, 2005 NetWare 5.x/6.x
    Instrumentation
    SGUID.NLM v6.01 Sep. 27, 2002 NetWare GUID Services
    SLP.NLM v2.13 Nov. 15, 2005 SERVICE LOCATION PROTOCOL
    (RFC2165/RFC2608)
    SLPDA.NLM v2.13 Nov. 15, 2005 SERVICE LOCATION NDS DIRECTORY
    AGENT (RFC2165/RFC2608)
    SLPTCP.NLM v2.13 Nov. 15, 2005 SERVICE LOCATION TCP/UDP
    INTERFACE (RFC2165/RFC2608)
    SMDR.NLM v6.58.01 Oct. 16, 2008 SMS - Storage Data Requestor
    SMSUT.NLM v1.01.03 Jun. 26, 2008 SMS - Utility Library for
    NetWare 6.X
    SNMP.NLM v4.18 Jul. 25, 2006 Netware 4.x/5.x/6.x SNMP
    Service
    SPMDCLNT.NLM v33100811.12 Nov. 12, 2008 Novell SPM Client for DClient
    3.3.1.0 20081112
    SPMNWCC.NLM v33100811.12 Nov. 12, 2008 Novell SPM Client for NWCC
    3.3.1.0 20081112
    SSLDP.NLM v3.40 Aug. 8, 2008 Novell SecretStore LDAP
    Transport Plugin 3.4.1.2
    SSNCP.NLM v3.40 Aug. 8, 2008 Novell SecretStore NCP
    Transport Plugin 3.4.1.2
    SSS.NLM v3.40 Aug. 8, 2008 Novell SecretStore 3.4.1.2
    STREAMS.NLM v6.00.06 May. 4, 2005 NetWare STREAMS PTF
    SWEEP.NLM v4.52 Mar. 5, 2010 Sophos Anti-Virus User
    Interface
    SYSLOG.NLM v6.05.03 Oct. 22, 2007 NetWare Logfile Daemon
    TCP.NLM v6.82.04 Sep. 30, 2008 Novell TCP/IP Stack -
    Transport module (NULL encryption)
    TCPIP.NLM v6.82 Nov. 20, 2007 Novell TCP/IP Stack - Network
    module (NULL encryption)
    TCPSTATS.NLM v6.50.10 Jun. 20, 2003 Web Interface for Protocol
    Monitoring
    THREADS.NLM v5.90.15 Mar. 10, 2008 Novell Threads Package for
    NLMs
    TIMESYNC.NLM v6.61.01 Oct. 14, 2005 NetWare Time Synchronization
    Services
    TLI.NLM v4.30.02 Dec. 19, 2000 NetWare Transport Level
    Interface Library
    TOOLBOX.NLM v2.16 Aug. 28, 2002 Utility Toolbox for NetWare 4
    - 6
    TSAFS.NLM v6.53.03 Oct. 16, 2008 SMS - File System Agent for
    NetWare 6.X
    TSANDS.NLM v20213.93 Jul. 1, 2008 TSA for Novell eDirectory 7.x,
    8.x
    TUI.NLM v1.05.03 May. 28, 1998 Textual User Interface
    MOAB_B40.528
    UCSCORE.NLM v1.02.02 Oct. 3, 2005 Novell UCS Core NLM
    UNICODE.NLM v7.00 Oct. 26, 2004 NetWare Unicode Runtime
    Library (UniLib-based) [optimized]
    UTILLDAP.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 LDAP
    Authentication Module
    UTILLDP2.NLM v1.00 Nov. 9, 2005 LdapDN Module
    VDISK.NLM v1.00 Nov. 30, 2004 NetWare Virtual Disk
    VERIFY.NLM v1.43 Oct. 16, 2008 Java verify (based on
    1.4.2_18)
    VLRPC.NLM v3.27 Nov. 13, 2008 DFS Volume Location Database
    (VLDB) RPC interface (Build 163 MP)
    VMRPC.NLM v3.27 Nov. 13, 2008 DFS Volume Manager RPC
    interface (Build 163 MP)
    VOLMN.NSS v3.27 Nov. 13, 2008 NSS Distributed Volume Manager
    (Build 163 MP)
    VOLSMS.NLM v3.27 Nov. 13, 2008 NSS Distributed Volume Manager
    (Build 163 MP)
    WPSD.NLM v2.00 Aug. 8, 2005 ServiceDescriptor Natives NLM
    WS2_32.NLM v6.24.01 Feb. 14, 2008 NetWare Winsock 2.0 NLM
    WSPIP.NLM v6.24 Dec. 4, 2007 NetWare Winsock Service 1.0
    NLM for TCP and UDP
    WSPIPX.NLM v6.22 Dec. 4, 2007 NetWare Winsock Service 1.0
    NLM for IPX and SPX
    WSPSSL.NLM v6.26 Dec. 4, 2007 NetWare Winsock Service 1.0
    NLM for SSL
    X509LSM.NLM v1.04 Mar. 31, 2004 Novell X.509 LSM
    XENGEXP.NLM v27510.02.01 Aug. 25, 2008 NICI Import Restricted XENG
    from Novell, Inc.
    XENGNUL.NLM v27510.02.01 Aug. 25, 2008 NICI NULL XENG from Novell,
    Inc.
    XENGUSC.NLM v27510.02.01 Aug. 25, 2008 NICI U.S./Worldwide XENG from
    Novell, Inc.
    XI18N.NLM v10310.53 Aug. 2, 2005 Novell Cross-Platform
    Internationalization Package
    XIM.XLM v27510.02.01 Aug. 25, 2008 Novell NICI Signed Loader
    XIS11.NLM v1.00.02 Apr. 7, 2005 XML Integration Service
    XMGR.NLM v27510.02.01 Aug. 25, 2008 NICI XMGR from Novell, Inc.
    XNGAUSC.NLM v27510.02.01 Aug. 25, 2008 NICI U.S./Worldwide XMGR
    Assistant XENG from Novell, Inc.
    XSUP.NLM v27510.02.01 Aug. 25, 2008 NICI XSUP from Novell, Inc.
    ZIP.NLM v1.43 Oct. 16, 2008 Java zip (based on 1.4.2_18)
    ZLIB.NLM v1.01.04 Dec. 20, 2002 ZLIB 1.1.4 General Purpose
    Compression Library for NetWare
    ZLSS.NSS v3.27 Nov. 13, 2008 NSS Journaled Storage System
    (ZLSS) (Build 163 MP)
    End of Modules List 286 Modules Loaded.
    Top of LAN Driver Configuration Listing
    Signature.....: HardwareDriverMLID
    CFG Version...: 1.15
    Node Address..: 0012793A26F8
    Board Number..: 1
    Board Instance: 1
    Media Type....: ETHERNET_II
    MLID Version..: 10.41
    Slot..........: 10007
    I/O...........: None
    Memory........: F5FE0000h -> F5FEFFFFh
    IRQ...........: 5
    DMA...........: None
    Logical Name..: Q57_1_EII_EII
    End of LAN Driver Configuration Listing
    Top of Boot Drive Information
    SERVER.EXE loaded from...........: C:\NWSERVER\
    SERVER.EXE version...............: 1355757 bytes 10-03-2008 09:53am
    Total Space on Drive.............: 496 MB
    Available Space..................: 312 MB
    End of Boot Drive Information
    Top of Storage Device Configuration Information
    Storage Device Summary:
    0x0000 [V024-A0] Legacy FLOPPY Controller
    0x0001 [V024-A0-D1:0] Legacy Floppy
    0x0002 [V100-A100] USB OHCI Controller
    0x0003 [V321-A1] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    0x0004 [V321-A2] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    0x0005 [V025-A3] Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    0x0016 [V025-A3-D0:0] HL-DT-ST DVD-ROM GDR8163B f/w:0E15
    0x0006 [V504-A4] HP Unified RAID Driver
    0x0009 [V504-A4-D0:2] HP Smart Array 642 Slot 1 ID 0 LUN 2
    0x000E DOS Partitioned Media
    0x0015 [V504-A4-D0:2-P10F53] Free Partition Space
    0x0012 [V504-A4-D0:2-P0] NSS Partition
    0x0007 [V504-A4-D0:0] HP Smart Array 642 Slot 1 ID 0 LUN 0
    0x000A DOS Partitioned Media
    0x0013 [V504-A4-D0:0-P21EA6] Free Partition Space
    0x000B [V504-A4-D0:0-P0] Big DOS; OS/2; Win95 Partition
    0x000C [V504-A4-D0:0-P1F6] NSS Partition
    0x000F [V504-A4-D0:0-P2136] NSS Partition
    0x0008 [V504-A4-D0:1] HP Smart Array 642 Slot 1 ID 0 LUN 1
    0x000D DOS Partitioned Media
    0x0014 [V504-A4-D0:1-P10F53] Free Partition Space
    0x0011 [V504-A4-D0:1-P0] NSS Partition
    Storage Device Details:
    [V024-A0] Legacy FLOPPY Controller
    Media Manager object ID..: 0x0000
    Media Manager Object Type: Adapter
    Driver name..............: FLOPPY.HAM
    Assigned driver ID.......: 36
    Adapter number...........: 0
    Primary port address.....: 3F2
    Primary port length......: 4
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 6
    Interrupt 1..............: Not used
    Slot.....................: 0
    DMA0.....................: 2
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V024-A0-D1:0] Legacy Floppy
    Media manager object ID.....: 0x0001
    Media manager Object Type...: Device
    Device type.................: Unknown
    Capacity....................: 0 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 18
    Heads.......................: 2
    Cylinders...................: 80
    Block size, in bytes........: 1474560
    Activated...................: No
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 1
    Device Number...............: 0
    Adapter Number..............: 0
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    [V100-A100] USB OHCI Controller
    Media Manager object ID..: 0x0002
    Media Manager Object Type: Adapter
    Driver name..............: OHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 256
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: B
    Interrupt 1..............: Not used
    Slot.....................: 10011
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0090
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V321-A1] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    Media Manager object ID..: 0x0003
    Media Manager Object Type: Adapter
    Driver name..............: ADPT160M.HAM
    Assigned driver ID.......: 801
    Adapter number...........: 1
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 3
    Interrupt 1..............: Not used
    Slot.....................: 10004
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0010
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V321-A2] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    Media Manager object ID..: 0x0004
    Media Manager Object Type: Adapter
    Driver name..............: ADPT160M.HAM
    Assigned driver ID.......: 801
    Adapter number...........: 2
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 3
    Interrupt 1..............: Not used
    Slot.....................: 10005
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0010
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V025-A3] Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    Media Manager object ID..: 0x0005
    Media Manager Object Type: Adapter
    Driver name..............: IDEATA.HAM
    Assigned driver ID.......: 37
    Adapter number...........: 3
    Primary port address.....: 1F0
    Primary port length......: 8
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: E
    Interrupt 1..............: Not used
    Slot.....................: 0
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V025-A3-D0:0] HL-DT-ST DVD-ROM GDR8163B f/w:0E15
    Media manager object ID.....: 0x0016
    Media manager Object Type...: Device
    Device type.................: CD-ROM
    Capacity....................: Unavailable
    Unit Size, in bytes.........: 512
    Sectors.....................: 0
    Heads.......................: 0
    Cylinders...................: 0
    Block size, in bytes........: 134215680
    Activated...................: No
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: Yes
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 0
    Adapter Number..............: 3
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    Removable drive mount status: Dismounted
    Removable drive lock status.: Not locked
    [V504-A4] HP Unified RAID Driver
    Media Manager object ID..: 0x0006
    Media Manager Object Type: Adapter
    Driver name..............: CPQRAID.HAM
    Assigned driver ID.......: 1284
    Adapter number...........: 4
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: F
    Interrupt 1..............: Not used
    Slot.....................: 1
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0200
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V504-A4-D0:2] HP Smart Array 642 Slot 1 ID 0 LUN 2
    Media manager object ID.....: 0x0009
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 69120 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 17433
    Block size, in bytes........: 131072
    Activated...................: Yes
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 2
    Adapter Number..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000E
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:2-P10F53] Free Partition Space
    Media Manager object ID......: 0x0015
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 142252064
    Size, in sectors.............: 1216
    [V504-A4-D0:2-P0] NSS Partition
    Media Manager object ID......: 0x0012
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 32
    Size, in sectors.............: 142252032
    [V504-A4-D0:0] HP Smart Array 642 Slot 1 ID 0 LUN 0
    Media manager object ID.....: 0x0007
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 138752 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 34866
    Block size, in bytes........: 131072
    Activated...................: Yes
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 0
    Adapter Number..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000A
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:0-P21EA6] Free Partition Space
    Media Manager object ID......: 0x0013
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 284505280
    Size, in sectors.............: 1280
    [V504-A4-D0:0-P0] Big DOS; OS/2; Win95 Partition
    Media Manager object ID......: 0x000B
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 32
    Size, in sectors.............: 1028128
    [V504-A4-D0:0-P1F6] NSS Partition
    Media Manager object ID......: 0x000C
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: Yes
    Beginning sector of partition: 1028160
    Size, in sectors.............: 16384000
    [V504-A4-D0:0-P2136] NSS Partition
    Media Manager object ID......: 0x000F
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 17412160
    Size, in sectors.............: 267093120
    [V504-A4-D0:1] HP Smart Array 642 Slot 1 ID 0 LUN 1
    Media manager object ID.....: 0x0008
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 69120 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 17433
    Block size, in bytes........: 131072
    Activated...................: Yes
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 1
    Adapter Number..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000D
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:1-P10F53] Free Partition Space
    Media Manager object ID......: 0x0014
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 142252064
    Size, in sectors.............: 1216
    [V504-A4-D0:1-P0] NSS Partition
    Media Manager object ID......: 0x0011
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 32
    Size, in sectors.............: 142252032
    End of Storage Device Configuration Information
    * Volume Statistics for SYS *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 7934 MB
    Block Size.................: 4 KB
    Total Blocks...............: 2031143
    Free Blocks................: 351563
    Purgable Blocks............: 33219
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147265132
    Sectors per Block..........: 8
    Free Disk Space............: 1373 MB
    Purgable Disk Space........: 129 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for _ADMIN *
    File System................: Unknown
    Volume Size................: 4 MB
    Block Size.................: 4 KB
    Total Blocks...............: 1024
    Free Blocks................: 1024
    Purgable Blocks............: 0
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147483647
    Sectors per Block..........: 8
    Free Disk Space............: 4 MB
    Purgable Disk Space........: 0 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for DATA *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 268529 MB
    Block Size.................: 4 KB
    Total Blocks...............: 68743547
    Free Blocks................: 31780189
    Purgable Blocks............: 411553
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147220714
    Sectors per Block..........: 8
    Free Disk Space............: 124141 MB
    Purgable Disk Space........: 1607 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    Volume Name Name Spaces Loaded
    SYS DOS
    SYS MACINTOSH
    SYS NFS
    SYS LONG_NAMES
    _ADMIN DOS
    _ADMIN MACINTOSH
    _ADMIN NFS
    _ADMIN LONG_NAMES
    DATA DOS
    DATA MACINTOSH
    DATA NFS
    DATA LONG_NAMES
    Top of NDS/eDirectory Configuration Listing
    NDS Tree Name............: Organisation
    NDS Server Name..........: CN=FS1.O=City.T=Organisation
    NDS Version..............: v20216.83
    sys:_netware attributes..: Hidden System SubDir ImmediatePurge
    Partition Name...........: T=Organisation
    Partition Type...........: Master
    Partition State..........: On
    Partition Name...........: O=City.T=Organisation
    Partition Type...........: Master
    Partition State..........: On
    End of NDS/eDirectory Configuration Listing
    Top of Installed Product List
    Product ID...........: AP2WEB
    Product Version......: 2.0.63
    Product Description..: APACHE2 Web Server and Tomcat 4 Servlet Container
    Product ID...........: APACHE2
    Product Version......: 2.0.63
    Product Description..: APACHE2 Admin Server
    Product ID...........: BNS
    Product Version......: 1.1.0
    Product Description..: Beans for Novell Services
    Product ID...........: C1RPTING
    Product Version......: 1.3.6
    Product Description..: ConsoleOne Reporting Snapin
    Product ID...........: CONSOLE1
    Product Version......: 1.3.6
    Product Description..: ConsoleOne 1.3.6
    Product ID...........: CPQCSP
    Product Version......: 7.91
    Product Description..: HP ProLiant Support Pack (PSP) Utility For Novell
    NetWare
    Product ID...........: DNSDHCP
    Product Version......: 6.2.1
    Product Description..: Novell DNS/DHCP Services
    Product ID...........: EDIR
    Product Version......: 88.3.0
    Product Description..: eDirectory (tm) 8.8 SP3
    Product ID...........: EMBOX
    Product Version......: 88.3.0
    Product Description..: eDirectory Management Utilities Toolbox
    Product ID...........: LDAP
    Product Version......: 88.0.0
    Product Description..: LDAP Services
    Product ID...........: NDPS
    Product Version......: 4.0.7
    Product Description..: iPrint
    Product ID...........: NDS8
    Product Version......: 88.3.0
    Product Description..: eDirectory (tm) 8.8 SP3
    Product ID...........: NICI
    Product Version......: 2.7.4
    Product Description..: Novell International Cryptographic Infrastructure
    (NICI)
    Product ID...........: NICIU0
    Product Version......: 2.7.4
    Product Description..: NICI U.S./Canada (128bit) Crypto XENG
    Product ID...........: NLS
    Product Version......: 5.0.2
    Product Description..: Novell Licensing Services
    Product ID...........: NMAS
    Product Version......: 3.3.0
    Product Description..: Novell Modular Authentication Service
    Product ID...........: NSBS2
    Product Version......: 6.5.8
    Product Description..: Novell Small Business Suite
    Product ID...........: NSN
    Product Version......: 2.0.0
    Product Description..: NSN
    Product ID...........: NTLS
    Product Version......: 2.0.3
    Product Description..: Novell TLS Library
    Product ID...........: OES
    Product Version......: 2.0.0
    Product Description..: Open Enterprise Server
    Product ID...........: OPENWBEM
    Product Version......: 3.1.0
    Product Description..: OpenWBEM
    Product ID...........: PATCHKIT
    Product Version......: 1.0.0
    Product Description..: v1.0 Patch Kit for NetWare 6.5 SP5
    Product ID...........: PERVASIV
    Product Version......: 7.9.4
    Product Description..: Pervasive SQL 2000i
    Product ID...........: PHP
    Product Version......: 5.0.5
    Product Description..: PHP
    Product ID...........: PKIS
    Product Version......: 3.3.2
    Product Description..: Novell Certificate Server
    Product ID...........: PORTAL
    Product Version......: 4.3.0
    Product Description..: NetWare Remote Manager
    Product ID...........: Pattern
    Product Version......: 1.0.0
    Product Description..: Customized NetWare Server
    Product ID...........: Perl
    Product Version......: 5.8.4
    Product Description..: Perl
    Product ID...........: SAS
    Product Version......: 1.7.4
    Product Description..: SSL Security Authentication Services
    Product ID...........: SMS
    Product Version......: 1.1.6
    Product Description..: Storage Management Services
    Product ID...........: SPACK
    Product Version......: 6.5.8
    Product Description..: v8.0 Support Pack for NetWare 6.5
    Product ID...........: SS
    Product Version......: 3.4.0
    Product Description..: Novell SecretStore
    Product ID...........: TOMCAT5
    Product Version......: 5.0.30
    Product Description..: Tomcat 5 Server
    Product ID...........: Tomcat
    Product Version......: 4.1.37
    Product Description..: Tomcat 4 Admin Instance
    Product ID...........: WANMAN
    Product Version......: 1.0.3
    Product Description..: WAN Traffic Manager Services
    Product ID...........: ZDM
    Product Version......: 7.0.1
    Product Description..: ZENworks Desktop Management
    Product ID...........: iFolder
    Product Version......: 2.1.9
    Product Description..: Novell iFolder Storage Services
    Product ID...........: iManager
    Product Version......: 2.7.2
    Product Description..: Novell iManager
    Product ID...........: iMonitor
    Product Version......: 2.4.0
    Product Description..: NDS iMonitor Services
    End of Installed Product List
    Top of Running Java Processes 2 Processes Running
    Class Name...........: com.apcc.m11.arch.application.Application
    Class ID.............: 626
    Class State..........: Running
    Class Name...........: org.apache.catalina.startup.Bootstrap
    Class ID.............: 518
    Class State..........: Running
    End of Running Java Processes
    Top of Server Memory Statistics
    Allocated Memory.................: 961.6 MB
    Cache Buffer Memory..............: 598.7 MB
    Cache Moveable Memory............: 0.0 MB
    Cache Non-moveable Memory........: 0.0 MB
    Code Memory......................: 39.7 MB
    Data Memory......................: 19.2 MB
    Total Work Memory................: 1619.3 MB
    Other Cache Pages Memory.........: 719.0 MB
    System Memory Under 4GB..........: 2559.6 MB
    Total Known Memory...............: 2559.6 MB
    End of Server Memory Statistics
    Top of file. [SYS:ETC\CRONTAB]
    # Run perl script to rotate logs each midnight.
    0 0 * * * perl sys:/apache2/rotate.pl sys:/apache2/rotate.ini --noscreen
    # 30 23 * * 4 sys:/SYSTEM/cr_image.ncf
    15 20 * * 1-5 unload sweep.nlm
    55 23 * * 1-5 sys:/sweep/sweep.nlm
    End of file. [SYS:ETC\CRONTAB]
    Top of file. [SYS:ETC\GATEWAYS]
    # SYS:ETC\GATEWAYS
    # List of unusual routes which must be added to the routing
    # database statically.
    # Normally you will not need this file, as most routing information
    # should be available through the routing protocols.
    # Examples. These entries will not be useful to you.
    #net milnet gateway sj-in5 metric 3 active # to milnet through in5.
    #net arpa gateway sj-in1 passive # to arpanet. in1 is passive.
    #host 130.57.6.40 gateway 192.67.172.55 # route with numbers.
    Net 0 Gateway xxx.xxx.xxx.104 Metric 1 Passive
    End of file. [SYS:ETC\GATEWAYS]
    Top of file. [SYS:ETC\HOSTS]
    # SYS:ETC\HOSTS
    # Mappings of host names and host aliases to IP address.
    127.0.0.1 loopback lb localhost # normal loopback address
    # examples from Novell network
    # 130.57.4.2 ta tahiti ta.novell.com loghost
    # 130.57.6.40 osd-frog frog
    # 130.57.6.144 sj-in5 in5
    # 192.67.172.71 sj-in1 in1
    # interesting addresses on the Internet
    # 192.67.67.20 sri-nic.arpa nic.ddn.mil nic
    # 26.2.0.74 wsmr-simtel20.army.mil simtel20
    xxx.xxx.xxx.102 fs1.intranet.ntb FS1
    xxx.xxx.xxx.203 MAIL_SVR.intranet.ntb MAIL_SVR
    xxx.xxx.xxx.106 dc-01.ntb.local
    xxx.xxx.xxx.107 fs2.intranet.ntb FS2
    End of file. [SYS:ETC\HOSTS]
    Top of file. [SYS:ETC\HOSTNAME]
    xxx.xxx.xxx.102 fs1.intranet.ntb
    End of file. [SYS:ETC\HOSTNAME]
    Top of file. [SYS:ETC\JAVA.CFG]
    End of file. [SYS:ETC\JAVA.CFG]
    Top of file. [SYS:ETC\NETINFO.CFG]
    #!VERSION=2.3
    #! --- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING ----
    #! This file was created by the Internetworking Configuration Console.
    #! It is intended to be modified ONLY by the configurator (INETCFG.NLM).
    #! Tampering with this file may cause severe malfunctioning of the system.
    #! The configurator will check for tampering and abort if it is detected.
    #!SERVERTYPE=NORMAL
    #!UIMODE=NORMAL
    #!BEGINGENLOAD
    LOAD SNMP
    LOAD BCALLSRV
    #!END
    #!BEGINTSMLOAD
    #!END
    #!BEGINBOARD DRVR=Q57 NAME=Q57_1_EII STATUS=ENABLED NUMPORTS=1 DRVRTYPE=LAN
    VARIABLEPORTS=NO PORTPARAM=CHANNEL SLOT=10007
    #Transferred from AUTOEXEC.NCF
    #!BEGINPORT NAME=Q57_1_EII NUMBER=1 STATUS=ENABLED FRAMES=YES NUMLINKS=1
    MEDIA=EtherTsm WANFRAME=UNCONFIGURED
    #Transferred from AUTOEXEC.NCF
    #!REFCOUNT=1
    LOAD Q57 NAME=Q57_1_EII_EII FRAME=ETHERNET_II SLOT=10007
    #!END
    #!END
    #!BEGINPROTO PROTO=TCPIP STATUS=ENABLED
    LOAD Tcpip RIP=No Static=Yes LoadSharing=No Forward=No VIPASupport=No
    #!BEGINBIND STATUS=ENABLED
    BIND IP Q57_1_EII_EII ARP=Yes Mask=255.255.255.0 Address=xxx.xxx.xxx.102
    #xxx.xxx.xxx.102
    #!END
    #!END
    End of file. [SYS:ETC\NETINFO.CFG]
    Top of file. [SYS:ETC\RESOLV.CFG]
    domain intranet.ntb
    domain ntb.local
    nameserver xxx.xxx.xxx.102
    End of file. [SYS:ETC\RESOLV.CFG]
    Top of file. [SYS:ETC\SLP.CFG]
    ; This is a sample of the slp configuration file.
    ; Two types of entries can be made: 1) DA entries, 2) SA Register Filters.
    ; The DA entry allows static configuration of a known DA. This would be
    used
    ; when the DA was out of multicast range and DHCP was not being used to
    ; configure the DA.
    ; The static DA configuration format is as follows 'DA <addr type>,
    <addr>'.
    ; The first word must be "DA". The addr type is the address type.
    Currently, only
    ; IPV4 has been defined. IPV6 will be defined in the future. The addr is
    ; the address specified.
    ; The following is an example of a static DA.
    ; DA IPV4, 130.1.1.1
    ; The SA Register Filter would be used when the administrator wanted all
    services
    ; of a specific service type being mapped to a single scope. For example,
    ; the administrator wanted all "lpr" printers being registered to scope
    "printer".
    ; The format is as follows: 'REGISTER TYPE "<type name>" to SCOPE "<scope
    name>"'.
    ; The parser will look for REGISTER, TYPE, and SCOPE as keywords followed
    by quote on
    ; a single line. Example:
    ; REGISTER TYPE "lpr" to SCOPE "eng"
    ; The last line must contain a line feed and char return. A semi-colon
    specifies a
    ; comment.
    DA IPV4, xxx.xxx.xxx.102
    End of file. [SYS:ETC\SLP.CFG]
    Top of file. [SYS:ETC\TCPIP.CFG]
    AutonomousSystem 0
    Protocol rip off {
    Interface {
    Address xxx.xxx.xxx.102
    Port Q57_1_EII_EII
    Status on
    Cost 1
    Poison off
    SplitHorizon on
    UpdateTime 30
    GarbageTime 120
    ExpireTime 180
    OriginateDefault off
    Version ripI
    Mode normal
    Protocol egp off {
    Protocol ospf off {
    Interface {
    Address xxx.xxx.xxx.102
    Port Q57_1_EII_EII
    Status on
    Cost 1
    AreaId 0.0.0.0
    Priority 1
    RetransmissionInterval 5
    TransitDelay 1
    HelloInterval 10
    RouterDeadInterval 40
    Nbma {
    PollInterval 120
    Neighbor {
    Interface {
    Address xxx.xxx.xxx.102
    AddressMask 255.255.255.0
    Port Q57_1_EII_EII
    Type lan
    RouterDiscovery no
    SolicitationAddress multicast
    NATStatus Disabled
    SecIPStatus Disabled
    TOSStatus Disabled
    TOSValue 0
    ARPTimerStatus Disabled
    ARPCacheUpdateTimeout 300
    ARPCacheStaleTimeout 300
    GroupedInterface no
    PrimaryInterface no
    LBPolicy 0
    Arpable yes
    NetworkAddress xxx.xxx.xxx.0
    VIPASupport Enabled
    BdgStatus Enabled
    ForwardIPSourceRouting off
    NATFiltering off
    Deadgatewaydetection off {
    T0 30
    T1 2
    LoadBalancing off {
    LBInterval 2
    FaultTolerance on {
    FTInterval 2
    DefIPAddr 0.0.0.0
    End of file. [SYS:ETC\TCPIP.CFG]
    Top of file. [SYS:ETC\IPWAN.CFG]
    End of file. [SYS:ETC\IPWAN.CFG]
    Top of file. [SYS:SYSTEM\ABEND.LOG]
    File size is 177707 bytes.
    PVER: 6.50.07
    Server FS1 halted Tuesday, 25 March 2008 17.31.47,196
    Abend 1 on P00: Server-5.70.07: Page Fault Processor Exception (Error code
    00000000)
    Registers:
    CS = 0008 DS = 0023 ES = 0023 FS = 0023 GS = 0023 SS = 0010
    EAX = 00000001 EBX = 00000000 ECX = 00000000 EDX = 00000202
    ESI = 41035242 EDI = 00000000 EBP = A4EF2A04 ESP = A4EF29E4
    EIP = 971A9187 FLAGS = 00010293
    971A9187 3808 C

    Hello Andrew.
    Thanks for your answer.
    >>> ataubman<[email protected]> schrieb am Donnerstag, 8.
    April
    2010 um 01:46:
    > That looks basically fine, although the CPQ drivers and utilities are
    > really old and need updating from HP.
    >
    > What actual symptoms are you seeing, any errors or messages? Post them
    > here verbatim, if so.
    >
    > Can you please get SEG version 2 from 'Cool Solutions: SEG.NLM: NetWare
    > Memory Analyzer' (http://www.novell.com/coolsolutions/tools/14445.html),
    > load it, wait til the problem occurs, and get a copy of the segstats.txt
    > for the server (load seg, then from the seg main screen '/' ‑> Info
    ‑>
    > Write Segstats) then post that here.
    >
    > Can you also get config.nlm from fconfig17.zip, extract it to
    > SYS:SYSTEM on the problem server and do a "load config /jumba1se" from
    > the server, then post the resulting sys:system\config.txt, after
    > removing the file listing that occurs after the set commands, and any
    > sensitive infomation‑ eg serial number, public IP addresses, snmp
    > community strings, remote access passwords etc.
    Here is the Config.txt content:
    Novell File Server Configuration Report For Server: Fileserver
    Novell File Server Configuration Report Created: Thu, Apr 8, 2010 9:26 am
    Novell File Server Configuration Report. [Produced by CONFIG.NLM v3.10.17]
    Novell NetWare 5.70.08 October 3, 2008
    (C) Copyright 1983-2008 Novell Inc. All Rights Reserved.
    Server name...............: Fileserver
    OS Version................: v5.70
    OS revision number........: 8
    Product Version...........: v6.50
    Product Revision Number...: 8
    Server Up Time(D:H:M:Sec).: 0:00:39:05
    Serial number.............: XXXXXXXX
    Internal Net. Addr........: 0EB0C408h
    Security Restriction Level: 1
    SFT Level.................: 2
    Engine Type...............: NATIVE
    TTS Level.................: 1
    Total Server memory.......: 2559.60 MB or 2683933696 Bytes
    Processor speed rating....: 251285
    Original cache buffers....: 654207
    Current Cache Buffers.....: 481131
    LRU Sitting Time(D:H:M:S).: 0:00:39:04
    Current FSP's.............: 18
    Current MP FSP's..........: 45
    Current Receive Buffers...: 3000
    Directory cache buffers...: 0
    Workstations Connected....: 64
    Max Workstations Connected: 64
    Server language...........: ENGLISH (4)
    Timesync active...........: Yes
    Time is synchronized......: Yes
    Total Processors..........: 1
    Server DOS Country ID.....: 49
    Server DOS Code Page......: 850
    Boot Loader...............: DOS
    Top of LAN Driver Configuration Listing
    Signature.....: HardwareDriverMLID
    CFG Version...: 1.15
    Node Address..: 0012793A26F8
    Board Number..: 1
    Board Instance: 1
    Media Type....: ETHERNET_II
    MLID Version..: 10.70
    Slot..........: 10007
    I/O...........: None
    Memory........: F5FE0000h -> F5FEFFFFh
    IRQ...........: 5
    DMA...........: None
    Logical Name..: Q57_1_EII_EII
    End of LAN Driver Configuration Listing
    Top of Boot Drive Information
    SERVER.EXE loaded from...........: C:\NWSERVER\
    SERVER.EXE version...............: 1355757 bytes 10-03-2008 09:53am
    Total Space on Drive.............: 496 MB
    Available Space..................: 312 MB
    End of Boot Drive Information
    Top of Storage Device Configuration Information
    Storage Device Summary:
    0x0000 [V024-A0] Legacy FLOPPY Controller
    0x0001 [V024-A0-D1:0] Legacy Floppy
    0x0002 [V100-A100] USB OHCI Controller
    0x0003 [V321-A1] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    0x0004 [V321-A2] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    0x0005 [V025-A3] Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    0x0016 [V025-A3-D0:0] HL-DT-ST DVD-ROM GDR8163B f/w:0E15
    0x0006 [V504-A4] HP Unified RAID Driver
    0x0009 [V504-A4-D0:2] HP Smart Array 642 Slot 1 ID 0 LUN 2
    0x000E DOS Partitioned Media
    0x0015 [V504-A4-D0:2-P10F53] Free Partition Space
    0x0012 [V504-A4-D0:2-P0] NSS Partition
    0x0007 [V504-A4-D0:0] HP Smart Array 642 Slot 1 ID 0 LUN 0
    0x000A DOS Partitioned Media
    0x0013 [V504-A4-D0:0-P21EA6] Free Partition Space
    0x000B [V504-A4-D0:0-P0] Big DOS; OS/2; Win95 Partition
    0x000C [V504-A4-D0:0-P1F6] NSS Partition
    0x000F [V504-A4-D0:0-P2136] NSS Partition
    0x0008 [V504-A4-D0:1] HP Smart Array 642 Slot 1 ID 0 LUN 1
    0x000D DOS Partitioned Media
    0x0014 [V504-A4-D0:1-P10F53] Free Partition Space
    0x0010 [V504-A4-D0:1-P0] NSS Partition
    Storage Device Details:
    [V024-A0] Legacy FLOPPY Controller
    Media Manager object ID..: 0x0000
    Media Manager Object Type: Adapter
    Driver name..............: FLOPPY.HAM
    Assigned driver ID.......: 36
    Adapter number...........: 0
    Primary port address.....: 3F2
    Primary port length......: 4
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 6
    Interrupt 1..............: Not used
    Slot.....................: 0
    DMA0.....................: 2
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V024-A0-D1:0] Legacy Floppy
    Media manager object ID.....: 0x0001
    Media manager Object Type...: Device
    Device type.................: Unknown
    Capacity....................: 0 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 18
    Heads.......................: 2
    Cylinders...................: 80
    Block size, in bytes........: 1474560
    Activated...................: No
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 1
    Device Number...............: 0
    Adapter Number..............: 0
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    [V100-A100] USB OHCI Controller
    Media Manager object ID..: 0x0002
    Media Manager Object Type: Adapter
    Driver name..............: OHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 256
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: B
    Interrupt 1..............: Not used
    Slot.....................: 10011
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0090
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V321-A1] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    Media Manager object ID..: 0x0003
    Media Manager Object Type: Adapter
    Driver name..............: ADPT160M.HAM
    Assigned driver ID.......: 801
    Adapter number...........: 1
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 3
    Interrupt 1..............: Not used
    Slot.....................: 10004
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0010
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V321-A2] Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI
    Media Manager object ID..: 0x0004
    Media Manager Object Type: Adapter
    Driver name..............: ADPT160M.HAM
    Assigned driver ID.......: 801
    Adapter number...........: 2
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 3
    Interrupt 1..............: Not used
    Slot.....................: 10005
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0010
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V025-A3] Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    Media Manager object ID..: 0x0005
    Media Manager Object Type: Adapter
    Driver name..............: IDEATA.HAM
    Assigned driver ID.......: 37
    Adapter number...........: 3
    Primary port address.....: 1F0
    Primary port length......: 8
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: E
    Interrupt 1..............: Not used
    Slot.....................: 0
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V025-A3-D0:0] HL-DT-ST DVD-ROM GDR8163B f/w:0E15
    Media manager object ID.....: 0x0016
    Media manager Object Type...: Device
    Device type.................: CD-ROM
    Capacity....................: Unavailable
    Unit Size, in bytes.........: 512
    Sectors.....................: 0
    Heads.......................: 0
    Cylinders...................: 0
    Block size, in bytes........: 134215680
    Activated...................: No
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: Yes
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 0
    Adapter Number..............: 3
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    Removable drive mount status: Dismounted
    Removable drive lock status.: Not locked
    [V504-A4] HP Unified RAID Driver
    Media Manager object ID..: 0x0006
    Media Manager Object Type: Adapter
    Driver name..............: CPQRAID.HAM
    Assigned driver ID.......: 1284
    Adapter number...........: 4
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: F
    Interrupt 1..............: Not used
    Slot.....................: 1
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0200
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V504-A4-D0:2] HP Smart Array 642 Slot 1 ID 0 LUN 2
    Media manager object ID.....: 0x0009
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 69120 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 17433
    Block size, in bytes........: 131072
    Activated...................: Yes
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 2
    Adapter Number..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000E
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:2-P10F53] Free Partition Space
    Media Manager object ID......: 0x0015
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 142252064
    Size, in sectors.............: 1216
    [V504-A4-D0:2-P0] NSS Partition
    Media Manager object ID......: 0x0012
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 32
    Size, in sectors.............: 142252032
    [V504-A4-D0:0] HP Smart Array 642 Slot 1 ID 0 LUN 0
    Media manager object ID.....: 0x0007
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 138752 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 34866
    Block size, in bytes........: 131072
    Activated...................: Yes
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 0
    Adapter Number..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000A
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:0-P21EA6] Free Partition Space
    Media Manager object ID......: 0x0013
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 284505280
    Size, in sectors.............: 1280
    [V504-A4-D0:0-P0] Big DOS; OS/2; Win95 Partition
    Media Manager object ID......: 0x000B
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 32
    Size, in sectors.............: 1028128
    [V504-A4-D0:0-P1F6] NSS Partition
    Media Manager object ID......: 0x000C
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: Yes
    Beginning sector of partition: 1028160
    Size, in sectors.............: 16384000
    [V504-A4-D0:0-P2136] NSS Partition
    Media Manager object ID......: 0x000F
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 17412160
    Size, in sectors.............: 267093120
    [V504-A4-D0:1] HP Smart Array 642 Slot 1 ID 0 LUN 1
    Media manager object ID.....: 0x0008
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 69120 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 17433
    Block size, in bytes........: 131072
    Activated...................: Yes
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 1
    Adapter Number..............: 4
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000D
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V504-A4-D0:1-P10F53] Free Partition Space
    Media Manager object ID......: 0x0014
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 142252064
    Size, in sectors.............: 1216
    [V504-A4-D0:1-P0] NSS Partition
    Media Manager object ID......: 0x0010
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 32
    Size, in sectors.............: 142252032
    End of Storage Device Configuration Information
    * Volume Statistics for SYS *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 7933 MB
    Block Size.................: 4 KB
    Total Blocks...............: 2031080
    Free Blocks................: 319471
    Purgable Blocks............: 60225
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147261491
    Sectors per Block..........: 8
    Free Disk Space............: 1247 MB
    Purgable Disk Space........: 235 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for _ADMIN *
    File System................: Unknown
    Volume Size................: 4 MB
    Block Size.................: 4 KB
    Total Blocks...............: 1024
    Free Blocks................: 1024
    Purgable Blocks............: 0
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147483647
    Sectors per Block..........: 8
    Free Disk Space............: 4 MB
    Purgable Disk Space........: 0 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for DATA *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 268528 MB
    Block Size.................: 4 KB
    Total Blocks...............: 68743338
    Free Blocks................: 31625590
    Purgable Blocks............: 498549
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147209156
    Sectors per Block..........: 8
    Free Disk Space............: 123537 MB
    Purgable Disk Space........: 1947 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    Volume Name Name Spaces Loaded
    SYS DOS
    SYS MACINTOSH
    SYS NFS
    SYS LONG_NAMES
    _ADMIN DOS
    _ADMIN MACINTOSH
    _ADMIN NFS
    _ADMIN LONG_NAMES
    DATA DOS
    DATA MACINTOSH
    DATA NFS
    DATA LONG_NAMES
    Top of NDS/eDirectory Configuration Listing
    NDS Tree Name............: TREE
    NDS Server Name..........: CN=Fileserver.O=Han.T=TREE
    NDS Version..............: v20216.83
    sys:_netware attributes..: Hidden System SubDir ImmediatePurge
    *.NDS files..........: 402 (18.1 MB)
    *.DSD files..........: 1 (0 bytes)
    *.DSB files..........: 0 (0 bytes)
    NDS.* files..........: 5 (28.9 MB)
    NDS*.LOG files.......: 0 (0 bytes)
    NDO.* files..........: 3 (21.2 MB)
    NDO*.LOG files.......: 0 (0 bytes)
    *.41X files..........: 0 (0 bytes)
    *.OLD files..........: 0 (0 bytes)
    *.DOD files..........: 0 (0 bytes)
    *.DOB files..........: 0 (0 bytes)
    *.__D files..........: 0 (0 bytes)
    *.__B files..........: 0 (0 bytes)
    *.DTD files..........: 0 (0 bytes)
    *.DTB files..........: 0 (0 bytes)
    *.TAO files..........: 0 (0 bytes)
    *.WBQ files..........: 0 (0 bytes)
    Partition Name...........: T=TREE
    Partition Type...........: Master
    Partition State..........: On
    Partition Name...........: O=Han.T=TREE
    Partition Type...........: Master
    Partition State..........: On
    End of NDS/eDirectory Configuration Listing
    Top of Running Java Processes 2 Processes Running
    Class Name...........: com.apcc.m11.arch.application.Application
    Class ID.............: 729
    Class State..........: Running
    Class Name...........: org.apache.catalina.startup.Bootstrap
    Class ID.............: 641
    Class State..........: Running
    End of Running Java Processes
    Top of Server Memory Statistics
    Allocated Memory.................: 255.5 MB
    Cache Buffer Memory..............: 1879.4 MB
    Cache Moveable Memory............: 0.0 MB
    Cache Non-moveable Memory........: 0.0 MB
    Code Memory......................: 38.7 MB
    Data Memory......................: 19.0 MB
    Total Work Memory................: 2192.6 MB
    Other Cache Pages Memory.........: 1719.4 MB
    System Memory Under 4GB..........: 2559.6 MB
    Total Known Memory...............: 2559.6 MB
    End of Server Memory Statistics
    Top of SM BIOS Information
    BIOS Information
    Vendor.........................: Compaq
    Version........................: D14
    Starting Address Segment.......: F000h
    Release Date...................: 09/15/2004
    ROM Size.......................: 1984 kB
    ISA Supported..................: No
    MCA Supported..................: No
    EISA Supported.................: No
    PCI Supported..................: Yes
    PC Card (PCMCIA) Supported.....: No
    Plug and Play Supported........: Yes
    APM Supported..................: No
    Flash BIOS.....................: Yes
    BIOS Shadowing Allowed.........: Yes
    VL-VESA Supported..............: No
    ESCD Supported.................: No
    Boot From CD Supported.........: Yes
    Selectable Boot Supported......: Yes
    BIOS ROM Socketed..............: No
    Boot From PC Card Supported....: No
    EDD Supported..................: No
    ACPI Supported.................: Yes
    Legacy USB Supported...........: Yes
    AGP Supported..................: No
    I2O Boot Supported.............: No
    LS-120 Boot Supported..........: No
    ZIP Drive Boot Supported.......: No
    1394 Boot Supported............: No
    Smart Battery Supported........: No
    BIOS Boot Spec. Supported......: Yes
    Network Boot Supported.........: No
    System Information
    Manufacturer...................: Compaq
    Product Name...................: ProLiant ML350 G3
    Version........................: N/A
    Serial Number..................: 8087KZRZ3P
    Universal Unique ID............: 38303837 4B5A525A 33502020 20202020
    Wake-up Type...................: Power Switch
    System Enclosure
    Manufacturer...................: Compaq
    Type...........................: Rack Mount Chassis
    Version........................: N/A
    Serial Number..................: 8087KZRZ3P
    Asset Tag Number...............:
    Bootup State...................: Unknown
    Power Supply State.............: Unknown
    Thermal State..................: Unknown
    Security Status................: Unknown
    Processor Information
    Socket Designation.............: Proc 1
    Processor Type.................: Central Processor
    Processor Family...............: Intel Xeon
    Processor Manufacturer.........: Intel
    Processor ID...................: BFEBFBFF 00000F29
    Processor Version..............: N/A
    Voltage........................: 1 V
    External Clock.................: 533 MHz
    Max Speed......................: 3600 MHz
    Current Speed..................: 3066 MHz
    Socket Populated...............: Yes
    Status.........................: Enabled
    Processor Upgrade..............: ZIF Socket
    L1 Cache.......................: 8 kB
    L2 Cache.......................: 512 kB
    L3 Cache.......................: N/A
    Processor Information
    Socket Designation.............: Proc 2
    Processor Type.................: Central Processor
    Processor Family...............: Intel Xeon
    Processor Manufacturer.........: Intel
    Processor ID...................: 00000000 00000000
    Processor Version..............: N/A
    Voltage........................: 1 V
    External Clock.................: 100 MHz
    Max Speed......................: 3600 MHz
    Current Speed..................: N/A
    Socket Populated...............: No
    Status.........................: Unknown
    Processor Upgrade..............: ZIF Socket
    L1 Cache.......................: N/A
    L2 Cache.......................: N/A
    L3 Cache.......................: N/A
    Cache Information
    Socket Designation.............: Processor 1 Internal L1 Cache
    Operational Mode...............: Write Back
    Enabled........................: Yes
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 1
    Maximum Size...................: 32 kB
    Installed Size.................: 8 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: 4-way Set-Associative
    Cache Information
    Socket Designation.............: Processor 2 Internal L1 Cache
    Operational Mode...............: Unknown
    Enabled........................: No
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 1
    Maximum Size...................: 32 kB
    Installed Size.................: 0 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: 4-way Set-Associative
    Cache Information
    Socket Designation.............: Processor 1 Internal L2 Cache
    Operational Mode...............: Write Back
    Enabled........................: Yes
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 2
    Maximum Size...................: 2048 kB
    Installed Size.................: 512 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: Other
    Cache Information
    Socket Designation.............: Processor 2 Internal L2 Cache
    Operational Mode...............: Unknown
    Enabled........................: No
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 2
    Maximum Size...................: 2048 kB
    Installed Size.................: 0 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: Other
    Cache Information
    Socket Designation.............: Processor 1 Internal L3 Cache
    Operational Mode...............: Write Back
    Enabled........................: Yes
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 3
    Maximum Size...................: 1024 kB
    Installed Size.................: 0 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: Other
    Cache Information
    Socket Designation.............: Processor 2 Internal L3 Cache
    Operational Mode...............: Unknown
    Enabled........................: No
    Location.......................: Internal
    Socketed.......................: No
    Cache Level....................: 3
    Maximum Size...................: 1024 kB
    Installed Size.................: 0 kB
    Supported SRAM Type............: Burst
    Current SRAM Type..............: Burst
    Cache Speed....................: N/A
    Error Correction Type..........: Unknown
    System Cache Type..............: Unknown
    Associativity..................: Other
    Port Connector Information
    Internal Reference Designator..: J50
    Internal Connector Type........: Access Bus (USB)
    External Reference Designator..: USB Port 1
    External Connector Type........: Access Bus (USB)
    Port Type......................: USB
    Port Connector Information
    Internal Reference Designator..: J50
    Internal Connector Type........: Access Bus (USB)
    External Reference Designator..: USB Port 2
    External Connector Type........: Access Bus (USB)
    Port Type......................: USB
    System Slots
    Slot Designation...............: PCI Slot 1
    Slot Type......................: PCI-X
    Slot Data Bus Width............: 64 bit
    Current Usage..................: In use
    Slot Length....................: Long
    Provides 5.0 Volts.............: No
    Provides 3.3 Volts.............: Yes
    Shared Slot....................: No
    Hot-plug Devices Supported.....: No
    System Slots
    Slot Designation...............: PCI Slot 2
    Slot Type......................: PCI-X
    Slot Data Bus Width............: 64 bit
    Current Usage..................: Available
    Slot Length....................: Long
    Provides 5.0 Volts.............: No
    Provides 3.3 Volts.............: Yes
    Shared Slot....................: No
    Hot-plug Devices Supported.....: No
    System Slots
    Slot Designation...............: PCI Slot 3
    Slot Type......................: PCI-X
    Slot Data Bus Width............: 64 bit
    Current Usage..................: Available
    Slot Length....................: Long
    Provides 5.0 Volts.............: No
    Provides 3.3 Volts.............: Yes
    Shared Slot....................: No
    Hot-plug Devices Supported.....: No
    System Slots
    Slot Designation...............: PCI Slot 4
    Slot Type......................: PCI-X
    Slot Data Bus Width............: 64 bit
    Current Usage..................: Available
    Slot Length....................: Long
    Provides 5.0 Volts.............: No
    Provides 3.3 Volts.............: Yes
    Shared Slot....................: No
    Hot-plug Devices Supported.....: No
    System Slots
    Slot Designation...............: PCI Slot 5
    Slot Type......................: PCI
    Slot Data Bus Width............: 32 bit
    Current Usage..................: Available
    Slot Length....................: Short
    Provides 5.0 Volts.............: Yes
    Provides 3.3 Volts.............: No
    Shared Slot....................: No
    Hot-plug Devices Supported.....: No
    Physical Memory Array
    Location.......................: System Board or Motherboard
    Use............................: System Memory
    Memory Error Correction........: Single-bit ECC
    Maximum Capacity...............: 8192 MB
    Error Detected.................: N/A
    Number of Memory Devices.......: 4
    Memory Device
    Error Detected.................: N/A
    Total Width....................: 72 bits
    Data Width.....................: 64 bits
    Size...........................: 512 MB
    Form Factor....................: DIMM
    Device Locator.................: DIMM 01
    Bank Locator...................: N/A
    Memory Type....................: DDR
    Memory Type Details............: CMOS
    Speed..........................: 266 MHz
    Memory Device
    Error Detected.................: N/A
    Total Width....................: 72 bits
    Data Width.....................: 64 bits
    Size...........................: 512 MB
    Form Factor....................: DIMM
    Device Locator.................: DIMM 02
    Bank Locator...................: N/A
    Memory Type....................: DDR
    Memory Type Details............: CMOS
    Speed..........................: 266 MHz
    Memory Device
    Error Detected.................: N/A
    Total Width....................: 72 bits
    Data Width.....................: 64 bits
    Size...........................: 512 MB
    Form Factor....................: DIMM
    Device Locator.................: DIMM 03
    Bank Locator...................: N/A
    Memory Type....................: DDR
    Memory Type Details............: CMOS
    Speed..........................: 266 MHz
    Memory Device
    Error Detected.................: N/A
    Total Width....................: 72 bits
    Data Width.....................: 64 bits
    Size...........................: 1024 MB
    Form Factor....................: DIMM
    Device Locator.................: DIMM 04
    Bank Locator...................: N/A
    Memory Type....................: DDR
    Memory Type Details............: CMOS
    Speed..........................: 266 MHz
    End of SM BIOS Info
    Top of file. [SYS:ETC\CRONTAB]
    # Run perl script to rotate logs each midnight.
    0 0 * * * perl sys:/apache2/rotate.pl sys:/apache2/rotate.ini --noscreen
    # 30 23 * * 4 sys:/SYSTEM/cr_image.ncf
    End of file. [SYS:ETC\CRONTAB]
    Top of file. [SYS:ETC\GATEWAYS]
    # SYS:ETC\GATEWAYS
    # List of unusual routes which must be added to the routing
    # database statically.
    # Normally you will not need this file, as most routing information
    # should be available through the routing protocols.
    # Examples. These entries will not be useful to you.
    #net milnet gateway sj-in5 metric 3 active # to milnet through in5.
    #net arpa gateway sj-in1 passive # to arpanet. in1 is passive.
    #host 130.57.6.40 gateway 192.67.172.55 # route with numbers.
    Net 0 Gateway xxx.xxx.xxx.104 Metric 1 Passive
    End of file. [SYS:ETC\GATEWAYS]
    Top of file. [SYS:ETC\HOSTS]
    # SYS:ETC\HOSTS
    # Mappings of host names and host aliases to IP address.
    127.0.0.1 loopback lb localhost # normal loopback address
    # examples from Novell network
    # 130.57.4.2 ta tahiti ta.novell.com loghost
    # 130.57.6.40 osd-frog frog
    # 130.57.6.144 sj-in5 in5
    # 192.67.172.71 sj-in1 in1
    # interesting addresses on the Internet
    # 192.67.67.20 sri-nic.arpa nic.ddn.mil nic
    # 26.2.0.74 wsmr-simtel20.army.mil simtel20
    xxx.xxx.xxx.102 Fileserver.local.net Fileserver
    xxx.xxx.xxx.203 MAIL.local.net MAIL
    xxx.xxx.xxx.106 dc-01.local.net2
    xxx.xxx.xxx.107 Fileserver2.local.net Fileserver2
    End of file. [SYS:ETC\HOSTS]
    Top of file. [SYS:ETC\HOSTNAME]
    xxx.xxx.xxx.102 Fileserver.local.net
    End of file. [SYS:ETC\HOSTNAME]
    Top of file. [SYS:ETC\JAVA.CFG]
    End of file. [SYS:ETC\JAVA.CFG]
    Top of file. [SYS:ETC\NETINFO.CFG]
    #!VERSION=2.3
    #! --- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING ----
    #! This file was created by the Internetworking Configuration Console.
    #! It is intended to be modified ONLY by the configurator (INETCFG.NLM).
    #! Tampering with this file may cause severe malfunctioning of the system.
    #! The configurator will check for tampering and abort if it is detected.
    #!SERVERTYPE=NORMAL
    #!UIMODE=NORMAL
    #!BEGINGENLOAD
    LOAD SNMP
    LOAD BCALLSRV
    #!END
    #!BEGINTSMLOAD
    #!END
    #!BEGINBOARD DRVR=Q57 NAME=Q57_1_EII STATUS=ENABLED NUMPORTS=1 DRVRTYPE=LAN
    VARIABLEPORTS=NO PORTPARAM=CHANNEL SLOT=10007
    #Transferred from AUTOEXEC.NCF
    #!BEGINPORT NAME=Q57_1_EII NUMBER=1 STATUS=ENABLED FRAMES=YES NUMLINKS=1
    MEDIA=EtherTsm WANFRAME=UNCONFIGURED
    #Transferred from AUTOEXEC.NCF
    #!REFCOUNT=1
    LOAD Q57 NAME=Q57_1_EII_EII FRAME=ETHERNET_II SLOT=10007
    #!END
    #!END
    #!BEGINPROTO PROTO=TCPIP STATUS=ENABLED
    LOAD Tcpip RIP=No Static=Yes LoadSharing=No Forward=No VIPASupport=No
    #!BEGINBIND STATUS=ENABLED
    BIND IP Q57_1_EII_EII ARP=Yes Mask=255.255.255.0 Address=xxx.xxx.xxx.102
    #xxx.xxx.xxx.102
    #!END
    #!END
    End of file. [SYS:ETC\NETINFO.CFG]
    Top of file. [SYS:ETC\RESOLV.CFG]
    domain local.net
    domain local.net2
    nameserver xxx.xxx.xxx.102
    End of file. [SYS:ETC\RESOLV.CFG]
    Top of file. [SYS:ETC\SLP.CFG]
    ; This is a sample of the slp configuration file.
    ; Two types of entries can be made: 1) DA entries, 2) SA Register Filters.
    ; The DA entry allows static configuration of a known DA. This would be
    used
    ; when the DA was out of multicast range and DHCP was not being used to
    ; configure the DA.
    ; The static DA configuration format is as follows 'DA <addr type>,
    <addr>'.
    ; The first word must be "DA". The addr type is the address type.
    Currently, only
    ; IPV4 has been defined. IPV6 will be defined in the future. The addr is
    ; the address specified.
    ; The following is an example of a static DA.
    ; DA IPV4, 130.1.1.1
    ; The SA Register Filter would be used when the administrator wanted all
    services
    ; of a specific service type being mapped to a single scope. For example,
    ; the administrator wanted all "lpr" printers being registered to scope
    "printer".
    ; The format is as follows: 'REGISTER TYPE "<type name>" to SCOPE "<scope
    name>"'.
    ; The parser will look for REGISTER, TYPE, and SCOPE as keywords followed
    by quote on
    ; a single line. Example:
    ; REGISTER TYPE "lpr" to SCOPE "eng"
    ; The last line must contain a line feed and char return. A semi-colon
    specifies a
    ; comment.
    DA IPV4, xxx.xxx.xxx.102
    End of file. [SYS:ETC\SLP.CFG]
    Top of file. [SYS:ETC\TCPIP.CFG]
    AutonomousSystem 0
    Protocol rip off {
    Interface {
    Address xxx.xxx.xxx.102
    Port Q57_1_EII_EII
    Status on
    Cost 1
    Poison off
    SplitHorizon on
    UpdateTime 30
    GarbageTime 120
    ExpireTime 180
    OriginateDefault off
    Version ripI
    Mode normal
    Protocol egp off {
    Protocol ospf off {
    Interface {
    Address xxx.xxx.xxx.102
    Port Q57_1_EII_EII
    Status on
    Cost 1
    AreaId 0.0.0.0
    Priority 1
    RetransmissionInterval 5
    TransitDelay 1
    HelloInterval 10
    RouterDeadInterval 40
    Nbma {
    PollInterval 120
    Neighbor {
    Interface {
    Address xxx.xxx.xxx.102
    AddressMask 255.255.255.0
    Port Q57_1_EII_EII
    Type lan
    RouterDiscovery no
    SolicitationAddress multicast
    NATStatus Disabled
    SecIPStatus Disabled
    TOSStatus Disabled
    TOSValue 0
    ARPTimerStatus Disabled
    ARPCacheUpdateTimeout 300
    ARPCacheStaleTimeout 300
    GroupedInterface no
    PrimaryInterface no
    LBPolicy 0
    Arpable yes
    NetworkAddress xxx.xxx.xxx.0
    VIPASupport Enabled
    BdgStatus Enabled
    ForwardIPSourceRouting off
    NATFiltering off
    Deadgatewaydetection off {
    T0 30
    T1 2
    LoadBalancing off {
    LBInterval 2
    FaultTolerance on {
    FTInterval 2
    DefIPAddr 0.0.0.0
    End of file. [SYS:ETC\TCPIP.CFG]
    Top of file. [SYS:ETC\IPWAN.CFG]
    End of file. [SYS:ETC\IPWAN.CFG]
    Top of file. [SYS:SYSTEM\ABEND.LOG]
    File size is 177707 bytes.
    Top of file. [SYS:SYSTEM\TIMESYNC.CFG]
    # TimeSync.Cfg is now updated automatically,
    # when changes are made on the System Console
    # TIMESYNC Configuration Parameters
    Configured Sources = ON
    DEBUG = 7
    Polling Count = 3
    Polling Interval = 600
    Service Advertising = ON
    Synchronization Radius = 2000
    Type = SINGLE
    NTP Client Port = 0
    # TIMESYNC Configured time source list
    TIME SOURCE = 130.133.1.10:123
    End of file. [SYS:SYSTEM\TIMESYNC.CFG]
    Top of file. [SYS:SYSTEM\AUTOEXEC.NCF]
    SEARCH ADD SYS:\ni\update\bin
    SET BINDERY CONTEXT = O=HAN
    SET DAYLIGHT SAVINGS TIME OFFSET = 1:00:00
    SET START OF DAYLIGHT SAVINGS TIME = (MARCH SUNDAY LAST 2:00:00 AM)
    SET END OF DAYLIGHT SAVINGS TIME = (OCTOBER SUNDAY LAST 3:00:00 AM)
    SET TIME ZONE = ECT-1ECTD
    SET MAXIMUM RECORD LOCKS PER CONNECTION = 10000
    SET MAXIMUM RECORD LOCKS = 20000
    # Note: The Time zone information mentioned above
    # should always precede the SERVER name.
    SEARCH ADD SYS:\JAVA\BIN
    SEARCH ADD SYS:\JAVA\NWGFX\BIN
    SEARCH ADD SYS:\JAVA\NJCLV2\BIN
    SEARCH ADD SYS:\NI\UPDATE\BIN
    # WARNING!!
    FILE SERVER NAME Fileserver
    # WARNING!!
    # If you change the name of this server, you must update
    # the server name in all the licenses that are assigned
    # to it using iManager.
    SERVERID EB0C408
    load conlog MAXIMUM=100
    ; Network driver LOADs and BINDs are initiated via
    ; INITSYS.NCF. The actual LOAD and BIND commands
    ; are contained in INITSYS.NCF and NETINFO.CFG.
    ; These files are in SYS:ETC.
    sys:etc\initsys.ncf
    #LOAD TCPIP
    #LOAD Q57.LAN SLOT=10007 FRAME=Ethernet_II NAME=Q57_1_EII
    #BIND IP Q57_1_EII addr=xxx.xxx.xxx.102 mask=255.255.255.0
    gate=xxx.xxx.xxx.104
    MOUNT ALL
    IPMINIT.NCF
    LOAD SLPDA
    load nile.nlm
    load httpstk.nlm /SSL /keyfile:"SSL CertificateIP"
    LOAD NICISDI.XLM
    LOAD SASDFM.XLM
    #RCONAG6.NLM is required by RConsoleJ
    #LOAD SPXS
    LOAD RCONAG6 xxxxxxxxxx 2034 16800 2036
    LOAD CPQHLTH
    CPQSNMP
    # Monitor laden
    LOAD MONITOR
    # Drucker
    LOAD BROKER "Fileserver_Broker.HQ"
    LOAD NDPSM "NDPS-Manager"
    #SET TIMESYNC TYPE = SINGLE
    # Loading Posix Semantic Agent
    # -- Added by Scripting Install --
    SCRIPT.NCF
    SEARCH ADD SYS:\APACHE2
    AP2WEBUP
    LOAD NLDAP.NLM
    LOAD NAMED.NLM
    LOAD DHCPSRVR.NLM
    # ADMSRVUP
    SYS:\SYSTEM\NMA\NMA5.NCF
    BSTART.NCF
    LOAD PORTAL.NLM
    LOAD NDSIMON.NLM
    # tc4admin begin
    SEARCH ADD SYS:/tomcat/4/bin
    tcadmup.ncf
    # tc4admin end
    # tomcat4 begin
    # sys:/tomcat/4/bin/tomcat4.ncf
    # tomcat4 end
    # Storage Management Services components required for Backup
    SMSSTART.NCF
    LOAD EMBOX.NLM
    openwbem.ncf
    #SEARCH ADD SYS:\zenworks\OnDemand\bin
    #UsageServer.ncf
    #CommerceMaintenance.ncf
    # Start APC's PowerChute Network Shutdown application
    SYS:/BIN/UNIXENV.NCF
    #---Added by rcd.rpm install ---
    SEARCH ADD sys:/usr/sbin
    #---Added by rug.rpm install ---
    SEARCH ADD sys:/usr/bin
    SEARCH ADD sys:\powerchute
    delay 5
    SYS:\PowerChute\APCpcns
    #ZENworks Database Settings
    # SYS:\system\mgmtdbs.ncf
    #ZENworks Inventory Settings
    # StartInv.ncf
    # SYS:\system\zfdstart.ncf
    # search add sys:\sweep
    # SWEEP.NLM
    LOAD CRON.NLM
    # SEARCH ADD SYS:\tomcat\5.0\bin
    # tomcat5
    LOAD TOOLBOX
    # load SURVEY -w10 -cWed.12,7
    # -- Added by CIFS Install --
    #CIFSSTRT.NCF
    # -- End of CIFS Install --
    # --The following line should be uncommented if the SNMP subagent is
    desired
    #load dssnmpsa.nlm
    LOAD PKI.NLM
    # Begin SecretStore commands
    LOAD NICISDI.XLM s
    LOAD SASDFM.XLM
    # SSNCP automatically loads SSS.NLM without any command line options.
    # If you want to specify options, uncomment the following line and add
    # the appropriate options.
    # LOAD SSS
    LOAD SSNCP
    # End SecretStore commands
    # BackupExec Agent starten
    BESTART
    load SURVEY -w10 -cWed.12,7
    End of file. [SYS:SYSTEM\AUTOEXEC.NCF]
    Top of file. [C:\CONFIG.SYS]
    Files=50
    Buffers=30
    Lastdrive=Z
    End of file. [C:\CONFIG.SYS]
    Top of file. [C:\AUTOEXEC.BAT]
    C:
    CD \NWSERVER
    SERVER -nl
    End of file. [C:\AUTOEXEC.BAT]
    Top of file. [C:\NWSERVER\STARTUP.NCF]
    LOAD ACPIDRV.PSM
    ######## End PSM Drivers ########
    LOAD CPQSHD.CDM
    LOAD IDECD.CDM
    ######## End CDM Drivers ########
    LOAD ADPT160M.HAM SLOT=10004
    LOAD ADPT160M.HAM SLOT=10005
    LOAD IDEATA.HAM SLOT=10010
    LOAD CPQRAID.HAM SLOT=1
    ######## End HAM Drivers ########
    LOAD KEYB.NLM Germany
    LOAD CHARSET.NLM CP850
    End of file. [C:\NWSERVER\STARTUP.NCF]
    Top of SET Parameters.
    * Communications *
    UNAUTHORIZED IP SCAN INTERVAL = 4
    DHCP TEST = OFF
    DHCP DUMP = 0
    DHCP GLOBAL POLL = 30
    DHCP DEBUG = 0
    IPX CMD Mode Routing = OFF
    Preserve Secondary Ipaddress after Reinitialize System = ON
    Routing Table Cleanup Interval = 3
    UDP Min Port Limit = 1024
    UDP Max Port Limit = 5000
    TCP Min Port Limit = 1024
    NIRMan Transaction Time-out Period = 10
    IPMGMT Debug = OFF
    IPMGMT Push Pull Interval = 2
    IPMGMT Fetch Expiry Time = 5
    Tcp Maximum Initial Receive Window = 6
    Maximum Pending TCP Connection Requests = 128
    PGM Socket Send Buffer Size = 409600
    BSD Socket default Buffer Size in Bytes = 65536
    Tcp Sockets Debug = 0
    IPSEC maximum incoming queue length = 0
    IPSEC maximum incoming WorkToDos = 0
    Discard Oversized Ping Packets = ON
    Largest Ping Packet Size = 10240
    Tcp IPCP Debug = 0
    Tcp WAN Debug = 0
    Tcp ICMP Debug = 0
    Tcp ECB Debug = 0
    Tcp IP Debug = 0
    Maximum Interface MTU = 576
    IP Load Sharing = ON
    RIP2 aggregation override = OFF
    Always Allow IP Fragmentation = OFF
    UDP Debug = 0
    Tcp RIP Debug = 0
    Tcp Arp Debug = OFF
    Use Specified MTU = OFF
    ip address management override = OFF
    Allow IP Address Duplicates = OFF
    Allow non local broadcasts = 0
    TOS for IP packets = 0
    Arp entry update time = 300
    Arp entry expiry time = 300
    Tcp Ip Maximum Small ECBs = 65534
    ICMP Redirect Timeout = 3
    Maximum Wait States = 0
    Largest UDP Packet Size = 33792
    Discard Oversized UDP Packets = ON
    TCP UDP Diagnostic Services = OFF
    Tcp Maximum Packet Retransmission = 12
    TCP Path MTU Black Hole Detection and Recovery = OFF
    Tcp Minimum Retransmission Timeout = 2
    Tcp Maximum Initial Window = 4
    Tcp Connection Establishment timeout = 335
    Tcp Trace = 0
    TCP Max Port Limit = 54999
    Tcp Timer Schedule Rate = 3
    TCP Minshall Algorithm = OFF
    TCP Nagle Algorithm = ON
    TCP Delayed Acknowledgement = ON
    Tcp Number Of Preallocated PCBs = 1024
    TCP Sack Option = ON
    TCP Large Window Option = ON
    TCP Defend Land Attacks = ON
    TCP Secure ISN = ON
    Netlib Maximum Small ECBs = 1024
    TCPIP Scheduler Inactive = OFF
    DISPLAY CSL OPERATIONAL STATUS = OFF
    CALL SUPPORT LAYER DEBUG = OFF
    Enable Packet Burst Statistics Screen = OFF
    Maximum RIP SAP Events = 100
    Allow IPXRTR load in CMD Mode = ON
    Allow IPX Bind in CMD Mode = OFF
    IPX Router Broadcast Delay = 0
    IPX NetBIOS Replication Option = 2
    Use Old Watchdog Packet Type = OFF
    REPLY TO GET NEAREST SERVER = OFF
    Connection Table Expansion Count = 16
    Dead Connection Timeout = 4.9 SEC
    Enable Connection Manager Screen = OFF
    Maximum Connection Object Reuse Count = 32
    Disable Broadcast Notifications Process = OFF
    Disable Watchdog Process = OFF
    Enable Watchdog Screen = OFF
    Number Of Watchdog Packets = 10
    Delay Between Watchdog Packets = 59.3 SEC
    Delay Before First Watchdog Packet = 4 MIN 56.6 SEC
    Console Display Watchdog Logouts = OFF
    Maximum Packet Receive Buffers = 10000
    Minimum Packet Receive Buffers = 3000
    Maximum Physical Receive Packet Size = 4224
    New Packet Receive Buffer Wait Time = 0.1 SEC
    Maximum Interrupt Events = 10
    * Memory *
    Cache Pool Control Type = 1
    Auto Tune Server Memory = ON
    Restart Server on Address Space Cleanup Failure = OFF
    Memory Protection Abend After Restart Count = OFF
    Memory Protection Restart Count = 1
    Memory Protection No Restart Interval = 1
    Memory Protection Fault Cleanup = ON
    VM Allocation Information = OFF
    VM Cache Pool Percentage = 80
    VM Cache Pool Maximum Pages Percentage = 0
    VM Cache Pool Free Minimum Pages = 48
    VM Cache Pool Free Lots of Pages = 512
    VM Cache Pool Free Desired Pages = 256
    VM Cache Pool Minimum Pages = 10
    VM Cache Pool Maximum Pages = 4294967295
    Upper Page IO Threshold = 32
    Maximum RSS Pages = 5000
    Max Deficit = 256
    FS Cache Pool Transfer In Yield Type = 0
    FS Cache Pool Minimum Percentage To Transfer Out = 4
    FS Cache Pool Minimum Percentage To Transfer In = 4
    FS Cache Pool Minimum Pages To Transfer Out = 5
    FS Cache Pool Minimum Pages To Transfer In = 5
    FS Cache Pool Minimum Pages = 1000
    FS Cache Pool Maximum Percentage To Transfer Out = 10
    FS Cache Pool Maximum Percentage To Transfer In = 10
    FS Cache Pool Maximum Pages To Transfer Out = 20000
    FS Cache Pool Maximum Pages To Transfer In = 2000
    FS Cache Pool LRU Medium = 30
    FS Cache Pool LRU Low = 45
    FS Cache Pool LRU High = 60
    FS Cache Pool Lots of Pages = 1500
    FS Cache Pool Desired Pages = 1250
    FS Cache Pool Constrain Transfer Out Type = 1
    FS Cache Pool Constrain Transfer In Type = 1
    FS Cache Pool Blocks Transferred In Before Yield = 10
    Dynamic VM Versus Cache Subsystem Differential = OFF
    Dynamic Maximum RSS = OFF
    Desired VM Versus Cache Subsystem Differential = 0
    Deficit Age = 10
    Cache Pool Thread Yield Type = 0
    Cache Pool Thread Timeout = 5
    Cache Pool Pages Transferred Before Yield = 100
    Cache Pool Minimum Percentage To Transfer Out = 4
    Cache Pool Minimum Percentage To Transfer In = 4
    Cache Pool Minimum Pages To Transfer Out = 5
    Cache Pool Minimum Pages To Transfer In = 5
    Cache Pool Maximum Percentage To Transfer Out = 10
    Cache Pool Maximum Percentage To Transfer In = 10
    Cache Pool Maximum Pages To Transfer Out = 20000
    Cache Pool Maximum Pages To Transfer In = 10000
    Constrain Pages To Transfer Out Type = 0
    Constrain Pages To Transfer = 0
    Cache Pool Block Transfer Mode = ON
    Average Page In Alert Threshold = 2000
    VM Garbage Collector Period = 4 MIN 59.9 SEC
    VM Garbage Collector Looks = 10000
    Interactive Screen Timeout = 59 MIN 58.7 SEC
    Wakeup Page Cleaner Delay = 25
    Max Page Cleaner Outstanding IOs = 50
    Max Page Cleaner Pushes = 1000
    Max Page Cleaner Looks = 1000
    Min Age Quantum = 1
    Max Age Quantum = 60
    Init Age Quantum = 5
    Elapse Time Ager Interval = 144
    Nonlocked Minimum Pages = 5
    Low Grow Rate = 2
    High Grow Rate = 8
    Maximum Pages To Trim = 10
    Dynamic Age Quantum = OFF
    Engage Ager = ON
    APT Free Dirty Page Threshold = 1000
    APT Free Clean Page Threshold = 50
    VM Debug Screen = OFF
    File Cache Maximum Size = 1073741825
    File Service Memory Optimization = 1
    Logical Space Compression = ON
    Garbage Collection Interval = 5 MIN
    Alloc Memory Check Flag = OFF
    Reserved Buffers Below 16 Meg = 300
    Jiggle Memory = OFF
    Check Cache = OFF
    * Traditional File System *
    Volume Log File State = 1
    Volume TTS Log File State = 1
    Volume Log File Overflow Size = 4194304
    Volume TTS Log File Overflow Size = 4194304
    TTS Screen = OFF
    Auto TTS Backout Flag = ON
    TTS Abort Dump Flag = OFF
    TTS UnWritten Cache Wait Time = 1 MIN 5.9 SEC
    TTS Backout File Truncation Wait Time = 59 MIN 19.2 SEC
    Dirty Directory Cache Delay Time = 0.5 SEC
    Directory Cache Allocation Wait Time = 2.2 SEC
    Directory Cache Buffer NonReferenced Delay = 5.5 SEC
    Maximum Directory Cache Buffers = 2000
    Minimum Directory Cache Buffers = 500
    Maximum Number Of Internal Directory Handles = 100
    Maximum Number Of Directory Handles = 20
    Open Callback Timeout = 29.7 SEC
    Maximum Record Locks Per Connection = 10000
    Maximum File Locks Per Connection = 2500
    Maximum Record Locks = 20000
    Maximum File Locks = 200000
    Maximum Rights Vector Entry Pool = 128
    Read Ahead Enabled = ON
    Read Ahead LRU Sitting Time Threshold = 10 SEC
    Minimum File Cache Buffers = 20
    Maximum Concurrent Disk Cache Writes = 750
    Dirty Disk Cache Delay Time = 3.3 SEC
    Minimum File Cache Report Threshold = 20
    Maximum Concurrent opens per file and connection = 10000
    Maximum Wait Time For Limbo Space during Volume Mount = 19.8 SEC
    Automatically Repair Bad Volumes = ON
    Check SubAllocation = OFF
    Minimum File Delete Wait Time = 1 MIN 5.9 SEC
    File Delete Wait Time = 5 MIN 29.6 SEC
    Allow Deletion Of Active Directories = ON
    Maximum Percent of Volume Space allowed for Extended Attributes = 10
    Maximum Extended Attributes per File or Path = 16
    Purge Files On Dismount = OFF
    Fast Volume Mounts = ON
    Maximum Percent Of Volume Used By Directory = 13
    Maximum Subdirectory Tree Depth = 25
    Volume Low Warn All Users = ON
    Volume Low Warning Reset Threshold = 256
    Volume Low Warning Threshold = 256
    Turbo FAT Re-Use Wait Time = 5 MIN 29.6 SEC
    Compress Screen = OFF
    Allow Unowned Files To Be Extended = ON
    Auto Mount Mirrored Volume Containing Inactive Device = OFF
    * Common File System *
    Maximum Transactions = 10000
    Maximum Concurrent Directory Cache Writes = 75
    Immediate Purge Of Deleted Files = OFF
    Compression Daily Check Stop Hour = 6
    Compression Daily Check Starting Hour = 0
    Minimum Compression Percentage Gain = 20
    Enable File Compression = ON
    Maximum Concurrent Compressions = 2
    Convert Compressed To Uncompressed Option = 1
    Decompress Percent Disk Space Free To Allow Commit = 10
    Decompress Free Space Warning Interval = 31 MIN 18.5 SEC
    Deleted Files Compression Option = 1
    Days Untouched Before Compression = 14
    * Novell Storage Services *
    *************************************

  • Sun Java System Application Server8 can not startup (help me )

    I work in an japanese compay in China. recently, my JSC can not work
    who can help me
    the error infomation is :
    The Sun Java System Application Server could not start:
    Possible reasons:
    1.port conflict
    2.Incorrect server configuartion
    3.corrputed deployed application
    my java Studio Creator version: 2004Q2 Update9
    I have used this tool for three weeks , in the frist week. everything is ok.
    no probroblem happened. in the second week ,sometimes my JSC can not startup, so I restarted my JSC. and it can work again. later, the same problem happened again. when I restarted my JSC , it sill does not work, so I have to restart my computer and it startup successfully,
    two days later, the same problem happened again. I restarted my computer , it still did not work. so I have to change my port number in the domain.xml. sometimes it woks well, but sometimes I can't not startup.
    in the third week, no matter what I do, the problem can not be solved.
    some of my colleagues don't have such problem. but some of them have the same problem. when I run my project on the computer that don't have such problem , it can startup. I don't know why, just a little weird.
    till now , no one in our company can tell why this problem happened.
    and I believe that anybody who use JSC will encountered this error sooner or later.
    who can tell me why will this problem happen? and where can I find some related imformation about this problem. thanks!!!!!!
    my domain.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE domain PUBLIC "-//Sun Microsystems Inc.//DTD Application Server 8.0 Domain//EN" "http://www.sun.com/software/appserver/dtds/sun-domain_1_0.dtd">
    <!--
    Copyright 2004 Sun Microsystems, Inc. All rights reserved.
    SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
    -->
    <!-- Generated from default-domain.xml.template -->
    <domain application-root="${com.sun.aas.instanceRoot}/applications" log-root="${com.sun.aas.instanceRoot}/logs">
    <applications>
    <j2ee-application enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-apps/MEjbApp" name="MEjbApp" object-type="system-all"/>
    <j2ee-application enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-apps/__ejb_container_timer_app" name="__ejb_container_timer_app" object-type="system-all"/>
    <web-module context-root="/web1" enabled="true" location="${com.sun.aas.installRoot}/lib/install/applications/adminapp/adminapp_war" name="adminapp" object-type="system-admin">
    <!-- System Web Module - DO NOT DELETE! -->
    </web-module>
    <web-module context-root="/asadmin" enabled="true" location="${com.sun.aas.installRoot}/lib/install/applications/admingui/adminGUI_war" name="admingui" object-type="system-admin">
    <!-- System Web Module - DO NOT DELETE! -->
    </web-module>
    <web-module context-root="/com_sun_web_ui" enabled="true" location="${com.sun.aas.installRoot}/lib/install/applications/com_sun_web_ui" name="com_sun_web_ui" object-type="system-admin">
    <!-- System Web Module - DO NOT DELETE! -->
    </web-module>
    </applications>
    <resources>
    <jdbc-resource enabled="true" jndi-name="jdbc/__TimerPool" object-type="system-all" pool-name="__TimerPool"/>
    <jdbc-resource enabled="true" jndi-name="jdbc/PointBase" object-type="user" pool-name="PointBasePool"/>
    <jdbc-connection-pool connection-validation-method="auto-commit" datasource-classname="com.pointbase.xa.xaDataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="true" max-pool-size="32" max-wait-time-in-millis="60000" name="__TimerPool" pool-resize-quantity="2" res-type="javax.sql.XADataSource" steady-pool-size="8">
    <property name="DatabaseName" value="jdbc:pointbase:embedded:ejbtimer,database.home=${com.sun.aas.instanceRoot}/lib/databases"/>
    <property name="User" value="pbPublic"/>
    <property name="Password" value="pbPublic"/>
    </jdbc-connection-pool>
    <jdbc-connection-pool connection-validation-method="auto-commit" datasource-classname="com.pointbase.xa.xaDataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="true" max-pool-size="32" max-wait-time-in-millis="60000" name="PointBasePool" pool-resize-quantity="2" res-type="javax.sql.XADataSource" steady-pool-size="8">
    <property name="DatabaseName" value="jdbc:pointbase:server://localhost:9092/sun-appserv-samples"/>
    <property name="Password" value="pbPublic"/>
    <property name="User" value="pbPublic"/>
    </jdbc-connection-pool>
    </resources>
    <configs>
    <config name="server-config">
    <http-service>
    <http-listener acceptor-threads="100" address="0.0.0.0" default-virtual-server="server" enabled="true" id="http-listener-1" port="28080" security-enabled="false" server-name="" xpowered-by="true">
    </http-listener>
    <http-listener acceptor-threads="100" address="0.0.0.0" default-virtual-server="server" enabled="true" id="http-listener-2" port="21043" security-enabled="true" server-name="" xpowered-by="true">
    </http-listener>
    <http-listener acceptor-threads="100" address="0.0.0.0" default-virtual-server="__asadmin" enabled="true" id="admin-listener" port="24848" security-enabled="false" server-name="" xpowered-by="true">
    </http-listener>
    <virtual-server hosts="sif-caicj" http-listeners="http-listener-1,http-listener-2" id="server" state="on">
    <property name="docroot" value="${com.sun.aas.instanceRoot}/docroot"/>
    <property name="accesslog" value="${com.sun.aas.instanceRoot}/logs/access"/>
    </virtual-server>
    <virtual-server default-web-module="admingui" hosts="sif-caicj" http-listeners="admin-listener" id="__asadmin" state="on">
    <property name="accesslog" value="${com.sun.aas.instanceRoot}/logs/access"/>
    </virtual-server>
    </http-service>
    <iiop-service client-authentication-required="false">
    <orb max-connections="1024" message-fragment-size="1024" use-thread-pool-ids="thread-pool-1"/>
    <iiop-listener address="0.0.0.0" enabled="true" id="orb-listener-1" port="23700" security-enabled="false"/>
    <iiop-listener address="0.0.0.0" enabled="true" id="SSL" port="21060" security-enabled="true">
    <ssl cert-nickname="s1as" client-auth-enabled="false" ssl2-enabled="false" ssl3-enabled="true" tls-enabled="true" tls-rollback-enabled="true"/>
    </iiop-listener>
    <iiop-listener address="0.0.0.0" enabled="true" id="SSL_MUTUALAUTH" port="21061" security-enabled="true">
    <ssl cert-nickname="s1as" client-auth-enabled="true" ssl2-enabled="false" ssl3-enabled="true" tls-enabled="true" tls-rollback-enabled="true"/>
    </iiop-listener>
    </iiop-service>
    <admin-service type="das-and-server">
    <das-config admin-session-timeout-in-minutes="60" autodeploy-dir="${com.sun.aas.instanceRoot}/autodeploy" autodeploy-enabled="true" autodeploy-jsp-precompilation-enabled="false" autodeploy-polling-interval-in-seconds="2" autodeploy-verifier-enabled="false" deploy-xml-validation="full" dynamic-reload-enabled="true" dynamic-reload-poll-interval-in-seconds="2"/>
    </admin-service>
    <web-container/>
    <ejb-container cache-idle-timeout-in-seconds="600" cache-resize-quantity="32" commit-option="B" max-cache-size="512" max-pool-size="32" pool-idle-timeout-in-seconds="600" pool-resize-quantity="8" removal-timeout-in-seconds="5400" session-store="${com.sun.aas.instanceRoot}/session-store" steady-pool-size="0" victim-selection-policy="nru"/>
    <mdb-container idle-timeout-in-seconds="600" max-pool-size="32" pool-resize-quantity="8" steady-pool-size="0"/>
    <jms-service init-timeout-in-seconds="60" type="LOCAL">
    <jms-host admin-password="admin" admin-user-name="admin" host="sif-caicj" name="default_JMS_host" port="27676"/>
    </jms-service>
    <log-service alarms="false" file="${com.sun.aas.instanceRoot}/logs/server.log" log-rotation-limit-in-bytes="2000000000" log-to-console="false" use-system-logging="false">
    <module-log-levels admin="INFO" classloader="INFO" cmp="INFO" cmp-container="INFO" configuration="INFO" connector="INFO" corba="INFO" deployment="INFO" ejb-container="INFO" javamail="INFO" jaxr="INFO" jaxrpc="INFO" jdo="INFO" jms="INFO" jta="INFO" jts="INFO" mdb-container="INFO" naming="INFO" resource-adapter="INFO" root="INFO" saaj="INFO" security="INFO" server="INFO" verifier="INFO" web-container="INFO"/>
    </log-service>
    <security-service anonymous-role="ANYONE" audit-enabled="false" audit-modules="default" default-realm="file" jacc="default">
    <auth-realm classname="com.sun.enterprise.security.auth.realm.file.FileRealm" name="file">
    <property name="file" value="${com.sun.aas.instanceRoot}/config/keyfile"/>
    <property name="jaas-context" value="fileRealm"/>
    </auth-realm>
    <auth-realm classname="com.sun.enterprise.security.auth.realm.certificate.CertificateRealm" name="certificate">
    </auth-realm>
    <jacc-provider name="default" policy-configuration-factory-provider="com.sun.enterprise.security.provider.PolicyConfigurationFactoryImpl" policy-provider="com.sun.enterprise.security.provider.PolicyWrapper">
    <property name="repository" value="${com.sun.aas.instanceRoot}/generated/policy"/>
    </jacc-provider>
    <audit-module classname="com.sun.enterprise.security.Audit" name="default">
    <property name="auditOn" value="false"/>
    </audit-module>
    </security-service>
    <transaction-service automatic-recovery="false" heuristic-decision="rollback" keypoint-interval="2048" retry-timeout-in-seconds="600" timeout-in-seconds="0" tx-log-dir="${com.sun.aas.instanceRoot}/logs"/>
    <monitoring-service>
    <module-monitoring-levels connector-connection-pool="OFF" ejb-container="OFF" http-service="OFF" jdbc-connection-pool="OFF" orb="OFF" thread-pool="OFF" transaction-service="OFF" web-container="OFF"/>
    </monitoring-service>
    <java-config classpath-suffix="${com.sun.aas.installRoot}/pointbase/lib/pbclient.jar${path.separator}${com.sun.aas.installRoot}/pointbase/lib/pbembedded.jar${path.separator}" debug-enabled="false" debug-options="-Xdebug -Xrunjdwp:transport=dt_shmem,server=y,suspend=n,address=creator-14848" env-classpath-ignored="true" java-home="${com.sun.aas.javaRoot}" javac-options="-g" rmic-options="-iiop -poa -alwaysgenerate -keepgenerated -g" server-classpath="${com.sun.aas.javaRoot}/lib/tools.jar${path.separator}${com.sun.aas.installRoot}/lib/install/applications/jmsra/imqjmsra.jar${path.separator}${com.sun.aas.imqLib}/jaxm-api.jar${path.separator}${com.sun.aas.imqLib}/fscontext.jar${path.separator}${com.sun.aas.antLib}/ant.jar">
    <!-- various required jvm-options -->
    <jvm-options>-client</jvm-options>
    <jvm-options>-Djava.endorsed.dirs=${com.sun.aas.installRoot}/lib/endorsed</jvm-options>
    <jvm-options>-Djava.security.policy=${com.sun.aas.instanceRoot}/config/server.policy</jvm-options>
    <jvm-options>-Djava.security.auth.login.config=${com.sun.aas.instanceRoot}/config/login.conf</jvm-options>
    <jvm-options>-Dsun.rmi.dgc.server.gcInterval=3600000</jvm-options>
    <jvm-options>-Dsun.rmi.dgc.client.gcInterval=3600000</jvm-options>
    <jvm-options>-Xmx512m</jvm-options>
    <jvm-options>-Djavax.net.ssl.keyStore=${com.sun.aas.instanceRoot}/config/keystore.jks</jvm-options>
    <jvm-options>-Djavax.net.ssl.trustStore=${com.sun.aas.instanceRoot}/config/cacerts.jks</jvm-options>
    <jvm-options>-Djava.ext.dirs=${com.sun.aas.javaRoot}/jre/lib/ext${path.separator}${com.sun.aas.instanceRoot}/lib/ext</jvm-options>
    <jvm-options> -Djdbc.drivers=com.pointbase.jdbc.jdbcUniversalDriver</jvm-options>
    <jvm-options>-Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar</jvm-options>
    <jvm-options>-XX:NewRatio=2</jvm-options>
    </java-config>
    <thread-pools>
    <thread-pool idle-thread-timeout-in-seconds="120" max-thread-pool-size="200" min-thread-pool-size="0" num-work-queues="1" thread-pool-id="thread-pool-1"/>
    </thread-pools>
    </config>
    <!-- config model with name "server-config" ends -->
    </configs>
    <servers>
    <server config-ref="server-config" name="server">
    <application-ref enabled="true" ref="adminapp" virtual-servers="__asadmin"/>
    <application-ref enabled="true" ref="admingui" virtual-servers="__asadmin"/>
    <application-ref enabled="true" ref="com_sun_web_ui" virtual-servers="__asadmin"/>
    <application-ref enabled="true" ref="MEjbApp" virtual-servers="server"/>
    <application-ref enabled="true" ref="__ejb_container_timer_app" virtual-servers="server"/>
    <resource-ref enabled="true" ref="jdbc/__TimerPool"/>
    <resource-ref enabled="true" ref="jdbc/PointBase"/>
    </server>
    </servers>
    </domain>
    my server.log
    I am sorry there are some japanese words in the log
    �v���I: fatal
    ����: information
    �x��:warning
    �R�l�N�V���������������G���[�������������� : error happened when connecting
    Starting Sun Java System Application Server Platform Edition 8.0.0_01 (build b08-fcs) ...
    [#|2006-02-10T12:59:48.050+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5076: Using [Java HotSpot(TM) Client VM, Version 1.4.2_06] from [Sun Microsystems Inc.]|#]
    [#|2006-02-10T12:59:49.206+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM0020:Following is the information about the JMX MBeanServer used:|#]
    [#|2006-02-10T12:59:49.394+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM0001:MBeanServer initialized successfully|#]
    [#|2006-02-10T12:59:51.628+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|Creating virtual server server|#]
    [#|2006-02-10T12:59:51.659+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|S1AS AVK Instrumentation disabled|#]
    [#|2006-02-10T12:59:51.738+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.security|_ThreadID=10;|SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.|#]
    [#|2006-02-10T12:59:53.910+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.transaction|_ThreadID=10;|JTS5014: Recoverable JTS instance, serverId = [100]|#]
    [#|2006-02-10T12:59:55.519+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Satisfying Optional Packages dependencies...|#]
    [#|2006-02-10T12:59:55.707+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.resource.resourceadapter|_ThreadID=10;|RAR7008 : Initialized monitoring registry and listeners|#]
    [#|2006-02-10T12:59:56.394+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5100:Loading system apps|#]
    [#|2006-02-10T12:59:57.019+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.classloading|_ThreadID=10;|LDR5010: All ejb(s) of [MEjbApp] loaded successfully!|#]
    [#|2006-02-10T12:59:57.769+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.ejb|_ThreadID=10;|EJB5109:EJB Timer Service started successfully for datasource [jdbc/__TimerPool]|#]
    [#|2006-02-10T12:59:57.769+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.classloading|_ThreadID=10;|LDR5010: All ejb(s) of [__ejb_container_timer_app] loaded successfully!|#]
    [#|2006-02-10T12:59:57.816+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0302: Starting Tomcat.|#]
    [#|2006-02-10T12:59:57.957+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [adminapp] in virtual server [server] at [web1]|#]
    [#|2006-02-10T12:59:58.113+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [admingui] in virtual server [server] at [asadmin]|#]
    [#|2006-02-10T12:59:58.113+0800|�x��|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0500: default-locale attribute of locale-charset-info element has been deprecated and is being ignored. Use default-charset attribute of parameter-encoding element instead|#]
    [#|2006-02-10T12:59:58.129+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [com_sun_web_ui] in virtual server [server] at [com_sun_web_ui]|#]
    [#|2006-02-10T12:59:58.129+0800|����|sun-appserver-pe8.0.0_01|org.apache.catalina.startup.Embedded|_ThreadID=10;|Starting tomcat server|#]
    [#|2006-02-10T12:59:58.129+0800|����|sun-appserver-pe8.0.0_01|org.apache.catalina.startup.Embedded|_ThreadID=10;|Catalina naming disabled|#]
    [#|2006-02-10T12:59:58.222+0800|����|sun-appserver-pe8.0.0_01|org.apache.catalina.core.StandardEngine|_ThreadID=10;|Starting Servlet Engine: Sun-Java-System/Application-Server-PE-8.0|#]
    [#|2006-02-10T13:00:01.285+0800|����|sun-appserver-pe8.0.0_01|org.apache.catalina.startup.ContextConfig|_ThreadID=10;|�A�v���P�[�V������web.xml�����������������A�f�t�H���g�������g�p������ StandardEngine[server].StandardHost[server].StandardContext[]|#]
    [#|2006-02-10T13:00:03.191+0800|����|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Coyote HTTP/1.1���|�[�g28080��������������|#]
    [#|2006-02-10T13:00:03.254+0800|����|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Coyote HTTP/1.1���|�[�g 28080 ���N��������|#]
    [#|2006-02-10T13:00:03.348+0800|����|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Coyote HTTP/1.1���|�[�g21043��������������|#]
    [#|2006-02-10T13:00:03.363+0800|����|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Coyote HTTP/1.1���|�[�g 21043 ���N��������|#]
    [#|2006-02-10T13:00:03.379+0800|����|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Coyote HTTP/1.1���|�[�g24848��������������|#]
    [#|2006-02-10T13:00:03.379+0800|����|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Coyote HTTP/1.1���|�[�g 24848 ���N��������|#]
    [#|2006-02-10T13:01:04.883+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.resource.jms|_ThreadID=10;|JMS5035: Timed out after 60000 milliseconds while trying to verify if the JMS service startup succeeded.|#]
    [#|2006-02-10T13:01:04.883+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.resource.jms|_ThreadID=10;|JMS5037: Check permissions of MQ instance directory E:\Sun\Creator\SunAppServer8\imq\var\instances|#]
    [#|2006-02-10T13:01:04.883+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.resource.jms|_ThreadID=10;|JMS5036: More details may be available in the log file for the JMS service broker instance imqbroker. Please refer to the JMS provider documentation for the exact location of this log file.|#]
    [#|2006-02-10T13:01:04.883+0800|�v���I|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5071: An error occured during initialization
    com.sun.appserv.server.ServerLifecycleException: [C4003]: �R�l�N�V���������������G���[���������������B - ���o java.net.ConnectException: Connection refused: connect
         at com.sun.enterprise.jms.JmsProviderLifecycle.checkProviderStartup(JmsProviderLifecycle.java:415)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:224)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:172)
         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 org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: com.sun.messaging.jms.JMSException: [C4003]: �R�l�N�V���������������G���[���������������B - ���o java.net.ConnectException: Connection refused: connect
         at com.sun.messaging.jmq.jmsclient.ExceptionHandler.getJMSConnectException(ExceptionHandler.java:233)
         at com.sun.messaging.jmq.jmsclient.ExceptionHandler.handleConnectException(ExceptionHandler.java:180)
         at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(PortMapperClient.java:172)
         at com.sun.messaging.jmq.jmsclient.PortMapperClient.init(PortMapperClient.java:97)
         at com.sun.messaging.jmq.jmsclient.PortMapperClient.<init>(PortMapperClient.java:50)
         at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPConnectionHandler.<init>(TCPConnectionHandler.java:53)
         at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPStreamHandler.openConnection(TCPStreamHandler.java:102)
         at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnectionOld(ConnectionInitiator.java:271)
         at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnection(ConnectionInitiator.java:107)
         at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnection(ConnectionInitiator.java:92)
         at com.sun.messaging.jmq.jmsclient.ProtocolHandler.init(ProtocolHandler.java:562)
         at com.sun.messaging.jmq.jmsclient.ProtocolHandler.<init>(ProtocolHandler.java:1102)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.openConnection(ConnectionImpl.java:1741)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.init(ConnectionImpl.java:588)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.<init>(ConnectionImpl.java:274)
         at com.sun.messaging.jmq.jmsclient.UnifiedConnectionImpl.<init>(UnifiedConnectionImpl.java:33)
         at com.sun.messaging.jmq.jmsclient.QueueConnectionImpl.<init>(QueueConnectionImpl.java:32)
         at com.sun.messaging.ConnectionFactory.createQueueConnection(ConnectionFactory.java:72)
         at com.sun.messaging.jmq.admin.jmsspi.JMSAdminImpl.pingProvider(JMSAdminImpl.java:734)
         at com.sun.enterprise.jms.JmsProviderLifecycle.waitForJmsProvider(JmsProviderLifecycle.java:324)
         at com.sun.enterprise.jms.JmsProviderLifecycle.checkProviderStartup(JmsProviderLifecycle.java:384)
         ... 7 more
    Caused by: java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
         at java.net.Socket.connect(Socket.java:452)
         at java.net.Socket.connect(Socket.java:402)
         at java.net.Socket.<init>(Socket.java:309)
         at java.net.Socket.<init>(Socket.java:124)
         at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(PortMapperClient.java:152)
         ... 25 more
    |#]
    [#|2006-02-10T13:01:04.883+0800|�v���I|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Server Startup failed. Exiting...|#]
    [#|2006-02-10T13:01:04.883+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Server shutdown in progress...|#]
    [#|2006-02-10T13:01:04.883+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0303: Stopping Tomcat.|#]
    [#|2006-02-10T13:01:04.883+0800|����|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Stoping http11 protocol on 28080 server:type=ThreadPool,name=http28080|#]
    [#|2006-02-10T13:01:04.899+0800|����|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Stoping http11 protocol on 21043 server:type=ThreadPool,name=http21043|#]
    [#|2006-02-10T13:01:04.915+0800|����|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Stoping http11 protocol on 24848 server:type=ThreadPool,name=http24848|#]
    [#|2006-02-10T13:01:05.008+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5051: Shutting down all J2EE applications ...|#]
    [#|2006-02-10T13:01:05.008+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.ejb|_ThreadID=10;|EJB5122:EJB Timer Service shutdown at [2006/02/10 13:01:05]|#]
    [#|2006-02-10T13:01:05.008+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5052: Application shutdown complete.|#]
    [#|2006-02-10T13:01:05.008+0800|�x��|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5061: Exception :
    com.sun.appserv.server.ServerLifecycleException: MQ startup failed :[C4003]: �R�l�N�V���������������G���[���������������B - ���o java.net.ConnectException: Connection refused: connect
         at com.sun.enterprise.jms.JmsProviderLifecycle.checkProviderStartup(JmsProviderLifecycle.java:364)
         at com.sun.enterprise.jms.JmsProviderLifecycle.onShutdown(JmsProviderLifecycle.java:433)
         at com.sun.enterprise.server.ApplicationServer.onShutdown(ApplicationServer.java:400)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:233)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:172)
         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 org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    |#]
    [#|2006-02-10T13:01:05.008+0800|�v���I|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Server stopped due to Server startup failure.|#]
    [#|2006-02-10T13:01:05.024+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=11;|sending notification to server...server|#]
    [#|2006-02-10T13:01:05.024+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=11;|Server shutdown complete.|#]
    Starting Sun Java System Application Server Platform Edition 8.0.0_01 (build b08-fcs) ...
    [#|2006-02-10T13:01:10.743+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5076: Using [Java HotSpot(TM) Client VM, Version 1.4.2_06] from [Sun Microsystems Inc.]|#]
    [#|2006-02-10T13:01:11.728+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM0020:Following is the information about the JMX MBeanServer used:|#]
    [#|2006-02-10T13:01:11.868+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM0001:MBeanServer initialized successfully|#]
    [#|2006-02-10T13:01:14.634+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|Creating virtual server server|#]
    [#|2006-02-10T13:01:14.650+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|S1AS AVK Instrumentation disabled|#]
    [#|2006-02-10T13:01:14.665+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.security|_ThreadID=10;|SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.|#]
    [#|2006-02-10T13:01:16.337+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.transaction|_ThreadID=10;|JTS5014: Recoverable JTS instance, serverId = [100]|#]
    [#|2006-02-10T13:01:17.603+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Satisfying Optional Packages dependencies...|#]
    [#|2006-02-10T13:01:17.790+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.resource.resourceadapter|_ThreadID=10;|RAR7008 : Initialized monitoring registry and listeners|#]
    [#|2006-02-10T13:01:18.462+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5100:Loading system apps|#]
    [#|2006-02-10T13:01:19.025+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.classloading|_ThreadID=10;|LDR5010: All ejb(s) of [MEjbApp] loaded successfully!|#]
    [#|2006-02-10T13:01:19.728+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.ejb|_ThreadID=10;|EJB5109:EJB Timer Service started successfully for datasource [jdbc/__TimerPool]|#]
    [#|2006-02-10T13:01:19.728+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.classloading|_ThreadID=10;|LDR5010: All ejb(s) of [__ejb_container_timer_app] loaded successfully!|#]
    [#|2006-02-10T13:01:19.775+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0302: Starting Tomcat.|#]
    [#|2006-02-10T13:01:19.916+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [adminapp] in virtual server [server] at [web1]|#]
    [#|2006-02-10T13:01:20.041+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [admingui] in virtual server [server] at [asadmin]|#]
    [#|2006-02-10T13:01:20.041+0800|�x��|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0500: default-locale attribute of locale-charset-info element has been deprecated and is being ignored. Use default-charset attribute of parameter-encoding element instead|#]
    [#|2006-02-10T13:01:20.041+0800|����|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [com_sun_web_ui] in virtual server [server] at [com_sun_web_ui]|#]
    [#|2006-02-10T13:01:20.056+0800|����|sun-appserver-pe8.0.0_01|org.apache.catalina.startup.Embedded|_ThreadID=10;|Starting tomcat server|#]
    [#|2006-02-10T13:01:20.056+0800|����|sun-appserver-pe8.0.0_01|org.apache.catalina.startup.Embedded|_ThreadID=10;|Catalina naming disabled|#]
    [#|2006-02-10T13:01:20.150+0800|����|sun-appserver-pe8.0.0_01|org.apache.catalina.c                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      &n

    Hi,
    Restarting the computer should have stopped the appserver.
    To kill the appserver manually you can go to the command prompt
    <install-dir>\Sun\Creator2\SunAppServer8\bin\asadmin.bat\stop-appserv
    Thanks,
    RK.

  • How to run expdp from client ?

    Hi All,
    I tried searching google and forums for my issue but to no avail > How to run expdp from client side ....like in my laptop.
    Because currently our PROD database server has no space for expdp dump file. So I want it directed to my laptop which has an extenal USB of 1TB harddisk...via client EXPDP
    import data using impdp command
    Posted on: 08-May-2012 11:36, by user: 841731 -- Relevance: 53% -- Show all results within this thread
    below command is correct or not? if it is not correct could you please send me the correct command. impdp user/pass@databasename schemas=sourceschemaname remap_schema=sourceschemaname:destinationschemaname ...
    System generated Index names different on target database after expdp/impdp
    Posted on: 30-May-2012 11:58, by user: 895124 -- Relevance: 43% -- Show all results within this thread
    After performing expdp/impdp to move data from one database (A) to another (B), the system name generated indexes has different ...
    [ETL] TTS vs expdp/impdp vs ctas (dblink
    Posted on: 08-May-2012 21:10, by user: 869578 -- Relevance: 39% -- Show all results within this thread
    (table : 500 giga, index : 500 giga), how much faster is TTS (transportable tablespace) over expdp/impdp, and over ctas (dblink) ? As you know, the speed of etl depends on the hardware capacity. (io ...
    Oracle Client
    Posted on: 21-Jun-2012 22:47, by user: Sh**** -- Relevance: 32% -- Show all results within this thread
    Hi Guys, Please can you guys elaborate the difference between Oracle Client and Oracle Instant Client. Also, please can you advise from where I can download the Oracle normal ...
    Oracle 10g Client
    Posted on: 05-Jun-2012 10:11, by user: dzm -- Relevance: 26% -- Show all results within this thread
    to search at oracle site and this forum, but i wasn't able to find a link to download the oracle 10g client. I really need especificaly the 10g version. Anybody know the link or another way to download ...
    9i client to access 11g database
    Posted on: 22-Jun-2012 07:31, by user: kkrm333 -- Relevance: 24% -- Show all results within this thread
    Hi, Can i access a 11g database using 9i client? Thanks,
    SQLplus in Oracle Client
    Posted on: 14-Jun-2012 00:36, by user: Tim B. -- Relevance: 24% -- Show all results within this thread
    Hi, I tried to install an 11g oracle client in linux. As I've compared the files with the files when you install using the oracle instant ...
    Re: Information on Oracle Client 11202-1.1.4-6
    Posted on: 05-Jun-2012 03:33, by user: 898763 -- Relevance: 23% -- Show all results within this thread
    Actually thats the client requirement
    Analysing the performance of a single client
    Posted on: 28-Mar-2012 02:05, by user: 880172 -- Relevance: 23% -- Show all results within this thread
    timeouts even on some of the simplest queries. I want to try and get some data about how just this one client is performing and what it’s doing, but everything Google has thrown up so far is orientated around ...
    to make client connection as sys
    Posted on: 12-Jun-2012 22:04, by user: user11221081 -- Relevance: 23% -- Show all results within this thread
    Dear gurus can i connect to my server from my client machine with sysdba without giving sys password i have connected in different ways as sys@abc ...Thanks a lot.

    Though you can initiate the binary from your client side but for the file creation, there is no other way but to store it on the server side. So your best bet would be to get some space free on the server side of yours.
    Aman....

  • Domain.xml gets screwed up

    Multiple times now, the Server is unable to start up. The last time it sat there, apparently in a loop greating over a 1 GB log file. Previously, I reinstalled Creator to solve the problem. The last time, I traced it to domain.xml.
    Fortunately there was a backup file that worked.
    However, I do not modify this file myself, and thus have no clue as to how to fix it. Creator manages this file, so when it gets screwed up, this is surely a bug.
    It is very frustrating, and usually occurs when my project has some error that does not allow it to deploy properly.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE domain PUBLIC "-//Sun Microsystems Inc.//DTD Application Server 8.0 Domain//EN" "http://www.sun.com/software/appserver/dtds/sun-domain_1_0.dtd">
    <!--
       Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
       SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
    -->
    <!-- Generated from default-domain.xml.template -->
    <domain application-root="${com.sun.aas.instanceRoot}/applications" log-root="${com.sun.aas.instanceRoot}/logs">
      <applications>
        <j2ee-application enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-apps/MEjbApp" name="MEjbApp" object-type="system-all"/>
        <j2ee-application enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-apps/__ejb_container_timer_app" name="__ejb_container_timer_app" object-type="system-all"/>
        <j2ee-application enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-apps/ConverterApp" name="ConverterApp" object-type="user"/>
        <j2ee-application enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-apps/HelloWorldApp" name="HelloWorldApp" object-type="user"/>
        <j2ee-application enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-apps/travelApp" name="travelApp" object-type="user"/>
        <web-module context-root="/web1" enabled="true" location="${com.sun.aas.installRoot}/lib/install/applications/adminapp/adminapp_war" name="adminapp" object-type="system-admin">
          <!-- System Web Module - DO NOT DELETE! -->
        </web-module>
        <web-module context-root="/asadmin" enabled="true" location="${com.sun.aas.installRoot}/lib/install/applications/admingui/adminGUI_war" name="admingui" object-type="system-admin">
          <!-- System Web Module - DO NOT DELETE! -->
        </web-module>
        <web-module context-root="/com_sun_web_ui" enabled="true" location="${com.sun.aas.installRoot}/lib/install/applications/com_sun_web_ui" name="com_sun_web_ui" object-type="system-admin">
          <!-- System Web Module - DO NOT DELETE! -->
        </web-module>
        <web-module context-root="hello-jaxrpc" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/hello-jaxrpc" name="hello-jaxrpc" object-type="user"/>
        <web-module context-root="jTravellerService" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/jTravellerService" name="jTravellerService" object-type="user"/>
        <web-module enabled="true" location="c:/Documents and Settings/jar/My Documents/Creator/Projects/FunctionListManager/build" name="_functionlistmanager" object-type="user"/>
      </applications>
      <resources>
        <jdbc-resource enabled="true" jndi-name="jdbc/__TimerPool" object-type="system-all" pool-name="__TimerPool"/>
        <jdbc-resource enabled="true" jndi-name="jdbc/PointBase" object-type="user" pool-name="PointBasePool"/>
        <jdbc-resource enabled="true" jndi-name="jdbc/Travel" object-type="user" pool-name="TravelDBPool"/>
        <jdbc-resource enabled="true" jndi-name="jdbc/my.server" object-type="user" pool-name="RaveGenerated_1106935210_my.serverPool"/>
        <jdbc-connection-pool connection-validation-method="auto-commit" datasource-classname="com.pointbase.xa.xaDataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="true" max-pool-size="32" max-wait-time-in-millis="60000" name="__TimerPool" pool-resize-quantity="2" res-type="javax.sql.XADataSource" steady-pool-size="8">
          <property name="DatabaseName" value="jdbc:pointbase:embedded:ejbtimer,database.home=${com.sun.aas.instanceRoot}/lib/databases"/>
          <property name="User" value="pbPublic"/>
          <property name="Password" value="pbPublic"/>
        </jdbc-connection-pool>
        <jdbc-connection-pool connection-validation-method="auto-commit" datasource-classname="com.pointbase.xa.xaDataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="true" max-pool-size="32" max-wait-time-in-millis="60000" name="PointBasePool" pool-resize-quantity="2" res-type="javax.sql.XADataSource" steady-pool-size="8">
          <property name="DatabaseName" value="jdbc:pointbase:server://localhost:9092/sun-appserv-samples"/>
          <property name="Password" value="pbPublic"/>
          <property name="User" value="pbPublic"/>
        </jdbc-connection-pool>
        <jdbc-connection-pool connection-validation-method="auto-commit" datasource-classname="com.pointbase.xa.xaDataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="true" max-pool-size="8" max-wait-time-in-millis="60000" name="TravelDBPool" pool-resize-quantity="1" res-type="javax.sql.XADataSource" steady-pool-size="1">
          <property name="DatabaseName" value="jdbc:pointbase:server://localhost:19092/sample"/>
          <property name="Password" value="travel"/>
          <property name="User" value="travel"/>
        </jdbc-connection-pool>
        <jdbc-connection-pool connection-validation-method="table" datasource-classname="com.sun.sql.datasource.DriverAdapter" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="true" is-isolation-level-guaranteed="true" max-pool-size="16" max-wait-time-in-millis="60000" name="RaveGenerated_1106935210_my.serverPool" pool-resize-quantity="1" steady-pool-size="1" validation-table-name="entityrole">
          <property name="url" value="jdbc:mysql://my.server:3306/policy"/>
          <property name="Password" value="password"/>
          <property name="driverClassName" value="org.gjt.mm.mysql.Driver"/>
          <property name="User" value="ejbca"/>
        </jdbc-connection-pool>
      </resources>
      <configs>
        <config name="server-config">
          <http-service>
            <http-listener acceptor-threads="100" address="0.0.0.0" default-virtual-server="server" enabled="true" id="http-listener-1" port="18080" security-enabled="false" server-name="" xpowered-by="true">
        </http-listener>
            <http-listener acceptor-threads="100" address="0.0.0.0" default-virtual-server="server" enabled="true" id="http-listener-2" port="11043" security-enabled="true" server-name="" xpowered-by="true">
        </http-listener>
            <http-listener acceptor-threads="100" address="0.0.0.0" default-virtual-server="__asadmin" enabled="true" id="admin-listener" port="14848" security-enabled="false" server-name="" xpowered-by="true">
        </http-listener>
            <virtual-server hosts="JAROPT" http-listeners="http-listener-1,http-listener-2" id="server" state="on">
              <property name="docroot" value="${com.sun.aas.instanceRoot}/docroot"/>
              <property name="accesslog" value="${com.sun.aas.instanceRoot}/logs/access"/>
            </virtual-server>
            <virtual-server default-web-module="admingui" hosts="JAROPT" http-listeners="admin-listener" id="__asadmin" state="on">
              <property name="accesslog" value="${com.sun.aas.instanceRoot}/logs/access"/>
            </virtual-server>
          </http-service>
          <iiop-service client-authentication-required="false">
            <orb max-connections="1024" message-fragment-size="1024" use-thread-pool-ids="thread-pool-1"/>
            <iiop-listener address="0.0.0.0" enabled="true" id="orb-listener-1" port="13700" security-enabled="false"/>
            <iiop-listener address="0.0.0.0" enabled="true" id="SSL" port="11060" security-enabled="true">
              <ssl cert-nickname="s1as" client-auth-enabled="false" ssl2-enabled="false" ssl3-enabled="true" tls-enabled="true" tls-rollback-enabled="true"/>
            </iiop-listener>
            <iiop-listener address="0.0.0.0" enabled="true" id="SSL_MUTUALAUTH" port="11061" security-enabled="true">
              <ssl cert-nickname="s1as" client-auth-enabled="true" ssl2-enabled="false" ssl3-enabled="true" tls-enabled="true" tls-rollback-enabled="true"/>
            </iiop-listener>
          </iiop-service>
          <admin-service type="das-and-server">
            <das-config admin-session-timeout-in-minutes="60" autodeploy-dir="${com.sun.aas.instanceRoot}/autodeploy" autodeploy-enabled="true" autodeploy-jsp-precompilation-enabled="false" autodeploy-polling-interval-in-seconds="2" autodeploy-verifier-enabled="false" deploy-xml-validation="full" dynamic-reload-enabled="true" dynamic-reload-poll-interval-in-seconds="2"/>
          </admin-service>
          <web-container/>
          <ejb-container cache-idle-timeout-in-seconds="600" cache-resize-quantity="32" commit-option="B" max-cache-size="512" max-pool-size="32" pool-idle-timeout-in-seconds="600" pool-resize-quantity="8" removal-timeout-in-seconds="5400" session-store="${com.sun.aas.instanceRoot}/session-store" steady-pool-size="0" victim-selection-policy="nru"/>
          <mdb-container idle-timeout-in-seconds="600" max-pool-size="32" pool-resize-quantity="8" steady-pool-size="0"/>
          <jms-service init-timeout-in-seconds="60" type="LOCAL">
            <jms-host admin-password="admin" admin-user-name="admin" host="JAROPT" name="default_JMS_host" port="17676"/>
          </jms-service>
          <log-service alarms="false" file="${com.sun.aas.instanceRoot}/logs/server.log" log-rotation-limit-in-bytes="2000000000" log-to-console="false" use-system-logging="false">
            <module-log-levels admin="INFO" classloader="INFO" cmp="INFO" cmp-container="INFO" configuration="INFO" connector="INFO" corba="INFO" deployment="INFO" ejb-container="INFO" javamail="INFO" jaxr="INFO" jaxrpc="INFO" jdo="INFO" jms="INFO" jta="INFO" jts="INFO" mdb-container="INFO" naming="INFO" resource-adapter="INFO" root="INFO" saaj="INFO" security="INFO" server="INFO" verifier="INFO" web-container="INFO"/>
          </log-service>
          <security-service anonymous-role="ANYONE" audit-enabled="false" audit-modules="default" default-realm="file" jacc="default">
            <auth-realm classname="com.sun.enterprise.security.auth.realm.file.FileRealm" name="file">
              <property name="file" value="${com.sun.aas.instanceRoot}/config/keyfile"/>
              <property name="jaas-context" value="fileRealm"/>
            </auth-realm>
            <auth-realm classname="com.sun.enterprise.security.auth.realm.certificate.CertificateRealm" name="certificate">
        </auth-realm>
            <jacc-provider name="default" policy-configuration-factory-provider="com.sun.enterprise.security.provider.PolicyConfigurationFactoryImpl" policy-provider="com.sun.enterprise.security.provider.PolicyWrapper">
              <property name="repository" value="${com.sun.aas.instanceRoot}/generated/policy"/>
            </jacc-provider>
            <audit-module classname="com.sun.enterprise.security.Audit" name="default">
              <property name="auditOn" value="false"/>
            </audit-module>
          </security-service>
          <transaction-service automatic-recovery="false" heuristic-decision="rollback" keypoint-interval="2048" retry-timeout-in-seconds="600" timeout-in-seconds="0" tx-log-dir="${com.sun.aas.instanceRoot}/logs"/>
          <monitoring-service>
            <module-monitoring-levels connector-connection-pool="OFF" ejb-container="OFF" http-service="OFF" jdbc-connection-pool="OFF" orb="OFF" thread-pool="OFF" transaction-service="OFF" web-container="OFF"/>
          </monitoring-service>
          <java-config classpath-suffix="${com.sun.aas.installRoot}/pointbase/lib/pbclient.jar${path.separator}${com.sun.aas.installRoot}/pointbase/lib/pbembedded.jar${path.separator}" debug-enabled="false" debug-options="-Xdebug -Xrunjdwp:transport=dt_shmem,server=y,suspend=n,address=creator-14848" env-classpath-ignored="true" java-home="${com.sun.aas.javaRoot}" javac-options="-g" rmic-options="-iiop -poa -alwaysgenerate -keepgenerated -g" server-classpath="${com.sun.aas.javaRoot}/lib/tools.jar${path.separator}${com.sun.aas.installRoot}/lib/install/applications/jmsra/imqjmsra.jar${path.separator}${com.sun.aas.imqLib}/jaxm-api.jar${path.separator}${com.sun.aas.imqLib}/fscontext.jar${path.separator}${com.sun.aas.antLib}/ant.jar">
            <!-- various required jvm-options -->
            <jvm-options>-client</jvm-options>
            <jvm-options>-Djava.endorsed.dirs=${com.sun.aas.installRoot}/lib/endorsed</jvm-options>
            <jvm-options>-Djava.security.policy=${com.sun.aas.instanceRoot}/config/server.policy</jvm-options>
            <jvm-options>-Djava.security.auth.login.config=${com.sun.aas.instanceRoot}/config/login.conf</jvm-options>
            <jvm-options>-Dsun.rmi.dgc.server.gcInterval=3600000</jvm-options>
            <jvm-options>-Dsun.rmi.dgc.client.gcInterval=3600000</jvm-options>
            <jvm-options>-Xmx512m</jvm-options>
            <jvm-options>-Djavax.net.ssl.keyStore=${com.sun.aas.instanceRoot}/config/keystore.jks</jvm-options>
            <jvm-options>-Djavax.net.ssl.trustStore=${com.sun.aas.instanceRoot}/config/cacerts.jks</jvm-options>
            <jvm-options>-Djava.ext.dirs=${com.sun.aas.javaRoot}/jre/lib/ext${path.separator}${com.sun.aas.instanceRoot}/lib/ext</jvm-options>
            <jvm-options> -Djdbc.drivers=com.pointbase.jdbc.jdbcUniversalDriver</jvm-options>
            <jvm-options>-Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar</jvm-options>
            <jvm-options>-XX:NewRatio=2</jvm-options>
          </java-config>
          <thread-pools>
            <thread-pool idle-thread-timeout-in-seconds="120" max-thread-pool-size="200" min-thread-pool-size="0" num-work-queues="1" thread-pool-id="thread-pool-1"/>
          </thread-pools>
        </config>
        <!-- config model with name "server-config" ends -->
      </configs>
      <servers>
        <server config-ref="server-config" name="server">
          <application-ref enabled="true" ref="adminapp" virtual-servers="__asadmin"/>
          <application-ref enabled="true" ref="admingui" virtual-servers="__asadmin"/>
          <application-ref enabled="true" ref="com_sun_web_ui" virtual-servers="__asadmin"/>
          <application-ref enabled="true" ref="MEjbApp" virtual-servers="server"/>
          <application-ref enabled="true" ref="__ejb_container_timer_app" virtual-servers="server"/>
          <application-ref enabled="true" ref="hello-jaxrpc" virtual-servers="server"/>
          <application-ref enabled="true" ref="jTravellerService" virtual-servers="server"/>
          <application-ref enabled="true" ref="ConverterApp"/>
          <application-ref enabled="true" ref="HelloWorldApp"/>
          <application-ref enabled="true" ref="travelApp"/>
          <application-ref enabled="true" ref="_functionlistmanager" virtual-servers="server"/>
          <resource-ref enabled="true" ref="jdbc/__TimerPool"/>
          <resource-ref enabled="true" ref="jdbc/PointBase"/>
          <resource-ref enabled="true" ref="jdbc/Travel"/>
          <resource-ref enabled="true" ref="jdbc/my.server"/>
        </server>
      </servers>
    </domain>

    This is today's log (with the fixed domain.xml
    Starting Sun Java System Application Server Platform Edition 8.0.0_01 (build b08-fcs) ...
    [#|2005-01-31T09:16:30.230-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5076: Using [Java HotSpot(TM) Client VM, Version 1.4.2_06] from [Sun Microsystems Inc.]|#]
    [#|2005-01-31T09:16:31.027-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM0020:Following is the information about the JMX MBeanServer used:|#]
    [#|2005-01-31T09:16:31.199-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM0001:MBeanServer initialized successfully|#]
    [#|2005-01-31T09:16:33.012-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|Creating virtual server server|#]
    [#|2005-01-31T09:16:33.027-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|S1AS AVK Instrumentation disabled|#]
    [#|2005-01-31T09:16:33.027-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.security|_ThreadID=10;|SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.|#]
    [#|2005-01-31T09:16:34.699-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.transaction|_ThreadID=10;|JTS5014: Recoverable JTS instance, serverId = [100]|#]
    [#|2005-01-31T09:16:35.652-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Satisfying Optional Packages dependencies...|#]
    [#|2005-01-31T09:16:35.824-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.resource.resourceadapter|_ThreadID=10;|RAR7008 : Initialized monitoring registry and listeners|#]
    [#|2005-01-31T09:16:36.355-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5100:Loading system apps|#]
    [#|2005-01-31T09:16:36.933-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.classloading|_ThreadID=10;|LDR5010: All ejb(s) of [MEjbApp] loaded successfully!|#]
    [#|2005-01-31T09:16:37.355-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.ejb|_ThreadID=10;|EJB5109:EJB Timer Service started successfully for datasource [jdbc/__TimerPool]|#]
    [#|2005-01-31T09:16:37.355-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.classloading|_ThreadID=10;|LDR5010: All ejb(s) of [__ejb_container_timer_app] loaded successfully!|#]
    [#|2005-01-31T09:16:37.387-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0302: Starting Tomcat.|#]
    [#|2005-01-31T09:16:37.558-0500|SEVERE|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.deployment|_ThreadID=10;|in web-app/security-constraint/web-resource-collection Node, handling of role-name = Administrator failed|#]
    [#|2005-01-31T09:16:37.637-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [adminapp] in virtual server [server] at [/web1]|#]
    [#|2005-01-31T09:16:37.746-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [admingui] in virtual server [server] at [/asadmin]|#]
    [#|2005-01-31T09:16:37.746-0500|WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0500: default-locale attribute of locale-charset-info element has been deprecated and is being ignored. Use default-charset attribute of parameter-encoding element instead|#]
    [#|2005-01-31T09:16:37.762-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [com_sun_web_ui] in virtual server [server] at [/com_sun_web_ui]|#]
    [#|2005-01-31T09:16:37.777-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [_functionlistmanager] in virtual server [server] at [/functionlistmanager]|#]
    [#|2005-01-31T09:16:38.215-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [_policyengine] in virtual server [server] at [/policyengine]|#]
    [#|2005-01-31T09:16:38.215-0500|INFO|sun-appserver-pe8.0.0_01|org.apache.catalina.startup.Embedded|_ThreadID=10;|Starting tomcat server|#]
    [#|2005-01-31T09:16:38.215-0500|INFO|sun-appserver-pe8.0.0_01|org.apache.catalina.startup.Embedded|_ThreadID=10;|Catalina naming disabled|#]
    [#|2005-01-31T09:16:38.293-0500|INFO|sun-appserver-pe8.0.0_01|org.apache.catalina.core.StandardEngine|_ThreadID=10;|Starting Servlet Engine: Sun-Java-System/Application-Server-PE-8.0|#]
    [#|2005-01-31T09:16:40.371-0500|WARNING|sun-appserver-pe8.0.0_01|org.apache.commons.beanutils.MethodUtils|_ThreadID=10;|Cannot use JVM pre-1.4 access bug workaround die to restrictive security manager.|#]
    [#|2005-01-31T09:16:40.496-0500|WARNING|sun-appserver-pe8.0.0_01|org.apache.commons.digester.Digester|_ThreadID=10;|[ConverterRule]{faces-config/converter} Merge(null,java.math.BigDecimal)|#]
    [#|2005-01-31T09:16:40.496-0500|WARNING|sun-appserver-pe8.0.0_01|org.apache.commons.digester.Digester|_ThreadID=10;|[ConverterRule]{faces-config/converter} Merge(null,java.math.BigInteger)|#]
    [#|2005-01-31T09:16:41.558-0500|INFO|sun-appserver-pe8.0.0_01|com.sun.faces.config.ConfigureListener|_ThreadID=10;|Application object verification completed successfully|#]
    [#|2005-01-31T09:16:44.777-0500|WARNING|sun-appserver-pe8.0.0_01|org.apache.commons.beanutils.MethodUtils|_ThreadID=10;|Cannot use JVM pre-1.4 access bug workaround die to restrictive security manager.|#]
    [#|2005-01-31T09:16:44.871-0500|WARNING|sun-appserver-pe8.0.0_01|org.apache.commons.digester.Digester|_ThreadID=10;|[ConverterRule]{faces-config/converter} Merge(null,java.math.BigDecimal)|#]
    [#|2005-01-31T09:16:44.887-0500|WARNING|sun-appserver-pe8.0.0_01|org.apache.commons.digester.Digester|_ThreadID=10;|[ConverterRule]{faces-config/converter} Merge(null,java.math.BigInteger)|#]
    [#|2005-01-31T09:16:45.949-0500|INFO|sun-appserver-pe8.0.0_01|com.sun.faces.config.ConfigureListener|_ThreadID=10;|Application object verification completed successfully|#]
    [#|2005-01-31T09:16:45.996-0500|INFO|sun-appserver-pe8.0.0_01|org.apache.catalina.startup.ContextConfig|_ThreadID=10;|Missing application web.xml, using defaults only StandardEngine[server].StandardHost[server].StandardContext[]|#]
    [#|2005-01-31T09:16:47.246-0500|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Initializing Coyote HTTP/1.1 on port 18080|#]
    [#|2005-01-31T09:16:47.293-0500|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Starting Coyote HTTP/1.1 on port 18080|#]
    [#|2005-01-31T09:16:47.371-0500|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Initializing Coyote HTTP/1.1 on port 11043|#]
    [#|2005-01-31T09:16:47.371-0500|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Starting Coyote HTTP/1.1 on port 11043|#]
    [#|2005-01-31T09:16:47.418-0500|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Initializing Coyote HTTP/1.1 on port 14848|#]
    [#|2005-01-31T09:16:47.418-0500|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Starting Coyote HTTP/1.1 on port 14848|#]
    [#|2005-01-31T09:16:47.574-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.resource.jms|_ThreadID=10;|JMS5023: JMS service successfully started. Instance Name = imqbroker, Home = [C:\Sun\Creator\SunAppServer8\imq\bin].|#]
    [#|2005-01-31T09:16:47.574-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Enabling AutoDeployment service at :1107181007574|#]
    [#|2005-01-31T09:16:47.574-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5053: Application onReady complete.|#]
    [#|2005-01-31T09:16:47.590-0500|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Application server startup complete.|#]

  • WebLogicServer BEA-000337 ExecuteThread: '11' for queue: 'weblogic.kernel.Default' has been busy for "698" seconds working on the request

    Hi,
    When I invoke this JSP, the servlet gets the request and sends a reply, but the
    JSP never finishes. The connection isn't dropped, the browser icon keeps spinning,
    as if it is still trying to load the page. But nothing ever happens. After more
    than 10 minutes or more I get a message in the stdout of weblogic server saying
    something about a stuck thread.
    Note: The JSP sends an SQL statement to Servlet, which in turn calls a DAO class
    to execute the sql and return the result back to Servlet. i m using Weblogic 8.1
    Please help me as it is very urgent. Production Problem. It occurs randomly.

    Hi,
    It looks like you have an AXIS webservice based Application deployed on the Server which has the following Method: com.test.ws.Stub.getInfo(ClientStub.java:813) the call to that method is happening over HTTPS protocol. getInfo() method might be trying to read a Large amount of Information from some sources which may be taking more than 600 Seconds. 600 Seconds is the Default Duration for WebLogic Threads after which the WebLogic Marks those Threads as Stuck Thread.
    So we need to debug the data which is being fetch by the Application code at the following line com.test.ws.Stub.getInfo(ClientStub.java:813)...It might be possible that sometimes while execution of the above method it might be processing or asking for a Large amount of Data which is more than the Configured Thread Timeout period.
    As well as it looks like the Above code is trying to get some data from a remote Server/JVM beacuse it is getting stuck while reading Data from a Socket:
    java.net.SocketInputStream.socketRead0(Native Method)
    java.net.SocketInputStream.read(SocketInputStream.java:129)
    So u need to check the Other end also from where the code is actually trying to get the Information or Data ....*com.test.ws.Stub.getInfo(ClientStub.java:813)*
    Developers can easily findout what the "ClientStub.java" classes method getInfo() is actually doing.
    Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic/?page_id=2261  (Middleware Magic Is Here)

  • Application stops responding

    Hello there:
    I have the following issue, I have got a large application running on a Sun App Serv 9.0 on a Sun Blade 8000, this application contans EJB�s Enterprise Application as well as JSP's, the Database is an AS/400 and i use the open source JT400 to work , it works fine, but then for some reason the web container stops responding, i can still access other applications that does not use the conection pool (as well as the admin console). I have tried to add more connections, still yet nothing... The Db admin told me that the objets remains oppened.
    Once I restart the APP server the applications works again for some time, on the server.log there is no pattern to describe which can tell me what is happening.
    On The OS.. there is nothing that can tell me something, I have reviewed the app9 perf tuneup document and maded the changes tho the OS as well as some changes to the app Serv...
    The two connections that i use are Conexion_BD y jdbc as400
    The domain.xml is as it follows
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE domain PUBLIC "-//Sun Microsystems Inc.//DTD Application Server 8.0 Domain//EN" "http://www.sun.com/software/appserver/dtds/sun-domain_1_2.dtd">
    <!--
    Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved.
    Use is subject to license terms.
    -->
    <!-- Generated from default-domain.xml.template -->
    <!-- Avoid manual edits of this file. Run "asadmin verify-domain-xml" otherwise.-->
    <domain application-root="${com.sun.aas.instanceRoot}/applications" log-root="${com.sun.aas.instanceRoot}/logs">
    <applications>
    <j2ee-application availability-enabled="false" directory-deployed="false" enabled="true" java-web-start-enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-apps/MEjbApp" name="MEjbApp" object-type="system-all"/>
    <j2ee-application availability-enabled="false" directory-deployed="false" enabled="true" java-web-start-enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-apps/__JWSappclients" name="__JWSappclients" object-type="system-all"/>
    <j2ee-application availability-enabled="false" directory-deployed="false" enabled="true" java-web-start-enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-apps/__ejb_container_timer_app" name="__ejb_container_timer_app" object-type="system-all"/>
    <j2ee-application availability-enabled="false" directory-deployed="false" enabled="true" java-web-start-enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-apps/raiz" name="raiz" object-type="user"/>
    <ejb-module availability-enabled="false" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/WSContabilidad" name="WSContabilidad" object-type="user"/>
    <ejb-module availability-enabled="false" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Subsistema_de_Recursos_Humanos" name="Subsistema_de_Recursos_Humanos" object-type="user"/>
    <ejb-module availability-enabled="false" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Generales-ejb" name="Generales-ejb" object-type="user"/>
    <ejb-module availability-enabled="false" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Adquisiciones-ejb" name="Adquisiciones-ejb" object-type="user"/>
    <ejb-module availability-enabled="false" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Caja_Chica-ejb" name="Caja_Chica-ejb" object-type="user"/>
    <ejb-module availability-enabled="false" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Contabilidad-ejb" name="Contabilidad-ejb" object-type="user"/>
    <ejb-module availability-enabled="false" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Proveedores-ejb" name="Proveedores-ejb" object-type="user"/>
    <ejb-module availability-enabled="false" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Presupuesto_de_Inversiones-ejb" name="Presupuesto_de_Inversiones-ejb" object-type="user"/>
    <ejb-module availability-enabled="false" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Almacenes-ejb" name="Almacenes-ejb" object-type="user"/>
    <web-module availability-enabled="false" context-root="/web1" directory-deployed="true" enabled="true" location="${com.sun.aas.installRoot}/lib/install/applications/adminapp/adminapp_war" name="adminapp" object-type="system-admin">
    <!-- System Web Module - DO NOT DELETE! -->
    </web-module>
    <web-module availability-enabled="false" context-root="/asadmin" directory-deployed="true" enabled="true" location="${com.sun.aas.installRoot}/lib/install/applications/admingui/adminGUI_war" name="admingui" object-type="system-admin">
    <!-- System Web Module - DO NOT DELETE! -->
    </web-module>
    <web-module availability-enabled="false" context-root="/GestionPlanillas" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/GestionPlanillas" name="GestionPlanillas" object-type="user"/>
    <web-module availability-enabled="false" context-root="/Beneficios" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Beneficios" name="Beneficios" object-type="user"/>
    <web-module availability-enabled="false" context-root="/RRHH" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/RRHH" name="RRHH" object-type="user"/>
    <web-module availability-enabled="false" context-root="/Contabilidad" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Contabilidad" name="Contabilidad" object-type="user"/>
    <web-module availability-enabled="false" context-root="/PresupuestoFinanciero" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/PresupuestoFinanciero" name="PresupuestoFinanciero" object-type="user"/>
    <web-module availability-enabled="false" context-root="/SeguridadyAuditoria" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/SeguridadyAuditoria" name="SeguridadyAuditoria" object-type="user"/>
    <web-module availability-enabled="false" context-root="/General" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/General" name="General" object-type="user"/>
    <web-module availability-enabled="false" context-root="/CajaChica" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/CajaChica" name="CajaChica" object-type="user"/>
    <web-module availability-enabled="false" context-root="/Adquisiciones" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Adquisiciones" name="Adquisiciones" object-type="user"/>
    <web-module availability-enabled="false" context-root="/Proveedores" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/Proveedores" name="Proveedores" object-type="user"/>
    <web-module availability-enabled="false" context-root="/PresupuestodeInversiones" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/PresupuestodeInversiones" name="PresupuestodeInversiones" object-type="user"/>
    <web-module availability-enabled="false" context-root="/GestionVacaciones" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/GestionVacaciones" name="GestionVacaciones" object-type="user"/>
    <web-module availability-enabled="false" context-root="/PIM" directory-deployed="false" enabled="true" location="${com.sun.aas.instanceRoot}/applications/j2ee-modules/PIM" name="PIM" object-type="user"/>
    </applications>
    <resources>
    <jdbc-resource enabled="true" jndi-name="jdbc/__TimerPool" object-type="system-admin" pool-name="__TimerPool"/>
    <jdbc-resource enabled="true" jndi-name="jdbc/__CallFlowPool" object-type="system-all" pool-name="__CallFlowPool"/>
    <jdbc-resource enabled="true" jndi-name="jdbc/__default" object-type="user" pool-name="DerbyPool"/>
    <jdbc-resource enabled="true" jndi-name="ConeccionBD" object-type="user" pool-name="jdbc_as400_10.38.200.4_libjavaPool"/>
    <jdbc-resource enabled="true" jndi-name="jdbc/ConeccionBD" object-type="user" pool-name="ConeccionBD"/>
    <jdbc-connection-pool allow-non-component-callers="false" connection-validation-method="auto-commit" datasource-classname="org.apache.derby.jdbc.EmbeddedXADataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="true" max-pool-size="32" max-wait-time-in-millis="60000" name="__CallFlowPool" non-transactional-connections="false" pool-resize-quantity="2" res-type="javax.sql.XADataSource" steady-pool-size="8">
    <property name="databaseName" value="${com.sun.aas.instanceRoot}/lib/databases/sun-callflow"/>
    <property name="connectionAttributes" value=";create=true"/>
    </jdbc-connection-pool>
    <jdbc-connection-pool allow-non-component-callers="false" connection-validation-method="auto-commit" datasource-classname="org.apache.derby.jdbc.EmbeddedXADataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="true" max-pool-size="32" max-wait-time-in-millis="60000" name="__TimerPool" non-transactional-connections="false" pool-resize-quantity="2" res-type="javax.sql.XADataSource" steady-pool-size="8">
    <property name="databaseName" value="${com.sun.aas.instanceRoot}/lib/databases/ejbtimer"/>
    </jdbc-connection-pool>
    <jdbc-connection-pool allow-non-component-callers="false" connection-validation-method="auto-commit" datasource-classname="org.apache.derby.jdbc.ClientDataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="false" max-pool-size="32" max-wait-time-in-millis="60000" name="DerbyPool" non-transactional-connections="false" pool-resize-quantity="2" res-type="javax.sql.DataSource" steady-pool-size="8">
    <property name="PortNumber" value="1527"/>
    <property name="Password" value="APP"/>
    <property name="User" value="APP"/>
    <property name="serverName" value="localhost"/>
    <property name="DatabaseName" value="sun-appserv-samples"/>
    <property name="connectionAttributes" value=";create=true"/>
    </jdbc-connection-pool>
    <jdbc-connection-pool allow-non-component-callers="false" connection-validation-method="auto-commit" datasource-classname="com.sun.sql.datasource.DriverAdapter" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="false" max-pool-size="32" max-wait-time-in-millis="60000" name="jdbc_as400_10.38.200.4_libjavaPool" non-transactional-connections="false" pool-resize-quantity="2" res-type="javax.sql.ConnectionPoolDataSource" steady-pool-size="8">
    <property name="DriverClassName" value="com.ibm.as400.access.AS400JDBCDriver"/>
    <property name="URL" value="jdbc:as400://10.38.200.4/libjava;user=XXXXXX;password=XXXXX"/>
    </jdbc-connection-pool>
    <jdbc-connection-pool allow-non-component-callers="false" connection-validation-method="auto-commit" datasource-classname="com.sun.sql.datasource.DriverAdapter" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="false" max-pool-size="64" max-wait-time-in-millis="60000" name="ConeccionBD" non-transactional-connections="false" pool-resize-quantity="2" res-type="javax.sql.ConnectionPoolDataSource" steady-pool-size="8">
    <property name="DriverClassName" value="com.ibm.as400.access.AS400JDBCDriver"/>
    <property name="URL" value="jdbc:as400://10.38.200.4/libjava;user=secofr2a;password=java77"/>
    </jdbc-connection-pool>
    </resources>
    <configs>
    <config dynamic-reconfiguration-enabled="true" name="server-config">
    <http-service>
    <access-log format="%client.name% %auth-user-name% %datetime% %request% %status% %response.length%" rotation-enabled="true" rotation-interval-in-minutes="15" rotation-policy="time" rotation-suffix="yyyy-MM-dd"/>
    <http-listener acceptor-threads="1" address="0.0.0.0" blocking-enabled="false" default-virtual-server="server" enabled="true" family="inet" id="http-listener-1" port="7879" security-enabled="false" server-name="" xpowered-by="true">
    </http-listener>
    <http-listener acceptor-threads="1" address="0.0.0.0" blocking-enabled="false" default-virtual-server="server" enabled="true" family="inet" id="http-listener-2" port="38051" security-enabled="true" server-name="" xpowered-by="true">
    </http-listener>
    <http-listener acceptor-threads="1" address="0.0.0.0" blocking-enabled="false" default-virtual-server="__asadmin" enabled="true" family="inet" id="admin-listener" port="7878" security-enabled="false" server-name="" xpowered-by="true">
    </http-listener>
    <virtual-server hosts="${com.sun.aas.hostName}" http-listeners="http-listener-1,http-listener-2" id="server" log-file="${com.sun.aas.instanceRoot}/logs/server.log" state="on">
    <property name="docroot" value="${com.sun.aas.instanceRoot}/docroot"/>
    <property name="accesslog" value="${com.sun.aas.instanceRoot}/logs/access"/>
    </virtual-server>
    <virtual-server default-web-module="admingui" hosts="${com.sun.aas.hostName}" http-listeners="admin-listener" id="__asadmin" log-file="${com.sun.aas.instanceRoot}/logs/server.log" state="on">
    <property name="docroot" value="${com.sun.aas.instanceRoot}/docroot"/>
    <property name="accesslog" value="${com.sun.aas.instanceRoot}/logs/access"/>
    </virtual-server>
    <request-processing header-buffer-length-in-bytes="4096" initial-thread-count="2" request-timeout-in-seconds="28" thread-count="10" thread-increment="1"/>
    <keep-alive max-connections="500" thread-count="1" timeout-in-seconds="28"/>
    <connection-pool max-pending-count="4096" queue-size-in-bytes="4096" receive-buffer-size-in-bytes="4096" send-buffer-size-in-bytes="8192"/>
    <http-protocol default-response-type="text/plain; charset=iso-8859-1" dns-lookup-enabled="false" forced-response-type="text/plain; charset=iso-8859-1" ssl-enabled="true" version="HTTP/1.1"/>
    <http-file-cache file-caching-enabled="on" file-transmission-enabled="false" globally-enabled="true" hash-init-size="0" max-age-in-seconds="30" max-files-count="1024" medium-file-size-limit-in-bytes="537600" medium-file-space-in-bytes="10485760" small-file-size-limit-in-bytes="2048" small-file-space-in-bytes="1048576"/>
    </http-service>
    <iiop-service client-authentication-required="false">
    <orb max-connections="1024" message-fragment-size="1024" use-thread-pool-ids="thread-pool-1"/>
    <iiop-listener address="0.0.0.0" enabled="true" id="orb-listener-1" port="38050" security-enabled="false"/>
    <iiop-listener address="0.0.0.0" enabled="true" id="SSL" port="38052" security-enabled="true">
    <ssl cert-nickname="s1as" client-auth-enabled="false" ssl2-enabled="false" ssl3-enabled="true" tls-enabled="true" tls-rollback-enabled="true"/>
    </iiop-listener>
    <iiop-listener address="0.0.0.0" enabled="true" id="SSL_MUTUALAUTH" port="38053" security-enabled="true">
    <ssl cert-nickname="s1as" client-auth-enabled="true" ssl2-enabled="false" ssl3-enabled="true" tls-enabled="true" tls-rollback-enabled="true"/>
    </iiop-listener>
    </iiop-service>
    <admin-service system-jmx-connector-name="system" type="das-and-server">
    <!-- The JSR 160 "system-jmx-connector" -->
    <jmx-connector accept-all="false" address="0.0.0.0" auth-realm-name="admin-realm" enabled="true" name="system" port="38054" protocol="rmi_jrmp" security-enabled="false"/>
    <!-- The JSR 160 "system-jmx-connector" -->
    <das-config admin-session-timeout-in-minutes="60" autodeploy-dir="${com.sun.aas.instanceRoot}/autodeploy" autodeploy-enabled="false" autodeploy-jsp-precompilation-enabled="false" autodeploy-polling-interval-in-seconds="2" autodeploy-verifier-enabled="false" deploy-xml-validation="full" dynamic-reload-enabled="true" dynamic-reload-poll-interval-in-seconds="2"/>
    </admin-service>
    <web-container/>
    <ejb-container cache-idle-timeout-in-seconds="600" cache-resize-quantity="32" commit-option="B" max-cache-size="512" max-pool-size="32" pool-idle-timeout-in-seconds="600" pool-resize-quantity="8" removal-timeout-in-seconds="5400" session-store="${com.sun.aas.instanceRoot}/session-store" steady-pool-size="0" victim-selection-policy="nru">
    <ejb-timer-service max-redeliveries="1" minimum-delivery-interval-in-millis="7000" redelivery-interval-internal-in-millis="5000"/>
    </ejb-container>
    <mdb-container idle-timeout-in-seconds="600" max-pool-size="32" pool-resize-quantity="8" steady-pool-size="0"/>
    <jms-service addresslist-behavior="random" addresslist-iterations="3" default-jms-host="default_JMS_host" init-timeout-in-seconds="60" reconnect-attempts="3" reconnect-enabled="true" reconnect-interval-in-seconds="5" type="EMBEDDED">
    <jms-host admin-password="admin" admin-user-name="admin" host="genesis.cadebsa.com" name="default_JMS_host" port="38049"/>
    </jms-service>
    <log-service alarms="false" file="${com.sun.aas.instanceRoot}/logs/server.log" log-rotation-limit-in-bytes="2000000" log-rotation-timelimit-in-minutes="0" log-to-console="false" retain-error-statistics-for-hours="5" use-system-logging="false">
    <module-log-levels admin="INFO" classloader="INFO" cmp="INFO" cmp-container="INFO" configuration="INFO" connector="INFO" corba="INFO" deployment="INFO" ejb-container="INFO" group-management-service="INFO" javamail="INFO" jaxr="INFO" jaxrpc="INFO" jdo="INFO" jms="INFO" jta="INFO" jts="INFO" management-event="INFO" mdb-container="INFO" naming="INFO" node-agent="INFO" resource-adapter="INFO" root="INFO" saaj="INFO" security="INFO" self-management="INFO" server="INFO" synchronization="INFO" util="INFO" verifier="INFO" web-container="INFO"/>
    </log-service>
    <security-service activate-default-principal-to-role-mapping="false" anonymous-role="ANYONE" audit-enabled="false" audit-modules="default" default-realm="file" jacc="default">
    <!-- All administrative users use this realm by default. -->
    <auth-realm classname="com.sun.enterprise.security.auth.realm.file.FileRealm" name="admin-realm">
    <property name="file" value="${com.sun.aas.instanceRoot}/config/admin-keyfile"/>
    <property name="jaas-context" value="fileRealm"/>
    </auth-realm>
    <!-- All administrative users use this realm by default. -->
    <auth-realm classname="com.sun.enterprise.security.auth.realm.file.FileRealm" name="file">
    <property name="file" value="${com.sun.aas.instanceRoot}/config/keyfile"/>
    <property name="jaas-context" value="fileRealm"/>
    </auth-realm>
    <auth-realm classname="com.sun.enterprise.security.auth.realm.certificate.CertificateRealm" name="certificate">
    </auth-realm>
    <jacc-provider name="default" policy-configuration-factory-provider="com.sun.enterprise.security.provider.PolicyConfigurationFactoryImpl" policy-provider="com.sun.enterprise.security.provider.PolicyWrapper">
    <property name="repository" value="${com.sun.aas.instanceRoot}/generated/policy"/>
    </jacc-provider>
    <audit-module classname="com.sun.enterprise.security.Audit" name="default">
    <property name="auditOn" value="false"/>
    </audit-module>
    <message-security-config auth-layer="SOAP">
    <!-- turned off by default -->
    <provider-config class-name="com.sun.xml.wss.provider.ClientSecurityAuthModule" provider-id="XWS_ClientProvider" provider-type="client">
    <request-policy auth-source="content"/>
    <response-policy auth-source="content"/>
    <property name="security.config" value="${com.sun.aas.instanceRoot}/config/wss-server-config-2.0.xml"/>
    </provider-config>
    <provider-config class-name="com.sun.xml.wss.provider.ClientSecurityAuthModule" provider-id="ClientProvider" provider-type="client">
    <request-policy auth-source="content"/>
    <response-policy auth-source="content"/>
    <property name="security.config" value="${com.sun.aas.instanceRoot}/config/wss-server-config-1.0.xml"/>
    </provider-config>
    <provider-config class-name="com.sun.xml.wss.provider.ServerSecurityAuthModule" provider-id="XWS_ServerProvider" provider-type="server">
    <request-policy auth-source="content"/>
    <response-policy auth-source="content"/>
    <property name="security.config" value="${com.sun.aas.instanceRoot}/config/wss-server-config-2.0.xml"/>
    </provider-config>
    <provider-config class-name="com.sun.xml.wss.provider.ServerSecurityAuthModule" provider-id="ServerProvider" provider-type="server">
    <request-policy auth-source="content"/>
    <response-policy auth-source="content"/>
    <property name="security.config" value="${com.sun.aas.instanceRoot}/config/wss-server-config-1.0.xml"/>
    </provider-config>
    </message-security-config>
    </security-service>
    <transaction-service automatic-recovery="false" heuristic-decision="rollback" keypoint-interval="2048" retry-timeout-in-seconds="600" timeout-in-seconds="0" tx-log-dir="${com.sun.aas.instanceRoot}/logs"/>
    <monitoring-service>
    <module-monitoring-levels connector-connection-pool="OFF" connector-service="OFF" ejb-container="OFF" http-service="OFF" jdbc-connection-pool="OFF" jms-service="OFF" jvm="OFF" orb="OFF" thread-pool="OFF" transaction-service="OFF" web-container="OFF"/>
    </monitoring-service>
    <diagnostic-service capture-app-dd="true" capture-hadb-info="true" capture-install-log="true" capture-system-info="true" compute-checksum="true" max-log-entries="500" min-log-level="INFO" verify-config="true"/>
    <java-config classpath-suffix="" debug-enabled="false" debug-options="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=9009" env-classpath-ignored="true" java-home="${com.sun.aas.javaRoot}" javac-options="-g" rmic-options="-iiop -poa -alwaysgenerate -keepgenerated -g" system-classpath="${com.sun.aas.installRoot}/lib/appserv-launch.jar">
    <!-- various required jvm-options -->
    <jvm-options>-client</jvm-options>
    <jvm-options>-Djava.endorsed.dirs=${com.sun.aas.installRoot}/lib/endorsed</jvm-options>
    <jvm-options>-Djava.security.policy=${com.sun.aas.instanceRoot}/config/server.policy</jvm-options>
    <jvm-options>-Djava.security.auth.login.config=${com.sun.aas.instanceRoot}/config/login.conf</jvm-options>
    <jvm-options>-Dsun.rmi.dgc.server.gcInterval=3600000</jvm-options>
    <jvm-options>-Dsun.rmi.dgc.client.gcInterval=3600000</jvm-options>
    <jvm-options>-Xmx1400m</jvm-options>
    <jvm-options>-Djavax.net.ssl.keyStore=${com.sun.aas.instanceRoot}/config/keystore.jks</jvm-options>
    <jvm-options>-Djavax.net.ssl.trustStore=${com.sun.aas.instanceRoot}/config/cacerts.jks</jvm-options>
    <jvm-options>-Djava.ext.dirs=${com.sun.aas.javaRoot}/jre/lib/ext${path.separator}${com.sun.aas.instanceRoot}/lib/ext${path.separator}${com.sun.aas.derbyRoot}/lib</jvm-options>
    <jvm-options>-Djdbc.drivers=org.apache.derby.jdbc.ClientDriver</jvm-options>
    <jvm-options>-Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder</jvm-options>
    <jvm-options>-Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory</jvm-options>
    <jvm-options>-Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar</jvm-options>
    <jvm-options>-Dcom.sun.enterprise.taglisteners=jsf-impl.jar</jvm-options>
    <jvm-options>-XX:NewRatio=2</jvm-options>
    <jvm-options>-XX:MaxPermSize=512m</jvm-options>
    <jvm-options>-XX:PermSize=512m</jvm-options>
    <jvm-options>-Xms1400m</jvm-options>
    <jvm-options>-XX:+AggressiveHeap</jvm-options>
    <jvm-options>-XX:MaxHeapFreeRatio=20</jvm-options>
    <jvm-options>-XX:MinHeapFreeRatio=10</jvm-options>
    </java-config>
    <thread-pools>
    <thread-pool idle-thread-timeout-in-seconds="120" max-thread-pool-size="200" min-thread-pool-size="0" num-work-queues="1" thread-pool-id="thread-pool-1"/>
    </thread-pools>
    <management-rules enabled="true">
    </management-rules>
    </config>
    <!-- config model with name "server-config" ends -->
    </configs>
    <servers>
    <server config-ref="server-config" lb-weight="100" name="server">
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="adminapp" virtual-servers="__asadmin"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="admingui" virtual-servers="__asadmin"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="MEjbApp" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="__JWSappclients" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="__ejb_container_timer_app" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="GestionPlanillas" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Beneficios" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="RRHH" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Contabilidad" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="WSContabilidad"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="PresupuestoFinanciero"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="SeguridadyAuditoria" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="General"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Subsistema_de_Recursos_Humanos"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="CajaChica" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Adquisiciones" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Proveedores" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Generales-ejb"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="raiz"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Adquisiciones-ejb"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Caja_Chica-ejb"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Contabilidad-ejb"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Proveedores-ejb"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Presupuesto_de_Inversiones-ejb"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="PresupuestodeInversiones" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="GestionVacaciones" virtual-servers="server"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="Almacenes-ejb"/>
    <application-ref disable-timeout-in-minutes="30" enabled="true" lb-enabled="false" ref="PIM" virtual-servers="server"/>
    <resource-ref enabled="true" ref="jdbc/__TimerPool"/>
    <resource-ref enabled="true" ref="jdbc/__CallFlowPool"/>
    <resource-ref enabled="true" ref="jdbc/__default"/>
    <resource-ref enabled="true" ref="ConeccionBD"/>
    <resource-ref enabled="true" ref="jdbc/ConeccionBD"/>
    </server>
    </servers>
    <property name="administrative.domain.name" value="testeoapp9"/>
    </domain>
    Assets.. need further information.. please let me know

    [#|2007-10-03T17:12:16.600-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Mas abajo|#]
    [#|2007-10-03T17:12:16.600-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Enreo aquiiiiiiiiiii almAux=3 almdeKardex=3|#]
    [#|2007-10-03T17:12:16.600-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs En el segundo while|#]
    [#|2007-10-03T17:12:16.600-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Mas abajo|#]
    [#|2007-10-03T17:12:16.600-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Enrtro al else|#]
    [#|2007-10-03T17:12:16.600-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs En el segundo while|#]
    [#|2007-10-03T17:12:16.600-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Mas abajo|#]
    [#|2007-10-03T17:12:16.600-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Enreo aquiiiiiiiiiii almAux=3 almdeKardex=3|#]
    [#|2007-10-03T17:12:16.600-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs En el segundo while|#]
    [#|2007-10-03T17:12:16.600-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Mas abajo|#]
    [#|2007-10-03T17:12:16.600-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Enreo aquiiiiiiiiiii almAux=3 almdeKardex=3|#]
    [#|2007-10-03T17:12:16.601-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs En el segundo while|#]
    [#|2007-10-03T17:12:16.601-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Mas abajo|#]
    [#|2007-10-03T17:12:16.601-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Enrtro al else|#]
    [#|2007-10-03T17:12:16.617-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Entro al listarPedidosPorTipoPIMAlmacen|#]
    [#|2007-10-03T17:12:16.633-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Paso el 1er query|#]
    [#|2007-10-03T17:12:16.633-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Paso el 2do query|#]
    [#|2007-10-03T17:12:16.673-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Paso el 2do query jeje|#]
    [#|2007-10-03T17:12:16.673-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Tama��o=1|#]
    [#|2007-10-03T17:12:16.673-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs En el segundo while|#]
    [#|2007-10-03T17:12:16.673-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Mas abajo|#]
    [#|2007-10-03T17:12:16.673-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Enreo aquiiiiiiiiiii almAux=3 almdeKardex=3|#]
    [#|2007-10-03T17:12:26.629-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    Entra a interfaz con el valor: GVASQUEZ|#]
    [#|2007-10-03T17:12:26.629-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    Sale de la consulta|#]
    [#|2007-10-03T17:12:26.629-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    se creo la consulta|#]
    [#|2007-10-03T17:12:26.659-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    Creo la lista|#]
    [#|2007-10-03T17:12:26.659-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    Centro de costo: 222|#]
    [#|2007-10-03T17:12:26.694-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    ccs Entro aquiiiii usuario=GVASQUEZ|#]
    [#|2007-10-03T17:12:26.721-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    ccs empleado=2142|#]
    [#|2007-10-03T17:12:26.742-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    ccs paso query|#]
    [#|2007-10-03T17:12:27.313-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs Entro a imagen|#]
    [#|2007-10-03T17:12:27.313-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs Paso 1|#]
    [#|2007-10-03T17:12:27.314-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs Paso2|#]
    [#|2007-10-03T17:12:27.315-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs Paso3|#]
    [#|2007-10-03T17:12:27.315-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs Paso3aaa|#]
    [#|2007-10-03T17:12:27.316-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs Paso3ddd|#]
    [#|2007-10-03T17:12:27.316-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs:Paso4|#]
    [#|2007-10-03T17:12:27.317-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs:Paso5|#]
    [#|2007-10-03T17:12:27.318-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs:Paso6|#]
    [#|2007-10-03T17:12:27.318-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():NML:Prueba5|#]
    [#|2007-10-03T17:12:27.319-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():NML:Prueba6|#]
    [#|2007-10-03T17:12:27.319-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():NML:Prueba7|#]
    [#|2007-10-03T17:12:27.320-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():NML:Prueba8|#]
    [#|2007-10-03T17:12:27.320-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs:Paso7|#]
    [#|2007-10-03T17:12:27.321-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs:Paso8|#]
    [#|2007-10-03T17:12:27.321-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs:Paso8aa|#]
    [#|2007-10-03T17:12:27.322-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs:Paso9|#]
    [#|2007-10-03T17:12:27.322-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|WebModule[/PIM] ServletContext.log():ccs:Paso10|#]
    [#|2007-10-03T17:12:30.871-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    Entra a interfaz con el valor: GVASQUEZ|#]
    [#|2007-10-03T17:12:30.871-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    Sale de la consulta|#]
    [#|2007-10-03T17:12:30.871-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    se creo la consulta|#]
    [#|2007-10-03T17:12:30.902-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    Creo la lista|#]
    [#|2007-10-03T17:12:30.902-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    Centro de costo: 222|#]
    [#|2007-10-03T17:12:30.920-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs Entro aquiiiii usuario=GVASQUEZ|#]
    [#|2007-10-03T17:12:30.934-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs empleado=2142|#]
    [#|2007-10-03T17:12:30.950-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|
    ccs paso query|#]
    [#|2007-10-03T17:12:31.319-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs Entro a imagen|#]
    [#|2007-10-03T17:12:31.319-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs Paso 1|#]
    [#|2007-10-03T17:12:31.320-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs Paso2|#]
    [#|2007-10-03T17:12:31.320-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs Paso3|#]
    [#|2007-10-03T17:12:31.321-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs Paso3aaa|#]
    [#|2007-10-03T17:12:31.321-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs Paso3ddd|#]
    [#|2007-10-03T17:12:31.322-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs:Paso4|#]
    [#|2007-10-03T17:12:31.322-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs:Paso5|#]
    [#|2007-10-03T17:12:31.323-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs:Paso6|#]
    [#|2007-10-03T17:12:31.323-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():NML:Prueba5|#]
    [#|2007-10-03T17:12:31.324-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():NML:Prueba6|#]
    [#|2007-10-03T17:12:31.324-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():NML:Prueba7|#]
    [#|2007-10-03T17:12:31.325-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():NML:Prueba8|#]
    [#|2007-10-03T17:12:31.325-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():NML:Prueba9|#]
    [#|2007-10-03T17:12:31.326-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs:Paso7|#]
    [#|2007-10-03T17:12:31.326-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs:Paso8|#]
    [#|2007-10-03T17:12:31.327-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs:Paso8bb|#]
    [#|2007-10-03T17:12:31.327-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs:Paso9|#]
    [#|2007-10-03T17:12:31.328-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-7879-0;|WebModule[/PIM] ServletContext.log():ccs:Paso10|#]
    [#|2007-10-03T17:12:33.467-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    GVP - Parametros: vPedNro=0,vPedTpo=4,vPedDsc=,vPedEstado=0,vEmpCod=2142|#]
    [#|2007-10-03T17:12:33.468-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    :::___qry=SELECT new cadeb.almacenes.datos.PedidoAlmacenDatos(a.pedido,a.tipodePedido,a.cargo,a.folio,a.descripcion, a.tipoPartida,a.conceptoPartida,a.fechadeAlta,a.estado,a.fechadeEstado,a.pedidoparaFecha,a.usuario,a.centroCostoAprobacion,a.observaciones,a.almacen.almacen,a.almacen.descripcion) FROM Almpedidos a Where a.pedido>=0 and UPPER(a.descripcion) Like '%%' and a.empleado =2142 and a.tipodePedido=4 Order by a.pedido|#]
    [#|2007-10-03T17:12:33.671-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:33.684-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:33.694-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:33.707-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:33.716-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:33.722-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:33.731-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:33.736-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:33.745-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:33.750-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:33.759-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:33.774-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:33.783-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:33.799-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:33.856-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:33.861-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:33.871-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:33.880-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:33.889-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:33.894-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.067-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.071-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.083-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.088-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.096-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.101-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.109-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.123-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.136-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.143-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.152-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.157-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.166-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.181-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.189-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.203-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.211-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.223-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.232-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.237-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.246-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.265-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.276-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.288-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.297-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.304-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.312-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.317-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.327-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.332-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.341-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.345-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.354-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.363-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.372-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.377-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.386-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.394-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.403-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.408-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.418-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.424-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.433-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.440-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.449-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.455-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.465-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.472-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.481-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.497-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.505-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.514-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:34.525-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:34.529-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=11;_ThreadName=httpWorkerThread-7879-1;|
    en proceso|#]
    [#|2007-10-03T17:12:36.857-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    GVP - Parametros: vPedNro=0,vPedTpo=4,vPedDsc=,vPedEstado=0,vEmpCod=2142|#]
    [#|2007-10-03T17:12:36.858-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    :::___qry=SELECT new cadeb.almacenes.datos.PedidoAlmacenDatos(a.pedido,a.tipodePedido,a.cargo,a.folio,a.descripcion, a.tipoPartida,a.conceptoPartida,a.fechadeAlta,a.estado,a.fechadeEstado,a.pedidoparaFecha,a.usuario,a.centroCostoAprobacion,a.observaciones,a.almacen.almacen,a.almacen.descripcion) FROM Almpedidos a Where a.pedido>=0 and UPPER(a.descripcion) Like '%%' and a.empleado =2142 and a.tipodePedido=4 Order by a.pedido|#]
    [#|2007-10-03T17:12:37.087-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:37.093-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    en proceso|#]
    [#|2007-10-03T17:12:37.102-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:37.108-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    en proceso|#]
    [#|2007-10-03T17:12:37.117-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:37.123-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    en proceso|#]
    [#|2007-10-03T17:12:37.132-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:37.136-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    en proceso|#]
    [#|2007-10-03T17:12:37.145-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:37.154-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    en proceso|#]
    [#|2007-10-03T17:12:37.163-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:37.168-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    en proceso|#]
    [#|2007-10-03T17:12:37.176-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:37.187-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    en proceso|#]
    [#|2007-10-03T17:12:37.196-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=13;_ThreadName=httpWorkerThread-7879-2;|
    En la clase de datos|#]
    [#|2007-10-03T17:12:37.202-0400|INFO|sun-appserver-pe9.0|javax.enterpri                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      

Maybe you are looking for

  • Battery heating

    I have the original battery that came with the Thunderbolt.  I noticed if I'm using mobile web for maybe over 20 minutes or so, I can feel the battery heating up.  Is anyone else experiencing this with the original battery?  Is this "normal"?  I don'

  • Error while generating HTML

    Hi, I have a design studio application I want to share publicly on BI Launch Pad for my company. The dashboard/application made in design studio works fine locally and on BI Platform public folder (through my login credentials). However, when other p

  • Time Capsule USB no longer recognized

    So, about 3 months ago I bought a USB drive/flash drive/whatever big enough to use as my Time Capsule backup disk. I ran TC and everything backed up perfectly, even did two maintenance backups at 2 week intervals. I inserted my drive the other night

  • I started a project in iMovie 10.0.4 but media grayed out

    All my iPhoto libraries and movies are grayed out.  I can get media into iMovie by dragging content from iPhoto to the desktop and then dragging them into iMovie. I also tried an older version of iMovie (ilife 11) with similar results.  I've repaired

  • Sometimes when starting my iMac it shows a folder icon with a Question mark in it. Mac does not start up, only when shutting down and restart again solves it

    Sometimes when starting up my iMac it shows only a folder icon with a question mark in it. Nothing happened. Only when start up again it runs ok. What can be the cause of this. thanks for your help Hans