JDBC with MSSQL 2005 -- problem connecting

Hi, I have setup JDBC and I am able to connect to a MySQL database just fine. But I can't connect to MSSQL SQLExpress 2005.
I got the sqljdbc.jar file placed it under the LiveCycle8\jboss\server\all\lib folder and setup the Datasource file as:
    MSSQLDS    jdbc:sqlserver://LIVECYCLE\SQLEXPRESS:1433;databaseName=MyDBName
com.microsoft.sqlserver.jdbc.SQLServerDriver
    username
    password
         MS SQLSERVER2005
Then I modified the login-config.xml and added the application-policy as:
               username
               password
               jboss.jca:service=LocalTxCM,name=MSSQLDS
Then in LC connection, setup the string to java:/MSSQLDS
When running the test query b I get NO Response At All.  And I mean, even if I intentionally change the datasource file to hold incorrect information, I'll get no response. However, I can connect to MySQL without any problems.
b Any ideas?
Thanks for any help!

JavaImran wrote:
RoyGrini wrote :
Looks like login problems. Username/password or windows authentication logon problem.        * I didnt give any UN and Pwd for my database.........And the
at com.microsoft.sqlserver.jdbc.SQLServerConnection.loginWithoutFailover(Unknown Source)gives you a 'connection refused'
Try with providing a SQL username/password. Maybe that will work
- Roy

Similar Messages

  • Problem with MSSQL 2005 maintenence plan

    Hi,
    I am facing a problem with MSSQL 2005 maintenance plan. I created a plan which takes full backup of all the db’s and in the same plan I added a clean up task which is suppose to clean all the files older that 1 day.
    To gain compression I converted this plan to lite speed. Now the problem is Backups are running fine but the clean task is not cleaning old files. The job runs fine without fail.
    Any body who has faced similar problem please let me know if have the solution ?
    Thanks in advance.
    Kishan

    Hi in this case  my date format used in backup file getutcdate() format but
    to delete files i am using this script
    Declare @sql varchar(250),@retention tinyint
    set @retention=0
    set @sql='Exec master.dbo.xp_cmdshell ''Del E:\SQL2005\Backup\*' + convert(varchar(15),getdate()-@retention,120) + '*.bak'''
    Exec (@sql)
    i also tried with getutcdate()
    but it gives the following error.
    Could Not Find \\E:\SQL2005\Backup\*2008-04-03*.bak
    why i donot understand.
    can any one give heads up.

  • Create Master Repository With MSSQL 2005

    Hi,
    I try to create a new Master repository with MSSQL 2005 but the connection to the database doesn't work.
    I create a database named db_snpm for the master database and a database named db_snpw for the work db as oracledi_setup.pdf said.
    I create a user/password snpm/password for db_snpm and snpw/password for db_snpw.
    There are db_owner.
    My driver connection : com.microsoft.sqlserver.jdbc.SQLServerDriver
    My Url : jdbc:sqlserver://localhost:1433;selectMethod=cursor;databaseName=db_snpm;integratedSecurity=false
    User : snpm
    Password : password
    When I try the connection, I've got the following error "com.sunopsis.sql.c: com/microsoft/sqlserver/jdbc/SQLServerDriver "
    I had created a SQL SERVER DataServer in the topology Manager with the same driver and url and the connection work fine. I used it in some interface.
    Any help would be great.
    Thanks
    Jerome
    Edited by: user12010673 on 14 oct. 2009 02:00

    Creation of ODI master repository is limited to few relational databases only. Check certification matrix for ODI 11g
    Oracle 10.2.0.4+
    Oracle 11.1.0.7+
    Oracle 11.2.0.1+
    Microsoft SQL Server 2005
    Microsoft SQL Server 2008
    IBM DB2/UDB 9.7 and later FixPaks
    IBM DB2/400 (V5R4+)
    Hypersonic SQL 1.7.3+
    Sybase AS Enterprise 15.0.x
    thanks

  • Problem connecting JDBC with SQLServer 2005

    * While executing the following JDBC code with SQLServer 2005, it throws Exception
    * I dont wts wrong in my code, (Note: I have included the sqljdbc.jar in my path)
    * Pls let me know the problems in my code
    * Thanks, Following is my code and error
    CODE:
    import java.sql.*;
    public class JDBCwithJava {
         public void work() {
               // Create a variable for the connection string.
               String connectionUrl = "jdbc:sqlserver://localhost:1433;" +"databaseName=empdb";
               // Declare the JDBC objects.
               Connection con = null;
               Statement stmt = null;
               ResultSet rs = null;
               try {
                    //Load the driver
                  Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
                  // Establish the connection.
                  con = DriverManager.getConnection(connectionUrl);
                  System.out.println("Database Successfully Connected...!");
                  //Connection Info
                  DatabaseMetaData dm = con.getMetaData();
                 System.out.println("Driver Information");
                 System.out.println("\t Driver Name: "+ dm.getDriverName());
                 System.out.println("\t Driver Version: "+ dm.getDriverVersion ());
                 System.out.println("\n Database Information ");
                 System.out.println("\t Database Name: "+ dm.getDatabaseProductName());
                 System.out.println("\t Database Version: "+ dm.getDatabaseProductVersion());
                  // Create and execute an SQL statement that returns some data.
                  String SQL = "select  * from emptable";
                  stmt = con.createStatement();
                  rs = stmt.executeQuery(SQL);
                  // Iterate through the data in the result set and display it.
                  while (rs.next()) {
                     System.out.println(rs.getInt(1) + " " + rs.getString(2));
               // Handle any errors that may have occurred.
               catch (Exception e) {
                  e.printStackTrace();
               finally {
                  if (rs != null)
                       try {
                            rs.close();
                      catch(Exception e) {
                  if (stmt != null) try { stmt.close(); } catch(Exception e) {}
                  if (con != null) try { con.close(); } catch(Exception e) {}
         public static void main(String ar[]){
              JDBCwithJava call = new JDBCwithJava();
              call.work();
    OUTPUT with ERROR:
    com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host  has failed. java.net.ConnectException: Connection refused: connect
         at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerConnection.connectHelper(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerConnection.loginWithoutFailover(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerConnection.connect(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerDriver.connect(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at JDBCwithJava.work(JDBCwithJava.java:17)
         at JDBCwithJava.main(JDBCwithJava.java:58)* Please give me your suggestion about the above program.........

    JavaImran wrote:
    RoyGrini wrote :
    Looks like login problems. Username/password or windows authentication logon problem.        * I didnt give any UN and Pwd for my database.........And the
    at com.microsoft.sqlserver.jdbc.SQLServerConnection.loginWithoutFailover(Unknown Source)gives you a 'connection refused'
    Try with providing a SQL username/password. Maybe that will work
    - Roy

  • Problrm to connect 2005 B - with MSSQL 2005

    Can any one help me to solve the below problem
    I have installed 2005 B and MSSQL 2005 in server. When i try to login the application either from server / client i am getting the following error
    "Cluster mismatch -131-163"
    Pls help me on this

    Suresh,
    Are you using MS Clustering with MS SQL Server 2005 as that is not supported.
    Eddy

  • NetWeaver with MSSQL 2005 SE & EE

    Dear expert,
    We plan to use SAP XI 3.0 with MSSQL Server 2005, but still confuse with the edition of MSSQL between Standard edition and Enterprise edition. 
    Who can differential between these 2 editions.
    e.g. SAP restriction, features etc.
    Best regards,

    I suggest to ask this question in the forum where the experts sit and this is
    Process Integration (PI) & SOA Middleware

  • Accessing MS Sql Server with Java classes - problem connecting to socket

    I found an example at this location which uses java classes to connected to MS Sql Server.
    http://search400.techtarget.com/tip/1,289483,sid3_gci1065992,00.html
    --bummer - it is a login location - so I will include the article
    Anyway, the example is using Websphere, but I am still on Jbuilder (will get wsad soon). So I planted the classes from the example in
    C:\Borland\JBuilder\jkd1.4\jre\lib\ext\...the classes
    Then I copied the code from the example to my jpx project and got an error that it could not connect to the socket. The only thing I changed in the code was the connection string:
    --original string from example:
    Connection connection = DriverManager.getConnection("jdbc:microsoft:sqlserver://1433", "");
    I was getting an error with the 2 argument version of DriverManager - and the second argument here was empty (properties argument). Here was my connection string:
    Connection connection = DriverManager.getConnection("jdbc:microsoft:sqlserver://Myserver:1433;User=sa;Password=");
    I am only using the 1 argument version of DriverManager. Note that the password=" is blank because my RnD workstation is standalone - no one accesses the sql server except me - so no password. I also left out the last semicolon I noticed. Any suggestions appreciated how I could fix this.
    Thanks
    source of article:
    http://search400.techtarget.com/tip/1,289483,sid3_gci1065992,00.html
    iSeries 400 Tips:
    TIPS & NEWSLETTERS TOPICS SUBMIT A TIP HALL OF FAME
    Search for: in All Tips All search400 Full TargetSearch with Google
    PROGRAMMER
    Sample code: Accessing MS SQL Server database from the iSeries
    Eitan Rosenberg
    09 Mar 2005
    Rating: --- (out of 5)
    Nowadays with the help of Java the iSeries can be integrated with other databases quite easy. This tip shows you how. The code included here uses the free Microsoft driver that can be downloaded from here. (SQL Server 2000 Driver for JDBC Service Pack 3)
    If your SQL server does not include the Northwind Sample Database you can find it here.
    http://www.microsoft.com/downloads/details.aspx?familyid=07287b11-0502-461a-b138-2aa54bfdc03a&displaylang=en
    The download contains the following files:
    msbase.jar
    mssqlserver.jar
    msutil.jar
    Those files needs to be copied to the iSeries directories (/home/r_eitan/ExternalJARs).
    Here's the directory structure (on the iSeries) for this sample:
    /home/r_eitan/ExternalJARs - Microsoft files (msbase.jar,mssqlserver.jar,msutil.jar)
    /home/r_eitan/JdbcTest02 - My code (Main.java,Main.class)
    The Java code
    import java.sql.*;
    import java.io.*;
    class Main {
    * Connect to Microsoft SQL server and download file northWind.products as tab
    * seperated file. (products.txt)
    public static void main(String args[]) {
    try {
    PrintStream outPut = new PrintStream(new BufferedOutputStream(new FileOutputStream("products.txt")));
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
    //Connection connection = DriverManager.getConnection("jdbc:microsoft:sqlserver://1433", "");
    Connection connection = DriverManager.getConnection("jdbc:microsoft:sqlserver://Myserver:1433;User=sa;Password=");
    System.out.println("Connection Done");
    connection.setCatalog("northWind");
    String sqlCmdString = "select * from products";
    Statement statement = connection.createStatement();
    ResultSet resultSet = statement.executeQuery(sqlCmdString);
    ResultSetMetaData resultSetMetaData = resultSet.getMetaData();
    int columnCount = resultSetMetaData.getColumnCount();
    // Iterate throught the rows in resultSet and
    // output the columns for each row.
    while (resultSet.next()) {
    for (int index = 1; index <=columnCount; ++index)
    String value;
    switch(resultSetMetaData.getColumnType(index))
    case 2 :
    case 3 :
    value = resultSet.getString(index);
    break;
    default :
    value = """ + resultSet.getString(index) + """;
    break;
    outPut.print(value + (index < columnCount ? "t" : ""));
    outPut.println();
    outPut.close();
    resultSet.close();
    connection.close();
    System.out.println("Done");
    catch (SQLException exception)
    exception.printStackTrace();
    catch (Exception exception)
    exception.printStackTrace();
    --------------------------------------------------------------------------------------------------

    My guess is that the server's host name isn't right. It necessarily (or even usually) the "windows name" of the computer. Try with the numeric IP address instead (type "ipconfig" to see it).
    First aid check list for "connection refused":
    - Check host name in connect string.
    - Check port number in connect string.
    - Try numeric IP address of server host in connect string, in case name server is hosed.
    - Are there any firewalls between client and server blocking the port.
    - Check that the db server is running.
    - Check that the db server is listening to the port. On the server, try: "telnet localhost the-port-number". Or "netstat -an", there should be a listening entry for the port.
    - Try "telnet serverhost the-port-number" from the client, to see if firewalls are blocking it.
    - If "telnet" fails: try it with the numeric ip address.
    - If "telnet" fails: does it fail immediately or after an obvious timeout? How long is the timeout?
    - Does the server respond to "ping serverhost" or "telnet serverhost" or "ssh serverhost"?

  • ADF and MSSQL 2005 problems - FOR UPDATE clause allowed only for DECLARE C

    Hi all.
    I have a legacy application which uses MS SQL server 2000 / 2005. I've started to build up a new version of this application using JDev + ADF stack.
    Everything went ok until I've tried to update some data in a Form. I'm getting this error:
    com.microsoft.sqlserver.jdbc.SQLServerException: Line 1: FOR UPDATE clause allowed only for DECLARE CURSOR
    Can someone figure out what's wrong?
    1) In a MSSQL server connection string, normally we define the 'SelectMethod' parameter to 'cursor', as follows: jdbc:sqlserver://$host$:$port$;databaseName=dbserver;SelectMethod=cursor
    Since I was not able to do this through my project's 'Application Resources > Connections' screen, I could not evaluate if this is the cause
    2) I'm trying to follow the steps of an Oracle tutorial (http://www.oracle.com/technology/obe/obe11jdev/ps1/ria_application/developriaapplication_long.htm#ad), of course using MS SQL server instead of Oracle, and using some master->detail tables like the example suggests (in the tutorial, I've reached the step 11, then tried to update a record, which causes the mentioned exception)
    Follows the stacktrace:
    <Utils><buildFacesMessage> ADF: Adding the following JSF error message: Line 1: FOR UPDATE clause allowed only for DECLARE CURSOR.
    com.microsoft.sqlserver.jdbc.SQLServerException: Line 1: FOR UPDATE clause allowed only for DECLARE CURSOR.
         at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(Unknown Source)
         at com.microsoft.sqlserver.jdbc.IOBuffer.processPackets(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerStatement.getMoreResults(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerStatement.seekToOutParams(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.getPrepStmtHandle(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.doPrepExec(Unknown Source)
         at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.executeQuery(Unknown Source)
         at oracle.jbo.server.BaseSQLBuilderImpl.doEntitySelectForAltKey(BaseSQLBuilderImpl.java:707)
         at oracle.jbo.server.BaseSQLBuilderImpl.doEntitySelect(BaseSQLBuilderImpl.java:546)
         at oracle.jbo.server.EntityImpl.doSelect(EntityImpl.java:7789)
    Regards,
    Luciano S. Lorencini, SCJP, SCWCD

    So, I`ve created a test project and use the MSSQL flavor to create my Business Components.
    After repeated all the steps, the error did not happen again.
    But some strange behavior happen: I change some data and click the "Submit" button. The changed data appears ok in screen, but the changes were not committed in database!
    Do I need to explicitly tell ADF to commit that changes somewhere?
    Greetings,
    Luciano S. Lorencini, SCJP, SCWCD

  • Netbeans JDBC to MSSQL 2000 Problem / No Time Out or Error

    Hello All,
    A Java/Netbeans Rookie question..(tried Google can't find answer)..
    Trying a New DB connection to MS SQL 2000 through Netbeans.
    Followed the instructions found
    HERE->http://www.netbeans.org/kb/50/using-netbeans/dbconn.html#73418
         Runtime
              -->Drivers
                   --->New connection
    I added the driver (mssqlserver.jar).
    Netbeans recognizes this.
    when I try to create a connection to a DB in SQL,
    I get an as expected "connecting to DB" message
    But, I never get a connection, nor do I get an Error, nor a time out.
    Tried intentionally a wrong user id/password to force an error, however do not get one.
    I assume the error is on the Netbeans side of house (since it's not throwing the login Error from MS SQL).
    My MSSQL server group is set up as
    Einstein\SQLGUY
         DB>Northwind
    The Netbeans DB Url I'm using is
    jdbc:sqlserver://Einstein\SQLGUY:1433;databaseName=Northwinds;
    I can Query Northwinds in SQL, so all looks o.k. In SQL.
    Thanks for the help.
    �Rookie�

    P.S.
    I do have
    msbase.jar
    msutil.jar
    mssqlserver.jar
    In my CLASSPATH
    thx.
    eom

  • Java Add on error with MSSQL 2005

    Hi
    when i try to insatll Java add on its giving me error message "database DEV has wrong compatability level"
    where our abap stack is working fine after applied SP13 level.
    please advice
    SAPinst is getting started.
    Please be patient ...
    guiengine: login in process.
    INFO       2006-08-19 15:25:16 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & q0w9e9r8t7.1.xml, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO       2006-08-19 15:25:16 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & q0w9e9r8t7.1.xml, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO       2006-08-19 15:25:16 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\q0w9e9r8t7.1.xml.
    INFO       2006-08-19 15:25:17 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/keydb.1.xml, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/keydb.xml to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/keydb.1.xml.
    INFO       2006-08-19 15:25:17 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/keydb.1.xml, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/keydb.xml to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/keydb.1.xml.
    INFO       2006-08-19 15:25:17 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\keydb.1.xml.
    INFO       2006-08-19 15:25:17 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\change.log.
    INFO       2006-08-19 15:25:18
               CJSlibModule::writeInfo_impl()
    Output of change 'user' '/install' is written to the logfile change.log.
    WARNING    2006-08-19 15:25:18
               CJSlibModule::writeWarning_impl()
    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       2006-08-19 15:25:18 [ianxbusprv.cpp:337]
               CIaNtUserPrivileges::add_impl(., HSTDEV\Administrator, SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege)
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'HSTDEV\Administrator' on host '.'.
    INFO       2006-08-19 15:25:19 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\summary.html.
    PHASE      2006-08-19 15:25:19 [iaxxcwalker.cpp:416]
               CDomWalker::printPhaseInfo()
    Prepare the installation program.
    INFO       2006-08-19 15:25:24 [iaxxcwalker.cpp:59]
               CDomWalker::walk()
    Installation start: Saturday, 19 August 2006, 15:25:15; installation directory: D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST; product to be installed: SAP NetWeaver '04 Support Release 1> Java Add-In for ABAP> MS SQL Server> Java System Finalization
    INFO       2006-08-19 15:25:25
               CJSlibModule::writeInfo_impl()
    Looking for SAP system instances installed on this host...
    INFO       2006-08-19 15:25:26
               CJSlibModule::writeInfo_impl()
    Found these instances:
    sid: DEV, number: 00, name: DVEBMGS00, host: hstdev
    INFO       2006-08-19 15:26:00
               CJSlibModule::writeInfo_impl()
    DNS is configured correctly.
    INFO       2006-08-19 15:26:05 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & ., ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/new_51030724/DVD_NW_04_SR1_SAP_Web_AS_JAVA/J2EE_OSINDEP/JDKVersion.xml to: ..
    INFO       2006-08-19 15:26:05 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & ., ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/new_51030724/DVD_NW_04_SR1_SAP_Web_AS_JAVA/J2EE_OSINDEP/JDKVersion.xml to: ..
    INFO       2006-08-19 15:26:05 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\JDKVersion.xml.
    INFO       2006-08-19 15:26:06
               CJSlibModule::writeInfo_impl()
    Execution of the command "D:\j2sdk1.4.2_12/bin/java.exe '-version'" finished with return code 0. Output:
    java version "1.4.2_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_12-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_12-b03, mixed mode)
    INFO       2006-08-19 15:26:06
               CJSlibModule::writeInfo_impl()
    Execution of the command "D:\j2sdk1.4.2_12/bin/java.exe '-classpath' 'D:/DOCUME1/ADMINI1/LOCALS1/Temp/sapinst_exe.3588.1156026277/JAR/ins-j2ee.jar;D:/DOCUME1/ADMINI1/LOCALS1/Temp/sapinst_exe.3588.1156026277/JAR/sapxmltoolkit.jar' 'com.sap.ins.j2ee.TestClassLoader'" finished with return code 0. Output:
    CORRECT
    INFO       2006-08-19 15:26:06
               CJSlibModule::writeInfo_impl()
    Found a valid JAVA_HOME directory D:\j2sdk1.4.2_12 with JDK version 1.4.2_12.
    INFO       2006-08-19 15:26:06
               CJSlibModule::writeInfo_impl()
    Execution of the command "D:\j2sdk1.4.2_12/bin/java.exe '-version'" finished with return code 0. Output:
    java version "1.4.2_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_12-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_12-b03, mixed mode)
    INFO       2006-08-19 15:26:08
               CJSlibModule::writeInfo_impl()
    Execution of the command "D:\j2sdk1.4.2_12/bin/java.exe '-version'" finished with return code 0. Output:
    java version "1.4.2_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_12-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_12-b03, mixed mode)
    INFO       2006-08-19 15:26:08
               CJSlibModule::writeInfo_impl()
    Execution of the command "D:\j2sdk1.4.2_12/bin/java.exe '-classpath' 'D:/DOCUME1/ADMINI1/LOCALS1/Temp/sapinst_exe.3588.1156026277/JAR/ins-j2ee.jar;D:/DOCUME1/ADMINI1/LOCALS1/Temp/sapinst_exe.3588.1156026277/JAR/sapxmltoolkit.jar' 'com.sap.ins.j2ee.TestClassLoader'" finished with return code 0. Output:
    CORRECT
    INFO       2006-08-19 15:26:09 [synxcpath.cpp:865]
               CSyPath::createDirectory()
    Creating directory D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\jdkPolicyCheck.
    INFO       2006-08-19 15:26:09 [syxxccuren.hpp:347]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/jdkPolicyCheck.
    INFO       2006-08-19 15:26:09 [syxxccuren.hpp:347]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST.
    INFO       2006-08-19 15:26:09 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\local_policy.log.
    INFO       2006-08-19 15:26:09
               CJSlibModule::writeInfo_impl()
    Output of D:\j2sdk1.4.2_12/bin/jar.exe is written to the logfile local_policy.log.
    INFO       2006-08-19 15:26:09
               CJSlibModule::writeInfo_impl()
    Output of D:\j2sdk1.4.2_12/bin/jar.exe 'xvf' 'D:/j2sdk1.4.2_12/jre/lib/security/local_policy.jar':
    INFO       2006-08-19 15:26:09 [syxxccuren.hpp:347]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/jdkPolicyCheck.
    INFO       2006-08-19 15:26:09 [syxxccuren.hpp:347]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST.
    INFO       2006-08-19 15:26:09 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\US_export_policy.log.
    INFO       2006-08-19 15:26:09
               CJSlibModule::writeInfo_impl()
    Output of D:\j2sdk1.4.2_12/bin/jar.exe is written to the logfile US_export_policy.log.
    INFO       2006-08-19 15:26:09
               CJSlibModule::writeInfo_impl()
    Output of D:\j2sdk1.4.2_12/bin/jar.exe 'xvf' 'D:/j2sdk1.4.2_12/jre/lib/security/US_export_policy.jar':
    INFO       2006-08-19 15:26:09 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\jdkPolicyCheck\default_local.policy.
    INFO       2006-08-19 15:26:09 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\jdkPolicyCheck\default_US_export.policy.
    INFO       2006-08-19 15:26:09 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\jdkPolicyCheck\exempt_local.policy.
    INFO       2006-08-19 15:26:09 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\jdkPolicyCheck\META-INF\JCE_RSA.RSA.
    INFO       2006-08-19 15:26:09 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\jdkPolicyCheck\META-INF\JCE_RSA.SF.
    INFO       2006-08-19 15:26:09 [synxcfile.cpp:152]
               CSyFileImpl::remove()
    Removing file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\jdkPolicyCheck\META-INF\MANIFEST.MF.
    INFO       2006-08-19 15:26:09 [synxcdir.cpp:144]
               CSyDirectoryImpl::remove()
    Removing directory D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/jdkPolicyCheck/META-INF.
    INFO       2006-08-19 15:26:09 [synxcdir.cpp:144]
               CSyDirectoryImpl::remove()
    Removing directory D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST/jdkPolicyCheck.
    WARNING[E] 2006-08-19 15:26:52 [syxxcnamrs.cpp:337]
               PSyServicesEntry CSyIPNameResolverImpl::getServiceByPort(const unsigned int portNumber, const iastring& protocol) const
    Error converting from port number=3601/protocol=tcp to service names. SAPRETURN=12
    INFO       2006-08-19 15:26:54 [synxccuren.cpp:716]
               CSyCurrentProcessEnvironmentImpl::setUser()
    Switched to user: devadm.
    INFO       2006-08-19 15:26:54 [synxccuren.cpp:716]
               CSyCurrentProcessEnvironmentImpl::setUser()
    Switched to user: devadm.
    INFO       2006-08-19 15:26:54 [syxxccuren.hpp:347]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST.
    INFO       2006-08-19 15:26:59
               CJSlibModule::writeInfo_impl()
    Execution of the command "E:\usr\sap\DEV\SYS\exe\run/disp+work.exe '-v'" finished with return code 0. Output:
    Kernel release: 640, Kernel patch level: 129, Codepage: Unicode
    INFO       2006-08-19 15:27:11 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter CLIENT set to value 100.
    INFO       2006-08-19 15:27:11 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter USER set to value DDIC.
    INFO       2006-08-19 15:27:11 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter LCHECK set to value 1.
    INFO       2006-08-19 15:27:11 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter PCS set to value 1.
    INFO       2006-08-19 15:27:11 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter LANG set to value EN.
    INFO       2006-08-19 15:27:11 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter ASHOST set to value hstdev.
    INFO       2006-08-19 15:27:11 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter SYSNR set to value 00.
    INFO       2006-08-19 15:27:11 [iaxxrfcimp.cpp:543]
               CAbRfcImpl::checkConnectInfo
    RFC connection information checked successfully.
    INFO       2006-08-19 15:27:14 [iaxxrfcimp.cpp:457]
               CAbRfcImpl::openRfcConn
    RFC connection opened successfully.
    INFO       2006-08-19 15:27:14 [iaxxrfcimp.cpp:618]
               CAbRfcImpl::setFunction
    Setting new application function RFC_SYSTEM_INFO.
    INFO       2006-08-19 15:27:14 [iaxxrfcimp.cpp:1043]
               CAbRfcImpl::callLibraryFunction
    Generating interface for remote function.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:950]
               CAbRfcImpl::getRfcInterfaceSAP
    Function interface generated successfully.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:952]
               CAbRfcImpl::getRfcInterfaceSAP
    Technical properties of function set successfully.
    INFO       2006-08-19 15:27:16 [iaxxrfcfls.cpp:107]
               CRfcFuncRep::insFuncIf
    Information for application function RFC_SYSTEM_INFO copied to local Repository.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:646]
               CAbRfcImpl::setFunction
    Function module RFC_SYSTEM_INFO set successfully.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:1058]
               CAbRfcImpl::callFunction
    Executing function call RFC_SYSTEM_INFO.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:496]
               CAbRfcImpl::checkSysInfoSAP
    Version 640  of remote SAP System DEV accepted.
    INFO       2006-08-19 15:27:16 [iaxxbjsco.cpp:585]
               CIaJSCo::disconnect_impl(100:DDIC:EN:hstdev:00:::)
    RFC connection closed.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter CLIENT set to value 100.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter USER set to value DDIC.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter LCHECK set to value 1.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter PCS set to value 1.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter LANG set to value EN.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter ASHOST set to value hstdev.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:398]
               CAbRfcImpl::setRfcConnectParam
    RFC parameter SYSNR set to value 00.
    INFO       2006-08-19 15:27:16 [iaxxrfcimp.cpp:543]
               CAbRfcImpl::checkConnectInfo
    RFC connection information checked successfully.
    INFO       2006-08-19 15:27:17 [iaxxrfcimp.cpp:457]
               CAbRfcImpl::openRfcConn
    RFC connection opened successfully.
    INFO       2006-08-19 15:27:17 [iaxxrfcimp.cpp:618]
               CAbRfcImpl::setFunction
    Setting new application function RFC_SYSTEM_INFO.
    INFO       2006-08-19 15:27:17 [iaxxrfcimp.cpp:1043]
               CAbRfcImpl::callLibraryFunction
    Generating interface for remote function.
    INFO       2006-08-19 15:27:17 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:27:17 [iaxxrfcimp.cpp:950]
               CAbRfcImpl::getRfcInterfaceSAP
    Function interface generated successfully.
    INFO       2006-08-19 15:27:17 [iaxxrfcimp.cpp:952]
               CAbRfcImpl::getRfcInterfaceSAP
    Technical properties of function set successfully.
    INFO       2006-08-19 15:27:17 [iaxxrfcfls.cpp:107]
               CRfcFuncRep::insFuncIf
    Information for application function RFC_SYSTEM_INFO copied to local Repository.
    INFO       2006-08-19 15:27:17 [iaxxrfcimp.cpp:646]
               CAbRfcImpl::setFunction
    Function module RFC_SYSTEM_INFO set successfully.
    INFO       2006-08-19 15:27:17 [iaxxrfcimp.cpp:1058]
               CAbRfcImpl::callFunction
    Executing function call RFC_SYSTEM_INFO.
    INFO       2006-08-19 15:27:17 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:27:17 [iaxxrfcimp.cpp:496]
               CAbRfcImpl::checkSysInfoSAP
    Version 640  of remote SAP System DEV accepted.
    INFO       2006-08-19 15:27:18 [iaxxrfcimp.cpp:618]
               CAbRfcImpl::setFunction
    Setting new application function RFC_ABAP_INSTALL_AND_RUN.
    INFO       2006-08-19 15:27:18 [iaxxrfcimp.cpp:1043]
               CAbRfcImpl::callLibraryFunction
    Generating interface for remote function.
    INFO       2006-08-19 15:27:18 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:27:18 [iaxxrfcimp.cpp:950]
               CAbRfcImpl::getRfcInterfaceSAP
    Function interface generated successfully.
    INFO       2006-08-19 15:27:18 [iaxxrfcimp.cpp:952]
               CAbRfcImpl::getRfcInterfaceSAP
    Technical properties of function set successfully.
    INFO       2006-08-19 15:27:18 [iaxxrfcfls.cpp:107]
               CRfcFuncRep::insFuncIf
    Information for application function RFC_ABAP_INSTALL_AND_RUN copied to local Repository.
    INFO       2006-08-19 15:27:18 [iaxxrfcimp.cpp:646]
               CAbRfcImpl::setFunction
    Function module RFC_ABAP_INSTALL_AND_RUN set successfully.
    INFO       2006-08-19 15:27:18 [iaxxrfcimp.cpp:1058]
               CAbRfcImpl::callFunction
    Executing function call RFC_ABAP_INSTALL_AND_RUN.
    INFO       2006-08-19 15:27:25 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:27:26 [iaxxrfcimp.cpp:618]
               CAbRfcImpl::setFunction
    Setting new application function OCS_GET_INFO.
    INFO       2006-08-19 15:27:26 [iaxxrfcimp.cpp:1043]
               CAbRfcImpl::callLibraryFunction
    Generating interface for remote function.
    INFO       2006-08-19 15:27:26 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:27:26 [iaxxrfcimp.cpp:950]
               CAbRfcImpl::getRfcInterfaceSAP
    Function interface generated successfully.
    INFO       2006-08-19 15:27:26 [iaxxrfcimp.cpp:952]
               CAbRfcImpl::getRfcInterfaceSAP
    Technical properties of function set successfully.
    INFO       2006-08-19 15:27:26 [iaxxrfcfls.cpp:107]
               CRfcFuncRep::insFuncIf
    Information for application function OCS_GET_INFO copied to local Repository.
    INFO       2006-08-19 15:27:26 [iaxxrfcimp.cpp:646]
               CAbRfcImpl::setFunction
    Function module OCS_GET_INFO set successfully.
    INFO       2006-08-19 15:27:26 [iaxxrfcimp.cpp:1058]
               CAbRfcImpl::callFunction
    Executing function call OCS_GET_INFO.
    INFO       2006-08-19 15:27:27 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:27:27 [iaxxrfcimp.cpp:618]
               CAbRfcImpl::setFunction
    Setting new application function OCS_GET_STAT_INFO.
    INFO       2006-08-19 15:27:27 [iaxxrfcimp.cpp:1043]
               CAbRfcImpl::callLibraryFunction
    Generating interface for remote function.
    INFO       2006-08-19 15:27:27 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:27:27 [iaxxrfcimp.cpp:950]
               CAbRfcImpl::getRfcInterfaceSAP
    Function interface generated successfully.
    INFO       2006-08-19 15:27:27 [iaxxrfcimp.cpp:952]
               CAbRfcImpl::getRfcInterfaceSAP
    Technical properties of function set successfully.
    INFO       2006-08-19 15:27:27 [iaxxrfcfls.cpp:107]
               CRfcFuncRep::insFuncIf
    Information for application function OCS_GET_STAT_INFO copied to local Repository.
    INFO       2006-08-19 15:27:27 [iaxxrfcimp.cpp:646]
               CAbRfcImpl::setFunction
    Function module OCS_GET_STAT_INFO set successfully.
    INFO       2006-08-19 15:27:27 [iaxxrfcimp.cpp:1058]
               CAbRfcImpl::callFunction
    Executing function call OCS_GET_STAT_INFO.
    INFO       2006-08-19 15:27:28 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:27:33 [iaxxrfcimp.cpp:618]
               CAbRfcImpl::setFunction
    Setting new application function BAPI_USER_EXISTENCE_CHECK.
    INFO       2006-08-19 15:27:33 [iaxxrfcimp.cpp:1043]
               CAbRfcImpl::callLibraryFunction
    Generating interface for remote function.
    INFO       2006-08-19 15:27:33 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:27:33 [iaxxrfcimp.cpp:950]
               CAbRfcImpl::getRfcInterfaceSAP
    Function interface generated successfully.
    INFO       2006-08-19 15:27:33 [iaxxrfcimp.cpp:952]
               CAbRfcImpl::getRfcInterfaceSAP
    Technical properties of function set successfully.
    INFO       2006-08-19 15:27:33 [iaxxrfcfls.cpp:107]
               CRfcFuncRep::insFuncIf
    Information for application function BAPI_USER_EXISTENCE_CHECK copied to local Repository.
    INFO       2006-08-19 15:27:33 [iaxxrfcimp.cpp:646]
               CAbRfcImpl::setFunction
    Function module BAPI_USER_EXISTENCE_CHECK set successfully.
    INFO       2006-08-19 15:27:33 [iaxxrfcimp.cpp:1058]
               CAbRfcImpl::callFunction
    Executing function call BAPI_USER_EXISTENCE_CHECK.
    INFO       2006-08-19 15:27:36 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:28:04 [iaxxrfcimp.cpp:646]
               CAbRfcImpl::setFunction
    Function module BAPI_USER_EXISTENCE_CHECK set successfully.
    INFO       2006-08-19 15:28:04 [iaxxrfcimp.cpp:1058]
               CAbRfcImpl::callFunction
    Executing function call BAPI_USER_EXISTENCE_CHECK.
    INFO       2006-08-19 15:28:04 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:28:04 [iaxxrfcimp.cpp:646]
               CAbRfcImpl::setFunction
    Function module BAPI_USER_EXISTENCE_CHECK set successfully.
    INFO       2006-08-19 15:28:04 [iaxxrfcimp.cpp:1058]
               CAbRfcImpl::callFunction
    Executing function call BAPI_USER_EXISTENCE_CHECK.
    INFO       2006-08-19 15:28:04 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:28:04 [iaxxrfcimp.cpp:646]
               CAbRfcImpl::setFunction
    Function module BAPI_USER_EXISTENCE_CHECK set successfully.
    INFO       2006-08-19 15:28:04 [iaxxrfcimp.cpp:1058]
               CAbRfcImpl::callFunction
    Executing function call BAPI_USER_EXISTENCE_CHECK.
    INFO       2006-08-19 15:28:04 [iaxxrfcimp.cpp:1094]
               CAbRfcImpl::performFunctionCall
    Function call was successful.
    INFO       2006-08-19 15:28:21
               CJSlibModule::writeInfo_impl()
    Execution of the command "D:\j2sdk1.4.2_12/bin/java.exe '-version'" finished with return code 0. Output:
    java version "1.4.2_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_12-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_12-b03, mixed mode)
    INFO       2006-08-19 15:28:21
               CJSlibModule::writeInfo_impl()
    Execution of the command "D:\j2sdk1.4.2_12/bin/java.exe '-classpath' 'D:/DOCUME1/ADMINI1/LOCALS1/Temp/sapinst_exe.3588.1156026277/JAR/ins-j2ee.jar;D:/DOCUME1/ADMINI1/LOCALS1/Temp/sapinst_exe.3588.1156026277/JAR/sapxmltoolkit.jar' 'com.sap.ins.j2ee.TestClassLoader'" finished with return code 0. Output:
    CORRECT
    INFO       2006-08-19 15:28:27
               CJSlibModule::writeInfo_impl()
    Looking for SAP system instances installed on this host...
    INFO       2006-08-19 15:28:28
               CJSlibModule::writeInfo_impl()
    Found these instances:
    sid: DEV, number: 00, name: DVEBMGS00, host: hstdev
    INFO       2006-08-19 15:28:30 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & ., ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/new_51030724/DVD_NW_04_SR1_SAP_Web_AS_JAVA/J2EE_OSINDEP/KernelVersions.xml to: ..
    INFO       2006-08-19 15:28:30 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & ., ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/new_51030724/DVD_NW_04_SR1_SAP_Web_AS_JAVA/J2EE_OSINDEP/KernelVersions.xml to: ..
    INFO       2006-08-19 15:28:30 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\KernelVersions.xml.
    INFO       2006-08-19 15:28:30 [synxccuren.cpp:716]
               CSyCurrentProcessEnvironmentImpl::setUser()
    Switched to user: devadm.
    INFO       2006-08-19 15:28:30 [synxccuren.cpp:716]
               CSyCurrentProcessEnvironmentImpl::setUser()
    Switched to user: devadm.
    INFO       2006-08-19 15:28:30 [syxxccuren.hpp:347]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST.
    INFO       2006-08-19 15:28:33
               CJSlibModule::writeInfo_impl()
    Execution of the command "E:\usr\sap\DEV\SYS\exe\run/disp+work.exe '-v'" finished with return code 0. Output:
    Kernel release: 640, Kernel patch level: 129, Codepage: Unicode
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/mssversions.xml to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/mssversions.xml to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\mssversions.xml.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/db_all.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/db_all.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\db_all.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/db_di_clust.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/db_di_clust.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\db_di_clust.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/db_std_checks.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/db_std_checks.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\db_std_checks.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_get_defpath.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_get_defpath.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\mss_get_defpath.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_get_r3db_config.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_get_r3db_config.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\mss_get_r3db_config.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_init_jc.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_init_jc.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\mss_init_jc.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_gconf.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_gconf.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\mss_r3db_gconf.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_lconf.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_lconf.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\mss_r3db_lconf.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_r3srv_conf.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_r3srv_conf.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\mss_r3srv_conf.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_schema_cnv.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_schema_cnv.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\mss_schema_cnv.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_sps_droptmp.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_sps_droptmp.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\mss_sps_droptmp.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\mss_users_sid_drop.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop_objs.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop_objs.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\mss_users_sid_drop_objs.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/srvchk.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/srvchk.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\srvchk.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/usrabap.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:446]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/usrabap.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.
    INFO       2006-08-19 15:28:57 [synxcpath.cpp:834]
               CSyPath::createFile()
    Creating file D:\Program Files\sapinst_instdir\NW04SR1\WEBAS_JAVA_MSS\ONE_HOST\usrabap.sql.
    INFO       2006-08-19 15:28:57 [syxxcfile.cpp:325]
               CSyFileImpl::copy(const CSyPath & D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST, ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file E:/SAP_Dumps/51031148_Master/DVD_NW_04_SR1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/MSS/SQL/usrstd.sql to: D:/Program Files/sapinst_instdir/NW04SR1/WEBAS_JAVA_MSS/ONE_HOST.

    Hello. Note 1126481 - SAP installation terminates in step createJSF
    Hmmm. but it on UNIX platform...as i can see you have Windows....
    Try to check JAVA_HOME and PATH are set correctly ?
    Regards.

  • Run SqlCeEngine.Upgrade on SDF-File (created with MSSQL 2005) after upgrading to MSSQL 2008

    Im trying to programmatically convert a SDF-File from 3.0 to
    3.5.
    Code looks like this:
    Dim engine As New SqlCeEngine(strMyValidConnectionString)
    engine.Upgrade()
    And the error message I am getting looks like this:
    The file that is being referenced is not a valid SQL Server 2005 Compact Edition (version 3.1) or SQL Server 2005 Mobile Edition (version 3.0) database file to perform upgrade
    I am using VS2005, my Windows Form Application is being compiled to a
    WM 6.5 device.
    The System.Data.SqlServerCe.dll is version 3.5.1.0 (according to VS2005) and is being taken from
    C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Devices\.
    What am I missing here?
    \I'm also not sure which CAB-files are needed on my pocket pc (Honeywell Dolphin 9700)
    In the wce500 are several folder for the SQL Compact 3.5 Core/etc., seperated by processor type (I have a Marvel XScale PXA270 built in my pocket pc)...

    Hello,
    Sorry for delay.
    Please make user that the database file is not with 2.0 version. The SQL Compact 3.5 Upgrade API can only upgrade 3.0/3.1 version database files.
    You can refer to the code in following blog about upgrade SQL CE Database from 3.1 to 3.5
    http://blogs.msdn.com/b/jimmytr/archive/2010/04/26/upgrade-sql-ce-database-from-3-1-to-3-5.aspx
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • Designer 6i with Warehouse Builder problem connecting

    Anyone, i'm using designer 6i and WB 2.0.4,
    when i try to use a designer application as a data source for WB i can't see any application in the 'New Module Wizard: Connection Information' window. When i created and tested the DBlink i got a test ok message. By the way I used the repository owner username just like the manual describes. Is there a version compatibility problem? Any advise would be appreciated!

    I found my mistake. The tablespace was too small :-(
    It had only 20MB instead of 200MB that I wanted to give it. Somehow strange. After I increased the tablespace to 200MB I got the following message in the repository assistant.
    INS0005: Tablespace TS_OWB_REPO hat nicht genügend freien Speicherplatz zum Installieren der owb_repository_owner??-Objekte. Es stehen 0 Byte freier Speicherplatz zur Verfügung. Es sind 262144 Byte erforderlich. Erhöhen Sie die Größe des Tablespace, oder wählen Sie einen anderen Tablespace aus.
    even if the tablespace was totally empty. After I set the tablespace to "autoextend on" the repository builder finished without errors even if it used only about 150MB of the 200MB.

  • BI JDBC Connection For MSSQL 2005

    Hi All,
    I am trying to establish an BI JDBC Connection with MSSQL 2005 Server. I follow the steps exactly mentioned in the guide but i was not successfull. I doubt the problem could be with the adapters and again downloaded a JAR file for MSSQL 2005 from microsoft website and proceeded with steps. But no luck this time also.
    How do i make a successfull connection. Below is the result of a test page
    ==================================================
    Details:
    com.sap.ip.bi.sdk.exception.BIConnectionFailedException: Cannot open the connection at com.sap.ip.bi.sdk.dac.connector.jdbc.JdbcConnectionFactory.getConnectionEx(JdbcConnectionFactory.java:238) at com.sap.ip.bi.sdk.trialarea.connector.servlet.model.JDBCModel.getConnection(JDBCModel.java:797) at com.sap.ip.bi.sdk.trialarea.connector.servlet.model.JDBCModel.getTables(JDBCModel.java:132) at com.sap.ip.bi.sdk.trialarea.connector.servlet.controller.Control2.doPost(Control2.java:23) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Caused by: com.sap.ip.bi.sdk.exception.BIResourceException: Cannot open the connection at com.sap.ip.bi.sdk.dac.connector.jdbc.JdbcManagedConnection.(JdbcManagedConnection.java:123) at com.sap.ip.bi.sdk.dac.connector.jdbc.JdbcManagedConnectionFactory.createManagedConnection(JdbcManagedConnectionFactory.java:119) at com.sap.engine.services.connector.jca.ConnectionHashSet.match(ConnectionHashSet.java:320) at com.sap.engine.services.connector.jca.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:189) at com.sap.ip.bi.sdk.dac.connector.jdbc.JdbcConnectionFactory.getConnectionEx(JdbcConnectionFactory.java:233) ... 19 more Caused by: com.sap.ip.bi.sdk.exception.BIResourceException: Cannot connect to JDBC data source at com.sap.ip.bi.sdk.dac.connector.jdbc.impl.Connection.connectDB(Connection.java:394) at com.sap.ip.bi.sdk.dac.connector.jdbc.impl.Connection.connect(Connection.java:106) at com.sap.ip.bi.sdk.dac.connector.jdbc.JdbcManagedConnection.(JdbcManagedConnection.java:118) ... 23 more Caused by: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]End of stream was detected on a read. at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source) at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source) at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReply(Unknown Source) at com.microsoft.jdbc.sqlserver.SQLServerImplConnection.open(Unknown Source) at com.microsoft.jdbc.base.BaseConnection.getNewImplConnection(Unknown Source) at com.microsoft.jdbc.base.BaseConnection.open(Unknown Source) at com.microsoft.jdbc.base.BaseDriver.connect(Unknown Source) at java.sql.DriverManager.getConnection(DriverManager.java:512) at java.sql.DriverManager.getConnection(DriverManager.java:140) at com.sap.ip.bi.sdk.dac.connector.jdbc.impl.Connection.connectDB(Connection.java:376) ... 25 more
    ====================================================
    regards,
    Anand

    Hi Anand,
    did you check the WIKI:
    <a href="https://wiki.sdn.sap.com/wiki/display/VC/JDBCConnectionSetup">https://wiki.sdn.sap.com/wiki/display/VC/JDBCConnectionSetup</a>
    Best Regards,
    Marcel

  • Problem: connect DB with Applet by JDBC-ODBC bridge

    Dear all,
    When I connect local MS SQL server by "sun.jdbc.odbc.JdbcOdbcDriver" as below, it works well! However, when I put the similar code under Java Applet program, it cannot run by showing error:
    java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.sun.jdbc.odbc)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:272)
    at java.security.AccessController.checkPermission(AccessController.java:399)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:545)
    at java.lang.SecurityManager.checkPackageAccess(SecurityManager.java:1501)
    at sun.applet.AppletSecurity.checkPackageAccess(AppletSecurity.java:169)
    I think Java Applet has some security policy when I try to use applet to connect(read/write) DB. How can I solve it so that I can browse my applet under IE.
    Thanks a lot!
    Here is my worked code in Java program but not in Applet:
    import java.sql.*;
    public class TestJDBC1 {
    public static void main(String args[]) throws Exception {
    String userid = "";
    String password = "";
    // Register the driver with DriverManager
    new sun.jdbc.odbc.JdbcOdbcDriver();
    // Get a connection
    Connection conn = DriverManager.getConnection("jdbc:odbc:rdr",
    userid, password);
    // Create a statement for executing SQL
    Statement stmt = conn.createStatement();
    // Execute a query / SELECT statement
    ResultSet rset = stmt.executeQuery("SELECT * FROM PlatformNode");
    ResultSetMetaData rsmd = rset.getMetaData();
    // Find out how many columns were returned by the query
    int count = rsmd.getColumnCount();
    // Loop until all rows have been processed
    while (rset.next()) {
    // Loop until all columns in current row have been processed
    for (int i = 1; i <= count; i++) {
    // Print out the current value
    System.out.print(rset.getObject(i));
    // Put a comma between each value
    if (i < count) {
    System.out.println(",");
    // Start the next row's values on a new line
    System.out.println("");
    // Close the database objects
    rset.close();
    stmt.close();
    conn.close();

    Hi,
    Applets by default are restricted from accessing a lot of things.to enable applest from accessing database and other thngs u need to edit the policy file
    Try this.
    go to the jre/bin directory open the policytool.exe file
    and add permission(in ur case RuntimePermission to access class in package sun.jdbc.odbc) and save the file.
    this will enable applets from accessing the databse.
    Hope that helps
    Note:
    policytool.exe must be used to open the java.policy file present in /jre/lib/security directory and then add the permissions
    regards,
    Partha

  • Problems: connect DB with Applet by JDBC-ODBC bridge

    Dear all,
    When I connect local MS SQL server by "sun.jdbc.odbc.JdbcOdbcDriver" as below, it works well! However, when I put the similar code under Java Applet program, it cannot run by showing error:
    java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.sun.jdbc.odbc)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:272)
    at java.security.AccessController.checkPermission(AccessController.java:399)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:545)
    at java.lang.SecurityManager.checkPackageAccess(SecurityManager.java:1501)
    at sun.applet.AppletSecurity.checkPackageAccess(AppletSecurity.java:169)
    I think Java Applet has some security policy when I try to use applet to connect(read/write) DB. How can I solve it so that I can browse my applet under IE.
    Thanks a lot!
    Here is my worked code in Java program but not in Applet:
    import java.sql.*;
    public class TestJDBC1 {
    public static void main(String args[]) throws Exception {
    String userid = "";
    String password = "";
    // Register the driver with DriverManager
    new sun.jdbc.odbc.JdbcOdbcDriver();
    // Get a connection
    Connection conn = DriverManager.getConnection("jdbc:odbc:rdr",
    userid, password);
    // Create a statement for executing SQL
    Statement stmt = conn.createStatement();
    // Execute a query / SELECT statement
    ResultSet rset = stmt.executeQuery("SELECT * FROM PlatformNode");
    ResultSetMetaData rsmd = rset.getMetaData();
    // Find out how many columns were returned by the query
    int count = rsmd.getColumnCount();
    // Loop until all rows have been processed
    while (rset.next()) {
    // Loop until all columns in current row have been processed
    for (int i = 1; i <= count; i++) {
    // Print out the current value
    System.out.print(rset.getObject(i));
    // Put a comma between each value
    if (i < count) {
    System.out.println(",");
    // Start the next row's values on a new line
    System.out.println("");
    // Close the database objects
    rset.close();
    stmt.close();
    conn.close();

    ur question has just been answered under the java programming section

Maybe you are looking for