Server test Harness

Ive been asked to build a test harness.
A simple start would be this.
This will run on a machine and make multiple connections to a HTTP page and read the response given.
The aim of this is to check the server load before it fails.
Does anybody have any code that would enable this.
Does anybody know if it is more realistic to run a number of threads (to mimic people trying to log on) to make the connections or if the application should just try to make so many connections in the shortest period of time?
Would this approach really define the same mechanism as a lot of people trying to connect to the server at the same time?
Any help always apprechiated!!

I can see that it has Web, FTP, JDBC, and JNDI tests. What I specifically want is a load test on a server.
I dont see that it can do this from reading the user guide.
I will go back and have a closer look.
If you know that it can do this then I must be missing something.
Thank you.

Similar Messages

  • SapPhone Server Tester - SPS Tester

    Hello friends,
    I read about the SPS Tester on help.sap.com. I found also information about the installation of the SPS Tester, but where can I get this programm?
    Does somebody know where I can get or download the SPS Tester?
    daniel

    Hi Team,
    I am facing the same issue and I am using Oracle system user credentials to connect Oracle server and I have also installed extension pack for the SQL Server instance which i am using for migration. Still I am getting the following error in last step (Migrate
    data).
    Cannot connect to Oracle server via SQL Server tester extensions.
    Oracle
    10.2.0.4 verion
    SQL Server 2012 SP1
    SSMA 6.0
    Please help me if you have gone through the same problem.
    Thanks,
    Vijaysqldb

  • Refcursor as an OUT variable and test harness is failing

    Folks,
    create or replace PROCEDURE GetA ( p_list IN OUT sys_refcursor )is
    lv_func_name function_static.fntn_name%type:='GetCountrylist';
    st varchar2(1000);
    begin
    st := 'begin :1:='||lv_func_name||'; end;' ;
    dbms_output.put_line(st);
    execute immediate st using out p_list;
    end GetA;
    create or replace function Getcountrylist return sys_refcursor is
    p_list sys_refcursor;
    begin
    open p_list for
    select ctry_code Code, ctry_name Description
    from country
    where active_flag = 1;
    return p_list;
    end GetCountrylist;
    the following test harness is giving me an invalid cursor.
    declare
    rc1 sys_refcursor;
    v_code varchar2(10);
    v_desc varchar2(10);
    begin
    GetA (rc1);
    loop
    fetch rc1 into v_code,v_desc;
    DBMS_OUTPUT.PUT_LINE(v_code || ' ** ' || v_desc);
    END LOOP;
    CLOSE rc1;
    end;
    But if I test it in sqlplus like this, it works fine.
    Var r refcursor
    Exec geta(:r)
    Print r
    Any help.
    Thanks
    Ram

    STEP - 2
    SQL>
    SQL>
    SQL> insert into country values('&ct_cd','&ct_nm',&flg);
    Enter value for ct_cd: 007
    Enter value for ct_nm: Russia
    Enter value for flg: 1
    old   1: insert into country values('&ct_cd','&ct_nm',&flg)
    new   1: insert into country values('007','Russia',1)
    1 row created.
    SQL> /
    Enter value for ct_cd: 001
    Enter value for ct_nm: USA
    Enter value for flg: 0
    old   1: insert into country values('&ct_cd','&ct_nm',&flg)
    new   1: insert into country values('001','USA',0)
    1 row created.
    SQL> /
    Enter value for ct_cd: 091
    Enter value for ct_nm: INDIA
    Enter value for flg: 1
    old   1: insert into country values('&ct_cd','&ct_nm',&flg)
    new   1: insert into country values('091','INDIA',1)
    1 row created.
    SQL> /
    Enter value for ct_cd: 056
    Enter value for ct_nm: UK
    Enter value for flg: 1
    old   1: insert into country values('&ct_cd','&ct_nm',&flg)
    new   1: insert into country values('056','UK',1)
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from country;
    CTRY_CODE  CTRY_NAME                      ACTIVE_FLAG
    007        Russia                                   1
    001        USA                                      0
    091        INDIA                                    1
    056        UK                                       1
    SQL> ed
    Wrote file afiedt.buf
      1  create or replace PROCEDURE GetA ( p_list IN OUT sys_refcursor )
      2  is
      3    --  lv_func_name function_static.fntn_name%type:='GetCountrylist';
      4    lv_func_name varchar2(30):='GetCountrylist';
      5    st varchar2(1000);
      6  begin
      7   st := 'begin :1:='||lv_func_name||'; end;' ;
      8   dbms_output.put_line(st);
      9   execute immediate st using out p_list;
    10* end GetA;
    11  /
    Procedure created.
    SQL>
    SQL>
    SQL> create or replace function Getcountrylist
      2  return sys_refcursor
      3  is
      4    p_list sys_refcursor;
      5  begin
      6    open p_list for
      7    select ctry_code Code, ctry_name Description
      8    from country
      9    where active_flag = 1;
    10 
    11    return p_list;
    12 
    13  end GetCountrylist;
    14  /
    Function created.
    SQL>
    SQL> declare
      2   rc1 sys_refcursor;
      3 
      4   type a is record ( code varchar2(10), description varchar2(30) );
      5   b a;
      6  begin
      7   GetA(rc1);
      8   loop
      9    fetch rc1 into b;
    10    exit when rc1%notfound;
    11    DBMS_OUTPUT.PUT_LINE(b.code || ' ** ' || b.description);
    12   END LOOP;
    13   CLOSE rc1;
    14  end;
    15  /
    begin :1:=GetCountrylist; end;
    007 ** Russia
    091 ** INDIA
    056 ** UK
    PL/SQL procedure successfully completed.Regards.
    Satyaki De

  • Oracle Test Harness

    Hi,
    I've read the article named "Out-of-Container EJB 3.0 Testing with Oracle Entity Test Harness (by Debu Panda)" in http://www.oracle.com/technology/pub/articles/debu_testability_of_ejb.html.
    Where is it supposed to be locate the ectest.jar file???
    I've just downloaded Oracle Toplink DP4 and OAS 10.1.3 DP4 but I can't find it.
    Thanks in advanced.

    Hi Bjorn,
    I've posted the same question a couple of time (see out-of-container Oracle EJB30 Test - ectest.jar location but nobody seems to know the answer.
    Please let me know ([email protected]) if you get to know where is the ectest.jar file located (the same way, I'll tell you if I do).
    Thank you very much.

  • Oracle Test Harness - ectest.jar location

    Hi,
    I've read the article named "Out-of-Container EJB 3.0 Testing with Oracle Entity Test Harness (by Debu Panda)" in http://www.oracle.com/technology/pub/articles/debu_testability_of_ejb.html.
    Where is it supposed to be locate the ectest.jar file???
    I've just downloaded Oracle Toplink DP4 and OAS 10.1.3 DP4 but I can't find it.
    Thanks in advanced.

    Hi Bjorn,
    I've posted the same question a couple of time (see out-of-container Oracle EJB30 Test - ectest.jar location but nobody seems to know the answer.
    Please let me know ([email protected]) if you get to know where is the ectest.jar file located (the same way, I'll tell you if I do).
    Thank you very much.

  • Creating a Test Harness

    Hi there ....
    I have this problem, basically, my self and a few of my class mates have built this program as part of our module and we now need to have a Test Harness to run and log our Test Cases.
    I have all the test cases arranged in .txt files and plan on using the 'Test Harness' to read test cases from these files, feed it to our program and then log the output from our programe (the methods) yet again on another .txt file. We have the feature for logging, in the formatted required.
    However, non of us has built a test harness before and it looks like a complex procedure, the problem is we dont know how to approach it.
    We can test methods that return a value but we dont know how to use the test harness to test void methods that pass data to components or call other methods.
    I would appriciate any form of help.
    Cheers

    Hi yawmark,
    I appologise for including a poor code example ealier on, i had to come up with something quick. I will however, visit the sugeted sites you mentioned, thank you.
    I did however, create a simple class that compiles and can be used to set, return, reset and print a few details about a person. I hope that is of better use than my previous example. here it is:
    public class SimplePerson {
        int age = 0;
        String firstName = "";
        String lastName = "";
        /** Creates a new instance of SimplePerson */
        public SimplePerson() {
        /** Sets the age of this person */
        private void setAge(int takeAge){
            age = takeAge;
        /** Returns the age of this person */
        private int getAge(){
            return age;
        /** Sets the First Name of this person */
        private void setFirstName(String takeName){
            firstName = takeName;
        /** Returns the First Name of this person */
        private String getFirstName(){
            return firstName;
        /** Sets the Last Name of this person */
        private void setLastName(String takeName){
            firstName = takeName;
        /** Returns the Last Name of this person */
        private String getLastName(){
            return firstName;
        /** Resets the details of this person back to back to
         *  the default form.
        private void resetAll(){
            age = 0;
            firstName = "";
            lastName = "";
        /** Prints all the details this person has */
        private void printAll(){
            System.out.println("Age: " +Integer.toString(age)
                    + "\n First Name: " + firstName
                    + "\n Last Name: " + lastName );
    }Cheers mate

  • Stress Test Harness

    I used to have a copy of STH on this clients current environment, but the client doesn't know where it went to after 5 years. Is this still available anywhere?
    -Ray

    Ray_Cormier wrote:
    I used to have a copy of STH on this clients current environment, but the client doesn't know where it went to after 5 years. Is this still available anywhere?STH (Stress Test Harness) is an internal Sun/Oracle tool for scalability testing. It is not meant to be generally available.
    Alternate public tools are slamd and mstone.
    Regards,
    Shane.

  • Server testing

    hi all
    i am looking for a framework that simplifies coding tests to AAAU servers.
    The main idea is to test not only load and performance but also the web server DB state.
    In other words to check if the server is doing his job properly.
    And the question is:
    do you know of a tool, programing language or a framework in which you can add a simple script that will automate the server testing?
    thanx in advance.

    Maybe you should post under advanced topics

  • While running the livecache server test a native sql error occures

    We are using scm4.1 livecache 7.5.0 And every time we are running the livecache test program he is dumping
    whith the following dump
    patch level scm & scm_basis is 8
    Runtime Errors         DBIF_DSQL2_SQL_ERROR
    Except.                CX_SY_NATIVE_SQL_ERROR
    Date and Time          31.10.2005 16:50:55
    ShrtText
    An SQL error occurred when executing Native SQL.
    What happened?
    Error 600 occurred in the current database connection "LCA".
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    How to correct the error
    Database error text........: "Work rolled back: DbpError -28814 in
    APS_ORDER_CH"
    Database error code .......: 600
    Triggering SQL statement...: " ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
    ? ? ? ? ? ? ? or'"
    Internal call code.........: "[DBDS/NEW DSQL]"
    Please check the entries in the system log (Transaction SM21).
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "DBIF_DSQL2_SQL_ERROR" CX_SY_NATIVE_SQL_ERRORC
    "/SAPAPO/SAPLOM_PLANNING" or "/SAPAPO/LOM_PLANNINGU08"
    "/SAPAPO/OM_ORDER_CHANGE"
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    The exception must either be prevented, caught within the procedure
    "/SAPAPO/OM_ORDER_CHANGE"
    "(FUNCTION)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    System environment
    SAP Release.............. "640"
    Application server....... "bebruap2"
    Network address.......... "195.213.49.227"
    Operating system......... "Windows NT"
    Release.................. "5.2"
    Hardware type............ "4x Intel 801586"
    Character length......... 16 Bits
    Pointer length........... 32 Bits
    Work process number...... 1
    Short dump setting....... "full"
    Database server.......... "BEBRUAP2"
    Database type............ "MSSQL"
    Database name............ "APD"
    Database owner........... "apd"
    Character set............ "C"
    SAP kernel............... "640"
    Created on............... "Aug 23 2005 00:00:49"
    Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version......... "SQL_Server_8.00 "
    Patch level.............. "87"
    Patch text............... " "
    Supported environment....
    Database................. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"
    SAP database version..... "640"
    Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    Memory usage.............
    Roll..................... 8176
    EM....................... 24040336
    Heap..................... 0
    Page..................... 1687552
    MM Used.................. 1516920
    MM Free.................. 572032
    SAP Release.............. "640"
    User and Transaction
    Client.............. 000
    User................ "CGRAULS"
    Language key........ "E"
    Transaction......... "/SAPAPO/OM03 "
    Program............. "/SAPAPO/SAPLOM_PLANNING"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    The termination occurred in the ABAP program "/SAPAPO/SAPLOM_PLANNING" in
    "/SAPAPO/OM_ORDER_CHANGE".
    The main program was "/SAPAPO/OM_TB_FLOW_QUANTITY ".
    The termination occurred in line 91 of the source code of the (Include)
    program "/SAPAPO/LOM_PLANNINGU08"
    of the source code of program "/SAPAPO/LOM_PLANNINGU08" (when calling the
    editor 910).
    Processing was terminated because the exception "CX_SY_NATIVE_SQL_ERROR"
    occurred in the
    procedure "/SAPAPO/OM_ORDER_CHANGE" "(FUNCTION)" but was not handled locally,
    not declared in the
    RAISING clause of the procedure.
    The procedure is in the program "/SAPAPO/SAPLOM_PLANNING ". Its source code
    starts in line 5
    of the (Include) program "/SAPAPO/LOM_PLANNING$08 ".
    Source Code Extract
    Line
    SourceCde
    61
    is_gen_params-simversion
    62
    is_gen_params-dont_set_netchg_flag
    63
    space.
    64
    65
    Kontrollstruktur IS_GET_CHANGED_OPTIONS anpassen.
    66
    IF NOT et_changed_orders IS REQUESTED.
    67
    is_get_changed_options-send_chg_top_order = gc_false.
    68
    ENDIF.
    69
    IF NOT et_changed_cap_reqs IS REQUESTED.
    70
    is_get_changed_options-send_chg_cap_req = gc_false.
    71
    ENDIF.
    72
    IF NOT et_changed_io_nodes IS REQUESTED.
    73
    is_get_changed_options-send_chg_ionode = gc_false.
    74
    ENDIF.
    75
    IF NOT et_changed_io_pp_nodes IS REQUESTED.
    76
    is_get_changed_options-send_chg_io_pp = gc_false.
    77
    ENDIF.
    78
    IF NOT et_changed_pegids IS REQUESTED.
    79
    is_get_changed_options-send_chg_pegid = gc_false.
    80
    ENDIF.
    81
    IF NOT et_deleted_fix_pegging IS REQUESTED.
    82
    is_get_changed_options-send_del_fix_peg = gc_false.
    83
    ENDIF.
    84
    start_function 'OM_ORDER_CHANGE'.                         "#EC *
    85
    Verbindung zum liveCache aufbauen
    86
    check_server.
    87
    connect_to_livecache.
    88
    COM-Routine zum Anlegen bzw. Überschreiben eines Zeitstrahls
    89
    90
    EXEC sql.
    >>>>>
    execute procedure                  "APS_ORDER_CHANGE" (
    92
    in  :ls_gen_com_params,
    93
    out :lv_rc,
    94
    in  :et_rc,
    95
    in  :it_order_method,
    96
    in  :it_ordkeys,
    97
    in  :it_ordmaps,
    98
    in  :it_orders,
    99
    in  :it_activities,
    100
    in  :it_mode,
    101
    in  :it_cap_reqs,
    102
    in  :it_positions,
    103
    in  :it_inputs,
    104
    in  :it_outputs,
    105
    in  :it_prodflow,
    106
    in  :it_intern_constraints,
    107
    in  :it_extern_constraints,
    108
    in  :it_charact_val_acts,
    109
    in  :it_charact_req_inpnode,
    110
    in  :it_charact_val_outnode,
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    1
    SY-DBCNT
    1
    SY-FDPOS
    0
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    Flow Quantity Test
    SY-MSGTY
    S
    SY-MSGID
    /SAPAPO/OM_TEST
    SY-MSGNO
    001
    SY-MSGV1
    Create transSim
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    3 FUNCTION     /SAPAPO/SAPLOM_PLANNING             /SAPAPO/LOM_PLANNINGU08                91
    /SAPAPO/OM_ORDER_CHANGE
    2 FORM         /SAPAPO/OM_TB_FLOW_QUANTITY         /SAPAPO/OM_TB_FLOW_QUANTITY           802
    CHANGE_DATA
    1 EVENT        /SAPAPO/OM_TB_FLOW_QUANTITY         /SAPAPO/OM_TB_FLOW_QUANTITY            11
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.       3 Ty.          FUNCTION
    Name  /SAPAPO/OM_ORDER_CHANGE
    IS_ATP_INFO
    01ATP0000001~CGRAULSXX##
    334553333333744545455500
    011400000001E37215C38800
    000000000000000000000000
    000000000000000000000000
    IS_CONTROLPARAMETERS
    霁က#ం̂⍱㔒鲔#####
    2222222222222222222222001007190000022
    0000000000000000000000100221240000100
    0000000000000000000000910002390000000
    0000000000000000000000700C335C000C000
    IS_GEN_PARAMS
    01PLV0000001~CGRAULS
    3354533333337445454522222
    010C60000001E37215C300000
    0000000000000000000000000
    0000000000000000000000000
    IS_GET_CHANGED_OPTIONS
    2222222
    0000000
    0000000
    0000000
    IT_ACTIVITIES
    Table IT_274[1x256]
    PROGRAM=/SAPAPO/OM_TB_FLOW_QUANTITYFORM=CHANGE_DATADATA=LT_ACTIVITIES
    Table reference: 41
    TABH+  0(20) = 5087FFDF00000000000000002900000012010000
    TABH+ 20(20) = 0100000000010000FFFFFFFF0487000000290000
    TABH+ 40( 8) = 10000000C1308000
    store        = 0x5087FFDF
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 41    (0x29000000)
    label        = 274   (0x12010000)
    fill         = 1     (0x01000000)
    leng         = 256   (0x00010000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000205
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x180112E0
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    store_id     = 126   (0x7E000000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    IT_CAP_REQS
    Table IT_276[1x112]
    PROGRAM=/SAPAPO/OM_TB_FLOW_QUANTITYFORM=CHANGE_DATADATA=LT_CAP_REQS
    Table reference: 39
    TABH+  0(20) = 48BB06E000000000000000002700000014010000
    TABH+ 20(20) = 0100000070000000FFFFFFFF04870000C0290000
    TABH+ 40( 8) = 10000000C1308000
    store        = 0x48BB06E0
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 39    (0x27000000)
    label        = 276   (0x14010000)
    fill         = 1     (0x01000000)
    leng         = 112   (0x70000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000209
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x188D04E0
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    store_id     = 124   (0x7C000000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    IT_CHARACT_REQ_INPNODE
    Table IT_418[0x140]
    FUNCTION=/SAPAPO/OM_ORDER_CHANGEDATA=IT_CHARACT_REQ_INPNODE
    Table reference: 32
    TABH+  0(20) = 00000000000000000000000020000000A2010000
    TABH+ 20(20) = 000000008C000000FFFFFFFF04870000301D0000
    TABH+ 40( 8) = 10000000C1308000
    store        = 0x00000000
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 32    (0x20000000)
    label        = 418   (0xA2010000)
    fill         = 0     (0x00000000)
    leng         = 140   (0x8C000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000142
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    IT_CHARACT_VAL_ACTS
    Table IT_417[0x156]
    FUNCTION=/SAPAPO/OM_ORDER_CHANGEDATA=IT_CHARACT_VAL_ACTS
    Table reference: 50
    TABH+  0(20) = 00000000000000000000000032000000A1010000
    TABH+ 20(20) = 000000009C000000FFFFFFFF04870000901D0000
    TABH+ 40( 8) = 10000000C1308000
    store        = 0x00000000
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 50    (0x32000000)
    label        = 417   (0xA1010000)
    fill         = 0     (0x00000000)
    leng         = 156   (0x9C000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000144
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    IT_CHARACT_VAL_OUTNODE
    Table IT_419[0x156]
    FUNCTION=/SAPAPO/OM_ORDER_CHANGEDATA=IT_CHARACT_VAL_OUTNODE
    Table reference: 60
    TABH+  0(20) = 0000000000000000000000003C000000A3010000
    TABH+ 20(20) = 000000009C000000FFFFFFFF04870000901D0000
    TABH+ 40( 8) = 10000000C1308000
    store        = 0x00000000
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 60    (0x3C000000)
    label        = 419   (0xA3010000)
    fill         = 0     (0x00000000)
    leng         = 156   (0x9C000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000144
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    IT_EXTERN_CONSTRAINTS
    Table IT_416[0x124]
    FUNCTION=/SAPAPO/OM_ORDER_CHANGEDATA=IT_EXTERN_CONSTRAINTS
    Table reference: 71
    TABH+  0(20) = 00000000000000000000000047000000A0010000
    TABH+ 20(20) = 000000007C000000FFFFFFFF04870000E02A0000
    TABH+ 40( 8) = 10000000C1308000
    store        = 0x00000000
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 71    (0x47000000)
    label        = 416   (0xA0010000)
    fill         = 0     (0x00000000)
    leng         = 124   (0x7C000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000215
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    IT_INPUTS
    Table IT_278[1x420]
    PROGRAM=/SAPAPO/OM_TB_FLOW_QUANTITYFORM=CHANGE_DATADATA=LT_INPUTS
    Table reference: 63
    TABH+  0(20) = 087400E0C0E303E0000000003F00000016010000
    TABH+ 20(20) = 01000000A4010000FFFFFFFF04870000202A0000
    TABH+ 40( 8) = 10000000C1308000
    store        = 0x087400E0
    ext1         = 0xC0E303E0
    shmId        = 0     (0x00000000)
    id           = 63    (0x3F000000)
    label        = 278   (0x16010000)
    fill         = 1     (0x01000000)
    leng         = 420   (0xA4010000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000211
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x78DC11E0
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    store_id     = 123   (0x7B000000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x2029FFDF
    hsdir        = 0x00000000
    ext2         = 0x00000000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    IT_INTERN_CONSTRAINTS
    Table IT_415[0x124]
    FUNCTION=/SAPAPO/OM_ORDER_CHANGEDATA=IT_INTERN_CONSTRAINTS
    Table reference: 49
    TABH+  0(20) = 000000000000000000000000310000009F010000
    TABH+ 20(20) = 000000007C000000FFFFFFFF04870000E02A0000
    TABH+ 40( 8) = 10000000C1308000
    store        = 0x00000000
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 49    (0x31000000)
    label        = 415   (0x9F010000)
    fill         = 0     (0x00000000)
    leng         = 124   (0x7C000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000215
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    store_id     = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    IT_MODE
    Table IT_275[1x164]
    PROGRAM=/SAPAPO/OM_TB_FLOW_QUANTITYFORM=CHANGE_DATADATA=LT_MODES
    Table reference: 52
    TABH+  0(20) = A03C00E000000000000000003400000013010000
    TABH+ 20(20) = 01000000A4000000FFFFFFFF0487000060290000
    TABH+ 40( 8) = 10000000C1308000
    store        = 0xA03C00E0
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 52    (0x34000000)
    label        = 275   (0x13010000)
    fill         = 1     (0x01000000)
    leng         = 164   (0xA4000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000207
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xC8F611E0
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    store_id     = 125   (0x7D000000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    IT_ORDERS
    Table IT_293[1x320]
    PROGRAM=/SAPAPO/OM_TB_FLOW_QUANTITYFORM=CHANGE_DATADATA=LT_ORDERS1
    Table reference: 47
    TABH+  0(20) = 20B403E000000000000000002F00000025010000
    TABH+ 20(20) = 0100000040010000FFFFFFFF0400000030380000
    TABH+ 40( 8) = 01000000C1308000
    store        = 0x20B403E0
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 47    (0x2F000000)
    label        = 293   (0x25010000)
    fill         = 1     (0x01000000)
    leng         = 320   (0x40010000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000286
    occu         = 1     (0x01000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x9080FFDF
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 1     (0x01000000)
    lineAlloc    = 1     (0x01000000)
    store_id     = 130   (0x82000000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    IT_ORDER_METHOD
    Table IT_268[2x62]
    PROGRAM=/SAPAPO/OM_TB_FLOW_QUANTITYFORM=CHANGE_DATADATA=LT_ORDER_METHOD
    Table reference: 51
    TABH+  0(20) = 8882FFDF0000000000000000330000000C010000
    TABH+ 20(20) = 020000003E000000FFFFFFFF04000000B0360000
    TABH+ 40( 8) = 10000000C1248000
    store        = 0x8882FFDF
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 51    (0x33000000)
    label        = 268   (0x0C010000)
    fill         = 2     (0x02000000)
    leng         = 62    (0x3E000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000278
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x0868FFDF
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    store_id     = 122   (0x7A000000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    IT_ORDKEYS
    Table IT_271[1x332]
    PROGRAM=/SAPAPO/OM_TB_FLOW_QUANTITYFORM=CHANGE_DATADATA=LT_ORDKEYS
    Table reference: 29
    TABH+  0(20) = 80E303E000000000000000001D0000000F010000
    TABH+ 20(20) = 010000004C010000FFFFFFFF04870000E0270000
    TABH+ 40( 8) = 10000000C1308000
    store        = 0x80E303E0
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 29    (0x1D000000)
    label        = 271   (0x0F010000)
    fill         = 1     (0x01000000)
    leng         = 332   (0x4C010000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000199
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0

    Hi,
    the error DbpError -28814 denotes that an object cannot be found.
    Can you maybe tell me your exact liveCache version (incl. Build level) and LCA Build?
    Additionally, please copy the relevant error information from the file (/sapdb/data/wrk/<SID>/)knldiag.err into this thread.
    Which exact 'liveCache test program' are your referring to (which of the /SAPAPO/... transactions)?
    Kind regards,
    Roland

  • HTTP error 500 on Content Server test (RSCMST), after CS migration.

    Hello all,
    I have migrated a Content Server 6.30 system from HP-UX and MaxDB 7.3.00.42 to CS 6.40 on Windows and MaxDB 7.7.06.15.  While the migration of the database and the install of the CS 6.40 seems to have completed successfully, I am having trouble connecting to it from the R/3 system. 
    Following some clean up steps suggested by SAP support, I am able to connect to the CS system using the "serverInfo" query, and I am also able to connect to the existing repository through CSADMIN.  However, when I run the RSCMST tests, they all fail with the error:  HTTP error: 500 (Internal Server Error)  " ;ODBC State 00000; Error Code 0".
    Below is a summary of the tests/connections that work and the ones that do not.
    URL for serverInfo: http://<hostname>:1090/ContentServer/ContentServer.dll?serverInfo - Returns successfully and displays status of CS.
    CSADMIN - All tabs on csadmin display correct information, from the CS and respository.
    SE38 - program=RSCMST - All tests return the following error:  HTTP error: 500 (Internal Server Error)  " ;ODBC State 00000; Error Code 0"
    I have also confirmed that I am using the most recent ODBC driver on this CS(at the request of SAP support), with the command sdbregview -l.  - Returns the following:  ... ODBC g:/sapdb/programs 7.7.06.15 64 bit valid  ...
    If anyone has any suggestions on what else I can check for this error, I would greatly appreciate it.  Thanks in advance.
    Regards,
    Rusty Robbins

    Well, I have good news to report... finally!
    The main problem I had with the 500 error was caused by an incorrect version of MaxDB, for CS 6.40 (as SAP support pointed out in the message I had opened with them).  Once I had completed the migration using MaxDB 7.6.06.05, I was able to connect successfully. 
    When I first performed this migration (with 7.6.06.05), I "thought" I was still getting the same 500 - internal error, but after looking at it closer I realized that the error had changed to say something like "table is set to read-only".  I then realized that I had forgotten to perform a full data backup, following the last import.  Once I completed this backup, I was able to connect to this CS system from R/3, with all of the test programs (RSCMST, etc). 
    Just to be sure, I performed this migration from scratch again, and was able to repeat the successful migration and tests.  I have now turned it over to the functional teams for testing, and hopefully they will not find any issues.  ;p
    Thanks to all that responded and to those that reviewed this post!
    Regards,
    Rusty Robbins

  • Final cut server-Test Page for Apache installation comes up when IP put in

    I have installed Final Cut Server on our Mac Pro Running OSX Leopard. Installation succeeded, but when I type in the IP address of the server in safari, the "Test Page for Apache Installation" comes up. This happens on every computer on the network. I need the client installation window to come in order to install the client. What am I missing, what settings need to be changed?
    Would greatly appreciate some help.
    Thanks

    So when you type in the URL your using this format http://hostname/FinalCutServer, where hostname is the IP address or name of the computer on which you installed Final Cut Server? Especially the "FinalCutServer" part.
    o| TonyTony |o

  • SAP B2B server - test connection problem

    Hi Team,
    We have business connector 4.6 sap BC server. We have created adapter connection in sapbc server to establish a connection to SAP ECC system but when we perform test connection in sapbc server it is throwing out error as"  Name or password is incorrect (repeat logon)" though we mentioned the right password and logon credentials.
    Created listener for sap adapter in BC server and maintained program id and other configuration details. Created TCP/IP RFC connection from SAP using register program id "SAPBC and it is working fine.
    communication from SAP to BC is working fine however we could receive error when we tried to test the connection from BC to SAP ECC.
    Below are the BC Error trace for reference.
    **** ERROR file opened at 20140702 192722 India Standard , SAP-REL 620,0,72 RFC-VER 3 480692 MT-SL
    T:162 ======> Name or password is incorrect (repeat logon)
    T:162 <* RfcReceive [5] : returns 3:RFC_SYS_EXCEPTION
    T:162 ======> Name or password is incorrect (repeat logon)
    T:162 <* RfcReceive [6] : returns 3:RFC_SYS_EXCEPTION
    T:162 ======> Name or password is incorrect (repeat logon)
    T:162 <* RfcReceive [7] : returns 3:RFC_SYS_EXCEPTION
    T:162 ======> Name or password is incorrect (repeat logon)
    T:162 <* RfcReceive [8] : returns 3:RFC_SYS_EXCEPTION
    >TS> Wed Jul 02 19:55:59 2014
    T:190 ======> Name or password is incorrect (repeat logon)
    T:190 <* RfcReceive [9] : returns 3:RFC_SYS_EXCEPTION
    T:190 ======> Password logon no longer possible - too many failed attempts
    T:190 <* RfcReceive [10] : returns 3:RFC_SYS_EXCEPTION
    T:190 ======> Password logon no longer possible - too many failed attempts
    T:190 <* RfcReceive [11] : returns 3:RFC_SYS_EXCEPTION
    T:190 ======> Password logon no longer possible - too many failed attempts
    T:190 <* RfcReceive [12] : returns 3:RFC_SYS_EXCEPTION
    Below are the system details:-
    SAPBC – B2B web method integration server version 4.6 on windows NT system
    SAP ECC Details - ECC 6.0, Oracle 10.2, HP Unix 11.31 (Unicode)
    Please share if you have any clues on this.
    Regards,
    Ajay Asawa

    Hi Deepak,
    I have attache here the screenshot in first two part. Please check attachment
    and also attach the error message
    There is any change we have done recently in both system. B2B connected to our ECC production system
    Regards,
    Ajay Asawa

  • Writing a test harness

    I am interested in finding out if any people have written test harnesses
    for performance testing and load testing.
    If so, how did you go about doing it?
    I'd like to comments about writing the harness as a Forte application vs
    using a shell script to execute Forte methods on Service Objects.
    How do you best simulate many users banging on the Forte Service
    objects?
    Any help would be greatly appreciated
    Thanks,
    Roland Adolfsson
    Email: [email protected]
    OneWave Inc

    Think I have it working with the following changes
    payload = new String(buffer, "IBM-500");
    // Creates the text message to send
    TextMessage msg = session.createTextMessage(payload);
    msg.setIntProperty("JMS_IBM_Character_Set", 500);

  • How to up Oracle server test database

    Before we have a oracle test server database The boot folder or location of this server is located at v240 and the drives are located at m4000. After server had been shutdown. We were unable to connect to the server thru ping, telnet and ssh. May I ask if there is a way to up the test server database. Kindly give us instruction on how to do it.
    Thanks

    Try to connect to console through the ALOM interface and check the network interface.

  • Appllication Server Test Environment

    We are in the process of purchasing Application Server. In the meantime while we are waiting for the purchase order to come through, we want to set up an environment for test. We do not have a legitimate copy of Application Server.
    Would this be alight to install a bootleg copy until we get the legal copy.

    Also to answer your second part of the question, whatever you download from any of Oracle's site is a legit copy of the software, there are no as such "bootleg copy". The difference is license - do you hold license to use the product in your production env. or not. From the binaries side, all are fully functional packages.
    Thanks
    Shail

Maybe you are looking for

  • SYST: Period 012 is not valid in financial year variant V3 Message no. FGV0

    Hi! While I am going to create Asset it is giving me following error : SYST: Period 012 is not valid in financial year variant V3 Message no. FGV003 I checked in OB29, I have maintained 12 period, can you please tell me what will be the problem. Rake

  • Ipod touch 2nd gen stuck on apple reboot screen

    Hopefully someone can help... For the past 2 days, my touch has been stuck on the black screen with a white apple on it (the reboot screen). Approximately every 15 mins or so, the screen flashes to white as if it is trying to open something, flashes

  • No option where to install XP

    I have Leopard on my mini and formatted my drive for XP. When the XP install gets to the blue screen asking where to install, I do not get the options where to install mentioned in the BootCamp instructions, I just get Windows asking what to do (inst

  • How to use additional parameters in SM49

    Hi, I wrote a CMD file witch copies a file from one directory to another, the source and destention are both parameteres, how do I sent the 2 parameters using SM49? the command file looks like this: copy %1% %2% The system is windows Thanks, Naama.

  • Mavericks and password protected WiFi

    I upgraded to Mavericks on early 2011 MacBook Pro 13 inch.  My basic WPA(2) is working fine. However I tried to connect to password protected WiFi on inflight GoGo internet and the hotel internet and neither would bring up the webpage to login. The W