Nio and java startup charset setting

Hi,
there's a way to set a specific platform charset when starting up jvm? On my linux, jvm starts with UTF-8 II see this looking at the encoding of a FileReader).
I need to set a default chaset to ISO-8859-1 (I cannot specify this ont he filereader, I'm using other's library).
Thank you Stefano,.

Set the LANG environment variable.
$ cat a.java
public class a {
public static void main(String a[]) {
System.out.println(System.getProperty("file.encoding"));
}$ javac a.java
$ echo $LANG
hu_HU
$ java a
ISO-8859-2
$ LANG=en_US
$ java a
ISO-8859-1
$ LANG=ru_RU
$ java a
ISO-8859-5

Similar Messages

  • Selecting between java.io and java.nio

    Hi,
    I'm a bit confused between java.io and java.nio. What sre the major differences between these two?
    In areas are these best applicable?

    The java.nio package improves on the basic Java I/O that was available prior to JDK 1.4.
    It is designed to interoperate more natively with the underlying file handles (sockets, open files etc) to achieve better performance.
    The improvements include true non-blocking I/O, better buffer management, character-set support, channels (similar to Occam's channels) and selectors, and some other ancillery stuff. Most of these classes are designed to be inherently threadsafe.
    There are some examples here:
    http://java.sun.com/j2se/1.4.2/docs/guide/nio/example/index.html
    However, if you are still a beginner with file or network I/O, its better if you start with the simple I/O first. You'll appreciate the NIO improvements better afterwards.

  • Java io and Java nio, which is faster to binary io?

    Anybody can advise me about java io and java nio ?
    I want to write the faster code to read and write binary files.
    I'm going to read/write
    - individual elements (int, double, etc)
    - arraylists
    - objects
    Also I'm going (or I'd want) to use seek functions.
    Thanks

    Anybody can advise me about java io and java nio ?
    I want to write the faster code to read and write binary files.Which is "faster" depends on exactly how you're using them. For example, a MappedByteBuffer is usually faster for random access than a RandomAccessFile, unless your files are so large (and your accesses so random) than you're constantly loading from disk. And it's not at all faster for linear uni-directional access than a simple FileInputStream.
    So, rather than expecting some random stranger telling you that one is faster than the other without knowing your project, perhaps you should tell us exactly how you plan to use IO, and why you think that one approach may be faster than the other.

  • I have a windows 7 dvd in the drive and the mac is set to launch from the dvd drive. How do I change the startup disk?

    I have a windows 7 dvd in the drive and the mac is set to launch from the dvd drive. How do I change the startup disk?

    Hold the option key at startup and when you get to the boot panel select your Mac OS drive.

  • After update June 28 of security and Java on 17in mac bk pro laptop cannot startup

    After June 28 security and Java updates my 17 in mac book pro will not start up properly..I get a screen with text on the side and a window telling me to press the sart button to shut down and then press again to start up...( a gray panel comes down over the page before the window appears)...I have tried the install disc and done the disc and permissions repair...permissions repair could not repair "System/Library/Core Services/Remote Management ARDAgent/Contents/Mac OS/ARDAgent" a SUID file. What can I do?

    Follow these documents.
    http://support.apple.com/kb/TS2570
    http://support.apple.com/kb/TS1440
    http://support.apple.com/kb/HT1455
    http://support.apple.com/kb/ht3964
    This one about permissions you can ignore
    http://support.apple.com/kb/TS1448
    Try to get into your machine and if you do, the first thing you do is backup your files to a external drive. (not TimeMachine) via regular drag and drop methods.
    Disconnect this drive. and all others.
    You can then c boot off the installer disk for your OS version and under the Utilities menu is Disk Utility > Repair Disk
    Also you can totally reinstall OS X, shouldn't effect your programs or files (but backup all files just in case)
    If that don't work, c boot off the installer disk again, this time use Disk Utility to Erase >format HFS+ Journaled with Security option > Zero All Data (will take some time) This will totally wipe the drive of everything and is a last ditch effort.
    When it's done quit, and reinstlal OS X.
    You'll have to go through the setup and reinstall your programs and files from backup. Secret is use the same user name and drive name as the previous time so your iTunes folder will work without a hitch.
    If you restore from TimeMachine, it's possible whatever problem you had can return, but you can try and if it doesn't work, just repeat above without TimeMachine.
    Later look at free Carbon Copy Clone your boot drive to a external HFS+ Journaled formatted drive and keep in a safe place, it hold option bootable, great if your hard drive bites it, or TimeMachine gets hosed. TM isn't bootable.

  • Tomcat and java

    please help me ..........
    [root@rac1 init.d]# tomcat5 debug
    Using CATALINA_BASE: /usr/share/tomcat5
    Using CATALINA_HOME: /usr/share/tomcat5
    Using CATALINA_TMPDIR: /usr/share/tomcat5/temp
    Using JAVA_HOME: /opt/jdk1.5.0_12
    Initializing jdb ...
    runrun org.apache.catalina.startup.Bootstrap start
    Set uncaught java.lang.Throwable
    Set deferred uncaught java.lang.Throwable
    VM Started: > Dec 1, 2007 5:31:23 PM org.apache.tomcat.util.digester.Digester startElement
    SEVERE: Begin event threw exception
    java.lang.ClassNotFoundException: org.apache.ajp.tomcat4.config.ApacheConfig
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
    at org.apache.tomcat.util.digester.ObjectCreateRule.begin(ObjectCreateRule.java:205)
    at org.apache.tomcat.util.digester.Rule.begin(Rule.java:153)
    at org.apache.tomcat.util.digester.Digester.startElement(Digester.java:1276)
    at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
    at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
    at org.apache.tomcat.util.digester.Digester.parse(Digester.java:1562)
    at org.apache.catalina.startup.Catalina.load(Catalina.java:490)
    at org.apache.catalina.startup.Catalina.load(Catalina.java:524)
    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:597)
    at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:267)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
    Dec 1, 2007 5:31:23 PM org.apache.catalina.startup.Catalina load
    WARNING: Catalina.start using conf/server.xml:
    java.lang.ClassNotFoundException: org.apache.ajp.tomcat4.config.ApacheConfig
    at org.apache.tomcat.util.digester.Digester.createSAXException(Digester.java:2726)
    at org.apache.tomcat.util.digester.Digester.createSAXException(Digester.java:2752)
    at org.apache.tomcat.util.digester.Digester.startElement(Digester.java:1279)
    at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
    at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
    at org.apache.tomcat.util.digester.Digester.parse(Digester.java:1562)
    at org.apache.catalina.startup.Catalina.load(Catalina.java:490)
    at org.apache.catalina.startup.Catalina.load(Catalina.java:524)
    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:597)
    at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:267)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
    Dec 1, 2007 5:31:23 PM org.apache.tomcat.util.digester.Digester startElement
    SEVERE: Begin event threw exception
    java.lang.ClassNotFoundException: org.apache.ajp.tomcat4.config.ApacheConfig
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
    at org.apache.tomcat.util.digester.ObjectCreateRule.begin(ObjectCreateRule.java:205)
    at org.apache.tomcat.util.digester.Rule.begin(Rule.java:153)
    at org.apache.tomcat.util.digester.Digester.startElement(Digester.java:1276)
    at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
    at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
    at org.apache.tomcat.util.digester.Digester.parse(Digester.java:1562)
    at org.apache.catalina.startup.Catalina.load(Catalina.java:490)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:544)
    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:597)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433)
    Dec 1, 2007 5:31:23 PM org.apache.catalina.startup.Catalina load
    WARNING: Catalina.start using conf/server.xml:
    java.lang.ClassNotFoundException: org.apache.ajp.tomcat4.config.ApacheConfig
    at org.apache.tomcat.util.digester.Digester.createSAXException(Digester.java:2726)
    at org.apache.tomcat.util.digester.Digester.createSAXException(Digester.java:2752)
    at org.apache.tomcat.util.digester.Digester.startElement(Digester.java:1279)
    at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
    at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
    at org.apache.tomcat.util.digester.Digester.parse(Digester.java:1562)
    at org.apache.catalina.startup.Catalina.load(Catalina.java:490)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:544)
    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:597)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433)
    Dec 1, 2007 5:31:23 PM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 0 ms
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433)
    Caused by: java.lang.NullPointerException
    at org.apache.catalina.startup.Catalina.await(Catalina.java:616)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:576)
    ... 6 more

    this error occurs normaly if your try to use a method with a parameter signature that does not exist. Does the servlet compile? Are you sure you use the same version of jai to compile and to run?

  • Why is Java startup so slow?

    Does anyone know why Java startup is so slow? Compared to other interpreted languages like Javascript and Perl, they run much faster. And can someone get technical with me? (But without pointing me to the JVM specification, which I don't understand.) It use to take longer for me to load Mozilla0.9 than a Java applet, but now Mozilla1.3 loads faster than a Java applet.

    "Connector" is a rather ill-defined way of describing
    it, which is why I chose the word -- to easily deflect
    further inquiries to quantify. ;>
    In a slightly more specific way, on start-up JVM needs
    to (not necessarily in order, 'cause I don't know the
    exact order) at the very minimum:
    1. Allocate memory.
    2. Query OS for a minimal set of needed facilities.
    3. Allocate memory. Allocate allocated memory
    (internally, for use by itself and the application).
    4. Map the OS facilities to Java facilities. (This is
    what I meant by "connectors").
    5. Allocate memory. Allocate allocated memory.
    6. Set up the internal control -- security managers,
    thread scheduler, gc, classloaders, calling stacks,
    virtual lookup tables, etcetc.
    Some of the above don't apply to applets.
    Thanks for the tip on 1.4.2beta. I'll give it a try. I
    assume you meant startup speed?All this is almost instant you realize. The real time it takes to start your program is that it takes much longer for Java classes to be loaded.
    The startup time is proportional to the number of classes you need to load to get your program running. If you only are writing a simple, console based java program the startup time will be much less then if you load a Swing application. Swing by itself is a huge number of classes, and then you have to load your classes. So it can take awhile.
    All the things you mention, every program has to do and the code that the JVM uses must be written in C or some other systems language.
    One reason at least on my machine that java startup is slow is that I have a slow hard drive. On my home machine, java is much faster around twice as fast to startup, but the processor and ram are not twice as good. I think that it's because the hard drive is faster. Because most of the time it's waiting for data from the disk and the Java enviroment has the disadvantage that it's very large on disk.

  • NIO and traditional sockets

    I have a little server that I was porting from traditional thread per socket programming to NIO. The first thing I ported was the Listen-Accept loop. This worked well but the resulting sockets obtained from
    SocketChannel.socket()
    have very strange behaviour with respect to flush. I send the data by
    out.write(data);
    out.flush();
    where out is the BufferedOutputStream. The data doesn't get sent until the next input arrives on the Socket. If I change to using just old style I/O or completely NIO the problem goes away.
    I found several bug reports on NIO and flush, but they all seem to be considered Feechures by SUN.

    Thanks for posting the link to your NIO code. I downloaded the src-raining-1.2pre1 source and took a look. I noticed that you still have some doubts about how OP_WRITE works. This piece of code will definitely have problems.
        public void setSendData(ByteBuffer data) {
            this.write_pending = true;
            wBuffer = data;
            //RK modified on 20031008 23:19:39 - NOOO
                    //registerChannel(selector, channel(), SelectionKey.OP_WRITE);
            // RK modified on 20031009 23:15:00 adding write interest
            SelectionKey sk = sc.keyFor(selector);
            int ops = sk.interestOps();
            sk.interestOps( ops | SelectionKey.OP_WRITE);
            selector.wakeup(); // is this required or not ???
        }The sk.interestOps will block if there is an active select. If there isn't an active select you don't need the wakeup. The only way to make this work properly in 1.4.2 is to build a queue of runnables that set interestOps and execute them just before or after the select. Also the setting of OP_WRITE in that code won't handle the case where the network exerts flow control on the channel. The correct setting of OP_WRITE is
    - set interest in OP_WRITE when the socket is connected
    - remove interest as soon as you successfully write all the data in a buffer
    - add interest only when you write less bytes than requested.
    My post Taming the NIO Circus provides an example of this in the swing based client. I posted this in response to Java.nio. SelectionKey interestOps(int) method blocks

  • FF 15 and Java 7 plugin on Win 8 not working

    Just did a fresh install of Win8 on a totally new machine. Installed latest FF (15.0.1) and Java 7. Everytime I go to a page requiring Java it says I need the plugin. I've searched all over the web and can't find an answer although others have had the same problem and appeared to have worked around it.
    Reinstalled FF
    Reinstalled Java
    Tried running program in Win 7 compatibility mode
    If I go to Control Panel -> Programs -> Java -> Advanced and look at Default Java for Browser, it's set for IE, but the box for FF is unchecked. I check it, hit apply or OK (tried both) and after the window closes, I go back in and FF box is unchecked again.
    about:plugins shows Java installed. At wits end here....
    I'm not posting from my Win 8 box so installed plugins is hand typed.

    I do have Java 7 U7. I originally had both 32 and 64 bit installed, now I've got it down to 32 bit only. Still no joy. I go to a website and it tells me to install the plugin, I try to and the installer says it's already there. Now there is a difference though, the Java console shows Mozilla Family checked but it no longer shows as being installed in the plug ins on the troubleshooting info page.
    Here's the Troubleshooting Info as I'm back on there now.
    Application Basics
    Name
    Firefox
    Version
    15.0.1
    User Agent
    Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0.1
    Profile Folder
    Show Folder
    Enabled Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Crash Reports
    about:crashes
    Memory Use
    about:memory
    Extensions
    Name
    Version
    Enabled
    ID
    Adblock Plus
    2.1.2
    true
    {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    Adblock Plus Pop-up Addon
    0.4
    true
    [email protected]
    Flash Block
    2.00.13
    true
    {95ab36d4-fb6f-47b0-8b8d-e5f3bd547953}
    Forecastfox
    2.2.1
    true
    {0538E3E3-7E9B-4d49-8831-A227C80A7AD3}
    IE Tab Plus
    2.0.0.0
    true
    [email protected]
    Important Modified Preferences
    Name
    Value
    browser.cache.disk.capacity
    1048576
    browser.cache.disk.smart_size.first_run
    false
    browser.cache.disk.smart_size_cached_value
    1048576
    browser.places.smartBookmarksVersion
    4
    browser.startup.homepage
    http://www.google.com/
    browser.startup.homepage_override.buildID
    20120905151427
    browser.startup.homepage_override.mstone
    15.0.1
    extensions.lastAppVersion
    15.0.1
    gfx.direct3d.prefer_10_1
    true
    network.cookie.prefsMigrated
    true
    places.history.expiration.transient_current_max_pages
    104858
    privacy.sanitize.migrateFx3Prefs
    true
    Graphics
    Adapter Description
    NVIDIA GeForce GTX 550 Ti
    Vendor ID
    0x10de
    Device ID
    0x1244
    Adapter RAM
    2047
    Adapter Drivers
    nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um
    Driver Version
    9.18.13.282
    Driver Date
    6-15-2012
    Direct2D Enabled
    true
    DirectWrite Enabled
    true (6.2.8400.0)
    ClearType Parameters
    ClearType parameters not found
    WebGL Renderer
    Google Inc. -- ANGLE (NVIDIA GeForce GTX 550 Ti) -- OpenGL ES 2.0 (ANGLE 1.0.0.1041)
    GPU Accelerated Windows
    1/1 Direct3D 10
    AzureBackend
    direct2d
    JavaScript
    Incremental GC
    0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.9.1
    4.9.1
    NSS
    3.13.6.0 Basic ECC
    3.13.6.0 Basic ECC
    NSS Util
    3.13.6.0
    3.13.6.0
    NSS SSL
    3.13.6.0 Basic ECC
    3.13.6.0 Basic ECC
    NSS S/MIME
    3.13.6.0 Basic ECC
    3.13.6.0 Basic ECC

  • JSP and Java Servelets, What do I need to get started?

    What do I have to download in order to start using JSP and Java Servelets? How do I test the codes after I've written something? Anyone?

    Right and you can download tomcat server from http://jakarta.apache.org/
    and do not forget to set java home path in tomcat.See it's documentation formore help on site itself.
    To test your codes for jsp put all your jsp,html,image and other resource files in tomcat's webaps's root directory.
    Put all your java class files of beans if used and servlet's class files in root's webinf's class directory.
    It will make sense to try very easy programs if u r a begineer .After starting the server post setting the java home path .(you can start it in bin directory's startup.bat file)
    All the best
    Ashish

  • Java startup failing

    I've have installed support stack 13 and now the java won't startup.
    I've attached an extract from the log_bootstrap file - the main error seems to be regarding system out of memory. The server has had an extra 1gb added but thsi has made know difference.
    [Mar 12, 2008 4:12:08 PM ] [Bootstrap module]> Problem occurred while performing synchronization.
    [Mar 12, 2008 4:12:35 PM ] -
    [Mar 12, 2008 4:12:35 PM ] Bootstrap MODE:
    [Mar 12, 2008 4:12:35 PM ] <INSTANCE GLOBALS>
    [Mar 12, 2008 4:12:35 PM ]  determined by parameter [ID0074985].
    [Mar 12, 2008 4:12:35 PM ] -
    [Mar 12, 2008 4:12:39 PM ] Instance [ID74985] will run in [normal] mode, performing action [NONE]
    [Mar 12, 2008 4:12:39 PM ] Discovered property [instance.en.port] with value [3201] !
    [Mar 12, 2008 4:12:39 PM ] Discovered property [instance.en.host] with value [hc-devsmr] !
    [Mar 12, 2008 4:12:39 PM ] Synchronizing file [.\.hotspot_compiler].
    [Mar 12, 2008 4:12:39 PM ] ...Synched ok!
    [Mar 12, 2008 4:12:39 PM ] Synchronizing file [..\..\SDM\program\.hotspot_compiler].
    [Mar 12, 2008 4:12:39 PM ] ...Synched ok!
    [Mar 12, 2008 4:12:39 PM ]  * Synchronizing native files...
    [Mar 12, 2008 4:12:39 PM ] Synchronizing file [.\..\os_libs\FontManagerService_native.zip].
    [Mar 12, 2008 4:12:46 PM ] Error synchronizing file [.\..\os_libs\FontManagerService_native.zip].
    com.microsoft.sqlserver.jdbc.SQLServerException: The system is out of memory. Use server side cursors for large result sets:null. Result set size:112,526,773. JVM total memory size:129,761,280.
         at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(Unknown Source)
         at com.microsoft.sqlserver.jdbc.DBComms.receive(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.doExecutePreparedStatement(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement$PreparedStatementExecutionRequest.executeStatement(Unknown Source)
         at com.microsoft.sqlserver.jdbc.CancelableRequest.execute(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeRequest(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.execute(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerStatement.doCursorFetch(Unknown Source)
         at com.microsoft.sqlserver.jdbc.ServerFetchBuffer.doServerFetch(Unknown Source)
         at com.microsoft.sqlserver.jdbc.ServerFetchBuffer.forward(Unknown Source)
         at com.microsoft.sqlserver.jdbc.ServerFetchBuffer.relative(Unknown Source)
         at com.microsoft.sqlserver.jdbc.PositionedCursor.positionedRelative(Unknown Source)
         at com.microsoft.sqlserver.jdbc.PositionedCursor.next(Unknown Source)
         at com.microsoft.sqlserver.jdbc.ForwardOnlyDynamicServerCursor.next(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerResultSet.next(Unknown Source)
         at com.sap.sql.jdbc.basic.BasicResultSet.next(BasicResultSet.java:61)
         at com.sap.sql.jdbc.direct.DirectResultSet.next(DirectResultSet.java:132)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessMSSQL.getFileEntry(DBAccessMSSQL.java:68)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.FileLoader.getInputStream(FileLoader.java:33)
         at com.sap.engine.core.configuration.impl.PersistentDataInputStream.getStream(PersistentDataInputStream.java:81)
         at com.sap.engine.core.configuration.impl.PersistentDataInputStream.read(PersistentDataInputStream.java:135)
         at com.sap.engine.bootstrap.Synchronizer.getFile(Synchronizer.java:182)
         at com.sap.engine.bootstrap.Synchronizer.getFile(Synchronizer.java:160)
         at com.sap.engine.bootstrap.Synchronizer.synchronizeFile(Synchronizer.java:112)
         at com.sap.engine.bootstrap.Bootstrap.getOSDependentFiles(Bootstrap.java:614)
         at com.sap.engine.bootstrap.Bootstrap.synchInstanceGlobals(Bootstrap.java:193)
         at com.sap.engine.bootstrap.Bootstrap.makeUpdate(Bootstrap.java:831)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:815)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by:
    com.sap.engine.frame.core.configuration.InvalidPersistentDataStreamException: Could not get file from DB.
         at com.sap.engine.core.configuration.impl.PersistentDataInputStream.getStream(PersistentDataInputStream.java:84)
         at com.sap.engine.core.configuration.impl.PersistentDataInputStream.read(PersistentDataInputStream.java:135)
         at com.sap.engine.bootstrap.Synchronizer.getFile(Synchronizer.java:182)
         at com.sap.engine.bootstrap.Synchronizer.getFile(Synchronizer.java:160)
         at com.sap.engine.bootstrap.Synchronizer.synchronizeFile(Synchronizer.java:112)
         at com.sap.engine.bootstrap.Bootstrap.getOSDependentFiles(Bootstrap.java:614)
         at com.sap.engine.bootstrap.Bootstrap.synchInstanceGlobals(Bootstrap.java:193)
         at com.sap.engine.bootstrap.Bootstrap.makeUpdate(Bootstrap.java:831)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:815)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    [Mar 12, 2008 4:12:46 PM ] Synchronizing file [.\..\os_libs\PDFManipulation_native.zip].
    [Mar 12, 2008 4:12:47 PM ] ...Synched ok!
    [Mar 12, 2008 4:12:47 PM ] Synchronizing file [.\..\os_libs\ServicesNatives2_native.zip].
    [Mar 12, 2008 4:12:47 PM ] ...Synched ok!
    [Mar 12, 2008 4:12:47 PM ] Synchronizing file [.\..\os_libs\rscp4j.dll].
    [Mar 12, 2008 4:12:47 PM ] ...Synched ok!
    [Mar 12, 2008 4:12:47 PM ] Synchronizing file [.\..\os_libs\XMLFormService_native.zip].
    [Mar 12, 2008 4:12:48 PM ] ...Synched ok!
    [Mar 12, 2008 4:12:48 PM ] Synchronizing file [.\..\os_libs\rscp4j.pdb].
    [Mar 12, 2008 4:12:48 PM ] ...Synched ok!
    [Mar 12, 2008 4:12:48 PM ] Synchronizing file [.\..\os_libs\LicenseSupportService_native.zip].
    [Mar 12, 2008 4:12:48 PM ] ...Synched ok!
    [Mar 12, 2008 4:12:48 PM ] Exception occurred:
    com.sap.engine.bootstrap.SynchronizationException: Unable to synchronize native files for instance [ID74985]!
         at com.sap.engine.bootstrap.Bootstrap.synchInstanceGlobals(Bootstrap.java:203)
         at com.sap.engine.bootstrap.Bootstrap.makeUpdate(Bootstrap.java:831)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:815)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    ==[ Caused by: ]==----
    com.microsoft.sqlserver.jdbc.SQLServerException: The system is out of memory. Use server side cursors for large result sets:null. Result set size:112,526,773. JVM total memory size:129,761,280.
         at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(Unknown Source)
         at com.microsoft.sqlserver.jdbc.DBComms.receive(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.doExecutePreparedStatement(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement$PreparedStatementExecutionRequest.executeStatement(Unknown Source)
         at com.microsoft.sqlserver.jdbc.CancelableRequest.execute(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeRequest(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.execute(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerStatement.doCursorFetch(Unknown Source)
         at com.microsoft.sqlserver.jdbc.ServerFetchBuffer.doServerFetch(Unknown Source)
         at com.microsoft.sqlserver.jdbc.ServerFetchBuffer.forward(Unknown Source)
         at com.microsoft.sqlserver.jdbc.ServerFetchBuffer.relative(Unknown Source)
         at com.microsoft.sqlserver.jdbc.PositionedCursor.positionedRelative(Unknown Source)
         at com.microsoft.sqlserver.jdbc.PositionedCursor.next(Unknown Source)
         at com.microsoft.sqlserver.jdbc.ForwardOnlyDynamicServerCursor.next(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerResultSet.next(Unknown Source)
         at com.sap.sql.jdbc.basic.BasicResultSet.next(BasicResultSet.java:61)
         at com.sap.sql.jdbc.direct.DirectResultSet.next(DirectResultSet.java:132)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessMSSQL.getFileEntry(DBAccessMSSQL.java:68)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.FileLoader.getInputStream(FileLoader.java:33)
         at com.sap.engine.core.configuration.impl.PersistentDataInputStream.getStream(PersistentDataInputStream.java:81)
         at com.sap.engine.core.configuration.impl.PersistentDataInputStream.read(PersistentDataInputStream.java:135)
         at com.sap.engine.bootstrap.Synchronizer.getFile(Synchronizer.java:182)
         at com.sap.engine.bootstrap.Synchronizer.getFile(Synchronizer.java:160)
         at com.sap.engine.bootstrap.Synchronizer.synchronizeFile(Synchronizer.java:112)
         at com.sap.engine.bootstrap.Bootstrap.getOSDependentFiles(Bootstrap.java:614)
         at com.sap.engine.bootstrap.Bootstrap.synchInstanceGlobals(Bootstrap.java:193)
         at com.sap.engine.bootstrap.Bootstrap.makeUpdate(Bootstrap.java:831)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:815)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by:
    com.sap.engine.frame.core.configuration.InvalidPersistentDataStreamException: Could not get file from DB.
         at com.sap.engine.core.configuration.impl.PersistentDataInputStream.getStream(PersistentDataInputStream.java:84)
         at com.sap.engine.core.configuration.impl.PersistentDataInputStream.read(PersistentDataInputStream.java:135)
         at com.sap.engine.bootstrap.Synchronizer.getFile(Synchronizer.java:182)
         at com.sap.engine.bootstrap.Synchronizer.getFile(Synchronizer.java:160)
         at com.sap.engine.bootstrap.Synchronizer.synchronizeFile(Synchronizer.java:112)
         at com.sap.engine.bootstrap.Bootstrap.getOSDependentFiles(Bootstrap.java:614)
         at com.sap.engine.bootstrap.Bootstrap.synchInstanceGlobals(Bootstrap.java:193)
         at com.sap.engine.bootstrap.Bootstrap.makeUpdate(Bootstrap.java:831)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:815)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    [Mar 12, 2008 4:12:48 PM ] [Bootstrap module]> Problem occurred while performing synchronization.
    [Mar 12, 2008 4:12:53 PM ] -
    [Mar 12, 2008 4:12:53 PM ] Bootstrap MODE:
    [Mar 12, 2008 4:12:53 PM ] <INSTANCE GLOBALS>
    [Mar 12, 2008 4:12:53 PM ]  determined by parameter [ID0074985].
    [Mar 12, 2008 4:12:53 PM ] -
    [Mar 12, 2008 4:12:54 PM ] Instance [ID74985] will run in [normal] mode, performing action [NONE]
    [Mar 12, 2008 4:12:54 PM ] Discovered property [instance.en.port] with value [3201] !
    [Mar 12, 2008 4:12:54 PM ] Discovered property [instance.en.host] with value [hc-devsmr] !
    [Mar 12, 2008 4:12:54 PM ] Synchronizing file [.\.hotspot_compiler].
    [Mar 12, 2008 4:12:55 PM ] ...Synched ok!
    [Mar 12, 2008 4:12:55 PM ] Synchronizing file [..\..\SDM\program\.hotspot_compiler].
    [Mar 12, 2008 4:12:55 PM ] ...Synched ok!
    [Mar 12, 2008 4:12:55 PM ]  * Synchronizing native files...
    [Mar 12, 2008 4:12:55 PM ] Synchronizing file [.\..\os_libs\FontManagerService_native.zip].

    I've attached the log files for you to have a look at.
    DEV_SERVER0
    trc file: "F:\usr\sap\DSM\DVEBMGS00\work\dev_server0", trc level: 1, release: "700"
    node name   : ID7498550
    pid         : 4020
    system name : DSM
    system nr.  : 00
    started at  : Thu Mar 13 16:25:39 2008
    arguments       :
           arg[00] : F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
           arg[01] : pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
           arg[02] : -DSAPINFO=DSM_00_server
           arg[03] : pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=3638
           arg[06] : -DSAPSYSTEM=00
           arg[07] : -DSAPSYSTEMNAME=DSM
           arg[08] : -DSAPMYNAME=hc-devsmr_DSM_00
           arg[09] : -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 3016] Thu Mar 13 16:25:39 2008
    [Thr 3016] *** WARNING => INFO: Unknown property [instance.box.number=DSMDVEBMGS00hc-devsmr] [jstartxx.c   841]
    [Thr 3016] *** WARNING => INFO: Unknown property [instance.en.host=hc-devsmr] [jstartxx.c   841]
    [Thr 3016] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 3016] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties]
    -> ms host    : hc-devsmr
    -> ms port    : 3901
    -> OS libs    : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : hc-devsmr
    -> ms port    : 3901
    -> os libs    : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID7498500  : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID7498550  : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID7498500            : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] ID7498550            : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    [Thr 3016] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 3016] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 1124] WaitSyncSemThread: Thread 1124 started as semaphore monitor thread.
    [Thr 1920] JLaunchRequestFunc: Thread 1920 started as listener thread for np messages.
    [Thr 3016] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 3016] CPIC (version=700.2006.09.13)
    [Thr 3016] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16-x64\
    [Thr 3016] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID7498550]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_16-x64\
    -> java parameters    : -Djco.jarm=1 -XX:MaxPermSize=512M -XX:PermSize=512M -XX:NewSize=320M -XX:MaxNewSize=320M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\DSM\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50021
    -> shutdown timeout   : 120000
    [Thr 3016] JLaunchISetDebugMode: set debug mode [no]
    [Thr 3508] JLaunchIStartFunc: Thread 3508 started as Java VM thread.
    [Thr 3508] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -XX:MaxPermSize=512M
    -> arg[  5]: -XX:PermSize=512M
    -> arg[  6]: -XX:NewSize=320M
    -> arg[  7]: -XX:MaxNewSize=320M
    -> arg[  8]: -XX:+DisableExplicitGC
    -> arg[  9]: -verbose:gc
    -> arg[ 10]: -Xloggc:GC.log
    -> arg[ 11]: -XX:+PrintGCDetails
    -> arg[ 12]: -XX:+PrintGCTimeStamps
    -> arg[ 13]: -Djava.awt.headless=true
    -> arg[ 14]: -Dsun.io.useCanonCaches=false
    -> arg[ 15]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 16]: -XX:SurvivorRatio=2
    -> arg[ 17]: -XX:TargetSurvivorRatio=90
    -> arg[ 18]: -Djava.security.policy=./java.policy
    -> arg[ 19]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 20]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 21]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 22]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 23]: -Dsys.global.dir=F:\usr\sap\DSM\SYS\global
    -> arg[ 24]: -Dapplication.home=F:\usr\sap\DSM\DVEBMGS00\exe
    -> arg[ 25]: -Djava.class.path=F:\usr\sap\DSM\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 26]: -Djava.library.path=C:\j2sdk1.4.2_16-x64
    jre\bin\server;C:\j2sdk1.4.2_16-x64
    jre\bin;C:\j2sdk1.4.2_16-x64
    bin;F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    -> arg[ 27]: -Dmemory.manager=1024M
    -> arg[ 28]: -Xmx1024M
    -> arg[ 29]: -Xms1024M
    -> arg[ 30]: -DLoadBalanceRestricted=no
    -> arg[ 31]: -Djstartup.mode=JCONTROL
    -> arg[ 32]: -Djstartup.ownProcessId=4020
    -> arg[ 33]: -Djstartup.ownHardwareId=M0096926426
    -> arg[ 34]: -Djstartup.whoami=server
    -> arg[ 35]: -Djstartup.debuggable=no
    -> arg[ 36]: -Xss2m
    -> arg[ 37]: -DSAPINFO=DSM_00_server
    -> arg[ 38]: -DSAPSTART=1
    -> arg[ 39]: -DCONNECT_PORT=3638
    -> arg[ 40]: -DSAPSYSTEM=00
    -> arg[ 41]: -DSAPSYSTEMNAME=DSM
    -> arg[ 42]: -DSAPMYNAME=hc-devsmr_DSM_00
    -> arg[ 43]: -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[ 44]: -DFRFC_FALLBACK=ON
    -> arg[ 45]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 46]: -DSAPSTARTUP=1
    -> arg[ 47]: -DSAPSYSTEM=00
    -> arg[ 48]: -DSAPSYSTEMNAME=DSM
    -> arg[ 49]: -DSAPMYNAME=hc-devsmr_DSM_00
    -> arg[ 50]: -DSAPDBHOST=HC-DEVSMR
    -> arg[ 51]: -Dj2ee.dbhost=HC-DEVSMR
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 3508] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3852] Thu Mar 13 16:25:45 2008
    [Thr 3852] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3852] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3852] JLaunchISetClusterId: set cluster id 7498550
    [Thr 3852] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3852] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 3436] Thu Mar 13 16:26:16 2008
    [Thr 3436] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 3436] Thu Mar 13 16:26:17 2008
    [Thr 3436] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 3436] Thu Mar 13 16:26:19 2008
    [Thr 3436] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.engine.Compress
    [Thr 3292] Thu Mar 13 16:26:37 2008
    [Thr 3292] JHVM_RegisterNatives: registering methods in com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    [Thr 3852] Thu Mar 13 16:26:41 2008
    [Thr 3852] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    Thu Mar 13 16:27:49 2008
    Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.TypeMappingImpl::initializeRelations
    Thu Mar 13 16:28:01 2008
    Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.GeneratedComplexType::_loadInto
    Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.InstanceBuilder::readSequence
    [Thr 3056] Thu Mar 13 16:29:02 2008
    [Thr 3056] JLaunchISetState: change state from [Starting applications (10)] to [Running (3)]
    DEV_JCONTROL
    trc file: "F:\usr\sap\DSM\DVEBMGS00\work\dev_jcontrol", trc level: 1, release: "700"
    node name   : jcontrol
    pid         : 1896
    system name : DSM
    system nr.  : 00
    started at  : Thu Mar 13 16:25:00 2008
    arguments       :
           arg[00] : F:\usr\sap\DSM\DVEBMGS00\exe\jcontrol.EXE
           arg[01] : pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
           arg[02] : -DSAPSTART=1
           arg[03] : -DCONNECT_PORT=3633
           arg[04] : -DSAPSYSTEM=00
           arg[05] : -DSAPSYSTEMNAME=DSM
           arg[06] : -DSAPMYNAME=hc-devsmr_DSM_00
           arg[07] : -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
           arg[08] : -DFRFC_FALLBACK=ON
           arg[09] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 1768] Thu Mar 13 16:25:00 2008
    [Thr 1768] *** WARNING => INFO: Unknown property [instance.box.number=DSMDVEBMGS00hc-devsmr] [jstartxx.c   841]
    [Thr 1768] *** WARNING => INFO: Unknown property [instance.en.host=hc-devsmr] [jstartxx.c   841]
    [Thr 1768] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 1768] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties;F:\usr\sap\DSM\DVEBMGS00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : hc-devsmr
    -> ms port    : 3901
    -> OS libs    : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> files [01] : F:\usr\sap\DSM\DVEBMGS00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : hc-devsmr
    -> ms port    : 3901
    -> os libs    : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID7498500  : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID7498550  : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID7498500            : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] ID7498550            : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] sdm                  : F:\usr\sap\DSM\DVEBMGS00\SDM\program\config\sdm_jstartup.properties
    [Thr 1768] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 1768] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16-x64\
    [Thr 4936] JControlDPMessageProxy: Thread 4936 started as handler thread for R/3 dispatcher messages.
    [Thr 1768] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap]
    -> node name          : bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> java path          : C:\j2sdk1.4.2_16-x64\
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 1024M
    -> root path          : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\DSM\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0074985
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[02] = -DSAPINFO=DSM_00_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_1896
    -> arg[06] = -nodeName=bootstrap
    -> arg[07] = -jvmOutFile=F:\usr\sap\DSM\DVEBMGS00\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=F:\usr\sap\DSM\DVEBMGS00\work\std_bootstrap.out
    -> arg[09] = -locOutFile=F:\usr\sap\DSM\DVEBMGS00\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[12] = -DSAPSTART=1
    -> arg[13] = -DCONNECT_PORT=3638
    -> arg[14] = -DSAPSYSTEM=00
    -> arg[15] = -DSAPSYSTEMNAME=DSM
    -> arg[16] = -DSAPMYNAME=hc-devsmr_DSM_00
    -> arg[17] = -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[18] = -DFRFC_FALLBACK=ON
    -> arg[19] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = PATH=C:\j2sdk1.4.2_16-x64
    jre\bin\server;C:\j2sdk1.4.2_16-x64
    jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    -> exe path = PATH=C:\j2sdk1.4.2_16-x64
    bin;F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    [Thr 1768] Thu Mar 13 16:25:16 2008
    [Thr 1768] JControlExecuteBootstrap: read instance values after global bootstrap
    [Thr 1768] *** WARNING => INFO: Unknown property [instance.box.number=DSMDVEBMGS00hc-devsmr] [jstartxx.c   841]
    [Thr 1768] *** WARNING => INFO: Unknown property [instance.en.host=hc-devsmr] [jstartxx.c   841]
    [Thr 1768] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 1768] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties;F:\usr\sap\DSM\DVEBMGS00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : hc-devsmr
    -> ms port    : 3901
    -> OS libs    : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    [Thr 1768] JControlExecuteBootstrap: enumerate the nodes after global bootstrap
    Used property files
    -> files [00] : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> files [01] : F:\usr\sap\DSM\DVEBMGS00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : hc-devsmr
    -> ms port    : 3901
    -> os libs    : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID7498500  : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID7498550  : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID7498500            : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] ID7498550            : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] sdm                  : F:\usr\sap\DSM\DVEBMGS00\SDM\program\config\sdm_jstartup.properties
    [Thr 1768] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID7498500]
    [Thr 1768] [Node: dispatcher bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16-x64\
    [Thr 1768] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap_ID7498500]
    -> node name          : dispatcher bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_16-x64\
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 256M
    -> root path          : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\DSM\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID007498500
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[02] = -DSAPINFO=DSM_00_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_1896
    -> arg[06] = -nodeName=bootstrap_ID7498500
    -> arg[07] = -jvmOutFile=F:\usr\sap\DSM\DVEBMGS00\work\jvm_bootstrap_ID7498500.out
    -> arg[08] = -stdOutFile=F:\usr\sap\DSM\DVEBMGS00\work\std_bootstrap_ID7498500.out
    -> arg[09] = -locOutFile=F:\usr\sap\DSM\DVEBMGS00\work\dev_bootstrap_ID7498500
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[12] = -DSAPSTART=1
    -> arg[13] = -DCONNECT_PORT=3638
    -> arg[14] = -DSAPSYSTEM=00
    -> arg[15] = -DSAPSYSTEMNAME=DSM
    -> arg[16] = -DSAPMYNAME=hc-devsmr_DSM_00
    -> arg[17] = -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[18] = -DFRFC_FALLBACK=ON
    -> arg[19] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = PATH=C:\j2sdk1.4.2_16-x64
    jre\bin\server;C:\j2sdk1.4.2_16-x64
    jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    -> exe path = PATH=C:\j2sdk1.4.2_16-x64
    bin;F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    [Thr 1768] Thu Mar 13 16:25:33 2008
    [Thr 1768] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID7498550]
    [Thr 1768] [Node: server0 bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16-x64\
    [Thr 1768] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap_ID7498550]
    -> node name          : server0 bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_16-x64\
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 256M
    -> root path          : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\DSM\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID007498550
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[02] = -DSAPINFO=DSM_00_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_1896
    -> arg[06] = -nodeName=bootstrap_ID7498550
    -> arg[07] = -jvmOutFile=F:\usr\sap\DSM\DVEBMGS00\work\jvm_bootstrap_ID7498550.out
    -> arg[08] = -stdOutFile=F:\usr\sap\DSM\DVEBMGS00\work\std_bootstrap_ID7498550.out
    -> arg[09] = -locOutFile=F:\usr\sap\DSM\DVEBMGS00\work\dev_bootstrap_ID7498550
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[12] = -DSAPSTART=1
    -> arg[13] = -DCONNECT_PORT=3638
    -> arg[14] = -DSAPSYSTEM=00
    -> arg[15] = -DSAPSYSTEMNAME=DSM
    -> arg[16] = -DSAPMYNAME=hc-devsmr_DSM_00
    -> arg[17] = -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[18] = -DFRFC_FALLBACK=ON
    -> arg[19] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = PATH=C:\j2sdk1.4.2_16-x64
    jre\bin\server;C:\j2sdk1.4.2_16-x64
    jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    -> exe path = PATH=C:\j2sdk1.4.2_16-x64
    bin;F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    [Thr 1768] Thu Mar 13 16:25:38 2008
    [Thr 1768] JControlIBuildProcessList: Maximum error count is set to 4
    [Thr 1768] [Node: dispatcher] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16-x64\
    [Thr 1768] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID7498500]
    -> node name          : dispatcher
    -> node type          : dispatcher
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_16-x64\
    -> java parameters    : -XX:NewSize=170M -XX:MaxNewSize=170M -XX:+DisableExplicitGC -verbose:gc -Xloggc:GC.log -Djava.security.policy=.java.policy -Djava.security.egd=file:/dev/urandom -Djco.jarm=1
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 170M
    -> init heap size     : 170M
    -> root path          : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\dispatcher
    -> class path         : .\bin\boot\boot.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\DSM\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    [Thr 1768] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16-x64\
    [Thr 1768] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID7498550]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_16-x64\
    -> java parameters    : -Djco.jarm=1 -XX:MaxPermSize=512M -XX:PermSize=512M -XX:NewSize=320M -XX:MaxNewSize=320M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\DSM\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50021
    -> shutdown timeout   : 120000
    [Thr 1768] INFO: Invalid property value [Debbugable=yes]
    [Thr 1768] [Node: SDM] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16-x64\
    [Thr 1768] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [sdm]
    -> node name          : SDM
    -> node type          : sdm
    -> node execute       : yes
    -> java path          : C:\j2sdk1.4.2_16-x64\
    -> java parameters    :
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 256M
    -> root path          : F:\usr\sap\DSM\DVEBMGS00\SDM\program
    -> class path         : F:\usr\sap\DSM\DVEBMGS00\SDM\program\bin\SDM.jar
    -> OS libs path       : F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs
    -> main class         : SDMInternal
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\DSM\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\DSM\DVEBMGS00\exe\jvmx.jar
    -> shutdown class     : com.sap.sdm.jstartup.shutdown.InternalShutDown
    -> parameters         : server sdmhome=F:/usr/sap/DSM/DVEBMGS00/SDM/program
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    [Thr 1860] JControlRequestFunc: Thread 1860 started as listener thread for np messages.
    [Thr 1768] Thu Mar 13 16:25:39 2008
    [Thr 1768] JControlMSConnect: attached to message server (hc-devsmr/3901)
    JControlStartJLaunch: program = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[02] = -DSAPINFO=DSM_00_dispatcher
    -> arg[03] = -nodeId=0
    -> arg[04] = -file=F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_1896
    -> arg[06] = -nodeName=ID7498500
    -> arg[07] = -jvmOutFile=F:\usr\sap\DSM\DVEBMGS00\work\jvm_dispatcher.out
    -> arg[08] = -stdOutFile=F:\usr\sap\DSM\DVEBMGS00\work\std_dispatcher.out
    -> arg[09] = -locOutFile=F:\usr\sap\DSM\DVEBMGS00\work\dev_dispatcher
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[12] = -DSAPSTART=1
    -> arg[13] = -DCONNECT_PORT=3638
    -> arg[14] = -DSAPSYSTEM=00
    -> arg[15] = -DSAPSYSTEMNAME=DSM
    -> arg[16] = -DSAPMYNAME=hc-devsmr_DSM_00
    -> arg[17] = -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[18] = -DFRFC_FALLBACK=ON
    -> arg[19] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = PATH=C:\j2sdk1.4.2_16-x64
    jre\bin\server;C:\j2sdk1.4.2_16-x64
    jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    -> exe path = PATH=C:\j2sdk1.4.2_16-x64
    bin;F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    [Thr 2596] JControlMSMessageFunc: Thread 2596 started as listener thread for ms messages.
    [Thr 1768] JControlICheckProcessList: process dispatcher started (PID:3464)
    JControlStartJLaunch: program = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[02] = -DSAPINFO=DSM_00_server
    -> arg[03] = -nodeId=1
    -> arg[04] = -file=F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_1896
    -> arg[06] = -nodeName=ID7498550
    -> arg[07] = -jvmOutFile=F:\usr\sap\DSM\DVEBMGS00\work\jvm_server0.out
    -> arg[08] = -stdOutFile=F:\usr\sap\DSM\DVEBMGS00\work\std_server0.out
    -> arg[09] = -locOutFile=F:\usr\sap\DSM\DVEBMGS00\work\dev_server0
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[12] = -DSAPSTART=1
    -> arg[13] = -DCONNECT_PORT=3638
    -> arg[14] = -DSAPSYSTEM=00
    -> arg[15] = -DSAPSYSTEMNAME=DSM
    -> arg[16] = -DSAPMYNAME=hc-devsmr_DSM_00
    -> arg[17] = -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[18] = -DFRFC_FALLBACK=ON
    -> arg[19] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = PATH=C:\j2sdk1.4.2_16-x64
    jre\bin\server;C:\j2sdk1.4.2_16-x64
    jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    -> exe path = PATH=C:\j2sdk1.4.2_16-x64
    bin;F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    [Thr 1768] JControlICheckProcessList: process server0 started (PID:4020)
    JControlStartJLaunch: program = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[02] = -DSAPINFO=DSM_00_sdm
    -> arg[03] = -nodeId=2
    -> arg[04] = -file=F:\usr\sap\DSM\DVEBMGS00\SDM\program\config\sdm_jstartup.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_1896
    -> arg[06] = -nodeName=sdm
    -> arg[07] = -jvmOutFile=F:\usr\sap\DSM\DVEBMGS00\work\jvm_sdm.out
    -> arg[08] = -stdOutFile=F:\usr\sap\DSM\DVEBMGS00\work\std_sdm.out
    -> arg[09] = -locOutFile=F:\usr\sap\DSM\DVEBMGS00\work\dev_sdm
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[12] = -DSAPSTART=1
    -> arg[13] = -DCONNECT_PORT=3638
    -> arg[14] = -DSAPSYSTEM=00
    -> arg[15] = -DSAPSYSTEMNAME=DSM
    -> arg[16] = -DSAPMYNAME=hc-devsmr_DSM_00
    -> arg[17] = -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[18] = -DFRFC_FALLBACK=ON
    -> arg[19] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = PATH=C:\j2sdk1.4.2_16-x64
    jre\bin\server;C:\j2sdk1.4.2_16-x64
    jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    -> exe path = PATH=C:\j2sdk1.4.2_16-x64
    bin;F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    [Thr 1768] JControlICheckProcessList: process SDM started (PID:3336)
    [Thr 1768] JControlMSSendLogon: delete SDM logon information (rc=0)
    [Thr 1768] Thu Mar 13 16:25:44 2008
    [Thr 1768] JControlICheckProcessList: process dispatcher (pid:3464) died (RUN-FLAG)
    [Thr 1768] JControlIResetProcess: reset process dispatcher
    [Thr 1768] JControlIResetProcess: [dispatcher] not running -> increase error count (1)
    [Thr 1768] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_16-x64
    bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID7498500 1205425539 -bz F:\usr\sap\DSM\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[02] = -DSAPINFO=DSM_00_dispatcher
    -> arg[03] = -nodeId=0
    -> arg[04] = -file=F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_1896
    -> arg[06] = -nodeName=ID7498500
    -> arg[07] = -jvmOutFile=F:\usr\sap\DSM\DVEBMGS00\work\jvm_dispatcher.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\DSM\DVEBMGS00\work\std_dispatcher.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\DSM\DVEBMGS00\work\dev_dispatcher
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[15] = -DSAPSTART=1
    -> arg[16] = -DCONNECT_PORT=3638
    -> arg[17] = -DSAPSYSTEM=00
    -> arg[18] = -DSAPSYSTEMNAME=DSM
    -> arg[19] = -DSAPMYNAME=hc-devsmr_DSM_00
    -> arg[20] = -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[21] = -DFRFC_FALLBACK=ON
    -> arg[22] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = PATH=C:\j2sdk1.4.2_16-x64
    jre\bin\server;C:\j2sdk1.4.2_16-x64
    jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    -> exe path = PATH=C:\j2sdk1.4.2_16-x64
    bin;F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    [Thr 1768] JControlICheckProcessList: process dispatcher started (PID:224)
    [Thr 2596] Thu Mar 13 16:25:45 2008
    [Thr 2596] JControlIEnableProcesses: disable processes of type (Exclude:0) [SDM Server]
    [Thr 2596] JControlIDisableProcess: disable process SDM
    [Thr 2596] JControlIProcessSoftKill: soft kill of process SDM (pid:3336)
    [Thr 1768] Thu Mar 13 16:25:50 2008
    [Thr 1768] JControlICheckProcessList: process dispatcher (pid:224) died (RUN-FLAG)
    [Thr 1768] JControlIResetProcess: reset process dispatcher
    [Thr 1768] JControlIResetProcess: [dispatcher] not running -> increase error count (2)
    [Thr 1768] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_16-x64
    bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID7498500 1205425544 -bz F:\usr\sap\DSM\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[02] = -DSAPINFO=DSM_00_dispatcher
    -> arg[03] = -nodeId=0
    -> arg[04] = -file=F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_1896
    -> arg[06] = -nodeName=ID7498500
    -> arg[07] = -jvmOutFile=F:\usr\sap\DSM\DVEBMGS00\work\jvm_dispatcher.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\DSM\DVEBMGS00\work\std_dispatcher.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\DSM\DVEBMGS00\work\dev_dispatcher
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[15] = -DSAPSTART=1
    -> arg[16] = -DCONNECT_PORT=3638
    -> arg[17] = -DSAPSYSTEM=00
    -> arg[18] = -DSAPSYSTEMNAME=DSM
    -> arg[19] = -DSAPMYNAME=hc-devsmr_DSM_00
    -> arg[20] = -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[21] = -DFRFC_FALLBACK=ON
    -> arg[22] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = PATH=C:\j2sdk1.4.2_16-x64
    jre\bin\server;C:\j2sdk1.4.2_16-x64
    jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    -> exe path = PATH=C:\j2sdk1.4.2_16-x64
    bin;F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    [Thr 1768] JControlICheckProcessList: process dispatcher started (PID:4520)
    [Thr 1768] JControlICheckProcessList: process SDM (pid:3336) died (STOPPING)
    [Thr 1768] JControlIResetProcess: reset process SDM
    [Thr 1768] Thu Mar 13 16:25:55 2008
    [Thr 1768] JControlICheckProcessList: process dispatcher (pid:4520) died (RUN-FLAG)
    [Thr 1768] JControlIResetProcess: reset process dispatcher
    [Thr 1768] JControlIResetProcess: [dispatcher] not running -> increase error count (3)
    [Thr 1768] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_16-x64
    bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID7498500 1205425550 -bz F:\usr\sap\DSM\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\DSM\DVEBMGS00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[02] = -DSAPINFO=DSM_00_dispatcher
    -> arg[03] = -nodeId=0
    -> arg[04] = -file=F:\usr\sap\DSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_1896
    -> arg[06] = -nodeName=ID7498500
    -> arg[07] = -jvmOutFile=F:\usr\sap\DSM\DVEBMGS00\work\jvm_dispatcher.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\DSM\DVEBMGS00\work\std_dispatcher.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\DSM\DVEBMGS00\work\dev_dispatcher
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[15] = -DSAPSTART=1
    -> arg[16] = -DCONNECT_PORT=3638
    -> arg[17] = -DSAPSYSTEM=00
    -> arg[18] = -DSAPSYSTEMNAME=DSM
    -> arg[19] = -DSAPMYNAME=hc-devsmr_DSM_00
    -> arg[20] = -DSAPPROFILE=F:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS00_hc-devsmr
    -> arg[21] = -DFRFC_FALLBACK=ON
    -> arg[22] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = PATH=C:\j2sdk1.4.2_16-x64
    jre\bin\server;C:\j2sdk1.4.2_16-x64
    jre\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    -> exe path = PATH=C:\j2sdk1.4.2_16-x64
    bin;F:\usr\sap\DSM\DVEBMGS00\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;E:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\binn\;E:\Program Files\Microsoft SQL Server (x86)\90\DTS\Binn\;E:\Program Files\Microsoft SQL Server (x86)\90\Tools\Binn\VSShell\Common7\IDE\;F:\usr\sap\DSM\SYS\exe\uc\NTAMD64
    [Thr 1768] JControlICheckProcessList: process dispatcher started (PID:4852)
    [Thr 1768] Thu Mar 13 16:26:10 2008
    [Thr 1768] JControlICheckProcessList: process dispatcher (pid:4852) died (RUN-FLAG)
    [Thr 1768] JControlIResetProcess: reset process dispatcher
    [Thr 1768] JControlIResetProcess: [dispatcher] not running -> increase error count (4)
    [Thr 1768] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_16-x64
    bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/

  • Oracle Linux and Java 7u10

    Hi all,
    I installed Oracle Linux Server 6.3 selecting "software Development System" (java 1.6.0 comes with it).
    but I need to use Java 1.7
    So I downloaded jdk-7u10-linux-x64.rpm
    when I try to install it, I get the following error.
    Unpacking JAR files...
         rt.jar...
    Error: Could not open input file: /usr/java/jre1.7.0_10/lib/rt.pack
         jsse.jar...
    Error: Could not open input file: /usr/java/jre1.7.0_10/lib/jsse.pack
         charsets.jar...
    Error: Could not open input file: /usr/java/jre1.7.0_10/lib/charsets.pack
         localedata.jar...
    Error: Could not open input file: /usr/java/jre1.7.0_10/lib/ext/localedata.pack
    I can't uninstall java 1.6 because other rpm uses it.
    Can someone tell me what the "proper" way to install Oracle Linux and Java 1.7 should be?
    OR is there a Oracle Linux Server 6.4 coming out soon with Java 1.7 as its default package set ;-)
    thanks in advance,
    c.w.

    You can ignore the errors. The files named in the error lines do not exist in the rpm package, but are there as .jar files
    The following works under Oracle Linux 6.3 x86_64 (and probably other versions).
    1. Open the following URL in a web browser on your PC:
    <pre>
    http://www.oracle.com/technetwork/java/javase/downloads/index.html
    </pre>
    2. Click the JDK download button, accept the license agreement and download the JDE rpm package.
    3. Copy the following file to your Oracle Linux server (SFTP):
    <pre>
    jdk-7u10-linux-x64.rpm
    </pre>
    4. Login as root and use the YUM utility to install the RPM package.
    <pre>
    # yum install ./jdk-7u10-linux-x64.rpm
    </pre>
    5. Register the new installed java version, then change your default Java:
    <pre>
    # alternatives --install /usr/bin/java java /usr/java/jdk1.7.0_10/bin/java 2
    # alternatives --config java
    </pre>
    Display your default Java version:
    <pre>
    # java -version
    java version "1.7.0_10"
    Java(TM) SE Runtime Environment (build 1.7.0_10-b18)
    Java HotSpot(TM) 64-Bit Server VM (build 23.6-b04, mixed mode)
    </pre>

  • Whats is difference between Java JRE  and  Java SDK

    Hi,
    what is the difference between Java JRE and Java SDK...
    i think both of them have the same set of files to be installed...
    I am not able to understand where they differ

    The JRE (Java runtime Environment) contains just the stuff necessary to run Java and the SDK (System Development Kit) contains the extra stuff necessary (and also helpful) to develop in Java.

  • SSO between Portal and Java WD application

    Hi Experts,
    I am using CE 7.2 on localhost and I am very new to SAP.
    I need to know how can I get SSO between Portal and Java WD.  I have a WD application that displays the logged in user using "IUser currentUser = WDClientUser.getCurrentUser().getSAPUser()", as well I can use "IUser user = UMFactory.getAuthenticator().getLoggedInUser()".  Both work.
    Q1. What is the difference in the 2 above?
    Q2. My WD application is set to authenticate user.  The WD application is in URL iView.  I need SSO between Portal and WD application.   Is there a way to get this SSO without SAP Backend (ECC), for now I just need SSO between Portal and Java WD appl.
    Everything is in localhost.
    Please advice. Thanks.

    > need to know how can I get SSO between Portal and Java WD.
    Then I suggest you ask your question in the Web Dynpro Java forum instead of the Web Dynpro ABAP one.

  • I am locked out of my account because my password includes "[" and my computer is set to spanish. In spanish that key doesn't work. How do I gejt back into my computer?

    i am locked out of my account because my password includes "[" and my computer is set to spanish. In spanish that key doesn't work. How do I gejt back into my computer?

    If the user account is associated with an Apple ID, and you know the Apple ID password, then maybe the Apple ID can be used to reset your user account password.
    Otherwise*, boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window opens.
    Select your boot volume if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Follow the prompts to reset the password. It's safest to choose a password that includes only the characters a-z, A-Z, and 0-9.
    Select
     ▹ Restart
    from the menu bar.
    You should now be able to log in with the new password, but your Keychain will be reset (empty.) If you've forgotten the Keychain password (which is ordinarily the same as your login password), there's no way to recover it.
    *Note: If you've activated FileVault, this procedure doesn't apply. Follow instead the instructions on this page:
    If you forget the password and FileVault is on

Maybe you are looking for