Java document is unavailable

Recently i has installed jdk 1.6 but my java environment could not find its documentation.
What can i do?

Probably you can download from here:
[http://java.sun.com/javase/downloads/index.jsp#docs|http://java.sun.com/javase/downloads/index.jsp#docs]
And point in your environment (I guess that you mean IDE), to that one.
Anyway, probably you will get more feedback in this forum :
[http://forums.sun.com/forum.jspa?forumID=54|http://forums.sun.com/forum.jspa?forumID=54]
Regards,
David.

Similar Messages

  • Java Status info Unavailable RC=100

    Hi All
    Facing issue with java start up in a dual stack system.
    In MMC its shows Java status info unavailable. When restarting only Java stack , i am getting this kind of error
    ==========
    [Thr 6132] Fri Jul 17 07:06:48 2009
    [Thr 6132] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2823]
    [Thr 6132] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 2 / sock 1720
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.82.87:3900) [nixxi.cpp ;   2823]
    [Thr 6132] *** ERROR => MsIAttachEx: NiBufConnect to XXXsap01/3900 failed (rc=NIECONN_REFUSED) [msxxi.c ;     652]
    [Thr 6132] *** ERROR => Can't attach to message server (XXXsap01/3900) [rc = -100]-> terminate [jcntrms.c ;   374]
    [Thr 6132] JControlCloseProgram: started (exitcode = -100)
    [Thr 6132] *** ERROR => MsIModState: not_attached [msxxi.c ;     3838]
    [Thr 6132] *** ERROR => Can't modify message server state (state = 7, rc = -3) [jcntrms.c ;   841]
    [Thr 6132] JControlCloseProgram: good bye... (exitcode = -100)
    ============
    ABle to connect to Config tool and ABAP stack is also running fine.JVM memory settings seems fine.
    Pls let me know your ideas. OS Windows 2003 DB Oracle 10g 2
    Regards
    Ajay

    Hi Uday
    Below is the content of DEV_MS ,although it is not updated recently .
    =======
    [Thr 4336] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 4348) [msxxserv.c   1837]
    [Thr 4336] load acl file =
    XXXsap01.XXXcorp.com\sapmnt\ISM\SYS\global\ms_acl_info.DAT
    [Thr 4336] MsGetOwnIpAddr: my host addresses are :
    [Thr 4336]   1 : [192.168.82.87] XXXsap01.XXXcorp.com (HOSTNAME)
    [Thr 4336]   2 : [127.0.0.1] XXXsap01.XXXcorp.com (LOCALHOST)
    [Thr 4336] MsHttpInit: full qualified hostname = XXXsap01.XXXcorp.com
    [Thr 4336] HTTP logging is switch off
    [Thr 4336] set HTTP state to LISTEN
    [Thr 4336] MsHttpOwnDomain: own domain[1] = XXXcorp.com
    [Thr 4336] ms/icf_info_server : deleted
    [Thr 4336] *** I listen to port sapmsISM (3601) ***
    [Thr 4336] *** I listen to internal port 3901 (3901) ***
    [Thr 4336] *** HTTP port 8101 state LISTEN ***
    [Thr 4336] CUSTOMER KEY: >A1XX561XXX<
    =======
    sapmsSID entry is already present in Services files.
    Regards
    Ajay

  • Inserting a PCL string in java Document for paper source control

    Got a printer issue here.
    I need to set the source printer tray from within the document using PCL because I am printing to a network printer and the driver that is being used always defaults the source tray to the printer default.
    I am inserting the String right at the beginning of the document like so:
    document.insertString(0, "\u001B&l2H", null);
    The "\u001B" is the ASCII escape character used by the control sequence and the "&l2H" is the PCL code for the Manual tray. This does insert the string into the document but when the ,prn file is created (print to file) it does not use the inserted value.
    The document type is text/html and I am 'Printing to file' using:
    aJobAttrs.add(new javax.print.attribute.standard.Destination(new java.net.URI("file:///C:/temp/out.prn"))); as suggested in another forum. The .prn file that is persisted however still sets the tray to the printer default (&l7H).
    Anyone go any suggestions?
    Ps The MediaTray.MANUAL does not work because the network print driver overwrites it.

    No, I does not set the print tray on the .prn file persited by the code. It would appear that the default tray (&l7H) is not overwritten with the tray I set in my document.
    It may have something to do with the escape characters?

  • Java Document Paragraph Colors

    Hi,
    I want to change Background color of Styled Document. I am able to change text color through
    StyleConstants.setForeground(styles, Color,RED);
    Its changing background color for text. If text ends at middle of line then color applied to half line only. I need complete line to be colored. How to apply this with StyleConstants.
    I also want to apply Different color effects to different paragraphs. How to achieve this.
    StyleConstants.setForeground(styles, getForeground());
            StyleConstants.setBackground(styles, Color.RED);             
            doc.insertString(doc.getLength(), text, styles);waiting for your replies.

    I need complete line to be colored. How to apply this with StyleConstants. I don't know how to do this with StyleConstants. However, you should be able to use a highlighter. See how the setDrawsLayeredHighlights(...) method affects the painting of highlights:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class Highlighting extends JFrame
         public Highlighting()
              String text = "one\ntwo\nthree\nfour\nfive";
              Dimension d = new Dimension(200, 200);
              JTextArea textArea1 = new JTextArea();
              textArea1.setPreferredSize(d);
              textArea1.setText( text );
              JTextArea textArea2 = new JTextArea();
              textArea2.setPreferredSize(d);
              textArea2.setText( text );
              JPanel north = new JPanel();
              north.add(textArea1);
              north.add(textArea2);
              getContentPane().add(north, BorderLayout.NORTH);
              JTextPane textPane1 = new JTextPane();
              textPane1.setPreferredSize(d);
              textPane1.setText( text );
              JTextPane textPane2 = new JTextPane();
              textPane2.setPreferredSize(d);
              textPane2.setText( text );
              JPanel south = new JPanel();
              south.add(textPane1);
              south.add(textPane2);
              getContentPane().add(south, BorderLayout.SOUTH);
              DefaultHighlighter highlighter1 =  (DefaultHighlighter)textArea2.getHighlighter();
              highlighter1.setDrawsLayeredHighlights(false);
              DefaultHighlighter highlighter2 =  (DefaultHighlighter)textPane2.getHighlighter();
              highlighter2.setDrawsLayeredHighlights(false);
              Highlighter.HighlightPainter yellow = new DefaultHighlighter.DefaultHighlightPainter( Color.YELLOW );
              try
                   textArea1.getHighlighter().addHighlight(4, 8, yellow);
                   textArea2.getHighlighter().addHighlight(4, 8, yellow);
                   textPane1.getHighlighter().addHighlight(4, 8, yellow);
                   textPane2.getHighlighter().addHighlight(4, 8, yellow);
                   textArea1.getHighlighter().addHighlight(16, 18, yellow);
                   textArea2.getHighlighter().addHighlight(16, 18, yellow);
                   textPane1.getHighlighter().addHighlight(16, 18, yellow);
                   textPane2.getHighlighter().addHighlight(16, 18, yellow);
              catch(BadLocationException ble) {}
         public static void main(String[] args)
              JFrame frame = new Highlighting();
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.setSize(500, 450);
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }Also, try selecting all the text with the mouse to see how the selection highlighting is different in each case.

  • Where can I find the Java Document of com.sap.aii.af.ra.ms.api.Message

    Com.sap.aii.af.ra.ms.api.Message is class that would be used in Adapter Module development, but I found I can't find the document of it in neither Adapter Module related document nor XI Mapping related document.
    Anyone can help me?

    YiNing,
    Did you check this link,
    http://help.sap.com/saphelp_nw04/helpdata/en/87/3ef4403ae3db12e10000000a155106/content.htm
    Does it help? Also did you look into the Java Docs Section,
    https://help.sap.com/javadocs/index.html
    Regards
    Bhavesh

  • Wd java docu in german

    hi,
    where can I find "web dynpro java"- and "nwdi"-docu in german (links, pdf-files)?
    I found it in english and it´s ok but reading german would be more efficient

    Hi Thorsten..
    Chk these links..
    http://wendtstud1.hpi.uni-potsdam.de/sysmod-seminar/SS2005/elaborations/19-NWDI-Overview.pdf
    and also chk this..
    http://wendtstud1.hpi.uni-potsdam.de/sysmod-seminar/SS2005/elaborations/
    http://wendtstud1.hpi.uni-potsdam.de/sysmod-seminar/SS2005/elaborations/01-SAPWebApplicationServer.pdf
    Regards,
    GS

  • Need some help with java documents if possible

    Hello all,
    I am trying to decompile .class files ok, i decompile it without any problems but when i open the java source i see weird string codes, and its not readable for the human, i tried lot of decompiling softwares but no software can make the file readable this is the problem that i have:
    // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
    // Jad home page: http://www.kpdus.com/jad.html
    // Decompiler options: packimports(3)
    // Source File Name:   b.java
    package com.pimpernel.a.a.a;
    import com.pimpernel.chatpointclassic.client.a.e;
    import java.io.DataOutputStream;
    import java.io.PrintStream;
    import java.util.*;
    // Referenced classes of package com.pimpernel.a.a.a:
    //            a, e
    public class b
        implements Runnable
        b(a a1, a a2, DataOutputStream dataoutputstream, com.pimpernel.a.a.a.e e1)
            a = a1;
            b = 2000;
            c = 50;
            d = 4;
            o = -1L;
            e = a2;
            f = dataoutputstream;
            g = e1;
            j = new Vector();
            h = c;
        b(a a1, a a2, DataOutputStream dataoutputstream, com.pimpernel.a.a.a.e e1, Properties properties)
            int i1 = a.ev;
            super();
            a = a1;
            b = 2000;
            c = 50;
            d = 4;
            o = -1L;
            b = a(properties, c("-!\001\025R-:\006\024Y\035+\001\037f;+\032\036d\"+\n\013C'#\n6V6"), 20000);
            c = a(properties, c("-!\001\025R-:\006\024Y\035+\001\037f;+\032\036d\"+\n\013C'#\n6^ "), 50);
            d = a(properties, c("-!\001\025R-:\006\024Y\035+\001\037f;+\032\036z' <\036Y*\037\032\036B+\f\n\035X<+?\tX-+\034\b^ )"), 4);
            e = a2;
            f = dataoutputstream;
            g = e1;
            j = new Vector();
            h = c;
            if(e.i != 0)
                a.ev = ++i1;
        public int a(Properties properties, String s, int i1)
            try
                return Integer.parseInt(properties.getProperty(s));
            catch(Exception _ex)
                return i1;
        public void a()
            c();
            j.removeAllElements();
            f = null;
            j = null;
        public void b()
            if(i == null)
                k = System.currentTimeMillis();
                m = 0;
                n = 0;
                i = new Thread(this, c("\007\034,(R *>\016R;+"));
                i.start();
        public void c()
            if(i != null)
                i.stop();
                i = null;
        public void a(String s)
            j.insertElementAt(s, 0);
        public void b(String s)
            a(s.length());
            if((com.pimpernel.a.a.a.a.b(a) & 0x10) == 16)
                System.out.println(c("\036<\006\024E':\026[z+=\034\032P+n<\036Y*tO") + s);
            o = 0L;
            try
                if(f != null)
                    synchronized(f)
                        f.writeBytes(s + c("CD"));
                        f.flush();
            catch(Exception exception)
                if(e.eo)
                    if((com.pimpernel.a.a.a.a.b(a) & 1) == 1)
                        System.out.println(c("\0136\f\036G:'\000\025\027' O\bR *>\016R;+U[") + exception);
                    try
                        com.pimpernel.a.a.a.a.c(e);
                    catch(Exception _ex) { }
        public void a(int i1)
            if((com.pimpernel.a.a.a.a.b(a) & 4) == 4)
                m++;
                n += i1;
                l = System.currentTimeMillis();
                if(l - k > 10000L)
                    long l1 = l - k;
                    k = l;
                    if(com.pimpernel.a.a.a.a.a(a) == null)
                        com.pimpernel.a.a.a.a.a(a, new Date());
                    com.pimpernel.a.a.a.a.a(a).setTime(l);
                    System.out.println(c("ccB") + com.pimpernel.a.a.a.a.a(a).toString() + c("ccB"));
                    System.out.println(c("\001;\033\034X' \b[z=)OT\027=+\f[\nn") + (long)m / (l1 / 1000L));
                    System.out.println(c("\001;\033\034X' \b[u7:\n\b\027an\034\036TnsO") + (long)n / (l1 / 1000L));
                    m = 0;
                    n = 0;
        public void run()
            int i1;
            i1 = a.ev;
            o = 0L;
            if(i1 == 0) goto _L2; else goto _L1
    _L1:
            try
                Thread.sleep(h);
            catch(Exception _ex) { }
            o += h;
            j.size();
            d;
    _L9:
            JVM INSTR icmple 73;
               goto _L3 _L4
    _L3:
            if(g != null)
                g.a(j);
    _L4:
            if(j.isEmpty()) goto _L6; else goto _L5
    _L5:
            String s = (String)j.lastElement();
            a(s.length());
            if((com.pimpernel.a.a.a.a.b(a) & 8) == 8)
                System.out.println(c("\037;\n\016Rn=\006\001RnsO") + (j.size() - 1) + c("n\035\n\025Stn") + s);
            synchronized(f)
                f.writeBytes(s + c("CD"));
                f.flush();
            o = 0L;
            j.removeElement(j.lastElement());
            h = h << 1;
            if(i1 == 0) goto _L7; else goto _L6
    _L6:
            h = h >> 1;
    _L7:
            if(h > b)
                h = c;
            if(h < c)
                h = c;
            if(e.ed && o >= 10000L)
                a(c("\036\007!<\027="));
                o = 0L;
            continue; /* Loop/switch isn't completed */
            Exception exception;
            exception;
            if(!e.eo)
                continue; /* Loop/switch isn't completed */
            com.pimpernel.a.a.a.a.b(a) & 1;
            1;
            if(i1 != 0) goto _L9; else goto _L8
    _L8:
            JVM INSTR icmpne 387;
               goto _L10 _L11
    _L10:
            break MISSING_BLOCK_LABEL_362;
    _L11:
            break MISSING_BLOCK_LABEL_387;
            System.out.println(c("\0136\f\036G:'\000\025\027' O\bR *>\016R;+U[") + exception);
            try
                com.pimpernel.a.a.a.a.c(e);
            catch(Exception _ex) { }
    _L2:
            if(e.eo) goto _L1; else goto _L12
    _L12:
        private static String c(String s)
            char ac[] = s.toCharArray();
            int i1 = ac.length;
            int k1;
            for(int j1 = 0; j1 < i1; j1++)
                switch(j1 % 5)
                case 0: // '\0'
                    k1 = 0x4e;
                    break;
                case 1: // '\001'
                    k1 = 78;
                    break;
                case 2: // '\002'
                    k1 = 111;
                    break;
                case 3: // '\003'
                    k1 = 123;
                    break;
                default:
                    k1 = 55;
                    break;
                ac[j1] ^= k1;
            return new String(ac);
        a a;
        private int b;
        private int c;
        private int d;
        private a e;
        private DataOutputStream f;
        private com.pimpernel.a.a.a.e g;
        private int h;
        private Thread i;
        private Vector j;
        private long k;
        private long l;
        private int m;
        private int n;
        private long o;
        private final int p = 10000;
    }can some body help me and tell me how i can read that strange codes:
    System.out.println(c("\037;\n\016Rn=\006\001RnsO")
    :S?
    i am sorry because i am on the wrong forum.
    i hope someone can help me.
    Sorry for my bad english!
    Greetings,
    Nino_M

    This forum is for Sun Java Studio Creator questions.

  • Read an XML file with java: Document to Node conversion

    Hello,
    I want to read an XML file and convert data into a Node instance because I need this for an XForm application.
    My code is:
    private Node workstationType;
    public Node initModel() {
    try {
    //This one will hold the results
    Document document;
    //loading from XML File
    String fileName="C:\\documents\\iniForm.xml";
    FileInputStream inXML = new FileInputStream(fileName);
    BufferedReader in = new BufferedReader(new InputStreamReader(inXML));
    document = XMLLoader.loadFromStream(in);
    } catch (Exception e) {
    System.err.println("ERROR:" + e.getMessage());
    e.printStackTrace(System.err);
    //Create the node for the root, 'typeOfWorkstation'
    workstationType = document.getDocumentElement(); //A
    //Return the root node
    return (workstationType);
    The problem: I can convert Node instance to Document instance (line A)
    The error message is: "document cannot be resolved".
    How can I do that??
    Thank you
    Sylvain

    Here is my XMLLoader class:
    public class XMLLoader {
         public static Document loadFromStream(Reader reader) throws Exception {
              //Build a DOM document with the reader
              //prepare DOM document
              DOMImplementation impl;
              DocumentBuilder builder;
              try {
                   // Find the implementation
                   DocumentBuilderFactory factory =
                        DocumentBuilderFactory.newInstance();
                   factory.setNamespaceAware(false);
                   factory.setValidating(false);
                   builder = factory.newDocumentBuilder();
                   impl = builder.getDOMImplementation();
                   //Read and parse the XML input stream into a DOM document
                   Document document = builder.parse(new InputSource(reader));
                   return document;
              } catch (IOException ex) {
                   throw new RuntimeException(
                        "[XMLLoader.loadFromFile]: Failed loading the InputStream. Root cause: \n"
                             + ex);
              } catch (Exception ex) {
                   throw new RuntimeException(
                        "[XMLLoader.loadFromFile]: Failed to initialize DOM factory. Root cause: \n"
                             + ex);

  • Java Document in Eclipse

    Hi frnds
    can anyone tell how to generate javadoc in eclipse3.2
    what is the JavaDoc Command in that??
    thanks
    Alpesh

    thanks
    I got too
    Project->Generate JavaDoc
    set JavaDoc Command parametere to C:\j2sdk1.4.2_10\bin\javadoc.exe
    [:)]

  • Pages iOS says document unavailable

    Dear all,
    I recently created a document in pages for iOS on my ipad 2 on a cross-country flight. I just tried to access the document on my iPad 2 in pages and the document is unavailable with a message that an internet connection is required.
    I'm figuring this has something to do with having iCloud enabled, but I am trying to open the document on the device on which I created it - and I was ona. Flight with no wifi, so I had airplane mode enabled on the device.
    Any hints on what I can do to retrieve my document? I spent five hours working on it...
    Thanks,
    Kevin

    This is a problem with icloud, DO NOT TURN ICLOUD OFF YOU WILL LOSE ALL YOUR WORK.
    This problem can not be fixed at the moment. Your work is lost until apple undates icloud to be fully funtional with Pages. You can restart, if you remember what you did. But as for recovering your work.... not possable.
    Yes this is sad, but use it for reference to TURN OFF ICLOUD when makeing a document if you don't have a 3G device.
    Sorry about your Work,
    Jordan

  • Streaming  PDF Documents Using JAVA

    Hello Geeks,
    I want to develop a document viewer which gets embedded in web browser.
    Are there any JAVA API available for this ?
    I am confused where to start.

    Embedded in a web browser -> java applet.
    Document viewer -> depends on which document type you want to show (and how you want to show it). Search on "java <document type> library"to see if anyone else solved it.

  • Needed Ultrasearch Query java API document

    Hi,
    Where i can find/download the complete ultrasearch java api documentation (i have java document only for one package i.e "oracle.context.isearch.query").
    The one which is shipped with Oracle9iASv2 is incomplete. It would be great if i can have some sample code also.
    Thanks for your help,
    Manish

    The UltraSearch manual for Oracle 9.2 is here and for 901 is here.

  • Rebuilt HD, now 'Java is unavailable'

    My problem with Java showing as unavailable is that I had to erase my one HD, and reinstall Tiger 10.4.11. I backed up the entire drive contents onto a second drive, and installed Tiger there also. I reinstalled Tiger on the main drive, and put all the pertinent items into the new user file.
    But now when I run a couple of sites that used to work just fine with Java I get the 'unavailable' notice, along with a blue cube with question marks on the sides.
    Also, the second drive does not find Java either. When moving things from one drive to the other did something get screwed up? Been checking out the questions already asked about the 'unavailable' problem, and do I need to do the whole uninstall/install Java trip, or reinstall Tiger. Are there any other options?
    Thanks

    Did you use Disk Utility to Repair Permissions & reboot yet?
    (Good idea to Repair Permissions before/after any update/upgrade).
    Do you have these files, (Spotlight won't work to find them),...
    /usr/lib/java
    /Applications/Utilities/Java/Java Web Start.app
    /System/Library/PrivateFrameworks/WebKitDashboardSupport.framework/Frameworks/We bKit.framework/Versions/A/Frameworks/JavaScriptCore.framework/Versions/A/JavaScr iptCore
    /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjavacrwdemo.jnilib
    /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjava.jni lib
    /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Libraries/libjava.jni lib
    /usr/lib/java/libPureAppKitJava.B.dylib
    /usr/lib/java/libAppKitJava.B.dylib
    /System/Library/Frameworks/JavaEmbedding.framework/Versions/A/JavaEmbedding
    /System/Library/PrivateFrameworks/JavaCarbonSupport.framework/Versions/A/JavaCar bonSupport
    /System/Library/PrivateFrameworks/JavaApplicationLauncherUI.framework/Versions/A /JavaApplicationLauncherUI
    /System/Library/PrivateFrameworks/JavaApplicationLauncher.framework/Versions/A/J avaApplicationLauncher
    /usr/lib/java/libObjCJava.A.dylib
    /usr/lib/java/libFoundationJava.B.dylib
    /System/Library/PrivateFrameworks/JavaScriptGlue.framework/Versions/A/JavaScript Glue
    /System/Library/Frameworks/JavaVM.framework/Versions/1.3.1/Libraries/libjava.jni lib
    /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    /Volumes/Machintosh HD/System/Library/PrivateFrameworks/JavaScriptGlue.framework
    /System/Library/PrivateFrameworks/WebKitDashboardSupport.framework/Frameworks/We bKit.framework/Versions/A/Frameworks/JavaScriptCore.framework
    /System/Library/Frameworks/JavaScriptCore.framework

  • How can I open in java file a text file?

    Hi !
    For example I have a java file name Pencil.java and I have a text fie name Box.txt
    I want like that if ( a == b ) {open Box.txt}
    How can I do that ?
    Thanks.

    Yes I want to see what this text file contains. Like clicking to a text file with mouse and opens. Then I can see what it contains.
    I have a Java document Pencil.java and I have a text file Box.txt
    I will write a java code in pencil.java ( that I dont know ). Then when I enter a number from keyboard with
    Scanner write = new Scanner(System.in);
    int a = write.nextInt()
    if (a == b) {                } opens Box.txt
    For example
    I write to command prompt
    java pencil
    It wants from me a number : I will enter 3.
    It is same as b .
    Then Box.txt file opens.
    Edited by: zue on Jun 3, 2008 11:04 AM

  • Java Enhancement Package upgrade kill my system

    Hi all!
    After upgrading Java part via JSPM, my system crash. Here is log of my disp+work process.
    OS:Windows 2003, DB: Oracle 10.2, java: 1.4.13 (with this version of Java all worked fine).
    Here is my disp+work log:
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        CN3
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    114
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        3664
    Fri Feb 22 15:47:25 2008
    kernel runs with dp version 229000(ext=109000) (@(#) DPLIB-INT-VERSION-229000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3664) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 114 successfully loaded
         shared lib "dw_xtc.dll" version 114 successfully loaded
         shared lib "dw_stl.dll" version 114 successfully loaded
         shared lib "dw_gui.dll" version 114 successfully loaded
         shared lib "dw_mdm.dll" version 114 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Fri Feb 22 15:47:30 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5361]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >srvnova03_CN3_00                        <
    DpShMCreate: sizeof(wp_adm)          20104     (1436)
    DpShMCreate: sizeof(tm_adm)          4232256     (21056)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1536)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 06100040, size: 4893744)
    DpShMCreate: allocated sys_adm at 06100040
    DpShMCreate: allocated wp_adm at 06102090
    DpShMCreate: allocated tm_adm_list at 06106F18
    DpShMCreate: allocated tm_adm at 06106F48
    DpShMCreate: allocated wp_ca_adm at 06510388
    DpShMCreate: allocated appc_ca_adm at 06516148
    DpShMCreate: allocated comm_adm at 06518088
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 06598F48
    DpShMCreate: allocated gw_adm at 06598F88
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 06598FB8
    DpShMCreate: allocated wall_adm at 06598FC0
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    Fri Feb 22 15:47:31 2008
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 511 blocks reserved for free list.
    ES initialized.
    Fri Feb 22 15:47:32 2008
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3992
      argv[0] = E:\usr\sap\CN3\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = E:\usr\sap\CN3\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=E:\usr\sap\CN3\SYS\profile\CN3_DVEBMGS00_srvnova03
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2268
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CN3
      argv[7] = -DSAPMYNAME=srvnova03_CN3_00
      argv[8] = -DSAPPROFILE=E:\usr\sap\CN3\SYS\profile\CN3_DVEBMGS00_srvnova03
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1629]
    Fri Feb 22 15:47:33 2008
    ***LOG Q0K=> DpMsAttach, mscon ( srvnova03) [dpxxdisp.c   11753]
    DpStartStopMsg: send start message (myname is >srvnova03_CN3_00                        <)
    DpStartStopMsg: start msg sent
    Fri Feb 22 15:47:34 2008
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    Fri Feb 22 15:47:40 2008
    CCMS: start to initalize 3.X shared alert area (first segment).
    Fri Feb 22 15:47:46 2008
    DpJ2eeLogin: j2ee state = CONNECTED
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    Fri Feb 22 15:47:47 2008
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 114
    Release check o.K.
    Fri Feb 22 15:49:27 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4248]
    Fri Feb 22 15:49:28 2008
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1508
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2275) [nixxi.cpp    4248]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3992)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Fri Feb 22 15:49:34 2008
    ERROR => W2 (pid 3308) died [dpxxdisp.c   14441]
    Fri Feb 22 15:49:35 2008
    ERROR => W4 (pid 2864) died [dpxxdisp.c   14441]
    ERROR => W5 (pid 2832) died [dpxxdisp.c   14441]
    ERROR => W7 (pid 736) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xbf --> 0xbb
    ERROR => W8 (pid 1396) died [dpxxdisp.c   14441]
    ERROR => W11 (pid 1168) died [dpxxdisp.c   14441]
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 4524
      argv[0] = E:\usr\sap\CN3\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = E:\usr\sap\CN3\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=E:\usr\sap\CN3\SYS\profile\CN3_DVEBMGS00_srvnova03
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2357
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=CN3
      argv[7] = -DSAPMYNAME=srvnova03_CN3_00
      argv[8] = -DSAPPROFILE=E:\usr\sap\CN3\SYS\profile\CN3_DVEBMGS00_srvnova03
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Fri Feb 22 15:49:42 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4248]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1592
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2358) [nixxi.cpp    4248]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=4524)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Fri Feb 22 15:49:54 2008
    ERROR => W0 (pid 2876) died [dpxxdisp.c   14441]
    ERROR => W1 (pid 2932) died [dpxxdisp.c   14441]
    ERROR => W3 (pid 3224) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xbb --> 0xba
    ERROR => W6 (pid 708) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xba --> 0xb8
    ERROR => W9 (pid 3176) died [dpxxdisp.c   14441]
    ERROR => W10 (pid 2928) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W12 (pid 760) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W13 (pid 3500) died [dpxxdisp.c   14441]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1645
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Feb 22 15:50:04 2008
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Fri Feb 22 12:50:05 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA     2876 Ended         no      1   0        0                                                                         
    1 DIA     2932 Ended         no      1   0        0                                                                         
    2 DIA     3308 Ended         no      1   0        0                                                                         
    3 DIA     3224 Ended         no      1   0        0                                                                         
    4 DIA     2864 Ended         no      1   0        0                                                                         
    5 DIA     2832 Ended         no      1   0        0                                                                         
    6 UPD      708 Ended         no      1   0        0                                                                         
    7 ENQ      736 Ended         no      1   0        0                                                                         
    8 BTC     1396 Ended         no      1   0        0                                                                         
    9 BTC     3176 Ended         no      1   0        0                                                                         
    10 BTC     2928 Ended         no      1   0        0                                                                         
    11 SPO     1168 Ended         no      1   0        0                                                                         
    12 SPO      760 Ended         no      1   0        0                                                                         
    13 UP2     3500 Ended         no      1   0        0                                                                         
    Dispatcher Queue Statistics               Fri Feb 22 12:50:05 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    2
    2000
    6
    6
    --------++++--
    +
    DIA
    8
    8
    2000
    8
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    1
    1
    2000
    1
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          16
    wake_evt_udp_now     0
    wake events           total    12,  udp     8 ( 66%),  shm     4 ( 33%)
    since last update     total    12,  udp     8 ( 66%),  shm     4 ( 33%)
    Dump of tm_adm structure:               Fri Feb 22 12:50:05 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Fri Feb 22 12:50:05 2008
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    Fri Feb 22 15:50:05 2008
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1645
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Feb 22 15:50:10 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >srvnova03_CN3_00                        < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (1108) (SOFT_KILL)
    Stop icman
    killing process (1172) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:1108  HANDLE:1616)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1645
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Feb 22 15:50:11 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:1108  HANDLE:1616)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1645
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Feb 22 15:50:12 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:1108  HANDLE:1616)
    wait for end of icman
    [DpProcDied] Process died  (PID:1172  HANDLE:1624)
    [DpProcDied] Process died  (PID:4524  HANDLE:1584)
    DpStartStopMsg: send stop message (myname is >srvnova03_CN3_00                        <)
    NiIMyHostName: hostname = 'srvnova03'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 3 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 3 (r)
    NiIRead: hdl 3 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    Fri Feb 22 15:50:13 2008
    NiIPeek: peek for hdl 3 timed out (r; 1000ms)
    NiIRead: read for hdl 3 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   12099]
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 3 in set0
    SiSelNSet: set events of sock 1540 to: ---
    NiBufISelRemove: remove hdl 3 from set0
    SiSelNRemove: removed sock 1540 (pos=3)
    SiSelNRemove: removed sock 1540
    NiSelIRemove: removed hdl 3
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/14
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 19)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 3 / sock 1540
    NiBufIClose: clear extension for hdl 3
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 3664) [dpxxdisp.c   10371]
    Good Bye .....
    Thanks for attention
    Artem

    Hi all!
    Now my dispatcher process working in yellow light. But Java status info unavailable.
    When I'm trying to execute go.bat or configtool.bat they cann't connect to DB. Can I reset password, which is using for JavaDB part connection? I'm not sure that password is correct... :\
    Thanks,
    Artem

Maybe you are looking for

  • Is it possible to create a "virtual" copy of an object in illustrator?

    In other words, lets say that I've got an object (that might be a simple object like a square, or a complicated group, or anything). I can select the object, copy it and then paste it at some other location, but now it is a separate object. What I'd

  • Adding Custom Property to Files

    I am trying to add a custom property to file in a repository and I am apparently missing something. I have created a custom property and and metadata extension for the language files. I add the property to the property group custom. I added the custo

  • Business Rules Runtime Prompts

    Hello, in my planning application, i have a few business rules that cannot be linket do any dataform. Users must run them directly via "Tools->Business Rules" menu'. These Business Rules have Runtime Prompt. User can fill them directly in the text fi

  • Error on EDI Sales Order Creation ?

    Hi Gurus, I have the following error when trying to create an order through EDI.  Function module 'IDOC_INPUT_ORDERS" Error is "Field RV45A-VBAP_SELKZ (2) is not an input field Message no. 00347" I have check the data on the Idoc (orders05) and every

  • I want the table fields name for the screen fields of transactions lm59

    Hi all   I am enhancing transactions LM58,LM59and  LM 60   But in that transactions underthe lable of storage bin , there are 3 input fields . I want to know the exact table fields for those 3 input screen fields .