No Demo Scripts

Hi,
Have been away from Oracle, so working to refresh knowledge.
Have just done a full install of 11g (on Windows:(:() and wanted to use the demo scripts.
Problem is they do not seem to exist in the demo\schema folder.
Anyone know why this might be?
Also, does scott still exist, as I cannot find it in my DB.
Thanks in advance.
K

However, the scripts in demo\schema do not exist.[oracle@apps001 schema]$ pwd
/u01/app/oracle/11.1.0/demo/schema
[oracle@apps001 schema]$ ls
bus_intelligence mk_dir.sql mkplug.sql sted_mkplug.sql.dbl
human_resources mk_dir.sql.ouibak order_entry
log mk_dir.sql.sbs sales_history

Similar Messages

  • BPC IFRS Demo Script

    Dear all ,
    Can anyone give me the BPC IFRS Demo Script ?
    THanks in Advance
    SANJAY DARJI

    Hi David,
    Demo script includes information on step to be followed for the IFRS which we have configured i.e. Business process flow, so that end user can understand the same easily...

  • Execution time issues with SU01 demo script

    Having worked with Scripting in a Box for a while now I wanted to try out the examples there. I read FM: SO_USER_LIST_READ or another one explaining why my attempt to narrow the returned users failed (Craig, did you find out why the functionality was removed?) and Re: Issue with "Scripting in a Box" seeing that  Harry had the same problems with only ~200 users in his system. However, Craig's original post states he successfully managed with over 400 users. I'm a bit confused...
    I included some simple timing stuff and found out that processing of one user in the loop takes about 1.7 seconds - little surprise then that every script times out. This seems to be due to the additional calls to GetStatus() and GetValid() - by commenting them out I get the whole list rather quickly.
    Unfortunately commenting them out also means no nice icons for 'Status' and 'Valid', which is not desired. I probably could create a Z FM to deliver me the userlist with these two fields already added (which would save on rfc-calls, assuming the operation is much quicker on the server directly), but I hoped to get a solution based purely on PHP, not own ABAP coding (being aware that Craig also used a Z FM anyway, but still...)
    I'm a bit unsure now how easy it is to actually create useful frontends in PHP, with such long execution times. I assume this will happen in other occasions as well, not only for user lists. Is there an alternative? Or a general way to do those things quicker?
    :Frederic:

    Craig: you say it's easy to go from 1.7 seconds per user lookup down to a small fraction of it? Then apparently I'm lacking these skills. Could you please give me a hint what should be done there?
    I though about creating a Z function, but having to write custom wrappers - possibly for about any transaction in this style - I wanted to avoid.
    Bala: the two functions only take one user as input, not a list. So w/o modifying the ABAP side I can't feed the whole list in there. I wonder how much it would improve the result time anyway, so perhaps I'm trying it. It's just not a solution I'd prefer.
    Paging is a good idea, the actual call to get the whole userlist is quite quick. Having like 20 users displayed at a time is manageable - still slow, but the script won't timeout anymore. I think I'll implement this today.
    About AJAX: yes, I want to play around a bit with AJAX, however having the two columns valid and status removed and the information only displayed on mouseover etc is a bit like cheating. And 1.7+ seconds waiting for a hoover info is too long. So I'd like to optimize on the rfc-calling side primarily.
    Craig: surely it was just a demo, and I'm just trying to get it to work for understanding it
    :Frederic:

  • Having trouble with ore.tableApply() demo script

    I have verified that RQSCRIPTCREATE exists in SYS schema, and my demo user has RQROLE assigned, and I tried assigning RQADMIN as well (redundant). Any ideas?
    ORE> # O R A C L E R E N T E R P R I S E S A M P L E L I B R A R Y
    ORE> #
    ORE> # Name: table_apply.R
    ORE> # Description: Execute R code on all rows of a table
    ORE> # passed in at once
    ORE> #
    ORE> #
    ORE>
    ORE> ## Set page width
    ORE> options(width = 80)
    ORE> # List all accessible tables and views in the Oracle database
    ORE> ore.ls()
    [1] "IRIS_TABLE"
    ORE> # Create a new table called IRIS_TABLE in the Oracle database
    ORE> # using the built-in iris data.frame
    ORE>
    ORE> # First remove previously created IRIS_TABLE objects from the
    ORE> # global environment and the database
    ORE> if (exists("IRIS_TABLE", globalenv(), inherits = FALSE))
    + rm("IRIS_TABLE", envir = globalenv())
    ORE> ore.drop(table = "IRIS_TABLE")
    ORE> # Create the table
    ORE> ore.create(iris, table = "IRIS_TABLE")
    ORE> # Show the updated list of accessible table and views
    ORE> ore.ls()
    [1] "IRIS_TABLE"
    ORE> # Display the class of IRIS_TABLE and where it can be found in
    ORE> # the search path
    ORE> class(IRIS_TABLE)
    [1] "ore.frame"
    attr(,"package")
    [1] "OREbase"
    ORE> search()
    [1] ".GlobalEnv" "package:datasets" "ore:RQUSER"
    [4] "package:ORE" "package:ORExml" "package:OREeda"
    [7] "package:OREgraphics" "package:OREstats" "package:MASS"
    [10] "package:graphics" "package:grDevices" "package:stats"
    [13] "package:OREbase" "package:ROracle" "package:DBI"
    [16] "package:utils" "package:methods" "Autoloads"
    [19] "package:base"
    ORE> find("IRIS_TABLE")
    [1] "ore:RQUSER"
    ORE> # Build a regression model using in memory data
    ORE> mod = lm(Sepal.Length ~ . - Species, data = iris)
    ORE> # Use tableApply to predict using the model on all rows of IRIS_TABLE
    ORE> ore.tableApply(IRIS_TABLE,
    + function(dat, mod)
    + {
    + cbind(dat, PRED = predict(mod, newdata = dat))
    + },
    + mod = mod)
    Error in .oci.GetQuery(conn, statement, ...) :
    ORA-06550: line 1, column 7:
    PLS-00201: identifier 'SYS.RQSCRIPTCREATE' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    ORE>

    To run ore.*Apply or ore.doEval functions using FUN parameter the user you are connecting to in ore.connect needs to have an RQADMIN role. Once the role is granted you need to reconnect your R session. If you are only using FUN.NAME parameter to run existing scripts RQROLE role is sufficient.
    Please, verify that your user has both RQROLE and RQADMIN roles and try to restart your R sessions and reconnect to ORE. Let me know if that worked for you. If not, could you, please, tell me what version of ORE you are running (1.0 or 1.1), how did you create the DB user you are connecting to in ORE and whether this is a fresh install or an upgrade from 1.0. Did you have Beta version installed on the same system?
    Thanks,
    Denis

  • HR Demo Script and Login

    What name and password should I use for the HR demo? I found the script but it does not contain the name and password. WHich RPD should I be selecting?
    Thanks

    The passwords are all contained in the Content Guide located on the desktop of the BI Image.
    Administrator or ESMITH or HROTH should work. The rpd/webcats are BAAD or OracleBIAnalyticApps/EntBusAnalytics

  • Can any one share the Oracle Reports 6i Developer demo table scripts?

    Hi,
    I have to learn the Report 6i for my office project, I have installed the report 6i developer but I could not get the Demo CD, can any one share the Scripts for table (viz. Stock, stock_history , indcat ) creation and also the insert script for data population or provide the URLs where I can find the same.
    thanking you in advance.
    regards,
    Sham.

    Hi Denis,
    Thanks for the reply, I have the setup for forms and reports 6i, what i was looking is the script to create the tables used in the
    Oracle® Reports Developer
    Building Reports
    Release 6i
    January, 2000
    Part No. A73172-01
    the table names are stocks, indcat etc, generally these demo script come along with the demo CD provided by oracle as i don't have the CD i am looking for these table creation script. if you have these scripts kindly share the same with me.
    regards,
    Sham.

  • Sample scripts for streams setting source 9i-- destination10g

    I need to set up streams across 9i to 10g (both in windows OS)
    tried out sucessfully setting up across 9i-->9i(using OEM - using sample by oracle ) and
    10g-->10g(http://www.oracle.com/technology/obe/obe10gdb/integrate/streams/streams.htm#t6 which uses scripts)
    I need to implement streams from 9i to 10g. the problem is:
    packages used in 10g demo are not available in 9i.
    Do we have a sample script to implement streams across 9i-->10g?

    thanks Arvind, that would be really great.Me trying to have a demo so trying the demo scripts on dept table.Me trying since a month.I have moved my 9.2.0.1.0 source to 9.2.0.7 then applied the patchset 3 for 9.2.0.7 to fix the bug as i got to know there was a bug with streams across 9i,10g
    bug no:4285404 - PROPROGATION FROM 9.2 AND 10.1 TO 10.2
    Note: Executed the same script, with 4.2.2 and not 4.2.1(it is optional) ,as when i tried to export then import and then when i tried to delete supplimental log group from target it said "trying to drop non existant group"
    also when i query capture process it is showing LCRs getting queued,propogation also showing data is propagated from source, apply doesnt have errors but showing 0 for transactions assigned as well as applied.
    looks like destination queue not getting populated though at source propagation is sucessful
    Please find
    1.scripts
    2.init parameters of 9i (source)
    3. init parameters of 10g (target)
    SCRIPT:
    2.1 Create Streams Administrator :
    connect SYS/password as SYSDBA
    create user STRMADMIN identified by STRMADMIN;
    2.2 Grant the necessary privileges to the Streams Administrator :
    GRANT CONNECT, RESOURCE, AQ_ADMINISTRATOR_ROLE to STRMADMIN;
    GRANT SELECT ANY DICTIONARY TO STRMADMIN;
    GRANT EXECUTE ON DBMS_AQ TO STRMADMIN;
    GRANT EXECUTE ON DBMS_AQADM TO STRMADMIN;
    GRANT EXECUTE ON DBMS_FLASHBACK TO STRMADMIN;
    GRANT EXECUTE ON DBMS_STREAMS_ADM TO STRMADMIN;
    GRANT EXECUTE ON DBMS_CAPTURE_ADM TO STRMADMIN;
    GRANT EXECUTE ON DBMS_APPLY_ADM TO STRMADMIN;
    GRANT EXECUTE ON DBMS_RULE_ADM TO STRMADMIN;
    GRANT EXECUTE ON DBMS_PROPAGATION_ADM TO STRMADMIN;
    BEGIN
    DBMS_AQADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => 'ENQUEUE_ANY',
    grantee => 'STRMADMIN',
    admin_option => FALSE);
    END;
    BEGIN
    DBMS_AQADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => 'DEQUEUE_ANY',
    grantee => 'STRMADMIN',
    admin_option => FALSE);
    END;
    BEGIN
    DBMS_AQADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => 'MANAGE_ANY',
    grantee => 'STRMADMIN',
    admin_option => TRUE);
    END;
    BEGIN
    DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => DBMS_RULE_ADM.CREATE_EVALUATION_CONTEXT_OBJ,
    grantee => 'STRMADMIN',
    grant_option => TRUE);
    DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => DBMS_RULE_ADM.CREATE_RULE_SET_OBJ,
    grantee => 'STRMADMIN',
    grant_option => TRUE);
    DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => DBMS_RULE_ADM.CREATE_RULE_OBJ,
    grantee => 'STRMADMIN',
    grant_option => TRUE);
    END;
    BEGIN
    DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => DBMS_RULE_ADM.CREATE_ANY_RULE_SET,
    grantee => 'STRMADMIN',
    grant_option => TRUE);
    DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => DBMS_RULE_ADM.ALTER_ANY_RULE_SET,
    grantee => 'STRMADMIN',
    grant_option => TRUE);
    DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => DBMS_RULE_ADM.EXECUTE_ANY_RULE_SET,
    grantee => 'STRMADMIN',
    grant_option => TRUE);
    DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => DBMS_RULE_ADM.CREATE_ANY_RULE,
    grantee => 'STRMADMIN',
    grant_option => TRUE);
    DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => DBMS_RULE_ADM.ALTER_ANY_RULE,
    grantee => 'STRMADMIN',
    grant_option => TRUE);
    DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => DBMS_RULE_ADM.EXECUTE_ANY_RULE,
    grantee => 'STRMADMIN',
    grant_option => TRUE);
    END;
    BEGIN
    DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    privilege => DBMS_RULE_ADM.EXECUTE_ANY_EVALUATION_CONTEXT,
    grantee => 'STRMADMIN',
    grant_option => TRUE);
    END;
    2.3 Create streams queue :
    connect STRMADMIN/STRMADMIN
    BEGIN
    DBMS_STREAMS_ADM.SET_UP_QUEUE(
    queue_table => 'STREAMS_QUEUE_TABLE',
    queue_name => 'STREAMS_QUEUE',
    queue_user => 'STRMADMIN');
    END;
    2.4 Add apply rules for the table at the destination database :
    BEGIN
    DBMS_STREAMS_ADM.ADD_TABLE_RULES(
    table_name => 'SCOTT.DEPT',
    streams_type => 'APPLY',
    streams_name => 'STRMADMIN_APPLY',
    queue_name => 'STRMADMIN.STREAMS_QUEUE',
    include_dml => true,
    include_ddl => true,
    source_database => 'str1');
    END;
    2.5 Specify an 'APPLY USER' at the destination database:
    This is the user who would apply all DML statements and DDL statements.
    The user specified in the APPLY_USER parameter must have the necessary
    privileges to perform DML and DDL changes on the apply objects.
    BEGIN
    DBMS_APPLY_ADM.ALTER_APPLY(
    apply_name => 'STRMADMIN_APPLY',
    apply_user => 'SCOTT');
    END;
    2.6 If you do not wish the apply process to abort for every error that it
    encounters, you can set the below paramter.
    The default value is 'Y' which means that apply process would abort due to
    any error.
    When set to 'N', the apply process will not abort for any error that it
    encounters, but the error details would be logged in DBA_APPLY_ERROR.
    BEGIN
    DBMS_APPLY_ADM.SET_PARAMETER(
    apply_name => 'STRMADMIN_APPLY',
    parameter => 'DISABLE_ON_ERROR',
    value => 'N' );
    END;
    2.7 Start the Apply process :
    BEGIN
    DBMS_APPLY_ADM.START_APPLY(apply_name => 'STRMADMIN_APPLY');
    END;
    Section 3
    Steps to be carried out at the Source Database (V920.IDC.ORACLE.COM)
    3.1 Move LogMiner tables from SYSTEM tablespace:
    By default, all LogMiner tables are created in the SYSTEM tablespace.
    It is a good practice to create an alternate tablespace for the LogMiner
    tables.
    CREATE TABLESPACE LOGMNRTS DATAFILE 'logmnrts.dbf' SIZE 25M AUTOEXTEND ON
    MAXSIZE UNLIMITED;
    BEGIN
    DBMS_LOGMNR_D.SET_TABLESPACE('LOGMNRTS');
    END;
    3.2 Turn on supplemental logging for DEPT table :
    connect SYS/password as SYSDBA
    ALTER TABLE scott.dept ADD SUPPLEMENTAL LOG GROUP dept_pk
    (deptno) ALWAYS;
    3.3 Create Streams Administrator and Grant the necessary privileges :
    Repeat steps 2.1 and 2.2 for creating the user and granting the required
    privileges.
    3.4 Create a database link to the destination database :
    connect STRMADMIN/STRMADMIN
    CREATE DATABASE LINK str2 connect to
    STRMADMIN identified by STRMADMIN using 'str2' ;
    //db link working fine.I tested it
    3.5 Create streams queue:
    BEGIN
    DBMS_STREAMS_ADM.SET_UP_QUEUE(
    queue_name => 'STREAMS_QUEUE',
    queue_table =>'STREAMS_QUEUE_TABLE',
    queue_user => 'STRMADMIN');
    END;
    3.6 Add capture rules for the table at the source database:
    BEGIN
    DBMS_STREAMS_ADM.ADD_TABLE_RULES(
    table_name => 'SCOTT.DEPT',
    streams_type => 'CAPTURE',
    streams_name => 'STRMADMIN_CAPTURE',
    queue_name => 'STRMADMIN.STREAMS_QUEUE',
    include_dml => true,
    include_ddl => true,
    source_database => 'str1');
    END;
    3.7 Add propagation rules for the table at the source database.
    This step will also create a propagation job to the destination database.
    BEGIN
    DBMS_STREAMS_ADM.ADD_TABLE_PROPAGATION_RULES(
    table_name => 'SCOTT.DEPT',
    streams_name => 'STRMADMIN_PROPAGATE',
    source_queue_name => 'STRMADMIN.STREAMS_QUEUE',
    destination_queue_name => 'STRMADMIN.STREAMS_QUEUE@str2,
    include_dml => true,
    include_ddl => true,
    source_database => 'str1');
    END;
    Section 4
    Export, import and instantiation of tables from Source to Destination Database
    4.1 If the objects are not present in the destination database, perform an
    export of the objects from the source database and import them into the
    destination database
    Export from the Source Database:
    Specify the OBJECT_CONSISTENT=Y clause on the export command.
    By doing this, an export is performed that is consistent for each
    individual object at a particular system change number (SCN).
    exp [email protected] TABLES=SCOTT.DEPT FILE=tables.dmp
    GRANTS=Y ROWS=Y LOG=exportTables.log OBJECT_CONSISTENT=Y
    INDEXES=Y STATISTICS = NONE
    Import into the Destination Database:
    Specify STREAMS_INSTANTIATION=Y clause in the import command.
    By doing this, the streams metadata is updated with the appropriate
    information in the destination database corresponding to the SCN that
    is recorded in the export file.
    imp [email protected] FULL=Y CONSTRAINTS=Y
    FILE=tables.dmp IGNORE=Y GRANTS=Y ROWS=Y COMMIT=Y LOG=importTables.log
    STREAMS_INSTANTIATION=Y
    4.2 If the objects are already present in the desination database, there are
    2 ways of instanitating the objects at the destination site.
    1. By means of Metadata-only export/import :
    Export from the Source Database by specifying ROWS=N
    exp USERID=SYSTEM@str1TABLES=SCOTT.DEPT FILE=tables.dmp
    ROWS=N LOG=exportTables.log OBJECT_CONSISTENT=Y
    Import into the destination database using IGNORE=Y
    imp USERID=SYSTEM@str2FULL=Y FILE=tables.dmp IGNORE=Y
    LOG=importTables.log STREAMS_INSTANTIATION=Y
    2. By Manaually instantiating the objects
    Get the Instantiation SCN at the source database:
    connect STRMADMIN/STRMADMIN@source
    set serveroutput on
    DECLARE
    iscn NUMBER; -- Variable to hold instantiation SCN value
    BEGIN
    iscn := DBMS_FLASHBACK.GET_SYSTEM_CHANGE_NUMBER();
    DBMS_OUTPUT.PUT_LINE ('Instantiation SCN is: ' || iscn);
    END;
    Instantiate the objects at the destination database with this SCN value.
    The SET_TABLE_INSTANTIATION_SCN procedure controls which LCRs for a table
    are to be applied by the apply process.
    If the commit SCN of an LCR from the source database is less than or
    equal to this instantiation SCN , then the apply process discards the LCR.
    Else, the apply process applies the LCR.
    connect STRMADMIN/STRMADMIN@destination
    BEGIN
    DBMS_APPLY_ADM.SET_TABLE_INSTANTIATION_SCN(
    source_object_name => 'SCOTT.DEPT',
    source_database_name => 'str1',
    instantiation_scn => &iscn);
    END;
    Enter value for iscn:
    <Provide the value of SCN that you got from the source database>
    Finally start the Capture Process:
    connect STRMADMIN/STRMADMIN@source
    BEGIN
    DBMS_CAPTURE_ADM.START_CAPTURE(capture_name => 'STRMADMIN_CAPTURE');
    END;
    INIT.ora at 9i
    # Copyright (c) 1991, 2001, 2002 by Oracle Corporation
    # Archive
    log_archive_dest_1='LOCATION=D:\oracle\oradata\str1\archive'
    log_archive_format=%t_%s.dbf
    log_archive_start=true
    # Cache and I/O
    db_block_size=8192
    db_cache_size=25165824
    db_file_multiblock_read_count=16
    # Cursors and Library Cache
    open_cursors=300
    # Database Identification
    db_domain=""
    db_name=str1
    # Diagnostics and Statistics
    background_dump_dest=D:\oracle\admin\str1\bdump
    core_dump_dest=D:\oracle\admin\str1\cdump
    timed_statistics=TRUE
    user_dump_dest=D:\oracle\admin\str1\udump
    # File Configuration
    control_files=("D:\oracle\oradata\str1\CONTROL01.CTL", "D:\oracle\oradata\str1\CONTROL02.CTL", "D:\oracle\oradata\str1\CONTROL03.CTL")
    # Instance Identification
    instance_name=str1
    # Job Queues
    job_queue_processes=10
    # MTS
    dispatchers="(PROTOCOL=TCP) (SERVICE=str1XDB)"
    # Miscellaneous
    aq_tm_processes=1
    compatible=9.2.0.0.0
    # Optimizer
    hash_join_enabled=TRUE
    query_rewrite_enabled=FALSE
    star_transformation_enabled=FALSE
    # Pools
    java_pool_size=33554432
    large_pool_size=8388608
    shared_pool_size=100663296
    # Processes and Sessions
    processes=150
    # Redo Log and Recovery
    fast_start_mttr_target=300
    # Security and Auditing
    remote_login_passwordfile=EXCLUSIVE
    # Sort, Hash Joins, Bitmap Indexes
    pga_aggregate_target=25165824
    sort_area_size=524288
    # System Managed Undo and Rollback Segments
    undo_management=AUTO
    undo_retention=10800
    undo_tablespace=UNDOTBS1
    firstspare_parameter=50
    jobqueue_interval=1
    aq_tm_processes=1
    transaction_auditing=TRUE
    global_names=TRUE
    logmnr_max_persistent_sessions=5
    log_parallelism=1
    parallel_max_servers=2
    open_links=5
    INIT>ora at 10g (target)
    # Copyright (c) 1991, 2001, 2002 by Oracle Corporation
    # Archive
    log_archive_format=ARC%S_%R.%T
    # Cache and I/O
    db_block_size=8192
    db_cache_size=25165824
    db_file_multiblock_read_count=16
    # Cursors and Library Cache
    open_cursors=300
    # Database Identification
    db_domain=""
    db_name=str2
    # Diagnostics and Statistics
    background_dump_dest=D:\oracle\product\10.1.0\admin\str2\bdump
    core_dump_dest=D:\oracle\product\10.1.0\admin\str2\cdump
    user_dump_dest=D:\oracle\product\10.1.0\admin\str2\udump
    # File Configuration
    control_files=("D:\oracle\product\10.1.0\oradata\str2\control01.ctl", "D:\oracle\product\10.1.0\oradata\str2\control02.ctl", "D:\oracle\product\10.1.0\oradata\str2\control03.ctl")
    db_recovery_file_dest=D:\oracle\product\10.1.0\flash_recovery_area
    db_recovery_file_dest_size=2147483648
    # Job Queues
    job_queue_processes=10
    # Miscellaneous
    compatible=10.1.0.2.0
    # Pools
    java_pool_size=50331648
    large_pool_size=8388608
    shared_pool_size=83886080
    # Processes and Sessions
    processes=150
    sessions=4
    # Security and Auditing
    remote_login_passwordfile=EXCLUSIVE
    # Shared Server
    dispatchers="(PROTOCOL=TCP) (SERVICE=str2XDB)"
    # Sort, Hash Joins, Bitmap Indexes
    pga_aggregate_target=25165824
    sort_area_size=65536
    # System Managed Undo and Rollback Segments
    undo_management=AUTO
    undo_tablespace=UNDOTBS1
    sga_target=600000000
    parallel_max_servers=2
    global_names=TRUE
    open_links=4
    logmnr_max_persistent_sessions=4
    REMOTE_ARCHIVE_ENABLE=TRUE
    streams_pool_size=300000000
    undo_retention=1000
    tahnks a lot...

  • Create Oracle OCI JDBCConnectionPool via silent script

    Hi there,
    I'm currently trying to create a JDBCConnectionPool via silent script that uses the Oracle OCI thick driver. My silent script looks like this:
    create JDBCConnectionPool "MyPool" as jdbcpool;
    set jdbcpool.DbmsHost "myhost";
    set jdbcpool.DbmsPort "1521";
    set jdbcpool.Password "user";
    set jdbcpool.URL "jdbc:oracle:oci:@//myhost:1521/mysid";
    set jdbcpool.DriverName "oracle.jdbc.pool.OracleDataSource";
    set jdbcpool.Properties "user=user;portNumber=1521;SID=mysid;serverName=myhost;dll=ocijdbc9;protocol=oci";
    The log of the silent script says everything was set successfully. Unfortunately when I take a look at the "Connection Pools" at the GUI admin console, the URL for the jdbcpool has been changed to "jdbc:bea:oracle:///myhost:1521" !
    I'm using WebLogic 8.1SP3 with Oracle 9.2.0.5!
    Can anyone help me with this? Any hint/help is appreciated!
    - raze

    Hi Joe,
    I've done a demo script that produces the described "error". Would be great if you (or anybody else) could check if the same behaviour occurs.
    [... start script ...]
    read template from "/opt/bea/8.1.SP3/user_home/common/templates/domains/wls.jar";
    create Cluster "MyCluster" as c1;
    set c1.ClusterAddress "127.0.0.1:59251";
    set c1.MulticastAddress "237.0.0.1";
    set c1.MulticastPort "59251";
    find Server "myserver" as s1;
    set s1.Name "AdminServer";
    set s1.ListenAddress "";
    set s1.ListenPort "59261";
    set s1.HostnameVerificationIgnored "true";
    set s1.SSL.Enabled "true";
    set s1.SSL.ListenPort "59262";
    create Server "ManagedServer" as n1;
    set n1.ListenAddress "";
    set n1.ListenPort "59251";
    set n1.Cluster "MyCluster";
    set n1.HostnameVerificationIgnored "true";
    set n1.Machine "MyMachine";
    set n1.SSL.Enabled "false";
    create UnixMachine "MyMachine" as machine1;
    set machine1.NodeManager.ListenPort "59255";
    set machine1.NodeManager.Name "MyMachine";
    create JDBCConnectionPool "MyPool" as jdbcpool;
    set jdbcpool.DbmsName "user";
    set jdbcpool.Password "user";
    set jdbcpool.Properties "user=user;portNumber=1521;SID=db-sid;serverName=db-host;dll=ocijdbc9;protocol=oci";
    set jdbcpool.URL "jdbc:oracle:oci:@//db-host:1521/db-sid";
    set jdbcpool.DriverName "oracle.jdbc.pool.OracleDataSource";
    assign JDBCConnectionPool "*" to target "MyCluster";
    find User "weblogic" as u1;
    set u1.password "weblogic";
    set OverwriteDomain "true";
    write domain to "/home/user/BeaDomain";
    close template;
    [... end script ...]
    Setting the URL succeeds as the log says:
    [runScript] com.bea.plateng.domain.script.ScriptExecutor - set jdbcpool attribute URL to "jdbc:oracle:oci:@//db-host:1521/db-sid"
    [runScript] com.bea.plateng.domain.script.ScriptExecutor - succeed: set jdbcpool attribute URL to "jdbc:oracle:oci:@//db-host:1521/db-sid"
    But nevertheless the "config.xml" of the created domain contains the following entry:
    <JDBCConnectionPool Name="MyPool" Targets="MyCluster"
    DriverName="oracle.jdbc.pool.OracleDataSource"
    Password="{3DES}Zlf46kqr6QE=" Properties="" URL="jdbc:bea:oracle:///db-host:1521"/>
    Thus I assume when writing the domain, the URL gets changed for some reason. I also tried to increase the log level by executing the script with the options "-log_priority=debug -silent_priority=debug", but that did not help to find out why the URL got changed.
    Is there maybe someone already using the Oracle OCI thick driver successfully and could post/email me the used silent script?
    Greetings,
    raze

  • Forms90-demo not working on client, what should be done? urgent please

    I have installed forms90 demo & it is working fine on the middle tier, but when invoked from the client browser the applet just stops initializing & does not start.
    Could any one throw light as what action will make the demo work on client machine

    The problem is probablty due to the Signed JAR files the demo uses - when you install the Demo, these certificates are imported onto that machines JInitiator automatically (that's why the install prompts you for the location of JInit.)
    To solve your problem of running on another machine I need to make a slight change to the Demo scripts and template files but for now you can use the following W/A
    Create a simple form - say one button and no logon call it test.fmx.
    Create a config for that form in the Forms90demo.cfg like this:
    [test]
    form=test.fmx
    archive_jini=f90all_jinit.jar
    Run that config using the url
    http://machine:8888/forms90demo/f90servlet?config=test
    Exit that Form - then in the SAME Browser Window run the Demos
    http://machine:8888/forms90demo/demo90.html
    When you run one of the demos a Dialog should pop up asking you to trust a certificate. Trust always and then that should solve the problem.
    In future you can just run the demos directly - no need to run the test app first.

  • Jabber for iPhone: Jabber IM: Instant WebEx Meeting not working

    Team,       
    I used this before many times in my demo script and even documented it here:
    https://supportforums.cisco.com/docs/DOC-26327
    The last time I had this work for me was months ago, and an iOS phone update on the phone as well as both Jabber IM app and WebEx App updates on iPhone have occurred.  I have the latest of them all.
    I just tried this morning, and when I am chatting with a contact within Jabber IM client (which is WebEx Messenger SaaS for my IM/P), I can click his/her Contact Card (upper Right) and get a screen that has a link to “INSTANT MEEING”
    When I click it, it launches Webex, but spins for a few seconds and then just shows me my current WebEx schedule.  A meeting is not started and sent to the person I am chatting with.
    This is broken as far as I can tell. Others in my organization can successfully use this capability.
    I uninstalled and reinstalled BOTH Jabber IM for iPhone and Webex,  Logged into both and tried again.  Still fails trying to start an Instant Meeting
    here is the log (BOLD with Spaces above and below suspicious messages...)
      Anyone else notice this? 
    05/14/13 11:25:50.454 [369:2311] Info--WebExAppDelegate::init, model iPhone 6.1.3
    05/14/13 11:25:50.527 [369:2311] Info--i3DKit: RendererGL[0]::initGL2: begin, with sharedRenderer = 0
    05/14/13 11:25:50.553 [369:2311] Info--i3DKit: RendererGL[1c5b7d80]::initGL2: end, succeeded
    05/14/13 11:25:50.669 [369:2311] Performance(0ms)--WebExAppDelegate::applicationDidFinishLaunching version 4.0, model 0
    05/14/13 11:25:50.795 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:25:50.796 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 1, keepalive = 1
    05/14/13 11:25:50.803 [369:2311] Info--CFURLConnection: 1c5efcf0, ::Start, Post: 0, timeout: 0
    05/14/13 11:25:50.836 [369:2311] Info--CFURLConnection: 1c5f4870, ::Start, Post: 0, timeout: 0
    05/14/13 11:25:50.850 [369:2311] Performance(181ms)--initializeMainUI Done
    05/14/13 11:25:50.850 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:0
    05/14/13 11:25:53.091 [369:2311] Info--CFURLConnection: 1c5efcf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:25:53.127 [369:2311] Info--CFURLConnection: 1c5f4870, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:25:54.833 [369:2311] Info--CFURLConnection: 1c5bcda0, ::Start, Post: 0, timeout: 0
    05/14/13 11:25:55.268 [369:2311] Info--CFURLConnection: 1c5bcda0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:10.900 [369:2311] Performance(20051ms)--check the sites of email begin!
    05/14/13 11:26:10.901 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4026
    05/14/13 11:26:10.906 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4026, excuted APIType:3
    05/14/13 11:26:10.916 [369:2311] Info--CFURLConnection: 1c56a420, ::Start: https://glapi.webex.com/gla/GLAService, Post: 1c557680, timeout: 0
    05/14/13 11:26:10.925 [369:2311] Info--CFURLConnection: 1c5e5ce0, ::Start: https://glapi-bts.webex.com/gla/GLAService, Post: 1de1fbd0, timeout: 0
    05/14/13 11:26:10.929 [369:2311] Info--CFURLConnection: 1c563780, ::Start: https://glapi.webex.com.cn/gla/GLAService, Post: 1c545e50, timeout: 10
    05/14/13 11:26:13.077 [369:2311] Info--CFURLConnection: 1c56a420, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:13.079 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4026
    05/14/13 11:26:13.082 [369:2311] Info--GLApiRequest::OnParseCheckSSO, sso site:0, no SSO sites:2
    05/14/13 11:26:13.082 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi.webex.com, Command-4026 is finished!
    05/14/13 11:26:13.082 [369:2311] Info--GLApisCtrl::OnCheckUserFinished
    05/14/13 11:26:13.166 [369:2311] Info--CFURLConnection: 1c5e5ce0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:13.166 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4026
    05/14/13 11:26:13.168 [369:2311] Info--GLApiRequest::OnParseCheckSSO, sso site:1, no SSO sites:0
    05/14/13 11:26:13.168 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi-bts.webex.com, Command-4026 is finished!
    05/14/13 11:26:13.168 [369:2311] Info--GLApisCtrl::OnCheckUserFinished
    05/14/13 11:26:13.808 [369:2311] Info--CFURLConnection: 1c563780, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:13.808 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4026
    05/14/13 11:26:13.809 [369:2311] Info--GLApiRequest::OnParseCheckSSO, sso site:0, no SSO sites:0
    05/14/13 11:26:13.809 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi.webex.com.cn, Command-4026 is finished!
    05/14/13 11:26:13.809 [369:2311] Info--GLApisCtrl::OnCheckUserFinished
    05/14/13 11:26:13.809 [369:2311] Info--APICtrlMgr::GetEvent, inCommandID:4026, failed:0
    05/14/13 11:26:13.810 [369:2311] Performance(2909ms)--check the sites of email end!
    05/14/13 11:26:21.251 [369:2311] Performance(7441ms)--Search users begin!
    05/14/13 11:26:21.251 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4009
    05/14/13 11:26:21.252 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4009, excuted APIType:3
    05/14/13 11:26:21.254 [369:2311] Info--CFURLConnection: 1f88f590, ::Start: https://glapi.webex.com/gla/GLAService, Post: 1f88f570, timeout: 0
    05/14/13 11:26:21.258 [369:2311] Info--CFURLConnection: 1f8c1f20, ::Start: https://glapi-bts.webex.com/gla/GLAService, Post: 1f8b3c60, timeout: 0
    05/14/13 11:26:21.262 [369:2311] Info--CFURLConnection: 1deb35d0, ::Start: https://glapi.webex.com.cn/gla/GLAService, Post: 1deb35b0, timeout: 10
    05/14/13 11:26:23.069 [369:2311] Info--CFURLConnection: 1f8c1f20, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:23.071 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4009
    05/14/13 11:26:23.072 [369:2311] Info--GLApiRequest::CheckResponseData, GLA:glapi-bts.webex.com, Cmd:4009, ExceptionID:500105, Reason:Sign in failed. User name or password is invalid or the user is inactive or locked
    05/14/13 11:26:23.073 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi-bts.webex.com, Command-4009 is finished!
    05/14/13 11:26:23.073 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished
    05/14/13 11:26:23.439 [369:2311] Info--CFURLConnection: 1deb35d0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:23.440 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4009
    05/14/13 11:26:23.441 [369:2311] Info--GLApiRequest::CheckResponseData, GLA:glapi.webex.com.cn, Cmd:4009, ExceptionID:500105, Reason:Sign in failed. User name or password is invalid or the user is inactive or locked
    05/14/13 11:26:23.441 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi.webex.com.cn, Command-4009 is finished!
    05/14/13 11:26:23.441 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished
    05/14/13 11:26:23.464 [369:2311] Info--CFURLConnection: 1f88f590, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:23.464 [369:2311] Info--GLApiRequest::CheckResponseData, CMD:4009
    05/14/13 11:26:23.465 [369:2311] Info--GLApiRequest::OnRequestFinish, GLA:glapi.webex.com, Command-4009 is finished!
    05/14/13 11:26:23.465 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished
    05/14/13 11:26:23.466 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished, all requests finished!
    05/14/13 11:26:23.466 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished, glapi.webex.com have 1 users been found!
    05/14/13 11:26:23.466 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished, glapi-bts.webex.com have 0 users been found!
    05/14/13 11:26:23.466 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished, glapi.webex.com.cn have 0 users been found!
    05/14/13 11:26:23.466 [369:2311] Info--GLApisCtrl::OnGetUsersByEmailPWDSitesModeFisnished, 1 users been found!
    05/14/13 11:26:23.466 [369:2311] Info--APICtrlMgr::GetEvent, inCommandID:4009, failed:0
    05/14/13 11:26:23.466 [369:2311] Performance(2215ms)--Search users Done!
    05/14/13 11:26:26.613 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4002
    05/14/13 11:26:26.615 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4002, excuted APIType:1
    05/14/13 11:26:26.615 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4002
    05/14/13 11:26:26.615 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4033
    05/14/13 11:26:26.616 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4033, excuted APIType:2
    05/14/13 11:26:26.616 [369:2311] Info--URLAPICtrl:OnCommand, inCommandID:4033
    05/14/13 11:26:26.616 [369:2311] Info--URLAPICtrl::OnGetFeatureConfig
    05/14/13 11:26:26.616 [369:2311] Info--CFURLConnection: 1f8a4e30, ::Start: https://cdw.webex.com/cdw/featureconfig.php?AT=GC&TYPE=PT, Post: 0, timeout: 0
    05/14/13 11:26:27.760 [369:2311] Info--CFURLConnection: 1f8a4e30, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:27.762 [369:2311] Info--URLAPICtrl:OnParseResponse, inCommandID:4033
    05/14/13 11:26:27.762 [369:2311] Info--URLAPICtrl::OnParseGetFeatureConfig
    05/14/13 11:26:27.762 [369:2311] Info--URLAPICtrl::CheckResponseData, CMD:4033
    05/14/13 11:26:27.763 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4030
    05/14/13 11:26:27.764 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4030, excuted APIType:2
    05/14/13 11:26:27.764 [369:2311] Info--URLAPICtrl:OnCommand, inCommandID:4030
    05/14/13 11:26:27.764 [369:2311] Info--URLAPICtrl::OnGetEncryptedPWD, userName:steve.distefano
    05/14/13 11:26:27.764 [369:2311] Info--URLAPICtrl::OnGetEncryptedPWD, Meet already have encrypted password!
    05/14/13 11:26:27.765 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4102
    05/14/13 11:26:27.766 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4102, excuted APIType:2
    05/14/13 11:26:27.766 [369:2311] Info--URLAPICtrl:OnCommand, inCommandID:4102
    05/14/13 11:26:27.766 [369:2311] Info--CFURLConnection: 1f8b9870, ::Start: https://cdw.webex.com/cdw/user.php?AT=GetAuthInfo&UN=steve%2Edistefano&EPW=MSU1YjdjNmU4YzFlY2RmOTQ5NzcxNzdmYTI2NmRmNmVkN2M1NWM2ZTEzZjY3OWEwOGMwZGQ3YmI0OWI2ZjkxNzUxNzgwMzFhMjEzZDQ3NDEyZWE5YmY3ODNkYjE5MWZhM2U3NDMzZjQ0ZDU0MGY3OTEzMWE3YTdmMGFiN2JhOWFlODNlZTgzODhh&isUTF8=1, Post: 0, timeout: 0
    05/14/13 11:26:28.641 [369:2311] Info--CFURLConnection: 1f8b9870, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:28.642 [369:2311] Info--URLAPICtrl:OnParseResponse, inCommandID:4102
    05/14/13 11:26:28.642 [369:2311] Info--URLAPICtrl::OnParseGetToken
    05/14/13 11:26:28.642 [369:2311] Info--URLAPICtrl::CheckResponseData, CMD:4102
    05/14/13 11:26:28.643 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4028
    05/14/13 11:26:28.644 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4028, excuted APIType:1
    05/14/13 11:26:28.644 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4028
    05/14/13 11:26:28.644 [369:2311] Info--XMLAPICtrl::OnInitUserInfo, userName:steve.distefano
    05/14/13 11:26:28.646 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:26:28.646 [369:2311] Info--CFURLConnection: 1f8be0e0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8bdfa0, timeout: 0
    05/14/13 11:26:30.251 [369:2311] Info--CFURLConnection: 1f8be0e0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:30.252 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4028
    05/14/13 11:26:30.253 [369:2311] Info--XMLAPICtrl::OnParseInitUserInfo
    05/14/13 11:26:30.253 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4028
    05/14/13 11:26:30.289 [369:2311] Info--HandleEvent: 6, 1, 0
    05/14/13 11:26:30.368 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:26:30.369 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:26:30.373 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2997
    05/14/13 11:26:30.376 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:26:30.376 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:26:30.409 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:26:30.409 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:26:30.409 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:26:30.409 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:26:30.411 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:26:30.412 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8f7cd0, timeout: 0
    05/14/13 11:26:31.348 [369:2311] Info--URLConnection: 1f8e9080, :didFinishLoading
    05/14/13 11:26:31.349 [369:2311] Info--QsAgent: request 3 return 643 bytes data:
    <?xml version="1.0" encoding="UTF-8"?>
    <serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service" xmlns:com="http://www.webex.com/schemas/2002/06/common" xmlns:ep="http://www.webex.com/schemas/2002/06/service/ep" xmlns:meet="http://www.webex.
    05/14/13 11:26:31.352 [369:2311] Info--QsAgent: current user's site id = 475259
    05/14/13 11:26:31.352 [369:2311] Info--QsAgent: current user's user id = 496095747
    05/14/13 11:26:31.439 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:31.439 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:26:31.439 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:26:31.443 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:26:31.444 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:26:31.444 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:26:31.445 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:26:31.446 [369:2311] Performance(7980ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:26:31.701 [369:2311] Info--URLConnection: 1f8e6460, :didFinishLoading
    05/14/13 11:26:31.702 [369:2311] Info--QsAgent: request 4 return 19986 bytes data:
    <?xml version="1.0" encoding="UTF-8"?>
    <serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service" xmlns:com="http://www.webex.com/schemas/2002/06/common" xmlns:ns1="http://www.webex.com/schemas/2002/06/service/site" xmlns:event="http://www.we
    05/14/13 11:26:31.726 [369:2311] Info--QsAgent: call site.GetSite return ns1:iPhoneDusting true
    05/14/13 11:26:32.265 [369:2311] Info--URLConnection: 1f8e9a60, :didFinishLoading
    05/14/13 11:26:32.266 [369:2311] Info--QsAgent: request 7 return 173 bytes data:
    <?xml version="1.0" encoding="UTF-8"?>
    <GetCommonData><Status>SUCCESS</Status><CommonDataList><SupportiPhoneDusting>1</SupportiPhoneDusting></CommonDataList></GetCommonData>
    05/14/13 11:26:32.267 [369:2311] Info--QsAgent: GetJabberAccout for user "steve.distefano"
    05/14/13 11:26:33.085 [369:2311] Info--URLConnection: 1c54fac0, :didFinishLoading
    05/14/13 11:26:33.085 [369:2311] Info--QsAgent: request 12 return 280 bytes data:
    <?xml version="1.0" encoding="UTF-8"?>
    <GetJabberAccount><Result>Success</Result><Information><Name>[email protected]</Name><Password>*nFn)7-I</Password><JabberBoshUrl>https://im1.ciscowebex.com/isj1</JabberBoshUrl></Inform
    05/14/13 11:26:33.696 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:26:33.828 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:26:33.841 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:26:33.842 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:26:33.842 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:26:33.842 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:26:42.135 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:26:42.136 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:26:42.136 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:26:42.136 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:26:42.136 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:26:42.136 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:26:42.774 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:26:42.774 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:26:42.775 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2985
    05/14/13 11:26:42.775 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:26:42.775 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:26:42.775 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:26:42.776 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:26:42.777 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:26:42.777 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:26:42.777 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:26:42.778 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8f6ee0, timeout: 0
    05/14/13 11:26:43.797 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:43.798 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:26:43.798 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:26:43.803 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:26:43.804 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:26:43.804 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:26:43.804 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:26:43.804 [369:2311] Performance(12359ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:26:47.962 [369:2311] Info--CFURLConnection: 1f8b3750, ::Start, Post: 0, timeout: 0
    05/14/13 11:26:50.323 [369:2311] Info--CFURLConnection: 1f8b3750, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:26:54.013 [369:2311] Info--CFURLConnection: 1f88efa0, ::Start, Post: 0, timeout: 0
    05/14/13 11:26:57.125 [369:2311] Info--CFURLConnection: 1f88efa0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:27:00.862 [369:2311] Info--CFURLConnection: 1c544480, ::Start, Post: 0, timeout: 0
    05/14/13 11:27:03.106 [369:2311] Info--CFURLConnection: 1c544480, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:27:05.432 [369:2311] Info--CFURLConnection: 1c5e3290, ::Start, Post: 0, timeout: 0
    05/14/13 11:27:05.798 [369:2311] Info--CFURLConnection: 1c5e3290, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:27:27.531 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:27:27.541 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:27:27.551 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:27:27.552 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:27:27.552 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:27:27.552 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:27:55.715 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:27:55.716 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:27:55.717 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:27:55.718 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:27:55.718 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:27:55.718 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:27:56.264 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:27:56.264 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:27:56.265 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2911
    05/14/13 11:27:56.266 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:27:56.266 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:27:56.267 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:27:56.267 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:27:56.268 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:27:56.268 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:27:56.268 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:27:56.269 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8e4cf0, timeout: 0
    05/14/13 11:27:57.156 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:27:57.156 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:27:57.157 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:27:57.160 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:27:57.160 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:27:57.160 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:27:57.160 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:27:57.160 [369:2311] Performance(73356ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:28:03.649 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:28:03.699 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:28:03.709 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:28:03.709 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:28:03.709 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:28:03.709 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:28:08.549 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:28:08.549 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:28:08.551 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:28:08.551 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:28:08.551 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:28:08.551 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:28:09.255 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:28:09.255 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:28:09.256 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2898
    05/14/13 11:28:09.256 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:28:09.256 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:28:09.256 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:28:09.257 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:28:09.258 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:28:09.258 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:28:09.258 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:28:09.259 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f887e70, timeout: 0
    05/14/13 11:28:11.056 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:28:11.056 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:28:11.057 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:28:11.060 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:28:11.060 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:28:11.060 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:28:11.060 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:28:11.060 [369:2311] Performance(13899ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:28:19.313 [369:2311] Info--CFURLConnection: 1f87f9b0, ::Start, Post: 0, timeout: 0
    05/14/13 11:28:19.569 [369:2311] Info--CFURLConnection: 1f87f9b0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:28:23.857 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:28:23.865 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:28:23.885 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:28:23.885 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:28:23.885 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:28:23.885 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:30:10.934 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:30:10.943 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:30:10.943 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:30:10.943 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:30:10.943 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:30:10.943 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:30:11.261 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:30:11.261 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:30:11.262 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2776
    05/14/13 11:30:11.263 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:30:11.263 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:30:11.263 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:30:11.263 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:30:11.264 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:30:11.264 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:30:11.264 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:30:11.265 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1de032d0, timeout: 0
    05/14/13 11:30:11.829 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:30:12.197 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:30:12.197 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:30:12.197 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:30:12.200 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:30:12.201 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:30:12.201 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:30:12.201 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:30:12.201 [369:2311] Performance(121141ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:30:16.620 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:0
    05/14/13 11:30:20.060 [369:2311] Info--CFURLConnection: 1c562f70, ::Start, Post: 0, timeout: 0
    05/14/13 11:30:20.318 [369:2311] Info--CFURLConnection: 1c562f70, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:30:23.415 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:30:23.425 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:30:23.435 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:30:23.436 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:30:23.436 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:30:23.436 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:31:04.315 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:31:04.317 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:31:04.317 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:31:04.318 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:31:04.318 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:31:04.318 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:31:04.761 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:31:04.761 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:31:04.762 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2723
    05/14/13 11:31:04.762 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:31:04.762 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:31:04.762 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:31:04.762 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:31:04.764 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:31:04.764 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:31:04.765 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:31:04.765 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8f3e40, timeout: 0
    05/14/13 11:31:06.365 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:31:06.365 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:31:06.365 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:31:06.368 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:31:06.369 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:31:06.369 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:31:06.369 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:31:06.369 [369:2311] Performance(54168ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:31:10.686 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:31:10.697 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:31:10.708 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:31:10.708 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:31:10.708 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:31:10.709 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:36:00.610 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:36:00.612 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:36:00.612 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:36:00.612 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:36:00.612 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:36:00.612 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:36:01.254 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:36:01.254 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:36:01.255 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2426
    05/14/13 11:36:01.255 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:36:01.255 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:36:01.256 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:36:01.256 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:36:01.257 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:36:01.257 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:36:01.257 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:36:01.258 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1c5f2060, timeout: 0
    05/14/13 11:36:01.539 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:36:02.408 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:36:02.408 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:36:02.408 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:36:02.411 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:36:02.412 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:36:02.412 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:36:02.412 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:36:02.412 [369:2311] Performance(296044ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:36:04.376 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:0
    05/14/13 11:36:07.628 [369:2311] Info--CFURLConnection: 1f8e42b0, ::Start, Post: 0, timeout: 0
    05/14/13 11:36:07.835 [369:2311] Info--CFURLConnection: 1f8e42b0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:36:10.516 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:36:10.526 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:36:10.544 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:36:10.544 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:36:10.544 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:36:10.544 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:38:06.831 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:38:06.843 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:38:06.843 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:38:06.843 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:38:06.844 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:38:06.844 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:38:07.260 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:38:07.260 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:38:07.262 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2300
    05/14/13 11:38:07.263 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:38:07.263 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:38:07.263 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:38:07.263 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:38:07.264 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:38:07.264 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:38:07.265 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:38:07.265 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8b4b20, timeout: 0
    05/14/13 11:38:08.358 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:08.358 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:38:08.358 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:38:08.361 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:38:08.362 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:38:08.362 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:38:08.362 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:38:08.362 [369:2311] Performance(125949ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:38:17.494 [369:2311] Info--HandleEvent: 1, 0, 0
    05/14/13 11:38:17.494 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 0
    05/14/13 11:38:17.496 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:38:17.496 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:38:17.496 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:38:17.496 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:38:17.498 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:38:17.498 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:38:17.499 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:38:17.500 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1ded3130, timeout: 0
    05/14/13 11:38:18.308 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:18.309 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:38:18.309 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:38:18.312 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:38:18.312 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:38:18.313 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:38:18.313 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:38:18.313 [369:2311] Performance(9951ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:38:18.730 [369:2311] Info--HandleEvent: 1, 0, 0
    05/14/13 11:38:18.730 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 0
    05/14/13 11:38:18.732 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:38:18.732 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:38:18.733 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:38:18.733 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:38:18.734 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:38:18.735 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:38:18.735 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:38:18.736 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1c5f8460, timeout: 0
    05/14/13 11:38:19.727 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:19.727 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:38:19.727 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:38:19.730 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:38:19.731 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:38:19.731 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:38:19.731 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:38:19.731 [369:2311] Performance(1418ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:38:27.969 [369:2311] Info--CFURLConnection: 1c562f70, ::Start, Post: 0, timeout: 0
    05/14/13 11:38:28.183 [369:2311] Info--CFURLConnection: 1c562f70, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:31.382 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:38:31.396 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:38:31.407 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:38:31.407 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:38:31.407 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:38:31.407 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:38:35.325 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:38:35.325 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:38:35.325 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:38:35.326 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:38:35.326 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:38:35.326 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:38:35.760 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:38:35.761 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:38:35.762 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2272
    05/14/13 11:38:35.762 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:38:35.762 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:38:35.762 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:38:35.762 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:38:35.764 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:38:35.764 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:38:35.765 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:38:35.765 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f8eb960, timeout: 0
    05/14/13 11:38:36.748 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:36.748 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:38:36.748 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:38:36.751 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:38:36.751 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:38:36.751 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:38:36.752 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:38:36.752 [369:2311] Performance(17021ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:38:39.608 [369:2311] Info--CFURLConnection: 1f8e0fa0, ::Start, Post: 0, timeout: 0
    05/14/13 11:38:39.847 [369:2311] Info--CFURLConnection: 1f8e0fa0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:49.681 [369:2311] Info--OnScheduleMeeting
    05/14/13 11:38:49.683 [369:2311] Info--CFURLConnection: 1c54f960, ::Start, Post: 0, timeout: 0
    05/14/13 11:38:49.952 [369:2311] Info--CFURLConnection: 1c54f960, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:38:54.173 [369:2311] Info--CFURLConnection: 1c5e0120, ::Start, Post: 0, timeout: 0
    05/14/13 11:38:54.340 [369:2311] Info--CFURLConnection: 1c5e0120, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:39:02.216 [369:2311] Info--CFURLConnection: 1f8f5f10, ::Start, Post: 0, timeout: 0
    05/14/13 11:39:02.483 [369:2311] Info--CFURLConnection: 1f8f5f10, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:39:23.016 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:39:23.159 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:39:23.168 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:39:23.168 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:39:23.168 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:39:23.168 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:39:25.209 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:39:25.209 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:39:25.209 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:39:25.209 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:39:25.209 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:39:25.210 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:39:25.761 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:39:25.761 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:39:25.762 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 2222
    05/14/13 11:39:25.762 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:39:25.762 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:39:25.763 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:39:25.763 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:39:25.778 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:39:25.778 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:39:25.778 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:39:25.779 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1c563cc0, timeout: 0
    05/14/13 11:39:27.031 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:39:27.031 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:39:27.031 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:39:27.034 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:39:27.034 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:39:27.034 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:39:27.035 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:39:27.035 [369:2311] Performance(50283ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:39:30.002 [369:2311] Info--CFURLConnection: 1deaeda0, ::Start, Post: 0, timeout: 0
    05/14/13 11:39:30.185 [369:2311] Info--CFURLConnection: 1deaeda0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:39:32.958 [369:2311] Info--WebExAppDelegate::applicationWillResignActive
    05/14/13 11:39:32.967 [369:2311] Info--WebExAppDelegate::applicationDidEnterBackground, enterBackground:0
    05/14/13 11:39:32.988 [369:2311] Info--pauseOrResumeShareSession:1, reason:1, 0->1
    05/14/13 11:39:32.989 [369:2311] Info--pauseOrResumeVideoSession:1, reason:1, 0->1
    05/14/13 11:39:32.989 [369:2311] Info--pauseOrResumeVideoSending:1, reason:1, 0->1
    05/14/13 11:39:32.989 [369:2311] Info--meetinglogic::beginBackgroundTask:1
    05/14/13 11:47:58.611 [369:2311] Info--wbxiOpenURL::handleOpenURL: wbx://
    05/14/13 11:47:58.621 [369:2311] Info--WebExAppDelegate::applicationDidBecomeActive, enterBackground:1
    05/14/13 11:47:58.623 [369:2311] Info--pauseOrResumeShareSession:0, reason:1, 1->0
    05/14/13 11:47:58.623 [369:2311] Info--pauseOrResumeVideoSession:0, reason:1, 1->0
    05/14/13 11:47:58.623 [369:2311] Info--pauseOrResumeVideoSending:0, reason:1, 1->0
    05/14/13 11:47:58.623 [369:2311] Info--meetinglogic::beginBackgroundTask:0
    05/14/13 11:47:59.253 [369:2311] Info--HandleEvent: 1, 1, 0
    05/14/13 11:47:59.253 [369:2311] Info--HandleEvent::GetMeetingList Start, welcome = 0, keepalive = 1
    05/14/13 11:47:59.254 [369:2311] Info--wbxiAccountAuthentic::keepAliveDefaultAccountAfterDelay delay, accountID = 1, register timer = 1708
    05/14/13 11:47:59.255 [369:2311] Info--APIClient::HandleAPICommandBySiteType, wSiteType:2, inCommandID:4001
    05/14/13 11:47:59.255 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001
    05/14/13 11:47:59.255 [369:2311] Info--APIClient::HandleAPICommand, inCommandID:4001, excuted APIType:1
    05/14/13 11:47:59.255 [369:2311] Info--XMLAPICtrl:OnCommand, inCommandID:4001
    05/14/13 11:47:59.256 [369:2311] Info--XMLApiCtrl::LoadRequestTemplate, bWithoutAccout:0, pSeurityWebExId:steve.distefano, pSeuritySiteName:cdw
    05/14/13 11:47:59.256 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Original start time:2013/5/13 0:0:0, TimeZone:-4
    05/14/13 11:47:59.260 [369:2311] Info--XMLApiCtrl::OnGetMeetingList, Begin start time:5/13/2013 5:0:0, End start Time:5/27/2013 4:59:59
    05/14/13 11:47:59.261 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::Start: https://cdw.webex.com/WBXService/XMLService, Post: 1f899d30, timeout: 0
    05/14/13 11:48:00.535 [369:2311] Info--CFURLConnection: 1f8f7cf0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:48:00.536 [369:2311] Info--XMLAPICtrl:OnParseResponse, inCommandID:4001
    05/14/13 11:48:00.536 [369:2311] Info--XMLAPICtrl::CheckResponseData, CMD:4001
    05/14/13 11:48:00.542 [369:2311] Info--XMLAPICtrl::CheckResponseData, Cmd:4001, ExceptionID:000015, Reason:Sorry, no record found
    05/14/13 11:48:00.542 [369:2311] Info--HandleActualStartDateTime, This is a not-inprogress meeting and a past meeting. Meeting list will not display it. MeetingKey:802800904, Meeting Name:UC Team Meeting-Bruce Beals
    05/14/13 11:48:00.542 [369:2311] Info-- XMLApiCtrl::ParseCommonMeetingListResponse , Filter a meeting! MeetingName:UC Team Meeting-Bruce Beals, MeetingKey:802800904
    05/14/13 11:48:00.542 [369:2311] Info--XMLApiCtrl::IsValidXMLAPIVersion, XMLAPI version:WebEx XML API V7.3.0
    05/14/13 11:48:00.542 [369:2311] Performance(513507ms)--dispatchEvent::GetMeetingList Done
    05/14/13 11:48:05.476 [369:2311] Info--CFURLConnection: 1c5be060, ::Start, Post: 0, timeout: 0
    05/14/13 11:48:05.667 [369:2311] Info--CFURLConnection: 1c5be060, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0
    05/14/13 11:48:08.582 [369:2311] Info--CFURLConnection: 1c5125f0, ::Start, Post: 0, timeout: 0
    05/14/13 11:48:08.803 [369:2311] Info--CFURLConnection: 1c5125f0, ::OnReadStreamEvent kCFStreamEventEndEncountered, WaitStatus:0

    I am now running Webex 4.1 on my iPhone and Jabber IM 9.0.5 and the problem changed a little bit.
    Now I can click Instant Meeting and a chat with the WebEx URL is actually sent to the person I am IMing with and then can open webex and can see the meeting has not yet been started.
    On the iPhone however, while it launches Webex it prompts me for my instant meeting PW, which I confirmed is correct (also also confirmed it was sent to the other party in the IM), but when I enter it is says:
    UNABLE to Join or Start the meeting
    Error Code: 100200   Contact Cisco Webex Support
    Then it just sits and spins.
    I called Webex and they said 100200 means trying to start a meeting from an unsupport service.
    Si I just now tried to just start an instant meeting from my iPhone using just Webex and got the same error.  TAC has me on hold.
    TAC suggested I uninstall and reinstall Webex Meetings 4.1 on the iPhone.
    I did.  It worked.
    CASE CLOSED.  That was easy

  • Oracle COM Automation - Oracle 10g 10.2.0.1.0

    Hi,
    I am trying to install the COM automation features available in Oracle 10g. But my installation of Oracle only contains the COM demo scripts. There is no comwrap.sql that installs the ORDCOM api. I looked through the products.xml file in my staging area and only found an entry for 'Oracle COM Automation Feature Demos'.
    Anyone know what I am missing.
    Thanks.

    Hi,
    I looked through the products.xml file in my staging area and only found an entry for 'Oracle COM Automation Feature Demos'. Did you check your ORACLE_HOME\com directory?
    From the [Oracle® COM Automation Feature Developers Guide | http://download.oracle.com/docs/cd/B19306_01/win.102/b14310/toc.htm]:
    PL/SQL Components
    * Oracle COM Automation PL/SQL feature (orawpcomVER.dll)
    * PL/SQL installation and definition script (comwrap.sql)
    * Oracle COM Automation demonstration programs
    * Message files (such as comus.msb)
    Oracle COM Automation PL/SQL feature orawpcomVER.dll is located in the ORACLE_BASE\ORACLE_HOME\bin directory.
    All other components are located in the ORACLE_BASE\ORACLE_HOME\com directory.
    http://download.oracle.com/docs/cd/B19306_01/win.102/b14310/ch2insta.htm#sthref51

  • Image Processor Pro v3.0.1 is released

    Image Processor Pro v3.0.1 is released and can be found here:
    ps-scripts - Browse /Image Processor Pro/v3_0_1 at SourceForge.net
    Here are the changes:
    ---------------------------- v3.0.1 ----------------------------------
    - Removed 'Cancel' button on startup progress window. It didn't work
    and would require some gymnastic coding to implement usefully.
    - Added 'BatchMode' flag for calling IPP script from other scripts.
      See demo script RunIPP.jsx for more details.
    - Fixed window title to reflect correct script version
    - Tweaked text in log file for readability
    - Changed behaviour of 'Selection from Bridge' to match behaviour in
    Contact Sheet II. If Bridge is running and no files are currently
    selected, all image files in the current folder in Bridge will be
    processed. The number of files to be processed is now present in the UI.
    - Added Progress Bar. This is enabled with the flag
    ImageProcessorOptions.USE_PROGRESS_BAR. The default is true.
    - Added the ImageProcessorOptions.PROCESS_UNSAVED_IMAGES flag to permit
    processing unsaved images. The default is false. You must edit the
    script to enable this functionality.
    - Fixed JPG Format Progressive bug. The number of scans was not being
    set. The variable FileSaveOptions.DefaultJPGScans can be modifed to
    change it from the default value of 3.
    - Fixed for situations where there are no Action Sets or no Actions
    in the selected Action Set.

    Much appreciated, xbytor2. 

  • DataBlAppend takes long time on registered data

    Greetings! I'm using DIAdem 2012 on a Win7/64-bit computer (16GB memory and solid-state hard drive).  I work with one tdms file at a time but that file can be up to 8GB so I bring it into the Data Portal via the Register Data option.  The tdms file contains about 40 channels and each channel has about 50M datapoints.  If it matters, the data type of each channel is U16 with appropriate scaling factors in the channel parameters.  I display one channel in View and my goal is to set the two cursors on either side of an "event" then copy that segment of data between the cursors to a new channel in another group.  Actually, there are about ten channels that I want to copy exactly the same segment out to ten new channels.  This is the standard technique for programmatically "copying-flagged-data-points", i.e. reading and using the X1,X2 cursor position.  I am using DataBlAppend to write these new channels (I have also tried DataBlCopy with identical results).  My VBS script works exactly as I desire.  The new channel group containing the segments will be written out as a tdms file using another script. 
    Copying out "small" segments takes a certain amount of time but copying larger segments takes an increasing amount of time, i.e. the increase is not linear.  I would like to do larger segments but I don't like waiting 20-30 minutes per segment.  The time culprit is the script line "Call DataBlAppend (CpyS, CurPosX1, CurPosX2-CurPosX1 +1, CpyT)" where CpyS and CpyT are strings containing the names of the source and target channels respectively (the empty target channels were previously created in the new group). 
    My question is, "is there a faster way to do this within DIAdem?"  The amount of data being written to the new group can range from 20-160MB but I need to be able to write up to 250MB.  TDMS files of this size can normally be loaded or written out quite quickly on this computer under normal circumstances, so what is slowing this process down?  Thanks!

    Greetings, Brad!! 
    I agree that DataBlCopy is fast when working "from channels loaded in the Data Portal" but the tdms file I am working with is only "registered" in the portal.  I do not know exactly why that makes a difference except that it must go out to the disk in order to read each channel.  The function DataBlCopy (or Append) is a black box to me so I was hoping for some insight as to why it is behaving like it is under these circumstances.  However, your suggestion to try the function DataFileLoadRed() may bear fruit!  I wrote up a little demo script to copy out a "large" segment from a 8GB file registered in the portal using DataFileLoadRed and it is much, much faster!  It was a little odd selecting "IntervalCount" as my method and the total number of intervals the same as the total number of data points between my begin and end points, and "eInterFirstValue" [in the interval] as the reduction method, but the results speak for themselves.  I will need to do some thorough checking to verify that I am getting exactly the data I want but DataFileLoadRed does look promising as an alternative.  Thanks!
    Chris

  • Help to create complex graphs in oracle 10g reports

    As my company has migrated from 6i to Oracle 10g, but as graph ogd files are obselete in Oracle 10g , I am trying to create new graphs in Oracle 10g.
    But problem I am facing that I cannot give axis value 'LABEL' or define my own scale or draw any lines on chart or inshort plot graph as I need. Moreover no way to read objects on Chart. In forms 6i it was easy to read object with command "OG_GET_OBJECT(OBJECT_NAME)". Helps tell me to use graph.dtd but I am unable to use it or I don't know how to use it. No documentation available anywhere how to use graph.dtd syntax.
    Is it possible to achieve my above goals or any other tools to customize charts.
    Prashant

    Hello FormsEleven,
    First of all very Thanks for reply. Thanks for your valuable time given to me.
    I don't have any error in my java/jinit console infact latest jinit is running and web browser start with message applet are being loaded and Oracle forms service installed successfully. All other forms details are very well displayed on browser form, only bean area remains empty. Following are my formsweb.cfg details. Note on below [bigraph] section I have commented some lines but that also done after my form did not work.
    ### Forms DEMO FOR BIGRAPHS
    [pjc_demos]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    pageTitle=Oracle Forms - Pluggable Java Components
    form=pjclaunch.fmx
    otherparams=demo_root=D:\DevSuiteHome_1\forms\demos
    scripting=true
    [pjc_jspell]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/jspellintegration.jar,/forms/formsdemo/jars/jspell2n_java11.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/jspellintegration.jar,/forms/formsdemo/jars/jspell2n_java11.jar
    pageTitle=Oracle Forms - Pluggable Java Components
    form=jspell.fmx
    otherparams=dictionary_hostname=%JSPELL_HOST% dictionary_port=8888
    [HL]
    # Healthy Living Demo.
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    baseHTMLJInitiator=basejini.htm
    form=healthyliving.fmx
    userid=hl/hl@skoda
    width=994
    height=582
    pageTitle=Healthy Living
    splashScreen=/forms/formsdemo/images/suppsplash.gif
    background=/forms/formsdemo/images/white.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    lookAndFeel=oracle
    colorScheme=titanium
    # Used for demo. This is the destination directory
    # when uploading images and XML files.
    otherparams=output_dir=D:\DevSuiteHome_1\forms\demos\temp
    [IORG]
    imageBase=codebase
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/iorganizer.jar,/forms/formsdemo/jars/icons.jar
    archive=frmall.jar,/forms/formsdemo/jars/iorganizer.jar,/forms/formsdemo/jars/icons.jar
    baseHTMLJInitiator=basejini.htm
    form=iorganizer.fmx
    userid=iorg/iorg@skoda
    width=994
    height=582
    pageTitle=iOrganizer
    splashScreen=/forms/formsdemo/images/iorganizer.gif
    background=/forms/formsdemo/images/white.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    lookAndFeel=oracle
    colorScheme=titanium
    otherparams=usesdi=yes
    [reusable_calendar]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    pageTitle=Oracle Forms - Reusable Components
    form=calendar.fmx
    userid=oe8/oe8@skoda
    imagebase=codebase
    [reusable_picklist]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Reusable Components
    form=picklist.fmx
    userid=oe8/oe8@skoda
    [reusable_save2html]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Reusable Components
    form=save2html.fmx
    userid=hr8/hr8@skoda
    otherParams=OUTPUT_REAL_DIR=D:\DevSuiteHome_1\forms\demos\temp/ OUTPUT_VIRTUAL_DIR=/forms/formsdemo/temp/
    [reusable_wizard]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Reusable Components
    form=wizard.fmx
    userid=hr8/hr8@skoda
    [featuredemo_array_dml]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=arraydml.fmx
    userid=oe8/oe8@skoda
    [featuredemo_calculated_fields]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=calcform.fmx
    userid=oe8/oe8@skoda
    [featuredemo_object_columns]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=objref.fmx
    userid=oe8/oe8@skoda
    [featuredemo_stored_procedure]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=storproc.fmx
    userid=oe8/oe8@skoda
    [featuredemo_trace]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=trace.fmx
    userid=oe8/oe8@skoda
    otherparams=record=forms tracegroup=0-199
    [featuredemo_webservice]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar
    pageTitle=Oracle Forms - Feature Demos
    form=webservice.fmx
    userid=oe8/oe8@skoda
    [featuredemo_javamail]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/icons.jar
    pageTitle=Oracle Forms - Feature Demos
    form=javamail.fmx
    #Upload directory for attachments
    otherparams=temp_dir=D:\DevSuiteHome_1\forms\demos\temp
    [bigraph]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,d:\DevSuiteHome_1\forms\java\frmbld.jar;d:\DevSuiteHome_1\jlib\importer.jar;d:\DevSuiteHome_1\jlib\debugger.jar;d:\DevSuiteHome_1\jlib\utj.jar;d:\DevSuiteHome_1\jlib\dfc.jar;d:\DevSuiteHome_1\jlib\help4.jar;d:\DevSuiteHome_1\jlib\oracle_ice.jar;d:\DevSuiteHome_1\jlib\jewt4.jar;d:\DevSuiteHome_1\jlib\ewt3.jar;d:\DevSuiteHome_1\jlib\share.jar;d:\DevSuiteHome_1\forms\java\frmwebutil.jar;d:\DevSuiteHome_1\forms\java\frmall.jar;D:\DevSuiteHome_1\forms\oracle\forms\demos\bigraph\FormsGraph.jar;D:\DevSuiteHome_1\LIB\xmlparserv2.jar;D:\DevSuiteHome_1\jlib\bigraphbean.jar;D:\DevSuiteHome_1\jlib\bigraphbean-nls.zip;D:\DevSuiteHome_1\jlib\jewt4.jar;D:\DevSuiteHome_1\jlib\LW_PfjBean.jar;D:\DevSuiteHome_1\jlib\share.jar
    ;archive=frmall_jinit.jar,/forms/demos/jars/demo.jar,/forms/demos/jars/FormsGraph.jar
    pageTitle=Oracle Forms - Forms BI Graph integration
    ;form=graph.fmx
    ;userid=oe8/oe8@skoda
    ; Set imagebase to codebase to use icons stored in FormsGraph.jar
    imagebase=codebase
    [pjc_host]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/host.jar
    archive=frmall.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/host.jar
    pageTitle=Oracle Forms - Client HOST() Command
    form=host.fmx
    [cursorpos]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/cursorpos.jar
    archive=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/cursorpos.jar
    pageTitle=Oracle Forms - CursorPos PJC Demo
    form=cursorpos.fmx
    [timeout]
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/forms/formsdemo/images/blue.gif
    logo=/forms/formsdemo/images/bannerlogo.gif
    baseHTMLjinitiator=demobasejini.html
    baseHTMLjpi=demobase.htm
    baseHTML=demobase.html
    baseHTMLie=demobaseie.html
    envFile=formsdemo.env
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/timeout.jar,/forms/formsdemo/jars/demo.jar
    archive=frmall_jinit.jar,/forms/formsdemo/jars/demo.jar,/forms/formsdemo/jars/timeout.jar
    pageTitle=Oracle Forms - Timeout PJC
    form=timeout.fmx
    imagebase=codebase
    #height=520
    #width=690
    MY REGEDIT OF FORMSBUILDER_CLASSPATH_ is as follow:
    d:\DevSuiteHome_1\forms\java\frmbld.jar;d:\DevSuiteHome_1\jlib\importer.jar;d:\DevSuiteHome_1\jlib\debugger.jar;d:\DevSuiteHome_1\jlib\utj.jar;d:\DevSuiteHome_1\jlib\dfc.jar;d:\DevSuiteHome_1\jlib\help4.jar;d:\DevSuiteHome_1\jlib\oracle_ice.jar;d:\DevSuiteHome_1\jlib\jewt4.jar;d:\DevSuiteHome_1\jlib\ewt3.jar;d:\DevSuiteHome_1\jlib\share.jar;d:\DevSuiteHome_1\forms\java\frmwebutil.jar;d:\DevSuiteHome_1\forms\java\frmall.jar;D:\DevSuiteHome_1\forms\oracle\forms\demos\bigraph\FormsGraph.jar;D:\DevSuiteHome_1\LIB\xmlparserv2.jar;D:\DevSuiteHome_1\jlib\bigraphbean.jar;D:\DevSuiteHome_1\jlib\bigraphbean-nls.zip;D:\DevSuiteHome_1\jlib\jewt4.jar;D:\DevSuiteHome_1\jlib\LW_PfjBean.jar;D:\DevSuiteHome_1\jlib\share.jar
    Once again I insist that I had followed demos instruction, all readme and install guide . Here in my company I am using ORACLE 10G FORMS on my machine and ORACLE 10G database server installed on other server . Moreover this softwares are original license software .
    Regards,
    Prashant

  • ERRORS IN PORTAL WHEN DROPPING SCHEMA OWNER

    I ran a PDK demo script and added 2 db packages to a schema in the portal repository. After running theses porlets, I decided to attempt to create my own. Prior to adding to the schema I wanted to clean out the old db packages. I thought the easy way would be to drop the user schema and recreate it clean. I attempted to drop the user schema by entering portal as orcladmin, clicking on navigator, then db objects, selected the schema I wanted to drop and it sat there for a few minutes and returned errors. I then opened SQLplus and dropped the user cascade. I noticed that the provider is still in the providers tab list, but can't delete it. I then attempted to re-create the schema using same name and I get additional errors in portal (see upload file: createrror2.jpg. I need to 1) drop the old provider and 2) recreate a new schema and provider that I will use for my portal/portlets.
    Any suggestions.

    I ran a PDK demo script and added 2 db packages to a schema in the portal repository. After running theses porlets, I decided to attempt to create my own. Prior to adding to the schema I wanted to clean out the old db packages. I thought the easy way would be to drop the user schema and recreate it clean. I attempted to drop the user schema by entering portal as orcladmin, clicking on navigator, then db objects, selected the schema I wanted to drop and it sat there for a few minutes and returned errors. I then opened SQLplus and dropped the user cascade. I noticed that the provider is still in the providers tab list, but can't delete it. I then attempted to re-create the schema using same name and I get additional errors in portal (see upload file: createrror2.jpg. I need to 1) drop the old provider and 2) recreate a new schema and provider that I will use for my portal/portlets.
    Any suggestions.

Maybe you are looking for