My thread program plz help

have done this so far, but I am getting an error on main class
I believe its how to get the command (BufferedReader and StringTokenizer methods)
Please give me a hint. Code Below:
by the way, I have to create myshell with differents commands working in differents threads. (working on NetBeans)
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class MyShell
public static void main(String args[]) throws IOException
boolean exit = false;
while (!exit)
// Modification of txt into String
System.out.println("There is MyShell >>> ");
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
// Devide whole string into different sub-strings(tokens)
// and check if there is more tokens to read.
String input = in.readLine();
StringTokenizer token = new StringTokenizer(input, "&");
while(token.hasMoreTokens())
String[] command = new String[3];
command[0] = "cdm.exe";
command[1] = "/C";
command[2] = token.nextToken();
if(command[2].equals("exit"))
System.exit(0);
exit = true;
Runtime run = Runtime.getRuntime();
Process proc = run.exec(command);
thread_1 errorMessage = new thread_1(proc.getErrorStream(), "ERRORp");
thread_1 outputMessage = new thread_1(proc.getInputStream(), "Output ");
errorMessage.start();
outputMessage.start();
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
class thread_1 extends Thread
InputStream input;
String str;
thread_1(InputStream input, String str)
this.str = str;
this.input = input;
// Override run method
public void run()
try
InputStreamReader iReader = new InputStreamReader(input);
BufferedReader bReader = new BufferedReader(iReader);
String output = null;
while ((output = bReader.readLine())!= null)
System.out.println(str + ">>> " + output);
catch (IOException e)
e.printStackTrace();
}

There is my main + thread_1 class:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class MyShell
    public static void main(String args[]) throws IOException
        boolean exit = false;
        while (!exit)
            // Modification of txt into String
            System.out.println("There is MyShell >>> ");
            BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
            // Devide whole string into different sub-strings(tokens)
            // and check if there is more tokens to read.
            String input = in.readLine();
            StringTokenizer token = new StringTokenizer(input, "&");
            while(token.hasMoreTokens())
                String[] command = new String[3];
                command[0] = "cdm.exe";
                command[1] = "/C";
                command[2] = token.nextToken();
                if(command[2].equals("exit"))
                    System.exit(0);
                    exit = true;
                Runtime run = Runtime.getRuntime();
                Process proc = run.exec(command);
                thread_1 errorMessage = new thread_1(proc.getErrorStream(), "ERROR");
                thread_1 outputMessage = new thread_1(proc.getInputStream(), "Output ");
                errorMessage.start();
                outputMessage.start();
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
class thread_1 extends Thread
    InputStream input;
    String str;
    thread_1(InputStream input, String str)
        this.str = str;
        this.input = input;
    // Override run method
    public void run()
        try
            InputStreamReader iReader = new InputStreamReader(input);
            BufferedReader bReader = new BufferedReader(iReader);
            String output = null;
            while ((output = bReader.readLine())!= null)
                System.out.println(str + ">>> " + output);
    catch (IOException e)
        e.printStackTrace();
}There is the ERROR:
init:
deps-jar:
Compiling 1 source file to C:\Documents and Settings\PlinioG\My Documents\NetBeansProjects\MyShell\build\classes
compile:
run:
There is MyShell >>>
dir
Exception in thread "main" java.io.IOException: Cannot run program "cdm.exe": CreateProcess error=2, The system cannot find the file specified
        at java.lang.ProcessBuilder.start(ProcessBuilder.java:459)
        at java.lang.Runtime.exec(Runtime.java:593)
        at java.lang.Runtime.exec(Runtime.java:466)
        at MyShell.main(MyShell.java:38)
Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified
        at java.lang.ProcessImpl.create(Native Method)
        at java.lang.ProcessImpl.<init>(ProcessImpl.java:81)
        at java.lang.ProcessImpl.start(ProcessImpl.java:30)
        at java.lang.ProcessBuilder.start(ProcessBuilder.java:452)
        ... 3 more
Java Result: 1
BUILD SUCCESSFUL (total time: 7 seconds)

Similar Messages

  • J2Me game programming plz help

    Helo everyone,
    I am working in j2me game programming plz if
    any one know how make image as small as possible
    in our game program.?
    I am using *.png format of image which is working well
    in game but my game size is very big so plz help me to get
    out of this problem
    Thank u
    Aman Gautam

    I solved the same problem by using indexed color images instead of true color.
    So, for example, if you have a colorful background you can convert it to a 256 color image.
    Depending on your specific image and the devices you'll see it on you may or may not notice the difference, but the file size is generally smaller.
    Then you can push further for smaller elements, like, say, a moving object like a pointer or a starship, you can reduce it to 60 or 30 colors, or even less.
    Another technique is to use tiles to build up the background instead of big images. With MIDP2.0 there's the TiledLayer, but you can implement the same with some code also on MIDP1.0 if backward compatibility is of concern.

  • THREAD PROBLEM; PLZ HELP!!!

    Hi guys!
    I'm having a bit of a problem with a thread.
    Let me give you the perspective...
    I developed a program which is copying files from one place to another. The class who is responsible for the copying looks like this:
    public class CopyFiles implements Runnable {
    Thread thread = null;
    public CopyFiles(.....params....) {
    // Some code
    thread = new Thread(this);
    private copy(File file, File destination) {
    // Some code
    public void run() {
    for (Iterator i = collection.iterator(); i.hasNext();)
    copy((File) i.next(), destination);
    System.out.println("I'm done!");
    // Next I kill the tread
    This class uses this thread-technique so the GUI using this class won't freeze.
    Now to my problem. The thread is being killed sometimes before all the files ha been copied!!!
    I wan't that the copy-method to complete entirely before the thread is killed.
    I tried to use the join-method but then the GUI freezes and that's not an option!!!
    Plz can somebody help me????
    Thx in advance!
    /Andrew

    Thread thread = null;1. What do you need this instance variable for? From your other code, it looks like you don't need it anywhere - why not just declare it locally in your CopyFIles method?
    public CopyFiles(.....params....) {
    // Some code
    thread = new Thread(this);
    }2. You never called thread.start() ???
    public void run() {
    for (Iterator i = collection.iterator();
    (); i.hasNext();)
    copy((File) i.next(), destination);
    System.out.println("I'm done!");
    // Next I kill the tread
    }3. What do you mean by "Next I kill the tread"? If you do nothing at that point, the thread will terminate anyway. Currently you still have a reference to it so it won't be garbage collected, but as I pointed out above, it looks like you don't need that reference anyway.

  • Not able to copy a program plz help

    hi experts
    i ill have to create a copy of program SAPMSM20 (transaction sm20) .
    when i am copying the program in the output it is hsowing some different output .
    or i can say
    in case of SAPMSM20 it is calling screen 300
    but wen i copied it
    it is calling screen 200.
    plz copy this program at your end and tell me how can i copy it to get the same output as in SAPMSM20.
    thanx in advance .

    Hi Anit,
    try this:
    DOWNLOAD PROGRAM ==============
    http://www.sap-img.com/abap/download-and-upload-your-abap-program.htm
    visit http://www.dalestech.com
    Can check these links also.
    http://sap.ittoolbox.com/code/archives.asp?d=1623&a=s&i=10
    http://www.members.tripod.com/abap4/Upload_and_Download_ABAP_Source_Code.html
    http://www.geocities.com/rmtiwari/Resources/Utilities/WebViewer.html
    http://sap.ittoolbox.com/code/archives.asp?d=3333&a=s&i=10
    http://www.sap-img.com/abap/download-and-upload-your-abap-program.htm
    Hope it is helpful.
    Manish
    Download program and Classes.Download program and Classes.
    ZREPTRAN_46C appears to allow downloading of classes
    http://www.xaption.de/downloads/developer/index.php?Xaption=cd4ab5a11a5c26d34de38ed675bb6541
    http://wiki.ittoolbox.com/index.php/Code:Download_and_upload_OO_ABAP_class_in_XML_format
    <b>Reward points if this helps.
    Manish</b>

  • Plz Help! How to control mouse motion(use program to move/click the mouse)?

    Hi people, plz give me some help on this: I wanna control mouse motion at another program's window, eg. control mouse movement in Internet Explorer's window. For a particular pixel on the screen, I need to move the mouse onto it instantly, then click. Please note that the java program(no applet) is going to run at the background, the current active window is some other programs like IE, notepad, etc.
    Plz give me some clue about how to achieve this, thanks.
    Do I need to do this through windows API or it can be done purely in JAVA?
    Also, how to calculate the RGB color from a particular pixel on the screen?
    Thank you very much for your time, plz help :).

    The same question each day (exe) !!!
    There are many posts on this point!
    All the soft that allows the build a native executable file on Windows
    are not free!
    You can take a look at JET excelsior
    http://www.excelsior-usa.com/home.html
    Denis

  • Plz help me,after instuling the last software update,the programs and games and everything i have download it can't open!

    plz help me,after instuling the last software update,the programs and games and everything i have download it can't open!

    Have you tried the basics from the manual?
    restart, reset, restore.
    iPod touch User Guide (For iOS 4.3 Software)

  • Need help with java thread program

    Hi
    I have an applet which does some painting etc, i need to write a thread which runs in background, and if there is no user activity for 30 min will refresh the screen.
    I have one good thing that all user options go from one program so i know when user does some thing.
    How do i write this thread program?
    1. I need this program to start counter as soon as some activity is done by user
    2. When user does some thing stop this thread
    3. when user completes his action restart the thread with 30 min timer.
    4. when there is no activity for 30 min refresh the screen
    Any help will be really good
    Ashish

    Not sure what the problem is. Your pseudo code looks good to me.
    The only suggestion I would make is that your use a Timer so you don't have to worry about creating your own Thread. You schedule a Timer to fire in 30 minutes. Everytime you have activiity you cancel the timer and reschedule it.

  • CAN ANYBODY PLZ HELP: problem opening any program including internet explorer

    i recently got rid of "vista internet security 2010". Took me many scans to wipe it and it seems like i finally cleared it. Now i cant click on anything without it popping up a box saying,
    "open with: choose the program you want to use to open this file".
    I dont understand what happened but it started doing that right after i used my antivirus and it found the trojan.
    can anybody plz help me fix this withouth me having to do a complete system restore?
    ill greatly appreciate it.

    Angie, please be sure to download and run this free tool.
       Malwarebytes' Anti-Malware
    "open with: choose the program you want to use to open this file
    Which file types (see the "extension" at the end of the file) produce that message?
    Which computer? Which Windows?
    -Jerry

  • Threads behaving wierdly..Work of 5 months going for a toss.. plz help...?

    Hi everyone,
    I am stuck into this probel very badly..i have never seen such a problem before..Thread bottleneck somewhere is the issue i guess,,, plz have a look at the code patiently.. and do reply.. u guys are my last hope on this thing..Thank YOU...
    The Bank method is called by another method which runs 50 threads , so
    at a time 50 threads could enter this method to record Debit... class BankHelper {
    // Some code of bank.. not relevant to my problem
         public Bank() {
                    long time = System.nanoTime();
                    abc.recordDebit();_ *// want to measure how much time this method takes*_
                    abc.recordTimeForDebit(System.nanoTime() - time); *_// accumulating the total time the above method takes to calculate_*
        class abc {
    // Some code of bank.. not relevant to my problem
        public synchronized void recordDebit(){
            debit++;      
        } _*// I had put timers aound the ++ and it took not more than 700 to 900 nanoseconds*_
        public synchronized void recordTimeForDebit(long time){
            record += time;
            Log.debug("Time taken to record drop for DEBIT " + record + " Millis " + time);
    Answer:_
    Record time is 9014 millis for 5000 increments or 5000 calls to recordDebit()_
    One can see in the answer that its a huge number when one is expecting it to be somewhere around:
    EXPECTED ANSWER:
    *5000 * 800 nanos( it takes 800 nanos for very increment) = 4000000 = 4 millis and its like 9014 millis*
    How is there such a huge difference ????????? I have bruised thorugh it for like 3 days... i have lost all my hope.. Plz help..Also look at the next code..
    When i go to see in the log .. it shows me that every record took like from 2000 nanos to 6 to 7 millis i.e.7000000...
    HOw is this even possibly possible ??? where did it get all this extra time from...it should not be more than some 700 to 900 nanos ..
    Is there a bottleneck somewhere ????
    Now part 2:
    This thing has fazzed, dazzled , destroyed me.. I could not understand this and it has tossed all my concepts into the cupboard..
    Same stuff: JUST HAVE A LOOK AND ENJOY AND TELL ME WHATS GOING ON...Same code.. different way of incrementing data i.e synchronization is at a different place..but results are very highly improved...
        class BankHelper {
    // Some code of bank.. not relevant to my problem
         public Bank() {
                    long time = System.nanoTime();
                    abc.recordDebit(); // want to measure how much time this method takes
                    abc.recordTimeForDebit(System.nanoTime() - time); // accumulating the total time the above method takes to calculate
    }The Bank method is called by another method which runs 50 threads , so at a time 50 threads could enter this method to record Debit...
        class abc {
    // Some code of bank.. not relevant to my problem
        public void recordDebit(){
            someotherclass.increment();      
        } // this is not synchronized nowwwwwwww
    // I have put timers here too and it took like 1500 to 2500 nanos
        public synchronized void recordTimeForDebit(long time){
            record += time;
            Log.debug("Time taken to record drop for DEBIT " + record + " Millis " + time);
    class someotherclass{
    // Not relevant code
        public void increment(){
            someotherclass1.increment1();      
    class someotherclass1{
    // Not relevant code
        public void increment1(){
            someotherclass2.increment2();      
    class someotherclass2{
    // Not relevant code
        public synchronized void increment2(){
            someotherclass3.increment3();      
        } //now its synchronized
    class someotherclass3{
    // Not relevat code
        public synchronized void increment3(){
            debit++;      
        } //now its synchronized
    ANSWER: Record is 135 millis for 5000 increments or 5000 calls to recordDebit()_
    Expected time was : 5000 2500 = 125000000 = 125 millis (WOW .. AS EXPECTED)*
    Please don't ask me why this code has been written this way..i know it goes and increment and does the same thing...but somehow when i measured it..
    overall time or the accumulated time for both codes varied like in huge numbers...even though latter code is actually a superset of previous code..
    HOW IS THERE SUCH A HUGE DIFFERENCE BETWEEN THE NUMBERS ???
    COULD BE BECAUSE OF THE POINT OF SYNCHRONIZATION ???
    Thank you..for going through all this..

    Answered on JavaRanch. By synchronizing both the increment and the recording methods, you can only perform one of those functions at a time.Thanking you Steve, I shall read and inwardly digest.
    My (humble) advise is:
    1. WTF are you doing trying to measure the time taken to execute a [unirary operation|http://en.wikipedia.org/wiki/Unary_operation] (you putz!) which is just like so freeken small (on a 2Ghz CPU) that even a gazzillion invocations might take less time than it took you get your duds off in order to earn your reputation as a putz!
    2. FFS, Don't write profiling code in your app... just download one. VisualVM is way cool!
    3. As you would know, if you had bothered to actually RTFM at any stage in your (bugging;-) career... synchronized methods are slow(er) because of the farckin time taken to acquire and release the lock... as well as the inherent inefficiency of bottlenecking a whole method, as apposed to just the critical statements... which in the case of a simple incrementor is just about no near new never mind... so no never mind... but still the fact remains... you've turned an atomic operation (google it yourself) into a bottleneck... and then you're standing there whining about bottlenecks. Doh!
    4. Seriously dude, read the effin manual.
    Edited by: corlettk on 27/09/2008 14:19

  • Hello  I upgraed my iphone to ios 7 but its dosent work like app stor dosent install any brogram or update programs and its slow and stuck plz help me

    Hello
    I upgraed my iphone to ios 7 but its dosent work like app stor dosent install any brogram or update programs and its slow and stuck plz help me

    My iPhone 5 wouldn't start after I turned it off a few minutes after writing this. It went into recovery mode and I had no choice but to connect to iTunes on PC and restore.
    I restored to factory setting first, just to validate my phone was okay. For a second consecutive iOS update, the  iPhone 5 did not update smoothly while connected to PC and iTunes - I had to retry two times before the progress bar for the update showed. (The exact same problem with the restart occured when I updated to 7.0.4.)
    The good news is that I was ultimately able to restore the iPhone 5 to factory settings while running iOS 7.0.6. I did have a backup from about a month ago lying around and was able to successfully restore with that as well, so the damage done is almost negligible since I had my contacts, notes, mail, etc. backed up to iCloud.
    Once I completed both restores, the sync with iTunes worked fine.

  • Plz help me in j2me programming

    Hello friend,
    I am making progress bar in j2me which is made by Gauge class.
    here iam fetching data from jsp page..in between all data process and come on to mobile screen i want to show progress bar on screen..plz help me how can i bind my process with Gauge..
    if u understand me plzz try to solve my problem...
    Thanks in advence
    Aman Gautam

    As this FS seems to be for lingerie company "Victoria's Secret" could points be converted to underwear instead of t-shirts?
    Tip: If you're going to post an entire spec you may want to remove the customer's name first.

  • HELP!....GUI crashes when i call a multi-threaded program from it

    Hi..I have encountered a problem in my end of year project, which i cant see to solve. The problem is i am starting a multi-threaded program for a JButton on a GUI. All though this starts the other program it crashes the GUI completely how do i stop this.
    this is the code i use to call the threaded program.
    public void actionPerformed(ActionEvent e)
    Object target=e.getSource();
    String line = new String();
    if( target==b1 )
         try
    cl = new client();
         cl.startup();
         catch(Exception ex){ex.printStackTrace();}
    thanks Mike

    No there is no exceptions being given. this is one of the reasons why i dont no what to do. i thought myself that the threaded was taking all the resources and not going back to the GUI. if this is the case is there anyway that i can call back the GUI and keep the threaded program running?
    thanks
    mike.

  • Plz help upgrade issue moving data from char type structure to non char typ

    Hi Experts
    plz help its very urgent
    Data :workout(5000) .
    FIELD-SYMBOLS : <FS_WORKOUT> TYPE ANY.  
    workout = '         u' .
    ASSIGN WORKOUT TO <FS_WORKOUT> CASTING TYPE C .
                      BAPISDITM = <FS_WORKOUT>.
    i am getting dump after BAPISDITM = <FS_WORKOUT>.
    i think i am getting the dump bcoz i am moving character type structure to non character type structure but i think with field symbols we can remove this issue thats y i used it but its not working plz help me
    its very urgent
    *dump is :*
    Short text
        Data objects in Unicode programs cannot be converted.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "ZSDR0009" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
    How to correct the error
        Use only convertible operands "dst" and "src" for the statement
           "MOVE src TO dst"
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "UC_OBJECTS_NOT_CONVERTIBLE" " "
        "ZSDR0009" or "ZSDR0009_I02"
        "USER_COMMAND"
    thanx in advance

    i got d solution in this thread
    Hi all,
    data: gv_line(6000) type c.
    Bvbapkom = gv_line.
    But i am getting the Error like : gv_line and Bvbapkom are not mutually convertable.
    Note: Bvbapkom is a Structure
    How do i solve this ?
    Mahesh
    KR  
    Posts: 210
    Registered: 11/24/06
    Forum Points: 0 
      Re: gv_line and Bvbapkom are not mutually convertable.  
    Posted: Nov 30, 2007 8:40 AM    in response to: KR         Reply 
    Hi ,
    i got the solution
    ANSWER:
    Field-symbols: <X_Bvbapkom> type x,
    <X_gv_line> type x.
    Assign: Bvbapkom to <X_Bvbapkom> casting,
    gv_line to <X_gv_line> casting.
    <X_Bvbapkom> = <X_gv_line>.
    Nasaka Ramakris...  
    Posts: 4
    Registered: 1/19/08
    Forum Points: 20 
      Re: gv_line and Bvbapkom are not mutually convertable.   
    Posted: Jan 19, 2008 7:42 AM    in response to: KR         Reply 
    Hi Check this answer.
    ANSWER:
    Field-symbols: <X_Bvbapkom> type x,
    <X_gv_line> type x.
    Assign: Bvbapkom to <X_Bvbapkom> casting,
    gv_line to <X_gv_line> casting.
    <X_Bvbapkom> = <X_gv_line>.

  • Hi basis gurus, plz help me i have problem in loading the solman 4.0 sr3

    hi basis gurus, plz help me i have problem in loading the solution manager 4.0 sr3 on mssql 2005 with sp2,
    i am enclosing the error log.
    plz help me.
    INFO 2007-12-15 04:52:47.203
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/inifile.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/inifile.2.xml'.
    INFO 2007-12-15 04:52:47.234
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/inifile.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/inifile.3.xml'.
    INFO 2007-12-15 04:52:47.671
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/keydb.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/keydb.2.xml'.
    INFO 2007-12-15 04:52:47.671
    Execute step changeUserInstall of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:04.531
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\change.log.
    INFO 2007-12-15 04:53:04.546
    Output of change user /install is written to the logfile change.log.
    WARNING 2007-12-15 04:53:04.562
    Execution of the command "change user /install" finished with return code 1. Output:
    Install mode does not apply to a Terminal server configured for remote administration.
    INFO 2007-12-15 04:53:04.625
    Execute step chgautInstdirPublicAllOS4 of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:04.718
    Execute step replaceDLLs of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:04.843
    File not found: [C:/DOCUME1/ADMINI1/LOCALS~1/Temp/1/sapinst_exe.3432.1197711967/msvcp71.dll].
    INFO 2007-12-15 04:53:04.859
    File not found: [C:/DOCUME1/ADMINI1/LOCALS~1/Temp/1/sapinst_exe.3432.1197711967/msvcr71.dll].
    INFO 2007-12-15 04:53:04.921
    Execute step registerEventsDll of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:05.125
    Execute step AddPrivileges of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:05.343
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'SOLMAN\Administrator' on host '.'.
    INFO 2007-12-15 04:53:05.406
    Execute step checkInstDirPermissions of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:05.562
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\testfile.1.
    INFO 2007-12-15 04:53:05.562
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\testfile.1.
    INFO 2007-12-15 04:53:05.828
    Execute step
    Component  W2K_ServicePack_Check|ind|ind|ind|ind
    Preprocess  of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:24.640
    Execute step sync of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:24.859
    Execute step adminCheck of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:25.62
    Execute step W2KSPCheck of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:25.234
    Execute step XPSPCheck of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:25.421
    Execute step DNSCheck of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:25.546
    DNS is configured correctly.
    INFO 2007-12-15 04:53:25.609
    Execute step done of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:25.796
    Execute step checkParams of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:25.984
    Execute step fillContextForSoftwareFeatures of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:26.171
    Execute step loadUsageTypes of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features_Init|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:28.62
    Execute step fillContextUsageTypes of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0.
    INFO 2007-12-15 04:53:28.265
    Execute step setAllPossible of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:28.859
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/usages_data.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/usages_data.1.xml'.
    INFO 2007-12-15 04:53:28.890
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/usages_data.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/usages_data.2.xml'.
    INFO 2007-12-15 04:53:28.921
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jexclude.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jexclude.1.xml'.
    INFO 2007-12-15 04:53:28.921
    Execute step determineScenarioParameters of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:29.140
    Execute step prepareUsagesTableForUserInputXml of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:29.640
    Execute step determinePossibleUsageTypesXml of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:30.468
    Execute step prepareUsagesTableForUserInputDB of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:30.578
    Execute step setDefaultsGuiValues of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:30.687
    Execute step setDefaultsStackDetermined of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:30.781
    Execute step chooseMandatory of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:31.296
    Execute step makeABAPPartsImpossible of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:31.390
    Execute step setDependencyRestrictions of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:32.0
    Execute step prepareScenario of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Select|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:32.468
    Execute step fillUsagesTable of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Select|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:33.515
    Execute step selectUsages of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Select|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:33.640
    Execute step selectUsagesNetWeaver of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Select|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:33.765
    Execute step determineStack of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:34.234
    Execute step determineCharSet of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:34.890
    Execute step fillContext2 of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:35.93
    Execute step startDefaultMode of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:35.390
    Execute step fillContext of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:35.640
    Execute step setDefaults of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_getJavaHome|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:36.31
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 04:53:35 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 04:53:36.312
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar;C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/sapxmltoolkit.jar com.sap.ins.j2ee.TestClassLoader" finished with return code 0. Output: CORRECT
    INFO 2007-12-15 04:53:36.312
    Found a valid JAVA_HOME directory C:\j2sdk1.4.2_12 with JDK version 1.4.2_12.
    INFO 2007-12-15 04:55:54.593
    Copied file 'D:/D51032958/J2EE_OSINDEP/JDKVersion.xml' to '.'.
    INFO 2007-12-15 04:55:54.781
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar;C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/sapxmltoolkit.jar com.sap.ins.j2ee.TestClassLoader" finished with return code 0. Output: CORRECT
    INFO 2007-12-15 04:55:54.781
    Found a valid JAVA_HOME directory C:\j2sdk1.4.2_12 with JDK version 1.4.2_12.
    INFO 2007-12-15 04:55:54.953
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar;C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/sapxmltoolkit.jar com.sap.ins.j2ee.TestClassLoader" finished with return code 0. Output: CORRECT
    INFO 2007-12-15 04:55:55.62
    Execute step getCD of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_getJavaHome|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:55:55.281
    Execute step verifyJavaHome of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_getJavaHome|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:55:55.593
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 04:55:55 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 04:55:55.968
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 04:55:55 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 04:55:56.187
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar;C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/sapxmltoolkit.jar com.sap.ins.j2ee.TestClassLoader" finished with return code 0. Output: CORRECT
    INFO 2007-12-15 04:55:56.390
    Execute step verifyPolicy of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_getJavaHome|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:55:56.531
    Creating directory C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck.
    INFO 2007-12-15 04:55:56.546
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jdkPolicyCheck.
    INFO 2007-12-15 04:55:56.562
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 04:55:56.562
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\local_policy.log.
    INFO 2007-12-15 04:55:56.578
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile local_policy.log.
    INFO 2007-12-15 04:55:56.875
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf C:/j2sdk1.4.2_12/jre/lib/security/local_policy.jar:
    extracted: META-INF/MANIFEST.MF
    extracted: META-INF/JCE_RSA.SF
    extracted: META-INF/JCE_RSA.RSA
      created: META-INF/
    extracted: default_local.policy
    extracted: exempt_local.policy
    INFO 2007-12-15 04:55:56.890
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jdkPolicyCheck.
    INFO 2007-12-15 04:55:56.890
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 04:55:56.906
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\US_export_policy.log.
    INFO 2007-12-15 04:55:56.906
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile US_export_policy.log.
    INFO 2007-12-15 04:55:57.62
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf C:/j2sdk1.4.2_12/jre/lib/security/US_export_policy.jar:
    extracted: META-INF/MANIFEST.MF
    extracted: META-INF/JCE_RSA.SF
    extracted: META-INF/JCE_RSA.RSA
      created: META-INF/
    extracted: default_US_export.policy
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\default_local.policy.
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\default_US_export.policy.
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\exempt_local.policy.
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\META-INF\JCE_RSA.RSA.
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\META-INF\JCE_RSA.SF.
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\META-INF\MANIFEST.MF.
    INFO 2007-12-15 04:55:57.78
    Removing directory C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jdkPolicyCheck/META-INF.
    INFO 2007-12-15 04:55:57.78
    Removing directory C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jdkPolicyCheck.
    INFO 2007-12-15 04:55:57.343
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 04:55:57 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 04:55:57.625
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 04:55:57 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 05:06:19.171
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:06:19.187
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\LABEL.log.
    INFO 2007-12-15 05:06:19.187
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile LABEL.log.
    INFO 2007-12-15 05:06:21.718
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf D:\D51032958\J2EE_OSINDEP\UT_SOLMAN\LABEL.ASC:
    INFO 2007-12-15 05:21:25.93
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:21:25.93
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\unrestrict142.log.
    INFO 2007-12-15 05:21:25.109
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile unrestrict142.log.
    INFO 2007-12-15 05:21:27.734
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf D:\unrestrict142.zip:
    US_export_policy.jar
    local_policy.jar
    INFO 2007-12-15 05:21:27.750
    Creating directory C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jcePolicyCheck.
    INFO 2007-12-15 05:21:27.765
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:21:27.765
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:21:27.781
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\unrestrict142.log.
    INFO 2007-12-15 05:21:27.781
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile unrestrict142.log.
    INFO 2007-12-15 05:21:27.937
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf D:\unrestrict142.zip local_policy.jar:
    extracted: local_policy.jar
    INFO 2007-12-15 05:21:27.953
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:21:27.953
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:21:27.968
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\local_policy.log.
    INFO 2007-12-15 05:21:27.968
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile local_policy.log.
    INFO 2007-12-15 05:21:28.125
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf C:/PROGRA1/SAPINS1/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck/local_policy.jar:
    META-INF/MANIFEST.MF
    META-INF/IBMFW2.SF
    META-INF/IBMFW2.DSA
    META-INF/
    default_local.policy
    INFO 2007-12-15 05:21:28.125
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:21:28.125
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:21:28.156
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\local_policy.log.
    INFO 2007-12-15 05:21:28.156
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile local_policy.log.
    INFO 2007-12-15 05:21:28.312
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf C:/PROGRA1/SAPINS1/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck/local_policy.jar META-INF/MANIFEST.MF:
    extracted: META-INF/MANIFEST.MF
    INFO 2007-12-15 05:21:28.546
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 05:21:28 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 05:26:40.343
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:26:40.343
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jce_policy-1_5_0.log.
    INFO 2007-12-15 05:26:40.343
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile jce_policy-1_5_0.log.
    INFO 2007-12-15 05:26:41.953
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf D:\jce_policy-1_5_0.zip:
    jce/
    jce/COPYRIGHT.html
    jce/README.txt
    jce/US_export_policy.jar
    jce/local_policy.jar
    INFO 2007-12-15 05:26:41.953
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jcePolicyCheck\local_policy.jar.
    INFO 2007-12-15 05:26:41.968
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jcePolicyCheck\META-INF\MANIFEST.MF.
    INFO 2007-12-15 05:26:41.968
    Removing directory C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck/META-INF.
    INFO 2007-12-15 05:26:41.968
    Removing directory C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:26:41.968
    Creating directory C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jcePolicyCheck.
    INFO 2007-12-15 05:26:41.984
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:26:41.984
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:26:42.0
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jce_policy-1_5_0.log.
    INFO 2007-12-15 05:26:42.15
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile jce_policy-1_5_0.log.
    INFO 2007-12-15 05:26:42.171
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf D:\jce_policy-1_5_0.zip jce/local_policy.jar:
    extracted: jce/local_policy.jar
    INFO 2007-12-15 05:26:42.187
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:26:42.187
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:26:42.203
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\local_policy.log.
    INFO 2007-12-15 05:26:42.203
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile local_policy.log.
    INFO 2007-12-15 05:26:42.359
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf C:/PROGRA1/SAPINS1/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck/jce/local_policy.jar:
    META-INF/MANIFEST.MF
    META-INF/JCE_RSA.SF
    META-INF/JCE_RSA.RSA
    META-INF/
    default_local.policy
    INFO 2007-12-15 05:26:42.359
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:26:42.359
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:26:42.390
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\local_policy.log.
    INFO 2007-12-15 05:26:42.390
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile local_policy.log.
    INFO 2007-12-15 05:26:42.562
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf C:/PROGRA1/SAPINS1/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck/jce/local_policy.jar META-INF/MANIFEST.MF:
    extracted: META-INF/MANIFEST.MF
    INFO 2007-12-15 05:26:42.796
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 05:26:42 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 05:26:43.93
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 05:26:42 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 05:28:26.93
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:28:26.109
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jce.log.
    INFO 2007-12-15 05:28:26.109
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile jce.log.
    INFO 2007-12-15 05:28:29.156
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf C:\j2sdk1.4.2_12\jre\lib\jce.jar:
    META-INF/MANIFEST.MF
    META-INF/JCE_RSA.SF
    META-INF/JCE_RSA.RSA
    META-INF/
    javax/
    javax/crypto/
    javax/crypto/interfaces/
    javax/crypto/interfaces/DHKey.class
    javax/crypto/interfaces/DHPublicKey.class
    javax/crypto/interfaces/DHPrivateKey.class
    javax/crypto/interfaces/PBEKey.class
    javax/crypto/SecretKey.class
    javax/crypto/spec/
    javax/crypto/spec/RC2ParameterSpec.class
    javax/crypto/spec/RC5ParameterSpec.class
    javax/crypto/spec/PBEParameterSpec.class
    javax/crypto/spec/IvParameterSpec.class
    javax/crypto/spec/DESKeySpec.class
    javax/crypto/spec/DESedeKeySpec.class
    javax/crypto/spec/DHGenParameterSpec.class
    javax/crypto/spec/DHParameterSpec.class
    javax/crypto/spec/DHPrivateKeySpec.class
    javax/crypto/spec/DHPublicKeySpec.class
    javax/crypto/spec/PBEKeySpec.class
    javax/crypto/spec/SecretKeySpec.class
    javax/crypto/Cipher.class
    javax/crypto/CipherSpi.class
    javax/crypto/SunJCE_b.class
    javax/crypto/SunJCE_c.class
    javax/crypto/SunJCE_d.class
    javax/crypto/SunJCE_e.class
    javax/crypto/SunJCE_f.class
    javax/crypto/SunJCE_g.class
    javax/crypto/SunJCE_h.class
    javax/crypto/SunJCE_i.class
    javax/crypto/SunJCE_j.class
    javax/crypto/SunJCE_k.class
    javax/crypto/SunJCE_l.class
    javax/crypto/SunJCE_m.class
    javax/crypto/SunJCE_n.class
    javax/crypto/ExemptionMechanism.class
    javax/crypto/SunJCE_o.class
    javax/crypto/SunJCE_p.class
    javax/crypto/CipherInputStream.class
    javax/crypto/CipherOutputStream.class
    javax/crypto/KeyAgreement.class
    javax/crypto/KeyAgreementSpi.class
    javax/crypto/KeyGenerator.class
    javax/crypto/KeyGeneratorSpi.class
    javax/crypto/Mac.class
    javax/crypto/MacSpi.class
    javax/crypto/ShortBufferException.class
    javax/crypto/SecretKeyFactory.class
    javax/crypto/SecretKeyFactorySpi.class
    javax/crypto/NullCipherSpi.class
    javax/crypto/EncryptedPrivateKeyInfo.class
    javax/crypto/ExemptionMechanismSpi.class
    javax/crypto/ExemptionMechanismException.class
    javax/crypto/SealedObject.class
    javax/crypto/SunJCE_q.class
    javax/crypto/NullCipher.class
    javax/crypto/BadPaddingException.class
    javax/crypto/IllegalBlockSizeException.class
    javax/crypto/NoSuchPaddingException.class
    javax/crypto/SunJCE_r.class
    javax/crypto/SunJCE_s.class
    javax/crypto/SunJCE_t.class
    javax/crypto/SunJCE_u.class
    INFO 2007-12-15 05:36:57.406
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:36:57.421
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jce.log.
    INFO 2007-12-15 05:36:57.437
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile jce.log.
    INFO 2007-12-15 05:37:00.234
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf C:\j2sdk1.4.2_12\jre\lib\jce.jar:
    META-INF/MANIFEST.MF
    META-INF/JCE_RSA.SF
    META-INF/JCE_RSA.RSA
    META-INF/
    javax/
    javax/crypto/
    javax/crypto/interfaces/
    javax/crypto/interfaces/DHKey.class
    javax/crypto/interfaces/DHPublicKey.class
    javax/crypto/interfaces/DHPrivateKey.class
    javax/crypto/interfaces/PBEKey.class
    javax/crypto/SecretKey.class
    javax/crypto/spec/
    javax/crypto/spec/RC2ParameterSpec.class
    javax/crypto/spec/RC5ParameterSpec.class
    javax/crypto/spec/PBEParameterSpec.class
    javax/crypto/spec/IvParameterSpec.class
    javax/crypto/spec/DESKeySpec.class
    javax/crypto/spec/DESedeKeySpec.class
    javax/crypto/spec/DHGenParameterSpec.class
    javax/crypto/spec/DHParameterSpec.class
    javax/crypto/spec/DHPrivateKeySpec.class
    javax/crypto/spec/DHPublicKeySpec.class
    javax/crypto/spec/PBEKeySpec.class
    javax/crypto/spec/SecretKeySpec.class
    javax/crypto/Cipher.class
    javax/crypto/CipherSpi.class
    javax/crypto/SunJCE_b.class
    javax/crypto/SunJCE_c.class
    javax/crypto/SunJCE_d.class
    javax/crypto/SunJCE_e.class
    javax/crypto/SunJCE_f.class
    javax/crypto/SunJCE_g.class
    javax/crypto/SunJCE_h.class
    javax/crypto/SunJCE_i.class
    javax/crypto/SunJCE_j.class
    javax/crypto/SunJCE_k.class
    javax/crypto/SunJCE_l.class
    javax/crypto/SunJCE_m.class
    javax/crypto/SunJCE_n.class
    javax/crypto/ExemptionMechanism.class
    javax/crypto/SunJCE_o.class
    javax/crypto/SunJCE_p.class
    javax/crypto/CipherInputStream.class
    javax/crypto/CipherOutputStream.class
    javax/crypto/KeyAgreement.class
    javax/crypto/KeyAgreementSpi.class
    javax/crypto/KeyGenerator.class
    javax/crypto/KeyGeneratorSpi.class
    javax/crypto/Mac.class
    javax/crypto/MacSpi.class
    javax/crypto/ShortBufferException.class
    javax/crypto/SecretKeyFactory.class
    javax/crypto/SecretKeyFactorySpi.class
    javax/crypto/NullCipherSpi.class
    javax/crypto/EncryptedPrivateKeyInfo.class
    javax/crypto/ExemptionMechanismSpi.class
    javax/crypto/ExemptionMechanismException.class
    javax/crypto/SealedObject.class
    javax/crypto/SunJCE_q.class
    javax/crypto/NullCipher.class
    javax/crypto/BadPaddingException.class
    javax/crypto/IllegalBlockSizeException.class
    javax/crypto/NoSuchPaddingException.class
    javax/crypto/SunJCE_r.class
    javax/crypto/SunJCE_s.class
    javax/crypto/SunJCE_t.class
    javax/crypto/SunJCE_u.class
    INFO 2007-12-15 06:43:51.609
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 06:43:51.609
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jce_policy-1_4_2.log.
    INFO 2007-12-15 06:43:51.625
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile jce_policy-1_4_2.log.
    INFO 2007-12-15 06:43:52.984
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf D:\jce_policy-1_4_2.zip:
    jce/
    jce/local_policy.jar
    jce/US_export_policy.jar
    jce/README.txt
    jce/COPYRIGHT.html
    INFO 2007-12-15 06:43:52.984
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jcePolicyCheck\jce\local_policy.jar.

    Moving this thread to "basis" forum (sorry, I cannot move to SolMan forum).

  • Abap code.........Plz help me

    Hi all,
    My requirement is
    1. Users will be using the file upload Tcode in BW ( This TCode access will be authorized to specifi users)
    2. ABAP Program need to place the file in the specified folder. Use the Z_FLATFILE_UPLOAD as a start. Copy to New program and work witht he New program
    3. The ABAP program should be able to sent Trigger event after placingt he file to start the Process Chain, in which The flat file should be able to load to the ODS.
    4. On Successful completion of the Process chain, the specific user group should be able to recive the email Message that the uploaded file has been loaded and avaible for reporting.
    The ABAP program should be able to handle the follwing:
    1. If the File Format is not correct the user should get an error message that the file is not in the expected format.
    2. Once the File upload complete, user should see the message that the file uploaded correctly.
    3. on Successful completion of the FileUpload, The program should trigger event.
    and the program Z_FLATFILE_UPLOAD is given below
    REPORT Z_FLATFILE_UPLOAD message-id zx .
    PARAMETERS: FILE_NM LIKE RLGRAP-FILENAME obligatory.
    PARAMETERS: P2 LIKE RLGRAP-FILENAME
    DEFAULT '/Userdata/IFIN/0557'.
    DATA: INRECORD_COUNT TYPE i,
    OUTRECORD_COUNT TYPE i.
    DATA : MASK(20) TYPE C VALUE ',. ,..'.
    DATA: BEGIN OF ITAB OCCURS 0,
    RECORD(3000),
    END OF ITAB.
    AT selection screen help and F4 statements
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR FILE_NM.
    CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
    DEF_FILENAME = ' '
    DEF_PATH = FILE_NM
    MASK = MASK
    MODE = 'O'
    TITLE = 'File Select'
    IMPORTING
    FILENAME = FILE_NM
    EXCEPTIONS
    INV_WINSYS = 04
    NO_BATCH = 08
    SELECTION_CANCEL = 12
    SELECTION_ERROR = 16.
    IF FILE_NM = ' ' AND SY-SUBRC = 12.
    SET CURSOR FIELD 'FILE_NM'.
    MESSAGE I000(ZX) with 'File Selection cancelled.'
    'Please select a valid file to proceed'.
    ELSEIF SY-SUBRC NE 0.
    MESSAGE E000(ZX) WITH FILE_NM.
    EXIT.
    ENDIF.
    START-OF-SELECTION.
    CALL FUNCTION 'UPLOAD'
    EXPORTING
    FILENAME = FILE_NM
    TABLES
    DATA_TAB = ITAB.
    if sy-subrc <> 0.
    message i000(ZX) with 'Upload Failed'.
    LEAVE LIST-PROCESSING.
    endif.
    *editor-call for input_rec.
    OPEN DATASET P2 FOR output IN text mode encoding default.
    IF SY-SUBRC <> 0.
    message i000(ZX) with 'COULD NOT OPEN THE FILE'.
    LEAVE LIST-PROCESSING.
    ENDIF.
    INRECORD_COUNT = 0.
    OUTRECORD_COUNT = 0.
    LOOP AT ITAB. .
    INRECORD_COUNT = INRECORD_COUNT + 1.
    TRANSFER ITAB-RECORD TO P2.
    OUTRECORD_COUNT = OUTRECORD_COUNT + 1.
    ENDLOOP. "itab
    END-OF-SELECTION.
    CLOSE DATASET P2.
    IF SY-SUBRC <> 0.
    message e000(ZX) with 'COULD NOT OPEN THE FILE'.
    ENDIF.
    WRITE: / '# of records read ', INRECORD_COUNT,
    / '# of records transfered', OUTRECORD_COUNT.
    WRITE:/ 'upload filename', FILE_NM.
    WRITE:/ ' aix filename', P2.
    after this code i need to trigger my event can any onle tell me the steps after this program and the code also please
    thanks in advance
    Sri
    points will be assigned

    Hey,
    This forum is used to get some ideas/tips when you stcuk at some point during the development. This is not a place to send your work & expecting somebody to do it for you.
    see similar funny thread
    plz help me

Maybe you are looking for

  • Blank screen after memory ram changed SL510

    Hi,  I had  1GB & 2GB rams working fine in the SL510,  windows 7 Profession, 62-bit, 320 GB drive. SL510 62-bit can take up to 8GB ram. I replaced the 1GB  by Samsung with a Hynix 4GB.  At Crucial they give specs that are replacable for existing ram.

  • Error during GR for asset PO

    while doing GR for asset PO system is giving error message of "Acct123 for trans/ev  key ANL, is not a control account some one plz explain me the reason for this error and how to resolve.

  • HELP Macbook display just stopped!!

    Dear All, Last night while I was working on Macbook (black one), the screen just suddenly went black. I was listening to music at the time and the speakers went off just a split second before that. The power was still on, and battery fully charged, s

  • Questions about MacBook Pro battery

    Hi, the battery of my 13 inch MacBook pro shows "not charging, consider to replace the battery." My question is, is the battery replaceable? If does, how much will that be? Do I really need to replace it? Thank you. Sim

  • SQL Management Studio & Reporting Services Config. Manager Dissappeared !!

    I'll be quick here folks .. Two SQL Servers in a cluster .. I installed Reporting Services instance on one node .. didn't configure anything .. decided to remove this instance right away .. when removing the instance I chose "Select All" from the lis