Long Varchar conversion?

OK, so I'm trying to analyze the source code of compiled views. so I'm going with a simple:

long value 1000000

Select the text in dba_views where view_name = "DBA_VIEWS;

I use DBA_VIEWS just to keep the results to short, because everyone has it... and it's mildly amusing to choose from to

In reality, I will have a wider where clause.

So, now I want to search the text for some references, diagrams and tables. So let's just look at "sys."

Select text

from dba_views

where view_name = "DBA_VIEWS.

and instr (text, 'sys') > 0;

ERROR on line 4:

ORA-00932: inconsistent data types: expected NUMBER got LONG

Large.

OK, so I'm doing a research to try to understand to get 'convert' a long varchar and each solution according to me, is to 'migration' of the data. In other words, it assumes that you have created your own TABLE with a LONG data type, and the need to MOVE in another TABLE. Which is not even close to what I'm doing here. I question the fair data.

Then I come across this little gem:

http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:839298816582

Candy!

So I give that a try:

(I've renamed its function, but has not changed any other logic, or another change of name).

FUNCTION to CREATE or REPLACE f_long_to_varchar

(p_tname IN VARCHAR2,

p_cname IN VARCHAR2,

p_rowid IN ROWID

)

RETURN VARCHAR2

AS

l_cursor INTEGER default dbms_sql.open_cursor;

l_n NUMBER;

l_long_val VARCHAR2 (4000);

l_long_len NUMBER;

l_buflen NUMBER: = 4000;

l_curpos NUMBER: = 0;

BEGIN

DBMS_SQL. Parse (l_cursor,

"SELECT" | p_cname | 'FROM ' | p_tname |

' WHERE rowid =: x',.

DBMS_SQL.native);

DBMS_SQL.bind_variable (l_cursor, ': x', p_rowid);

DBMS_SQL.define_column_long (l_cursor, 1);

l_n: = dbms_sql.execute (l_cursor);

IF (dbms_sql.fetch_rows (l_cursor) > 0) THEN

DBMS_SQL.column_value_long (l_cursor, 1, l_buflen, l_curpos,)

(l_long_val, l_long_len);

END IF;

DBMS_SQL.close_cursor (dbms_sql.open_cursor);

RETURN l_long_val;

END f_long_to_varchar;

/

Select f_long_to_varchar (text) in the dba_views where view_name = "DBA_VIEWS;

ERROR on line 1:

ORA-00997: illegal use of the LONG data type

Large. So, does anyone have other ideas?

How can I query the dba_views and sweep the text as a varchar field?

Can it be done without moving the data to a temp table? Or the other case - how to do?

I'm coming up absolutely empty on that.

Thank you!

Without creating additional objects, you can try the following query. It supports the content of greater than 32 KB size.

However, it is quite slow.

Select v.owner

v.view_name

x.text

from dba_views v

, xmltable ('/ LINES/LINES/VIEW_T ')

passage (document xmlparse

() DBMS_METADATA.get_XML

schema-online v.owner

, object_type-online "VIEW".

name-online v.view_name

)

correct

)

path of clob columns text "TEXT".

) x

where instr (x.text, 'QA') > 0

- and v.view_name = 'DBA_STREAMS_COLUMNS. '

;

Tags: Database

Similar Questions

  • ODI - in collaboration with Long Varchar and CLOB

    Hi all

    I have a source table 'A' that contains a column of type LONG VARCHAR, I need to map to a CLOB column in the table target 'B '. The column can be mapped just without any type of 'distribution' of the LONG VARCHAR in the CLOB column?

    Thanks in advance

    Eduardo

    Even I don't think that you need the TO_CHAR.

    On what task it block in operator? What is the code generated for this task?

    Kind regards

    JeromeFr

  • I am a user of Picasa for a long time conversion to Lightroom.  I share photos with dropbox on a MAC, a Windows computers, storing images and the catalog in dropbox.  I'm able to share the LR catalog, but on the second system images can be found as s

    I am a user of Picasa for a long time conversion to Lightroom. I share photos with dropbox on a MAC, a Windows computers, storing images and the catalog in dropbox. I'm able to share the LR catalog, but on the second system images can be found as a prefix system DB files have different user names. Any ideas?

    At the point of Lightroom to another location for photos, follow these instructions:

    http://www.computer-darkroom.com/lr2_find_folder/find-folder.htm

    Note: If the catalog is constantly being synchronized to DropBox, you will most likely follow these instructions whenever you open the catalog on another computer.

  • convert long varchar

    Hi all. Why I get this error? :_|

    create or replace function mike.getHighValue)
    p_owner varchar2,
    p_table varchar2,
    p_part_name varchar2
    ) return varchar2 as

    l_data long;

    Start
    Select high_value from dba_tab_partitions l_data
    where table_owner = p_owner
    and table_name = p_table
    and nom_partition = p_part_name;
    Return substr (l_data, 1, 4000);
    end;

    ------

    Select mike.getHighValue (high_value) from dba_tab_partitions;


    ORA-00997: illegal use of the LONG data type

    When you select ' select mike.getHighValue (high_value) from dba_tab_partitions;

    you do not pass the correct values, you need to select as follows:

    Select mike.getHighValue ('SH', 'SALES', 'SALES_1995') in the dba_tab_partitions';

  • convert long varchar use views

    I want to get varchar2 column search_condition (dba_constraints), but get an error:

    Select constraint_type, table_name, getSerCon (rowid)
    of dba_constraints


    ORA-01445: cannot select ROWID, or sample, join without table views preserved key



    create or replace function getSerCon)
    p_rowid in rowid) return varchar2 as


    l_data long;

    Start
    Select condition_de_recherche from l_data dba_constraints where rowid = p_rowid;
    Return substr (l_data, 1, 4000);
    end;


    Can not you advide me how to convert.

    DBA_CONSTRAINTS is a view based on many SYS belonging to tables. So there is no own ROWID. This is why your code does not work. Now the combination of the owner, table_name, constraint_name is unique, so that you can change the function to use instead. Also, search this forum for other solutions with long

    SY.

  • Collection of varchar conversion - PLSQL

    Oracle 11 g.

    Problem statement:

    I'll get a list of values (list varchar2) as input for a procedure, and I need to make use of each value in my select statement within the procedure described in the WHERE clause.

    CREATE TABLE employees

    (employee_number number (10),)

    Employee_Name varchar2 (50)

    );

    insert into employees values (1, 'JOHN');

    insert into employees values (2, 'MIKE');

    CREATE OR REPLACE TYPE 'VARCHAR_TBL' STRENGTH AS TABLE OF THE VARCHAR2 (1024);

    P_string (p_list_of_value VARCHAR_TBL procedure

    p_out SYS_REFCURSOR)

    IS

    BEGIN

    OPEN for P_out

    Select * from employee where employee_name IN (< string Input >);

    END;

    -test script-

    declare

    p_list_of_value varchar_tbl;

    Start

    -Call the procedure

    p_list_of_value: = NEW varchar_tbl();

    p_list_of_value.extend ();

    p_list_of_value (1): = 'JOHN ';

    p_list_of_value.extend ();

    p_list_of_value (2): = ('MIKE');

    p_string (p_list_of_value = > p_list_of_value,)

    p_out = >: p_out);

    end;

    Now the result of the p_string procedure must be lsiting both records.

    I used only two records as input for the statement of the problem, but it will be varry from 1 to several...

    What are the best way to achieve this. Thank you..

    Just ask the collection as if it were a table:

    Select * from employee where employee_name IN (SELECT VALUE FROM TABLE (p_list_of_value));

    Try this code example:

    -type to match record emp

    create or replace type emp_scalar_type as an object

    (EMPNO NUMBER 4,

    ENAME VARCHAR2 (10),

    USE VARCHAR2 (9).

    MGR NUMBER 4,

    HIREDATE DATE,

    NUMBER OF SAL (7, 2)

    NUMBER OF COMM (7, 2)

    DEPTNO NUMBER (2)

    )

    /

    -records of the emp table

    create or replace type emp_table_type to table of emp_scalar_type

    /

    declare

    TB emp_table_type;

    sys deptnoList. OdciNumberList;

    BEGIN

    Select emp_scalar_type (empno, ename, job, mgr, hiredate, sal, comm, deptno)

    bulk collect into tb emp;

    Collect SELECT deptno in bulk

    IN deptnoList

    DEPARTMENT where deptno not in (select deptno table (tb));

    I'm looping 1.deptnoList.count

    dbms_output.put_Line (deptnoList (i));

    end loop;

    END;

  • I can convert pdf to word format adobe acrobat, DC but my version of word is not correct because after conversion, fonts and lines are not correct in the original pdf document.  I am currently using version 6.1 of windows 7 service pack 1 build 7601. Is -

    I can convert pdf to word format adobe acrobat, DC, but my version of word may not be correct because after conversion, fonts and lines are not correct in the original pdf document.  I'm currently using version 6.1 of windows 7 service pack 1 build 7601 Home Premium. Is it possible that I might have to upgrade my windows 7 in order to get good conversions of PDF files in word files?

    No, it won't be linked to your version of Windows. Probably, you wait too long. Conversion cannot be perfect except for the files very easy.

  • implicit conversion to sql

    Hi guys,.

    I have a question on how the oracle is posting implicit conversion in the following cases.

    I have a table: table1 with two columns: a number (10), b varchar2 (10). Both are indexed unique.


    If I have a SQL like this:
    select * from table1 where a = '99'
    the implicit conversion is performed on '99' and the final SQL will be something like:
    select * from table1 where a = to_number ('99')
    the same thing will happen with 'aaa' and I get an error. Please note that represents the column and the index will be used.

    If I have a sql like:
    select * from table1 where b = 99
    Note that b is the varchar2 column.
    the implicit conversion will be done on the column and the index will not be used
    select * from table1 where to_number (b) = 99
    THEN, forgetting for a moment that it is not OK to allow an implicit conversion, what are the rules that apply here? If the number, the conversion will be made on the value and varchar conversion will be performed on the column? What else?


    Thank you

    http://docs.Oracle.com/CD/E11882_01/server.112/e26088/sql_elements002.htm#SQLRF51047

  • HPE h8-1300z AMD (AG2) CTO: BIOS updates

    I get errors in the case where the viewer that points to the firmware updates that are not available.

    Seems that I bought a model desktop computer that was removed from the line up, just after that he was released. My machine was released in 6/2012 (bought mine in 7/2012) and went through 12/2012.

    This is why when I try to find updates for the software, there is none, as well as questions about the BIOS updates that do not exist.

    That is the problem. I already went to support HP software update page and has been properly using my model number and serial number and downloaded and installed several updated to find that it was not for my pc. The problem being HP offered so many different types of this particular model was a type of 'Customer To Order. All updates are so hit or miss due to different types. NVIDIA as opposed to ATI - AMD, Intel, as opposed to AMD and on the line is the differences in motherboards, hard disks, LAN cards and it goes on and on. So, instead of being able to stem what model gets what it ends up being a guessing game. I am aware of the differences of GPU and CPU but uses this to emphasise that it is confusing, not only for me but it seems HP to find which refers exactly to my bench.

    I made the mistake of trying to install an update of the BIOS that was listed for my pc see it is bad that did not take long to understand it fried my machine one should be fired and replaced by HP under warranty. I am out of warranty now and am stuck with trying to find in the section Support, which refers exactly.

    The Question? : - I have no chance or HP plans, on the road, to keep updates on these older models. Seems I got a machine that was a little bit late, just like the models of Windows 8 were charged and there was no decline more motherboard I have is proprietery even if it is not made by Gigabyte, after contacting them they have no idea what my MB or if there are updates to the BIOS.  I spoke with a representative from HP repair when I had to send it in last summer and said "off the cuff" well "you may need to get an another MB and of course which will void your warranty. Imagine that felt.

    A warning I made an update of the chipset and it slowed my machine in his reading and writing speeds and ended up having to uninstall the IDE drivers / ATA and let Windows install a generic SATA driver to get speeds in paragraph... for some reason any I find this right on the edge of the unacceptable to HP.

    Sorry, Big Dave, but you're wrong. First reading of Scripture & speeds were half of what they were supposed to be, then using three types of disc utilities including all the three said methods of transfer of 300 GB rather than the 600 GB transfer modes. Even the s HDD tray case showing in these modes. Update the firmware on the Samsung magician update not due to lower transfer mode that has been reported by the OEM. Its software said you are in AHCI mode, but you're NOT in mode SATA III.

    Only by uninstalling the SATA controller AMD was I could join SATA III speeds that all three utilities confirmed and was able to run the Software Wizard and finishing of optimization settings.  Sequential transmissions went from 255.3/116.4 to 453.5/138.5 and btw I had a long telephone conversation with Samsung and their people said I was getting speeds SATA II and that it was said by the guys from reps/repair of HP in Tennessee themselves than those speeds where SATA II speeds also. Do not make any assumptions.

    I found an updated BIOS to start with and unfortunately found that listed for my only disabled MB MB. The SSD itself is fine. Here are registry settings changes from 3 to 0 then started to the BIOS and change the setting from AHCI RAID storage

    REG ADD HKLM\System\CurrentControlSet\Services\msahci /v start d 0 /f /t REG_DWORD
    REG ADD HKLM\System\CurrentControlSet\Services\atapi /v start d 0 /f /t REG_DWORD
    REG ADD HKLM\System\CurrentControlSet\Services\amdsata /v start d 0 /f /t REG_DWORD
    REG ADD HKLM\System\CurrentControlSet\Services\nvstor /v start d 0 /f /t REG_DWORD
    REG ADD HKLM\System\CurrentControlSet\Services\nvraid /v start d 0 /f /t REG_DWORD
    REG ADD HKLM\System\CurrentControlSet\Services\iaStor /v start d 0 /f /t REG_DWORD

    When you restart, windows does the rest.

  • I got a phone call from a benny edwards who said Microsoft and had found problems with my computer.

    * Original title: defraud my computer

    I got a phone call from a benny edwards who said Microsoft had found problems with my computer and the pirates had gotten him. As I have had some problems recently with the computer, I thought it was authentic and fell for it? After a long telephone conversation, he forced me to accept that my Bullguard anti virus and my malware Remover is not enough to protect the computer and forced me to buy a program from Microsoft (this man of course) not microsoft. It supports the remote computer, and then forced me to give him my details, name, address, telephone number and age and of course the fool that I am, my credit card number, the penny dropped when he asked the Envoy of money via western union.  When I told her that I was closing the phone call, he told fort and wiped a number of things from my computer, the computer wasn't sure.  I ran my scanner (twice) bullguard, run my anti malware program, changed my password and order my credit card, is there something more I can do?

    To protect yourself, your information and your PC, follow these steps:

    • Change your computer password, change the password on your main email account and change the password for all accounts, including your Bank and credit.
    • Immediately scan your PC with the Microsoft Security Scanner to see if you have the tools malicious/phishing software installed on your PC.
    • As a third step, I recommend that you run the verification of Security Essentials on this page. The check will ensure that the security features in Windows are normally very active and running.
    • Personally, I have a clean Windows installation, because something could have been tampered with.

    For more information, visit the Microsoft Internet and Security Safety Center

    For more information on how you can these types of phone scams, visit this site.

    I hope this information has helped. Let us know if you have any additional questions.

  • Y at - it a similar index in MySQL: CREATE INDEX part_of_customer customer WE (name (10));

    Hello!

    There is a column of type long varchar (3000 characters) in our user table to store the e-mail address of the user or a list of email addresses.

    Most of the lines contain only a single address.

    I want to add an index on this column, because there are many research in this column with a certain email address.

    Y at - it a similar syntax that would allow me to create an index using only the part of the column as the index key as it is in MySQL?

    This is the syntax of MySQL guides, I found:

    Customer of CREATE INDEX part_of_name ON (name (10));

    so in our table, it would be

    CREATE INDEX in_partial_email on dtuser (email (150));

    This works well in MySQL.

    In Oracle if I try to index the entire column I'll end with

    ORA-01450: exceeded maximum key length

    I would be happy for any information on this topic!

    BR saturation

    Please see the example:

    create table ttt (col1 varchar2 (2000));

    create index ttt_idx on ttt (substr (col1, 1, 20));

    going to index on the first 20 characters of col1.

  • Issue during the installation of WCS with GUI installer

    Hello world

    I try to install WCS on a virtual machine with Windows 7 and I followed the apparell, installation procedures of the WebCenter Sites - 11 g Release 1 (11.1.1.8.0) , and I have installed the software to support this procedure, Oracle & amp; reg; Fusion Middleware WebCenter Sites: Installation and configuration of software 11g Release 1 (11.1.1... .)


    So I installed the Oracle Database 11g, Oracle Weblogic Server Http of Oracle 11 g 10.3.5. Create the cuser, the csDataSource. Then, I started to install the WebCenter Sites and a show me an error.

    The log file, install_log.log:

    [2014-02-27 10:49:55.542][org.springframework.context.support.ClassPathXmlApplicationContext][INFO] Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@449fea8a: display name [org.springframework.context.support.ClassPathXmlApplicationContext@449fea8a]; startup date [Thu Feb 27 10:49:55 COT 2014]; root of context hierarchy
    [2014-02-27 10:49:55.620][org.springframework.beans.factory.xml.XmlBeanDefinitionReader][INFO] Loading XML bean definitions from class path resource [SitesSecurityWrapper.xml]
    [2014-02-27 10:49:55.729][org.springframework.beans.factory.xml.XmlBeanDefinitionReader][INFO] Loading XML bean definitions from class path resource [SitesSecurityContext.xml]
    [2014-02-27 10:49:55.792][org.springframework.beans.factory.xml.XmlBeanDefinitionReader][INFO] Loading XML bean definitions from class path resource [ReqAuthConfig.xml]
    [2014-02-27 10:49:55.932][org.springframework.context.support.ClassPathXmlApplicationContext][INFO] Bean factory for application context [org.springframework.context.support.ClassPathXmlApplicationContext@449fea8a]: org.springframework.beans.factory.support.DefaultListableBeanFactory@5c2bfdff
    [2014-02-27 10:49:55.964][org.springframework.beans.factory.support.DefaultListableBeanFactory][INFO] Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@5c2bfdff: defining beans [cryptoPackage,credentialPackage,tokenPackage,securityBasis,securityContext,reqAuthConfig]; root of factory hierarchy
    [2014-02-27 10:49:56.042][SECURITY.CONTEXT][INFO] SitesSecurityContext: AdvancedSecurityContextImpl: Advanced Oracle security is in effect.
    [2014-02-27 10:49:56.057][SECURITY.CONTEXT][INFO] SecurityConfiguration initialized from SitesSecurityWrapper.xml
    [2014-02-27 10:50:45.818][CS.INSTALL][INFO] CSSetup.displayDialogs() : Products to be installed in current run 7
    [2014-02-27 10:50:46.979][CS.INSTALL][INFO] InstallActionManager.orderActions() : StartAppServer Action found at = (224)
    [2014-02-27 10:50:47.056][CS.INSTALL][INFO] ActionHandlerdeleteFileAction()  Deleting directory C:/Users/WCSPrueba/oracle/webcenter/sites/Sun
    [2014-02-27 10:50:47.102][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/cs.jar
    [2014-02-27 10:50:47.102][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/cs-core.jar
    [2014-02-27 10:50:47.102][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/MSXML.jar
    [2014-02-27 10:50:47.118][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/batch.jar
    [2014-02-27 10:50:47.118][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/directory.jar
    [2014-02-27 10:50:47.118][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/logging.jar
    [2014-02-27 10:50:47.118][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/sserve.jar
    [2014-02-27 10:50:47.118][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/futuretense_cs.dtd
    [2014-02-27 10:50:47.149][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/futuretense/tags
    [2014-02-27 10:50:47.149][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Sun/common
    [2014-02-27 10:50:47.180][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Sun/jws
    [2014-02-27 10:50:47.551][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Sun/xsdlib
    [2014-02-27 10:50:47.613][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/jh.jar
    [2014-02-27 10:50:47.628][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/log4j-1.2.16.jar
    [2014-02-27 10:50:47.644][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/spring-2.5.5.jar
    [2014-02-27 10:50:47.659][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/looks-1.3.2.jar
    [2014-02-27 10:50:47.659][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/lucene-core-2.9.2.jar
    [2014-02-27 10:50:48.123][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/xstream-1.4.2.jar
    [2014-02-27 10:50:48.170][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/xpp3_min-1.1.4c.jar
    [2014-02-27 10:50:48.185][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/xmlpull-1.1.3.1.jar
    [2014-02-27 10:50:48.201][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/cs-cache/cs-cache-11.1.1.8.0.jar
    [2014-02-27 10:50:48.232][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/cs-cache/lib/ehcache-core-1.7.1_modified.jar
    [2014-02-27 10:50:48.247][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/cs-cache/lib/slf4j-api-1.5.8.jar
    [2014-02-27 10:50:48.278][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/cs-cache/lib/slf4j-jdk14-1.5.8.jar
    [2014-02-27 10:50:48.293][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/httpclient-4.1.2.jar
    [2014-02-27 10:50:48.309][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/httpcore-4.1.2.jar
    [2014-02-27 10:50:48.309][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/httpmime-4.1.2.jar
    [2014-02-27 10:50:48.324][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/apache-mime4j-0.5.jar
    [2014-02-27 10:50:48.324][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/licenses
    [2014-02-27 10:50:49.608][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/futuretense_cs
    [2014-02-27 10:50:49.670][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/futuretense_cs
    [2014-02-27 10:50:49.686][CS.INSTALL][INFO] ActionHandlerdeleteFileAction()  Deleting directory C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/futuretense_cs/Dev
    [2014-02-27 10:50:49.717][CS.INSTALL][INFO] ActionHandler.createDirectory()  Created directory C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\temp\ear
    [2014-02-27 10:50:49.732][CS.INSTALL][INFO] CSWarBuilder.clearOldEar() No installed products database found! C:\Users\WCSPrueba/ominstallinfo/omproduct.ini
    [2014-02-27 10:50:49.747][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\app\ContentServer.ear
    [2014-02-27 10:50:54.031][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\app\cs.war
    [2014-02-27 10:50:54.899][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying futuretense_cs to webroot
    [2014-02-27 10:50:54.916][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/futuretense_cs
    [2014-02-27 10:50:54.933][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Authentication/ftntdomain/FTCSNTSecurity.dll
    [2014-02-27 10:50:55.494][CS.INSTALL][INFO] CSSetupEngine.dependentAppDeployAction() Dependent App Deploy for C:/Users/WCSPrueba/Desktop/Sites/Authentication/ftntdomain/ftcsntsecurity.jar
    [2014-02-27 10:50:55.494][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Authentication/ftntdomain/ftcsntsecurity.jar
    [2014-02-27 10:50:55.511][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/bin/NT/ftFileLock.dll
    [2014-02-27 10:50:55.562][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/propeditor.bat
    [2014-02-27 10:50:55.562][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/catalogmover.bat
    [2014-02-27 10:50:55.630][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/setClasspath.bat
    [2014-02-27 10:50:55.664][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/wem/wem-sso-api-11.1.1.8.0.jar
    [2014-02-27 10:50:55.664][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/wem/wem-sso-api-cas-11.1.1.8.0.jar
    [2014-02-27 10:50:55.681][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/wem/lib/cas-client-core-3.1.9.jar
    [2014-02-27 10:50:55.698][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/wem/lib/esapi-2.0.1.jar
    [2014-02-27 10:50:55.715][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/cs-cache/lib/commons-fileupload-1.2.1.jar
    [2014-02-27 10:50:55.715][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/sites-security/sites-security-11.1.1.8.0.jar
    [2014-02-27 10:50:55.749][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/wem-sso-api-11.1.1.8.0.jar
    [2014-02-27 10:50:55.749][CS.INSTALL][INFO] ActionHandlerdeleteFileAction()  Deleting directory Variables.$OMIIDIR/app
    [2014-02-27 10:50:55.766][CS.INSTALL][INFO] ActionHandlerdeleteFileAction()  Deleting directory Variables.$OMIIDIR/temp
    [2014-02-27 10:50:55.800][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/MSXML.jar
    [2014-02-27 10:50:55.817][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Authentication/ftldap/ldapjdk.jar
    [2014-02-27 10:50:55.817][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/framework.jar
    [2014-02-27 10:50:56.056][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/ics.jar
    [2014-02-27 10:50:56.107][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sseed.jar
    [2014-02-27 10:50:56.124][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/directory.jar
    [2014-02-27 10:50:56.260][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/logging.jar
    [2014-02-27 10:50:56.260][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/transformer.jar
    [2014-02-27 10:50:56.294][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/xsdlib/relaxngDatatype.jar
    [2014-02-27 10:50:56.294][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/xsdlib/xsdlib.jar
    [2014-02-27 10:50:56.311][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sserve.jar
    [2014-02-27 10:50:56.362][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/batch.jar
    [2014-02-27 10:50:56.379][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/cs-core.jar
    [2014-02-27 10:50:56.396][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-security/sites-security-11.1.1.8.0.jar
    [2014-02-27 10:50:56.413][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-security/lib/identitystore-11.1.2.1.0.jar
    [2014-02-27 10:50:56.430][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-security/lib/importcert-11.1.2.1.0.jar
    [2014-02-27 10:50:56.430][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-security/lib/jps-api-11.1.2.1.0.jar
    [2014-02-27 10:50:56.447][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-security/lib/jps-common-11.1.2.1.0.jar
    [2014-02-27 10:50:56.447][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-security/lib/jps-internal-11.1.2.1.0.jar
    [2014-02-27 10:50:56.464][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-security/lib/jps-unsupported-api-11.1.2.1.0.jar
    [2014-02-27 10:50:56.481][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-security/lib/oraclepki-11.1.2.1.0.jar
    [2014-02-27 10:50:56.481][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-security/lib/osdt_cert-11.1.2.1.0.jar
    [2014-02-27 10:50:56.498][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-security/lib/osdt_core-11.1.2.1.0.jar
    [2014-02-27 10:50:56.515][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-security/lib/osdt_xmlsec-11.1.2.1.0.jar
    [2014-02-27 10:50:56.515][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/rtd-ds-client-3.0.0.1.jar
    [2014-02-27 10:50:56.515][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/commons-jexl-2.1.1.jar
    [2014-02-27 10:50:56.515][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/commons-beanutils.jar
    [2014-02-27 10:50:56.515][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/request-authenticator-11.1.1.8.0.jar
    [2014-02-27 10:50:56.515][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/cs.jar
    [2014-02-27 10:50:56.617][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/csdt-client-11.1.1.8.0.jar
    [2014-02-27 10:50:56.634][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-wurfl-api-11.1.1.8.0.jar
    [2014-02-27 10:50:56.634][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/cs-cache/cs-cache-11.1.1.8.0.jar
    [2014-02-27 10:50:56.651][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/cs-cache/lib/ehcache-core-1.7.1_modified.jar
    [2014-02-27 10:50:56.651][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/cs-cache/lib/slf4j-jdk14-1.5.8.jar
    [2014-02-27 10:50:56.668][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/cs-cache/lib/commons-fileupload-1.2.1.jar
    [2014-02-27 10:50:56.668][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/cs-cache/lib/slf4j-api-1.5.8.jar
    [2014-02-27 10:50:56.685][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/cs-cache/webapp
    [2014-02-27 10:50:57.349][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying cs-cache configuration files
    [2014-02-27 10:50:57.366][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/cs-cache
    [2014-02-27 10:50:57.366][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/systemtools/systemtools-11.1.1.8.0.jar
    [2014-02-27 10:50:57.383][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/analytics_integration/analytics_integration-11.1.1.8.0.jar
    [2014-02-27 10:50:57.400][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/systemtools/webapp
    [2014-02-27 10:51:03.049][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/log4j_stub/log4j.properties
    [2014-02-27 10:51:03.270][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying systemtools configuration files
    [2014-02-27 10:51:03.304][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/systemtools
    [2014-02-27 10:51:03.304][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/systemtools/dist/utilities
    [2014-02-27 10:51:03.321][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/commons-httpclient-3.1.jar
    [2014-02-27 10:51:03.338][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/apache-mime4j-0.5.jar
    [2014-02-27 10:51:03.355][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/httpclient-4.1.2.jar
    [2014-02-27 10:51:03.355][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/httpcore-4.1.2.jar
    [2014-02-27 10:51:03.372][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/httpmime-4.1.2.jar
    [2014-02-27 10:51:03.372][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/commons-io-1.4.jar
    [2014-02-27 10:51:03.389][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/commons-collections-3.2.1.jar
    [2014-02-27 10:51:03.406][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/commons-lang-2.4.jar
    [2014-02-27 10:51:03.440][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/commons-codec-1.4.jar
    [2014-02-27 10:51:03.440][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/lucene-search.jar
    [2014-02-27 10:51:03.440][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/lucene-core-2.9.2.jar
    [2014-02-27 10:51:03.440][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/xpp3_min-1.1.4c.jar
    [2014-02-27 10:51:03.440][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/xmlpull-1.1.3.1.jar
    [2014-02-27 10:51:03.440][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/xstream-1.4.2.jar
    [2014-02-27 10:51:03.440][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jettison-1.0.1.jar
    [2014-02-27 10:51:03.457][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/antlr-3.4-complete.jar
    [2014-02-27 10:51:03.457][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/stax-api-1.0-2.jar
    [2014-02-27 10:51:03.474][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/spring-2.5.5.jar
    [2014-02-27 10:51:03.491][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/saaj-api-1.3.1.jar
    [2014-02-27 10:51:03.508][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/saaj-impl-1.3.16.jar
    [2014-02-27 10:51:03.508][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/FastInfoset.jar
    [2014-02-27 10:51:03.525][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/dom4j-1.6.1.jar
    [2014-02-27 10:51:03.542][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/jaxrpc-api.jar
    [2014-02-27 10:51:03.559][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/jaxrpc-impl.jar
    [2014-02-27 10:51:03.559][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/jaxrpc-spi.jar
    [2014-02-27 10:51:03.576][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/core-renderer-R8pre2.jar
    [2014-02-27 10:51:03.576][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/docx4j.jar
    [2014-02-27 10:51:03.593][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/jaxb-impl-2.1.12.jar
    [2014-02-27 10:51:03.610][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/commons-vfs-patched-1.9.1.jar
    [2014-02-27 10:51:03.610][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/parent-pointer-plugin-1.0.jar
    [2014-02-27 10:51:03.627][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/itext-unsigned-2.0.8.jar
    [2014-02-27 10:51:03.644][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/jaxb-api-2.1.jar
    [2014-02-27 10:51:03.644][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/jdom-1.0.jar
    [2014-02-27 10:51:03.662][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/xmlgraphics-commons-1.4.jar
    [2014-02-27 10:51:03.679][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/log4j-1.2.16.jar
    [2014-02-27 10:51:03.696][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/xml-apis-1.4.01.jar
    [2014-02-27 10:51:03.696][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/minium-0.1.jar
    [2014-02-27 10:51:03.713][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/nekohtml-1.9.9.jar
    [2014-02-27 10:51:03.713][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/PDFRenderer.jar
    [2014-02-27 10:51:03.730][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/xercesImpl-2.11.0.jar
    [2014-02-27 10:51:03.747][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/tika-core-0.7.jar
    [2014-02-27 10:51:03.764][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/xmlbeans-2.3.0.jar
    [2014-02-27 10:51:03.781][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/tika-parsers-0.7.jar
    [2014-02-27 10:51:03.781][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/tagsoup-1.2.jar
    [2014-02-27 10:51:03.781][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/poi-scratchpad-3.6.jar
    [2014-02-27 10:51:03.781][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/poi-ooxml-3.6.jar
    [2014-02-27 10:51:03.781][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/poi-ooxml-schemas-3.6.jar
    [2014-02-27 10:51:03.781][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/poi-3.6.jar
    [2014-02-27 10:51:03.798][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/pdfbox-1.6.0.jar
    [2014-02-27 10:51:03.798][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/metadata-extractor-2.4.0-beta-1.jar
    [2014-02-27 10:51:03.798][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/jempbox-1.6.0.jar
    [2014-02-27 10:51:03.798][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/fontbox-1.6.0.jar
    [2014-02-27 10:51:03.798][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/dom4j-1.6.1.jar
    [2014-02-27 10:51:03.798][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/commons-compress-1.0.jar
    [2014-02-27 10:51:03.798][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/asm-3.1.jar
    [2014-02-27 10:51:03.815][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/groovy-1.7.5.jar
    [2014-02-27 10:51:03.815][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/commons-logging-1.1.1.jar
    [2014-02-27 10:51:03.815][CS.INSTALL][INFO] CSSetupEngine.deployFilesAction() deploying directory C:/Users/WCSPrueba/oracle/webcenter/sites/
    [2014-02-27 10:51:03.832][CS.INSTALL][INFO] CSSetupEngine.deployFilesAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/
    [2014-02-27 10:51:03.832][CS.INSTALL][INFO] CSSetupEngine.deployFilesAction() deploying directory C:/Users/WCSPrueba/oracle/webcenter/sites/
    [2014-02-27 10:51:03.832][CS.INSTALL][INFO] CSSetupEngine.deployFilesAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/
    [2014-02-27 10:51:03.832][CS.INSTALL][INFO] CSSetupEngine.deployFilesAction() deploying directory C:/Users/WCSPrueba/oracle/webcenter/sites/
    [2014-02-27 10:51:03.832][CS.INSTALL][INFO] CSSetupEngine.deployFilesAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/
    [2014-02-27 10:51:03.832][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Num of prds to install 7
    [2014-02-27 10:51:03.832][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Multi-product install detected. Finish Deployments was skipped. Num of prds to install 6
    [2014-02-27 10:51:03.849][CS.INSTALL][INFO] InstallActionManager.orderActions() : StartAppServer Action found at = (149)
    [2014-02-27 10:51:03.866][CS.INSTALL][INFO] ActionHandlerdeleteFileAction()  Deleting directory C:/Users/WCSPrueba/oracle/webcenter/Shared/Upgrade
    [2014-02-27 10:51:03.883][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/cg-integration/dist/cg-integration-core/src
    [2014-02-27 10:51:04.308][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\app\cs.war archived successfully.
    [2014-02-27 10:51:05.441][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying cg-integration to webroot /
    [2014-02-27 10:51:05.457][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/cg-integration/cg-integration-11.1.1.8.0.jar
    [2014-02-27 10:51:05.504][CS.INSTALL][INFO] ActionHandlerdeleteFileAction()  Deleting file C:/Users/WCSPrueba/oracle/webcenter/sites/futuretense/tags/SectionDispatcher.tag
    [2014-02-27 10:51:05.519][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Xcelerate/futuretense/tags
    [2014-02-27 10:51:05.629][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Gator/futuretense/tags
    [2014-02-27 10:51:05.863][CS.INSTALL][INFO] ActionHandlerdeleteFileAction()  Deleting file C:/Users/WCSPrueba/oracle/webcenter/sites/futuretense/tags/cscommerce.tag
    [2014-02-27 10:51:05.879][CS.INSTALL][INFO] CSSetupEngine.dependentAppDeployAction() Dependent App Deploy for C:/Users/WCSPrueba/Desktop/Sites/xcelerate.jar,C:/Users/WCSPrueba/Desktop/Sites/assetmaker.jar,C:/Users/WCSPrueba/Desktop/Sites/assetframework.jar,C:/Users/WCSPrueba/Desktop/Sites/basic.jar,C:/Users/WCSPrueba/Desktop/Sites/sampleasset.jar,C:/Users/WCSPrueba/Desktop/Sites/assetapi.jar,C:/Users/WCSPrueba/Desktop/Sites/assetapi-impl.jar
    [2014-02-27 10:51:05.894][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/xcelerate.jar
    [2014-02-27 10:51:05.957][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/assetmaker.jar
    [2014-02-27 10:51:05.972][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/assetframework.jar
    [2014-02-27 10:51:05.972][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/basic.jar
    [2014-02-27 10:51:05.988][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sampleasset.jar
    [2014-02-27 10:51:05.988][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/assetapi.jar
    [2014-02-27 10:51:05.988][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/assetapi-impl.jar
    [2014-02-27 10:51:06.019][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/firstsite-filter.jar
    [2014-02-27 10:51:06.035][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Xcelerate/WEB-INF
    [2014-02-27 10:51:06.050][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying WEB-INF folder under Xcelerate. URL project.
    [2014-02-27 10:51:06.050][CS.INSTALL][INFO] CSSetupEngine.dependentAppDeployAction() Dependent App Deploy for C:/Users/WCSPrueba/Desktop/Sites/catalog.jar,C:/Users/WCSPrueba/Desktop/Sites/gator.jar,C:/Users/WCSPrueba/Desktop/Sites/basic.jar,C:/Users/WCSPrueba/Desktop/Sites/gatorbulk.jar,C:/Users/WCSPrueba/Desktop/Sites/rules.jar,C:/Users/WCSPrueba/Desktop/Sites/visitor.jar,C:/Users/WCSPrueba/Desktop/Sites/flame.jar
    [2014-02-27 10:51:06.066][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/catalog.jar
    [2014-02-27 10:51:06.113][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/gator.jar
    [2014-02-27 10:51:06.113][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/basic.jar
    [2014-02-27 10:51:06.129][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/gatorbulk.jar
    [2014-02-27 10:51:06.129][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/rules.jar
    [2014-02-27 10:51:06.144][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/visitor.jar
    [2014-02-27 10:51:06.144][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/flame.jar
    [2014-02-27 10:51:06.160][CS.INSTALL][INFO] CSSetupEngine.dependentAppDeployAction() Dependent App Deploy for C:/Users/WCSPrueba/Desktop/Sites/UI/ui.jar,C:/Users/WCSPrueba/Desktop/Sites/UI/jars/commons-beanutils.jar,C:/Users/WCSPrueba/Desktop/Sites/UI/jars/commons-digester.jar,C:/Users/WCSPrueba/Desktop/Sites/UI/jars/commons-el.jar
    [2014-02-27 10:51:06.175][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/ui.jar
    [2014-02-27 10:51:06.191][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/jars/commons-beanutils.jar
    [2014-02-27 10:51:06.191][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/jars/commons-digester.jar
    [2014-02-27 10:51:06.207][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/jars/commons-el.jar
    [2014-02-27 10:51:06.207][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/jars/orai18n-js-10.1.2.0.0.jar
    [2014-02-27 10:51:06.347][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/lib/spring-2.5.5.jar
    [2014-02-27 10:51:06.363][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/commons-configuration-1.9.jar
    [2014-02-27 10:51:06.504][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/services-api/services-api-11.1.1.8.0.jar
    [2014-02-27 10:51:06.519][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/services-impl/services-impl-11.1.1.8.0.jar
    [2014-02-27 10:51:06.535][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/sites-timezone/sites-timezone-11.1.1.8.0.jar
    [2014-02-27 10:51:06.535][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/jars/jstl-impl-1.2.jar
    [2014-02-27 10:51:06.550][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/jars/jstl-api-1.2.jar
    [2014-02-27 10:51:06.566][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/jars/fckeditor-java-core-2.4.jar
    [2014-02-27 10:51:06.566][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/jars/jsoup-1.5.2.jar
    [2014-02-27 10:51:06.566][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Gator/futuretense/tags
    [2014-02-27 10:51:06.582][CS.INSTALL][INFO] CSSetupEngine.dependentAppDeployAction() Dependent App Deploy for C:/Users/WCSPrueba/Desktop/Sites/Commerce/CatalogClient/java/CommerceConnector.jar,C:/Users/WCSPrueba/Desktop/Sites/cscommerce.jar
    [2014-02-27 10:51:06.582][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Commerce/CatalogClient/java/CommerceConnector.jar
    [2014-02-27 10:51:06.582][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/cscommerce.jar
    [2014-02-27 10:51:07.113][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/sampleasset.jar
    [2014-02-27 10:51:07.129][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/xcelerate.jar
    [2014-02-27 10:51:07.160][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/flame.jar
    [2014-02-27 10:51:07.222][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/assetmaker.jar
    [2014-02-27 10:51:07.269][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/assetframework.jar
    [2014-02-27 10:51:07.285][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/basic.jar
    [2014-02-27 10:51:07.300][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Xcelerate/asset.dtd
    [2014-02-27 10:51:07.347][CS.INSTALL][INFO] ActionHandler.createDirectory()  Created directory C:\Users\WCSPrueba\oracle\webcenter\sites\Installation\Xcelerate\OMTree
    [2014-02-27 10:51:07.347][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Gator/futuretense_cs/Xcelerate/OMTree
    [2014-02-27 10:51:08.035][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying client installers to webroot /Xcelerate
    [2014-02-27 10:51:08.066][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/Xcelerate
    [2014-02-27 10:51:08.066][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Xcelerate/futuretense_cs/Xcelerate
    [2014-02-27 10:51:08.582][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying ContentCentre images to webroot /Xcelerate
    [2014-02-27 10:51:08.660][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/Xcelerate
    [2014-02-27 10:51:08.660][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/121Analytics/jars/analyticscs.jar
    [2014-02-27 10:51:08.675][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/UI/install/tld
    [2014-02-27 10:51:08.691][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying Alloy UI images to webroot/images 
    [2014-02-27 10:51:08.910][CS.INSTALL][INFO] CSSetupEngine.deployFilesAction() deploying directory C:/Users/WCSPrueba/Desktop/Sites/UI/install/html/
    [2014-02-27 10:51:09.004][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying ckeditor to webroot 
    [2014-02-27 10:51:09.644][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying ImageEditor to webroot 
    [2014-02-27 10:51:09.722][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/UI/config
    [2014-02-27 10:51:10.597][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying UI to webroot /
    [2014-02-27 10:51:10.613][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/configUI
    [2014-02-27 10:51:10.629][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying UI js files to webroot 
    [2014-02-27 10:51:15.238][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying mobility jquery UI files to webroot 
    [2014-02-27 10:51:15.254][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/jars/jackson-core-asl-1.8.0.jar
    [2014-02-27 10:51:15.269][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/jars/jackson-mapper-asl-1.8.0.jar
    [2014-02-27 10:51:15.285][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Xcelerate/Mobility/webapp/WEB-INF
    [2014-02-27 10:51:15.332][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying  to webroot /
    [2014-02-27 10:51:15.332][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/configuration
    [2014-02-27 10:51:15.332][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/basic.jar
    [2014-02-27 10:51:15.332][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/rules.jar
    [2014-02-27 10:51:15.347][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/catalog.jar
    [2014-02-27 10:51:15.363][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/gator.jar
    [2014-02-27 10:51:15.363][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/visitor.jar
    [2014-02-27 10:51:15.363][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/gatorbulk.jar
    [2014-02-27 10:51:15.379][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Gator/presentationobject.dtd
    [2014-02-27 10:51:15.410][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Gator/ruleset.dtd
    [2014-02-27 10:51:15.410][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Gator/futuretense_cs/Xcelerate
    [2014-02-27 10:51:15.519][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying CatalogCentre images to webroot /Xcelerate
    [2014-02-27 10:51:15.550][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/Xcelerate
    [2014-02-27 10:51:15.566][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/realtime/WEB-INF
    [2014-02-27 10:51:15.597][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/transformer/WEB-INF
    [2014-02-27 10:51:15.629][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying  to webroot /
    [2014-02-27 10:51:15.629][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/classes
    [2014-02-27 10:51:15.629][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Xcelerate/Populate/search
    [2014-02-27 10:51:15.660][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/basic.jar
    [2014-02-27 10:51:15.660][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/gator.jar
    [2014-02-27 10:51:15.660][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/catalog.jar
    [2014-02-27 10:51:15.660][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/visitor.jar
    [2014-02-27 10:51:15.660][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Gator/futuretense_cs/Xcelerate
    [2014-02-27 10:51:15.769][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying CS-Engage images to webroot /Xcelerate
    [2014-02-27 10:51:15.816][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/Xcelerate
    [2014-02-27 10:51:15.816][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/Commerce/CatalogClient/java/CommerceConnector.jar
    [2014-02-27 10:51:15.910][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/cscommerce.jar
    [2014-02-27 10:51:15.941][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Commerce/CatalogClient/cnt_40
    [2014-02-27 10:51:16.300][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Commerce/CatalogClient/conf
    [2014-02-27 10:51:16.363][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Commerce/CatalogClient/java
    [2014-02-27 10:51:16.379][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Commerce/CatalogClient/secrets
    [2014-02-27 10:51:16.394][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/Commerce/CatalogClient/sun_56
    [2014-02-27 10:51:17.488][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Num of prds to install 6
    [2014-02-27 10:51:17.488][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Multi-product install detected. Finish Deployments was skipped. Num of prds to install 5
    [2014-02-27 10:51:17.504][CS.INSTALL][INFO] InstallActionManager.orderActions() : StartAppServer Action found at = (24)
    [2014-02-27 10:51:17.504][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/data/css/fr_FR
    [2014-02-27 10:51:17.769][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/systemtools/fr_FR
    [2014-02-27 10:51:17.816][CS.INSTALL][INFO] ActionHandler.createDirectory()  Created directory C:\Users\WCSPrueba\oracle\webcenter\sites\Installation\LP\ckeditor
    [2014-02-27 10:51:17.816][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/ckeditor/fr_FR
    [2014-02-27 10:51:17.847][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/wem/html/fr_FR
    [2014-02-27 10:51:17.863][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/data/css/de_DE
    [2014-02-27 10:51:17.894][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/systemtools/de_DE
    [2014-02-27 10:51:17.941][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/ckeditor/de_DE
    [2014-02-27 10:51:17.957][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/wem/html/de_DE
    [2014-02-27 10:51:17.988][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/data/css/es_ES
    [2014-02-27 10:51:18.019][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/systemtools/es_ES
    [2014-02-27 10:51:18.050][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/ckeditor/es_ES
    [2014-02-27 10:51:18.082][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/wem/html/es_ES
    [2014-02-27 10:51:18.097][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/data/css/it_IT
    [2014-02-27 10:51:18.129][CS.INSTALL][INFO] ActionHandler.createDirectory()  Created directory C:\Users\WCSPrueba\oracle\webcenter\sites\Installation\systemtools\it_IT
    [2014-02-27 10:51:18.129][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/systemtools/it_IT
    [2014-02-27 10:51:18.144][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/ckeditor/it_IT
    [2014-02-27 10:51:18.175][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/wem/html/it_IT
    [2014-02-27 10:51:18.222][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/data/css/ja_JP
    [2014-02-27 10:51:18.254][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/systemtools/ja_JP
    [2014-02-27 10:51:18.300][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/ckeditor/ja_JP
    [2014-02-27 10:51:18.316][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/wem/html/ja_JP
    [2014-02-27 10:51:18.347][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/data/css/ko_KR
    [2014-02-27 10:51:18.363][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/systemtools/ko_KR
    [2014-02-27 10:51:18.394][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/ckeditor/ko_KR
    [2014-02-27 10:51:18.425][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/wem/html/ko_KR
    [2014-02-27 10:51:18.441][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/data/css/zh_CN
    [2014-02-27 10:51:18.488][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/systemtools/zh_CN
    [2014-02-27 10:51:18.504][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/ckeditor/zh_CN
    [2014-02-27 10:51:18.535][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/wem/html/zh_CN
    [2014-02-27 10:51:18.566][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/data/css/zh_TW
    [2014-02-27 10:51:18.613][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/systemtools/zh_TW
    [2014-02-27 10:51:18.644][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/ckeditor/zh_TW
    [2014-02-27 10:51:18.691][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/wem/html/zh_TW
    [2014-02-27 10:51:18.707][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/data/css/pt_BR
    [2014-02-27 10:51:18.754][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/systemtools/pt_BR
    [2014-02-27 10:51:18.785][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/ckeditor/pt_BR
    [2014-02-27 10:51:18.832][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/LanguagePacks/wem/html/pt_BR
    [2014-02-27 10:51:18.847][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying to webroot /Xcelerate
    [2014-02-27 10:51:18.847][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/LP/Xcelerate
    [2014-02-27 10:51:18.863][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying wem error html to webroot /html
    [2014-02-27 10:51:18.863][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/LP/html
    [2014-02-27 10:51:18.879][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying css and properties to webroot
    [2014-02-27 10:51:18.879][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/LP/systemtools/webapp
    [2014-02-27 10:51:18.879][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying ckeditor translations to webroot ckeditor/plugins
    [2014-02-27 10:51:18.894][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/LP/ckeditor
    [2014-02-27 10:51:18.894][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Num of prds to install 5
    [2014-02-27 10:51:18.894][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Multi-product install detected. Finish Deployments was skipped. Num of prds to install 4
    [2014-02-27 10:51:18.894][CS.INSTALL][INFO] ActionHandlerdeleteFileAction()  Deleting directory C:/Users/WCSPrueba/oracle/webcenter/sites/futuretense_cs/Installation/LP
    [2014-02-27 10:51:18.894][CS.INSTALL][INFO] InstallActionManager.orderActions() : StartAppServer Action found at = (10)
    [2014-02-27 10:51:18.894][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/cs.jar
    [2014-02-27 10:51:18.894][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/samplesites/avisports/src
    [2014-02-27 10:52:02.738][CS.INSTALL][INFO] ActionHandler.createDirectory()  Created directory C:\Users\WCSPrueba\oracle\webcenter\sites\Installation\avisports\webapp
    [2014-02-27 10:52:02.754][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/samplesites/avisports/webapp
    [2014-02-27 10:52:05.722][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying avisports files to webroot /
    [2014-02-27 10:52:05.754][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/avisports/webapp
    [2014-02-27 10:52:05.769][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/cg-integration/dist/cg-integration-avisports/src
    [2014-02-27 10:52:06.550][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/samplesites/youtube/youtube-core
    [2014-02-27 10:52:06.613][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/samplesites/youtube/youtube-avisports
    [2014-02-27 10:52:06.644][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Num of prds to install 4
    [2014-02-27 10:52:06.660][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Multi-product install detected. Finish Deployments was skipped. Num of prds to install 3
    [2014-02-27 10:52:06.660][CS.INSTALL][INFO] InstallActionManager.orderActions() : StartAppServer Action found at = (12)
    [2014-02-27 10:52:06.675][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/cs.jar
    [2014-02-27 10:52:06.707][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/firstsite-uri.jar
    [2014-02-27 10:52:06.754][CS.INSTALL][INFO] CSSetupEngine.dependentAppDeployAction() Dependent App Deploy for C:/Users/WCSPrueba/Desktop/Sites/firstsite-uri.jar
    [2014-02-27 10:52:06.754][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/firstsite-uri.jar
    [2014-02-27 10:52:06.785][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying First Site II Core web elements to /FirstSiteII
    [2014-02-27 10:52:06.785][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying First Site II Store Schema web elements and extension files to /
    [2014-02-27 10:52:06.785][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying First Site II SiteView web elements to /FirstSiteII
    [2014-02-27 10:52:06.785][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Num of prds to install 3
    [2014-02-27 10:52:06.785][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Multi-product install detected. Finish Deployments was skipped. Num of prds to install 2
    [2014-02-27 10:52:06.785][CS.INSTALL][INFO] InstallActionManager.orderActions() : StartAppServer Action found at = (42)
    [2014-02-27 10:52:06.800][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/rest-api-11.1.1.8.0.jar
    [2014-02-27 10:52:06.832][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/rest-api-local-impl-11.1.1.8.0.jar
    [2014-02-27 10:52:06.832][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/wem-sso-api-cas-11.1.1.8.0.jar
    [2014-02-27 10:52:06.832][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/wem-sso-api-cas-plugin-cs-11.1.1.8.0.jar
    [2014-02-27 10:52:06.832][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/wem-sso-api-oam-11.1.1.8.0.jar
    [2014-02-27 10:52:06.847][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/lib/jersey-server-1.1.4.1.jar
    [2014-02-27 10:52:06.879][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/lib/jersey-core-1.1.4.1.jar
    [2014-02-27 10:52:06.879][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/UI/jars/jackson-core-asl-1.8.0.jar
    [2014-02-27 10:52:06.879][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/lib/jsr311-api-1.1.1.jar
    [2014-02-27 10:52:06.879][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/lib/jersey-json-1.1.4.1.jar
    [2014-02-27 10:52:06.894][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/lib/jersey-client-1.1.4.1.jar
    [2014-02-27 10:52:06.894][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/lib/xwork-2.0.4.jar
    [2014-02-27 10:52:06.894][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/lib/cas-client-core-3.1.9.jar
    [2014-02-27 10:52:06.894][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/lib/esapi-2.0.1.jar
    [2014-02-27 10:52:06.894][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/lib/antisamy-1.4.3.jar
    [2014-02-27 10:52:06.894][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/commons-configuration-1.9.jar
    [2014-02-27 10:52:06.894][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/Sun/jws/common/lib/commons-collections-3.2.1.jar
    [2014-02-27 10:52:06.910][CS.INSTALL][INFO] ActionHandler.createDirectory()  Created directory C:\Users\WCSPrueba\oracle\webcenter\sites\Installation\wem\webapp
    [2014-02-27 10:52:06.910][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/wem/webapp/WEB-INF/classes/ESAPI.properties
    [2014-02-27 10:52:06.988][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/wem/webapp/WEB-INF/classes/validation.properties
    [2014-02-27 10:52:07.004][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/wem/webapp
    [2014-02-27 10:52:07.035][CS.INSTALL][INFO] ActionHandlerdeleteFileAction()  Deleting file C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/wem/webapp/WEB-INF/classes/ESAPI.properties
    [2014-02-27 10:52:07.035][CS.INSTALL][INFO] ActionHandlerdeleteFileAction()  Deleting file C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/wem/webapp/WEB-INF/classes/validation.properties
    [2014-02-27 10:52:07.050][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying client installers to webroot /
    [2014-02-27 10:52:07.066][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/wem/webapp
    [2014-02-27 10:52:07.066][CS.INSTALL][INFO] ActionHandlerdeleteFileAction()  Deleting directory C:/Users/WCSPrueba/oracle/webcenter/sites/ominstallinfo/cas
    [2014-02-27 10:52:07.082][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/wem/cas/cas.war
    [2014-02-27 10:52:07.129][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.675][CS.INSTALL][INFO] Configuring C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\deployerConfigContext.xml
    [2014-02-27 10:52:07.675][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.691][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.691][CS.INSTALL][INFO] Configuring C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\deployerConfigContext.xml
    [2014-02-27 10:52:07.691][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.707][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.707][CS.INSTALL][INFO] Configuring C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\deployerConfigContext.xml
    [2014-02-27 10:52:07.722][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.722][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.738][CS.INSTALL][INFO] Configuring C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\deployerConfigContext.xml
    [2014-02-27 10:52:07.738][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.754][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.754][CS.INSTALL][INFO] Configuring C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\classes\log4j.properties
    [2014-02-27 10:52:07.769][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.769][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.785][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\Sun\jws\common\lib\apache-mime4j-0.5.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:07.785][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.800][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.800][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\Sun\jws\common\lib\httpclient-4.1.2.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:07.816][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.816][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.832][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\Sun\jws\common\lib\httpcore-4.1.2.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:07.832][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.847][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.847][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\Sun\jws\common\lib\httpmime-4.1.2.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:07.863][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.863][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.879][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\wem-sso-api-cas-plugin-cs-11.1.1.8.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:07.879][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.894][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.894][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\request-authenticator-11.1.1.8.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:07.910][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.910][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.925][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\sites-security\sites-security-11.1.1.8.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:07.925][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:07.941][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:07.941][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\sites-security\lib\identitystore-11.1.2.1.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:08.769][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:08.785][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:08.816][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\sites-security\lib\importcert-11.1.2.1.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:08.832][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:08.847][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:08.847][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\sites-security\lib\jps-api-11.1.2.1.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:08.941][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:08.957][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:08.972][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\sites-security\lib\jps-common-11.1.2.1.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:09.004][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:09.019][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:09.019][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\sites-security\lib\jps-internal-11.1.2.1.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:12.410][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:12.410][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:12.425][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\sites-security\lib\jps-unsupported-api-11.1.2.1.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:12.550][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:12.582][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:12.597][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\sites-security\lib\oraclepki-11.1.2.1.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:12.675][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:12.691][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:12.707][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\sites-security\lib\osdt_cert-11.1.2.1.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:12.738][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:12.754][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:12.754][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\sites-security\lib\osdt_core-11.1.2.1.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:12.785][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:12.832][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:12.847][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\sites-security\lib\osdt_xmlsec-11.1.2.1.0.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:12.863][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:12.863][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:12.863][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\oracle\webcenter\sites\cs-core.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:12.879][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:12.879][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:12.879][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\oracle\webcenter\sites\cs.jar to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\lib
    [2014-02-27 10:52:12.894][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:12.894][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:12.894][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\cas\webapp to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\\
    [2014-02-27 10:52:12.910][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:12.910][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:12.910][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\uiframework\webapp\wemresources\css\UILayout.css to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\fatwire\css
    [2014-02-27 10:52:12.925][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:12.957][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:12.957][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\uiframework\webapp\wemresources\css\UIInput.css to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\fatwire\css
    [2014-02-27 10:52:12.972][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:12.988][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:12.988][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\uiframework\webapp\wemresources\images\common to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\fatwire\images\common
    [2014-02-27 10:52:13.004][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:13.019][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:13.019][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\uiframework\webapp\wemresources\images\dialog to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\fatwire\images\dialog
    [2014-02-27 10:52:13.050][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:13.050][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:13.066][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\uiframework\webapp\wemresources\images\form to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\fatwire\images\form
    [2014-02-27 10:52:13.082][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:13.097][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:13.097][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\uiframework\webapp\wemresources\images\icons to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\fatwire\images\icons
    [2014-02-27 10:52:27.019][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:27.019][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:27.019][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\uiframework\webapp\wemresources\images\logos to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\fatwire\images\logos
    [2014-02-27 10:52:27.066][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:27.066][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:27.082][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\uiframework\webapp\wemresources\images\menu to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\fatwire\images\menu
    [2014-02-27 10:52:27.097][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:27.113][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:27.113][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\uiframework\webapp\wemresources\images\ui\login to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\fatwire\images\login
    [2014-02-27 10:52:27.941][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:27.957][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:27.972][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\UI\install\js\dojo to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\fatwire\js\dojo
    [2014-02-27 10:52:30.207][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.222][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.222][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\UI\install\js\dijit\themes\dijit.css to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\fatwire\css
    [2014-02-27 10:52:30.300][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.316][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.316][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\LanguagePacks\cas\de_DE\webapp\WEB-INF\classes to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\classes
    [2014-02-27 10:52:30.363][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.379][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.379][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\LanguagePacks\cas\es_ES\webapp\WEB-INF\classes to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\classes
    [2014-02-27 10:52:30.379][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.379][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.379][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\LanguagePacks\cas\fr_FR\webapp\WEB-INF\classes to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\classes
    [2014-02-27 10:52:30.394][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.425][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.441][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\LanguagePacks\cas\it_IT\webapp\WEB-INF\classes to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\classes
    [2014-02-27 10:52:30.457][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.472][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.472][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\LanguagePacks\cas\ja_JP\webapp\WEB-INF\classes to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\classes
    [2014-02-27 10:52:30.519][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.519][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.535][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\LanguagePacks\cas\ko_KR\webapp\WEB-INF\classes to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\classes
    [2014-02-27 10:52:30.550][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.566][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.566][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\LanguagePacks\cas\pt_BR\webapp\WEB-INF\classes to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\classes
    [2014-02-27 10:52:30.597][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.597][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.613][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\LanguagePacks\cas\zh_CN\webapp\WEB-INF\classes to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\classes
    [2014-02-27 10:52:30.629][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.629][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.644][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\LanguagePacks\cas\zh_TW\webapp\WEB-INF\classes to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF\classes
    [2014-02-27 10:52:30.644][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/wem/cas/dist/host.properties
    [2014-02-27 10:52:30.644][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/wem/cas/dist/jbossTicketCacheReplicationConfig.xml
    [2014-02-27 10:52:30.660][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/wem/cas/dist/cas.properties
    [2014-02-27 10:52:30.707][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.722][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.754][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:/Users/WCSPrueba/Desktop/Sites/wem/cas/dist/customBeans.xml
    [2014-02-27 10:52:30.769][CS.INSTALL][INFO] Configuring cas.war
    [2014-02-27 10:52:30.785][CS.INSTALL][INFO] C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas already exist.
    [2014-02-27 10:52:30.785][CS.INSTALL][INFO] Copying C:\Users\WCSPrueba\Desktop\Sites\wem\cas\dist\weblogic\webapp\WEB-INF\weblogic.xml to C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas\WEB-INF
    [2014-02-27 10:52:30.800][CS.INSTALL][INFO] ActionHandler.createDirectory()  Created directory C:\Users\WCSPrueba\oracle\webcenter\sites\Installation\buffering\webapp
    [2014-02-27 10:52:30.800][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/wem/Xcelerate/buffering/webapp
    [2014-02-27 10:52:30.847][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying client installers to webroot /
    [2014-02-27 10:52:30.863][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/buffering/webapp
    [2014-02-27 10:52:30.863][CS.INSTALL][INFO] ActionHandler.createDirectory()  Created directory C:\Users\WCSPrueba\oracle\webcenter\sites\Installation\uiframework\webapp
    [2014-02-27 10:52:30.879][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/wem/uiframework/webapp
    [2014-02-27 10:52:35.519][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() deploying directory Deploying client installers to webroot /
    [2014-02-27 10:52:35.597][CS.INSTALL][INFO] CSSetupEngine.deployDirAction() adding directory for later delete C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/uiframework/webapp
    [2014-02-27 10:52:35.613][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/wem/uiframework/uiframework-11.1.1.8.0.jar
    [2014-02-27 10:52:35.613][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Num of prds to install 2
    [2014-02-27 10:52:35.629][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Multi-product install detected. Finish Deployments was skipped. Num of prds to install 1
    [2014-02-27 10:52:35.660][CS.INSTALL][INFO] InstallActionManager.orderActions() : StartAppServer Action found at = (5)
    [2014-02-27 10:52:35.660][CS.INSTALL][INFO] ActionHandlercopyFile()  Copying directory C:/Users/WCSPrueba/Desktop/Sites/ucmintegration/ucm-poller-elements/dist/src
    [2014-02-27 10:52:35.894][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/ucmintegration/ucm-poller-11.1.1.8.0.jar
    [2014-02-27 10:52:35.894][CS.INSTALL][INFO] CSSetupEngine.deployAction() deploying file C:/Users/WCSPrueba/Desktop/Sites/ucmintegration/lib/oracle.ucm.ridc-11.1.1.jar
    [2014-02-27 10:52:35.894][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() Num of prds to install 1
    [2014-02-27 10:52:35.910][CS.INSTALL][INFO] CSWarBuilder.dumpHashToWar() : Beginning dump of internal hash to war file
    [2014-02-27 10:54:31.175][CS.INSTALL][INFO] CSWarBuilder.dumpHashToWar() : Finished dump of internal hash to war
    [2014-02-27 10:54:39.285][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\temp\ear/cs.war
    [2014-02-27 10:54:41.879][CS.INSTALL][INFO] CSSetupEngine.finishDeployAction() completing deployment.
    [2014-02-27 10:54:59.113][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/futuretense_cs
    [2014-02-27 10:55:08.722][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/cs-cache
    [2014-02-27 10:55:08.738][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/systemtools
    [2014-02-27 10:55:21.754][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/satellite.properties
    [2014-02-27 10:55:21.769][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/commons-logging.properties
    [2014-02-27 10:55:21.769][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/ServletRequest.properties
    [2014-02-27 10:55:21.785][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/Xcelerate
    [2014-02-27 10:55:53.629][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/Xcelerate
    [2014-02-27 10:55:53.629][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/configUI
    [2014-02-27 10:55:53.644][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/configuration
    [2014-02-27 10:55:53.644][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/Xcelerate
    [2014-02-27 10:55:53.660][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/classes
    [2014-02-27 10:55:53.660][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/Xcelerate
    [2014-02-27 10:55:53.660][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/LP/Xcelerate
    [2014-02-27 10:56:20.722][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/LP/html
    [2014-02-27 10:56:21.410][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/LP/systemtools/webapp
    [2014-02-27 10:56:23.363][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/LP/ckeditor
    [2014-02-27 10:56:49.207][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/avisports/webapp
    [2014-02-27 10:57:15.238][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/wem/webapp
    [2014-02-27 10:57:15.691][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/buffering/webapp
    [2014-02-27 10:57:15.691][CS.INSTALL][INFO] CSSetupEngine.finishDeploy() : Cleaning files/folders after deployment C:/Users/WCSPrueba/oracle/webcenter/sites/Installation/uiframework/webapp
    [2014-02-27 10:57:16.019][CS.INSTALL][INFO] CSWarBuilder.reset() : Finished building cs.war cleaning up working directories
    [2014-02-27 10:57:16.050][CS.INSTALL][INFO] Creating pre-configured cas.war file.
    [2014-02-27 10:57:41.222][CS.INSTALL][INFO] Creating cas.ear
    [2014-02-27 10:57:41.238][CS.INSTALL][INFO] ActionHandler.createDirectory()  Created directory C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas_temp\META-INF
    [2014-02-27 10:57:41.238][CS.INSTALL][INFO] ActionHandler.copyFile()  Copying C:\Users\WCSPrueba\oracle\webcenter\sites\ominstallinfo\cas.war
    [2014-02-27 10:57:47.769][CS.INSTALL][INFO] Deploying cas
    [2014-02-27 10:57:48.691][CS.INSTALL][INFO] InstallActionManager.orderActions() : StartAppServer Action found at = (-1)
    [2014-02-27 10:57:48.691][CS.INSTALL][INFO] InstallActionManager.orderActions() : StartAppServer Action found at = (-1)
    [2014-02-27 10:57:51.387][CS.INSTALL][INFO] CSSetupEngine.postURL:  PostURL failed for http://localhost:7001/cs/HelloCS 
    
    
    :: ERROR = Could not connect find the page specified. 
    Please verify the following:
    1) The application server is running.
    2) The servlets have been registered/deployed properly. 
    3)The web server plugin is configured properly.
    
    
    The response that was received = 
    HTTP/1.1 404 Not Found
    Date: Thu, 27 Feb 2014 15:57:51 GMT
    Content-Length: 1214
    Content-Type: text/html; charset=UTF-8
    X-Powered-By: Servlet/2.5 JSP/2.1
    
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Draft//EN">
    <HTML>
    <HEAD>
    <TITLE>Error 404--Not Found</TITLE>
    <META NAME="GENERATOR" CONTENT="WebLogic Server">
    </HEAD>
    <BODY bgcolor="white">
    <FONT FACE=Helvetica><BR CLEAR=all>
    <TABLE border=0 cellspacing=5><TR><TD><BR CLEAR=all>
    <FONT FACE="Helvetica" COLOR="black" SIZE="3"><H2>Error 404--Not Found</H2>
    </FONT></TD></TR>
    </TABLE>
    <TABLE border=0 width=100% cellpadding=10><TR><TD VALIGN=top WIDTH=100% BGCOLOR=white><FONT FACE="Courier New"><FONT FACE="Helvetica" SIZE="3"><H3>From RFC 2068 <i>Hypertext Transfer Protocol -- HTTP/1.1</i>:</H3>
    </FONT><FONT FACE="Helvetica" SIZE="3"><H4>10.4.5 404 Not Found</H4>
    </FONT><P><FONT FACE="Courier New">The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.</p><p>If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.</FONT></P>
    </FONT></TD></TR>
    </TABLE>
    
    
    </BODY>
    </HTML>
    
    
    [2014-02-27 10:57:51.403][CS.INSTALL][INFO] CSSetupEngine.postURL:  PostURL failed for http://localhost:7001/cs/Install?test=test&ReInit=FALSE&CSInstallType=single&CSInstallAccountName=ContentServer&CSInstallAccountPassword=%7BAES%7D8E311FD3AED487E783293A654850D949&CSInstallDirectory=C%3A%2FUsers%2FWCSPrueba%2Foracle%2Fwebcenter%2Fsites&CSInstallAppName=fwadmin&CSInstallAppPassword=%7BAES%7D8E311FD3AED487E783293A654850D949 
    
    
    :: ERROR = Could not connect find the page specified. 
    Please verify the following:
    1) The application server is running.
    2) The servlets have been registered/deployed properly. 
    3)The web server plugin is configured properly.
    
    
    The response that was received = 
    HTTP/1.1 404 Not Found
    Date: Thu, 27 Feb 2014 15:57:51 GMT
    Content-Length: 1214
    Content-Type: text/html; charset=UTF-8
    X-Powered-By: Servlet/2.5 JSP/2.1
    
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Draft//EN">
    <HTML>
    <HEAD>
    <TITLE>Error 404--Not Found</TITLE>
    <META NAME="GENERATOR" CONTENT="WebLogic Server">
    </HEAD>
    <BODY bgcolor="white">
    <FONT FACE=Helvetica><BR CLEAR=all>
    <TABLE border=0 cellspacing=5><TR><TD><BR CLEAR=all>
    <FONT FACE="Helvetica" COLOR="black" SIZE="3"><H2>Error 404--Not Found</H2>
    </FONT></TD></TR>
    </TABLE>
    <TABLE border=0 width=100% cellpadding=10><TR><TD VALIGN=top WIDTH=100% BGCOLOR=white><FONT FACE="Courier New"><FONT FACE="Helvetica" SIZE="3"><H3>From RFC 2068 <i>Hypertext Transfer Protocol -- HTTP/1.1</i>:</H3>
    </FONT><FONT FACE="Helvetica" SIZE="3"><H4>10.4.5 404 Not Found</H4>
    </FONT><P><FONT FACE="Courier New">The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.</p><p>If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.</FONT></P>
    </FONT></TD></TR>
    </TABLE>
    
    
    </BODY>
    </HTML>
    
    
    [2014-02-27 10:57:56.637][CS.INSTALL][INFO] CSSetupEngine.testConnectionAction:  Testing user configuration and database connectivity.
    [2014-02-27 10:57:56.669][CS.INSTALL][INFO] CSSetupEngine.postURL:  PostURL failed for http://localhost:7001/cs/HelloCS 
    
    
    :: ERROR = Could not connect find the page specified. 
    Please verify the following:
    1) The application server is running.
    2) The servlets have been registered/deployed properly. 
    3)The web server plugin is configured properly.
    
    
    The response that was received = 
    HTTP/1.1 404 Not Found
    Date: Thu, 27 Feb 2014 15:57:56 GMT
    Content-Length: 1214
    Content-Type: text/html; charset=UTF-8
    X-Powered-By: Servlet/2.5 JSP/2.1
    
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Draft//EN">
    <HTML>
    <HEAD>
    <TITLE>Error 404--Not Found</TITLE>
    <META NAME="GENERATOR" CONTENT="WebLogic Server">
    </HEAD>
    <BODY bgcolor="white">
    <FONT FACE=Helvetica><BR CLEAR=all>
    <TABLE border=0 cellspacing=5><TR><TD><BR CLEAR=all>
    <FONT FACE="Helvetica" COLOR="black" SIZE="3"><H2>Error 404--Not Found</H2>
    </FONT></TD></TR>
    </TABLE>
    <TABLE border=0 width=100% cellpadding=10><TR><TD VALIGN=top WIDTH=100% BGCOLOR=white><FONT FACE="Courier New"><FONT FACE="Helvetica" SIZE="3"><H3>From RFC 2068 <i>Hypertext Transfer Protocol -- HTTP/1.1</i>:</H3>
    </FONT><FONT FACE="Helvetica" SIZE="3"><H4>10.4.5 404 Not Found</H4>
    </FONT><P><FONT FACE="Courier New">The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.</p><p>If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.</FONT></P>
    </FONT></TD></TR>
    </TABLE>
    
    
    </BODY>
    </HTML>
    
    
    [2014-02-27 10:57:56.669][CS.INSTALL][ERROR] CSSetupEngine.testConnectionAction:  
    Install was unable to run the HelloCS servlet.
    Installation has halted.
    [2014-02-27 10:57:56.669][CS.INSTALL][ERROR] Worker.run. 
    Install failed.                
    Please check log file.                          
    
    Click Yes to modify your install choices      
    and re-try install.                             
    
    Click No to terminate application.
    

    And the Omni.ini file:

    #ContentServer install properties
    #Thu Feb 27 10:52:06 COT 2014
    bDoUpgradeFromCC40To45=false
    bDoUpgradeFromCC61To71=false
    FSStoreDemoData=true
    FSPrettyURL=true
    AdditionalPathToLib=server
    CSInstallDirectory=C\:/Users/WCSPrueba/oracle/webcenter/sites
    CSInstallAccountPassword={AES}8E311FD3AED487E783293A654850D949
    DBDriverType=Type4
    sAppFolderName=autodeploy
    it_IT=true
    $HOMEDIR=C\:/Users/WCSPrueba/
    CSInstallWebServerAddress=localhost
    bDoFromCatC51To61=true
    Summary_MarketingStudio=Oracle CM Applications~Engage
    $LDAPBASEDN=dc\=fatwire,dc\=com
    bUrlFileRollUp=false
    upgradelog4j=false
    bDoAllCatCProperties=true
    bShowDialog=true
    bDisplayPropEditor=FALSE
    InstallCCbDisplayPropEditor=false
    Summary_FSLocalUser=FirstSite II Sample Site~Flex Visitors with Samples
    bDoFromAFK51To61=true
    hostname=localhost
    bDoFromAC36xTo40=false
    Summary_FSDocSchema=FirstSite II Sample Site~Document Schema
    bDoFromMS45To51=true
    CSInstallDBPrivUser=CS.Empty
    bDoAllCCProperties=true
    CSManualDeployPath=c\:/bea/domains
    Summary_FSEngageStoreDemoData=FirstSite II Sample Site~Engage Extensions for Store Demo Data
    HideCASScreen=FALSE
    CASPortNumberLocal=7001
    zh_CN=true
    CASHostName=localhost
    ClassesComFolder=Variables.CSInstallWLDomainPath/autodeploy/CS/WEB-INF/classes/COM
    LOGFILE_FULLPATH=C\:/Users/WCSPrueba/oracle/webcenter/sites/logs/sites.log
    bDoFromComC45To51=true
    CSInstallAppPassword={AES}8E311FD3AED487E783293A654850D949
    Summary_ja_JP=Language Packs~Japanese (ja_JP) 
    Summary_FSCore=FirstSite II Sample Site~Structure and Navigation
    $LOGDIR=C\:/Users/WCSPrueba/oracle/webcenter/sites/ominstallinfo
    CSInstallWebServerPort=7001
    productautoselect=true
    FSCore=true
    CatalogCentreCurrentVersion=0.0.0.0.0
    DISP_CSInstallDatabaseType=Oracle 11g R1/11g R2 - Thin Driver
    bDoFromAC51To61=false
    bDoFromCatC40To45=true
    ko_KR=true
    Summary_pt_BR=Language Packs~Brazilian Portuguese (pt_BR) 
    Summary_de_DE=Language Packs~German (de_DE) 
    GatorCCUrlPath=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\ccurl\\
    TransactVad=yes
    VerifyAccountPassword={AES}8E311FD3AED487E783293A654850D949
    GatorVisitorRuleXML=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\ruleset\\
    MarketingStudioCurrentVersion=0.0.0.0.0
    CSInstallSharedDirectory=C\:/Users/WCSPrueba/oracle/webcenter/Shared
    DISP_CSInstallAppServerType=WebLogic 10.3.6+
    bDoAllMSProperties=true
    WCCIntegration=true
    es_ES=true
    bDoFromAFK40To45=true
    bDoAllAFKProperties=true
    WeblogicVersion=9
    Summary_FSDocDemoData=FirstSite II Sample Site~Document Demo Data
    Summary_CommerceConnector=Oracle CM Applications~Commerce Connector
    bPortalserver=false
    Summary_fr_FR=Language Packs~French (fr_FR) 
    CSAppServerLibBin=C\:/Users/WCSPrueba/oracle/webcenter/sites/bin
    cc.blob=BLOB
    FSEngageCore=true
    sCgiPath=/cs/
    $PLATFORM=Windows 7
    Summary_FSEngageCore=FirstSite II Sample Site~Engage Extensions for Structure and Navigation
    currentblobtype=LONG VARCHAR FOR BIT DATA
    bDoAllACProperties=false
    ObjPubDir=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\objpubdir
    $INSTALLDEST=C\:/Users/WCSPrueba/oracle/webcenter/sites
    GatorSessionData=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\session\\
    CSInstallSpark=false
    Summary_zh_TW=Language Packs~Traditional Chinese (zh_TW) 
    GatorHistoryDir=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\history\\
    $LOCALHOST=WCSPrueba-PC
    Summary_FSAnalytics=FirstSite II Sample Site~Analytics
    cs.dbconnpicture=$dsn
    bDoFromAC40To45=false
    Summary_WCCIntegration=WCC Integration~WCC Integration
    TypicalInstall=Custom
    bDoFromMS51To61=true
    MarketingStudio=true
    $$$Product6=false
    FSDocDemoData=true
    $$$Product5=false
    $$$Product4=false
    $$$Product3=false
    bTypicalInstall=false
    $$$Product2=false
    $$$Product1=false
    InstallLoggingbDisplayPropEditor=false
    $$$Product0=false
    CASTicketCacheMulticastPort=48866
    $OSType=NT
    bDoFromComC51To61=true
    AnalysisConnectorCurrentVersion=0.0.0.0.0
    FSLocalUser=true
    TempObjectsDir=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\tempobjects
    bDoFromCC45To51=true
    bDoFromAFK36xTo40=true
    CSInstallDatabaseType=Oracle10
    Summary_Avisports=Avisports Sample Site~Avisports Sample Site
    InstallCatCbDisplayPropEditor=false
    CSPreviousInstallType=false
    FSDocSchema=true
    FSEngageStoreSchema=true
    bJSPResponseWrapper=false
    bDoUpgradeFromCC45To51=false
    Summary_FSSiteView=FirstSite II Sample Site~Site Preview
    CSDefaultSharedDirectory=C\:\\Users\\WCSPrueba\\oracle\\webcenter
    bDoAllComCProperties=true
    CommerceConnectorCurrentVersion=0.0.0.0.0
    bDoAllCommerceCProperties=true
    bCSInstall=true
    GatorVisitorGenclasspath=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\classes\\
    installLang=TRUE
    portnumber=7001
    CSInstallAccountName=ContentServer
    bMandatoryLegacyInstall=false
    Summary_FSEngageStoreSchema=FirstSite II Sample Site~Engage Extensions for Store Schema
    ja_JP=true
    SSUserName=SatelliteServer
    CSWLS60ManualDeployPath=c\:/bea/domains
    CSAppServerLibBinNT=C\:/Users/WCSPrueba/oracle/webcenter/sites/bin
    $INSTALLDIR=C\:/Users/WCSPrueba/Desktop/Sites
    CSInstallAppName=fwadmin
    bDoFromMS40To45=true
    ClassesSComFolder=Variables.CSInstallWLDomainPath/autodeploy/CS/WEB-INF/classes/com
    GatorPublishDir=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\publish\\
    SSUserPassword={AES}8E311FD3AED487E783293A654850D949
    Summary_FSPrettyURL=FirstSite II Sample Site~URL Assembler Package
    LinuxAddOnPathToLib=false
    FS2InstallType=single
    pt_BR=true
    de_DE=true
    Avisports=true
    Summary_it_IT=Language Packs~Italian (it_IT) 
    GatorVisPath=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\sites\\
    ReInit=FALSE
    bDoFromComC40To45=true
    bRunningManaged=FALSE
    FSSiteView=true
    LoggerName=org.apache.commons.logging.impl.Log4JLogger
    HideCASInfoFields=FALSE
    Summary_CatalogCentre=Typical Installation Options~Install CS-Direct Advantage
    CSAppsVersion=falcon
    bDoUpgradeFromCC36xTo40=false
    CSInstallAppServerRootPath=Variables.CSInstallWLDomainPath
    CSInstallWebRootPath=C\:/Users/WCSPrueba/oracle/webcenter/sites/futuretense_cs
    WorkflowDir=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\workflow
    PubKeyDir=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\pubkeys
    bDoDBInitialization=true
    fr_FR=true
    SaveSearchDir=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\savedsearch
    FSStoreDemoDataCurrentVersion=0.0.0.0.0
    Summary_FSStoreSchema=FirstSite II Sample Site~Store Schema
    Development=true
    CSInstallType=single
    CASHostNameActual=localhost
    CASPortNumber=7001
    VerifySSPassword={AES}8E311FD3AED487E783293A654850D949
    Summary_FSStoreDemoData=FirstSite II Sample Site~Store Demo Data
    Summary_ContentCentre=Typical Installation Options~Install CS-Direct
    VisitorURLPath=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\visurl\\
    InstallACbDisplayPropEditor=false
    zh_TW=true
    Summary_zh_CN=Language Packs~Simplified Chinese (zh_CN) 
    bDoFromCatC45To51=true
    Oracle\ Installation=Content Server
    bShowInstallTypeDialog=true
    CCVersionString=0.0.0.0.0
    bDoFromCatC36xTo40=true
    LockDir=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\lock
    CSConnectPrefix=http
    VerifyAppPassword={AES}8E311FD3AED487E783293A654850D949
    CartsetDir=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\gator\\cartset\\
    CSInstallbManual=TRUE
    bDoFromCC36xTo40=true
    bDoFromAFK45To51=true
    PLATFORMVENDOR=BEA
    bDoFromCC51To61=true
    GatorSearchDir=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\gator\\searchdir\\
    $$$AppServerType=WLS90
    CatalogCentre=true
    CSInstallPlatformType=APPSERVER
    bDoFromMS36xTo40=true
    CSInstallWLWebAppName=CS
    bDoUpgradeFromCC51To61=false
    IsPrimaryClusterMember=true
    Summary_ko_KR=Language Packs~Korean (ko_KR) 
    FSAnalytics=true
    FSStoreSchema=true
    CASHostNameLocal=localhost
    FSEngageStoreDemoData=true
    Summary_es_ES=Language Packs~Spanish (es_ES) 
    Summary_WEM=Web Experience Management~WEM
    ContentCentre=true
    $BASEDIR=c\:
    ClassesCrysecFolder=Variables.CSInstallWLDomainPath/autodeploy/CS/WEB-INF/classes/crysec
    WEM=true
    CSInstallAdminDomainName=SitesDomain
    CSInstallAppServerType=wls92
    bDoFromAC45To51=false
    ThumbnailDir=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\thumbnails
    CSConnectString=http\://localhost\:7001/cs/
    CommerceConnector=true
    bDoFromComC36xTo40=true
    upgradelog=C\:/Users/WCSPrueba/oracle/webcenter/sites/logs/sites.log
    ACStoragePath=C\:\\Users\\WCSPrueba\\oracle\\webcenter\\Shared\\queue\\
    ContentCentreCurrentVersion=0.0.0.0.0
    CSInstallAppServerPath=C\:/Oracle/Middleware/wlserver_10.3
    $OSArch=amd64
    CSInstallDBDSN=csDataSource
    CSLicenseAgreement=YES
    XmlTempArea=C\:/Users/WCSPrueba/oracle/webcenter/sites/xmltemp
    TSStoreNumber=2
    bDoFromCC40To45=true
    

    I can not test the URL ' http://localhost:7001/HelloCS/cs Show me a page 404

    I really appreciate any help

    Sorry about that, I can see the title of the thread that you are using the GUI installer. The question remains the same. You will need to manually deploy the web apps cs and case in weblogic on your managed server and make sure that you use port managed server in the wizard in step you provided in the screenshot (7101 I think).

    I can see that you select the following for apps path based on your record of maryvonne:

    CSManualDeployPath = it\: / bea/areas

    This is where the cs and case applications are, and you will need to deploy those when the installer asks you to di that. Then, restart the server and test the url.

    Best regards

    Pedro

  • InDesign reinstall help

    Last night InDesign somehow disappeared from my dock (Mac). I didn't need the program more for the evening and went to bed. This morning, he was still gone and when I spotted it does not open. He told me to uninstall and then reinstall and gave me the error Code: 11. I uninstalled it but have no idea how to reinstall. Help, please. I have a looming deadline.

    Hey kglad,.

    I appreciate the answer! I called support and, after a long telephone conversation, got sorted.

    Thanks again!

  • JDBC Sybase connection - issue of OWB11gr2

    Hi all

    We are uning OWB11gr2 on GNU / linux 64-bit. Database is Oracle 11.1.0.6. We strive to connect to Sybase, database is ASA 9.0.


    Add JAR files 'jconn2.jar' and 'jodbc.jar"under OWB_HOME, owb, lib, ext.
    Restarted customer Control Center Agent and OWB.
    Created a new platform to connect to Sybase database.

    Under rental details.

    I entered the username and password.
    Port number of the database.

    I kept the empty schema option.

    Classroom pilot - com.sybase.jdbc2.jdbc.SysDriver
    URL - jdbc:sybase:Tds:machine - name: port-number/databasename

    When I hit the test connection button it returns as a success.

    But when I try to import database objects, I don't see any database objects.

    After testing the connection (successfully) when I hit the Browse button to get the schema names, I get the following error:

    Failure: information accessor java.sql.SQLException:jZ0sj:Metadata has not been found on this database. Please install the required tables such as mentioned in the documentation for jconnect.

    What could be the problem? I don't know if this problem is related to OWB or Sybase.

    When I use the ODBC connection in the windows box with the same user name and password for the database even I see little tables and views.

    Any help is appreciated.

    Kind regards
    Samurai.

    Hi Samurai

    Ah cool, progress... you can dd the "long varchar' type to the platform

    Platform OMBALTER 'SYBASE_AS_ENTERPRISE', 'Long varchar' ADD PLATFORM_TYPE
    Platform OMBALTER "SYBASE_AS_ENTERPRISE" PLATFORM_TYPE EDIT "VALUES long varchar ' SET PROPERTIES (SYNTAX) ("long varchar')
    Platform OMBALTER "SYBASE_AS_ENTERPRISE' ADD FROM_PLATFORM_TYPEMAP 'LONVARCHARL_TOG' SET PROPERTIES (FROM_DATATYPE, TO_DATATYPE) VALUES ('long varchar', 'TEXT')

    I have to bug of the fact that the message is bad in OWB (unsupported data type! might be more useful... as you say what it is).

    See you soon
    David

  • How to compare the length of the data to a staging table with the definition of the base table

    Hello
    I have two tables: staging of the table and the base table.
    I get flatfiles data in the staging of the table, depending on the structure of the requirement of staging of the table and the base table (length of each column in the staging table is 25% more data dump without errors) are different for ex: If we have the city long varchar 40 column in table staging there 25 in the base table. Once data are discharged into the intermediate table that I want to compare the actual length of the data for each column in the staging table with the database table definition (data_length for each column of all_tab_columns) and if no column is different length that I need to update the corresponding line in the intermediate table which also has an indicator called err_length.

    so for that I use the cursor c1 is select length (a.id), length (b.SID) of staging_table;
    c2 (name varchar2) cursor is select data_length all_tab_columns where table_name = 'BASE_TABLE' and column_name = name;
    But we get atonce data in the first query while the second slider, I need to get for each column and then compare with the first?
    Can someone tell me how to get the desired results?

    Thank you
    Manoi.

    Hey, Marco.

    Of course, you can set src.err_length in the USING clause (where you can reference all_tab_columns) and use this value in the SET clause.
    It is:

    MERGE INTO  staging_table   dst
    USING  (
           WITH     got_lengths     AS
                     (
              SELECT  MAX (CASE WHEN column_name = 'ENAME' THEN data_length END)     AS ename_len
              ,     MAX (CASE WHEN column_name = 'JOB'   THEN data_length END)     AS job_len
              FROM     all_tab_columns
              WHERE     owner          = 'SCOTT'
              AND     table_name     = 'EMP'
              )
         SELECT     s.ename
         ,     s.job
         ,     CASE WHEN LENGTH (s.ename) > l.ename_len THEN 'ENAME ' END     ||
              CASE WHEN LENGTH (s.job)   > l.job_len   THEN 'JOB '   END     AS err_length
         FROM     staging_table     s
         JOIN     got_lengths     l     ON     LENGTH (s.ename)     > l.ename_len
                             OR     LENGTH (s.job)          > l.job_len
         )     src
    ON     (src.ename     = dst.ename)
    WHEN MATCHED THEN UPDATE
         SET     dst.err_length     = src.err_length
    ;
    

    As you can see, you have to hardcode the names of the columns common to several places. I swam () to simplify that, but I found an interesting (at least for me) alternative grouping function involving the STRAGG user_defined.
    As you can see, only the subquery USING is changed.

    MERGE INTO  staging_table   dst
    USING  (
           SELECT       s.ename
           ,       s.job
           ,       STRAGG (l.column_name)     AS err_length
           FROM       staging_table          s
           JOIN       all_tab_columns     l
          ON       l.data_length  < LENGTH ( CASE  l.column_name
                                              WHEN  'ENAME'
                                    THEN      ename
                                    WHEN  'JOB'
                                    THEN      job
                                       END
                               )
           WHERE     l.owner      = 'SCOTT'
           AND      l.table_name     = 'EMP'
           AND      l.data_type     = 'VARCHAR2'
           GROUP BY      s.ename
           ,           s.job
           )     src
    ON     (src.ename     = dst.ename)
    WHEN MATCHED THEN UPDATE
         SET     dst.err_length     = src.err_length
    ;
    

    Instead of the user-defined STRAGG (that you can copy from AskTom), you can also use the undocumented, or from Oracle 11.2, WM_CONCAT LISTAGG built-in function.

Maybe you are looking for

  • Exchange of CPU on Satellite Pro P300-180

    Hi allcan anyone help? I have an old P300-180 and am looking to change the cpu I can go from a t2490 a p9700 someone's already done it

  • Satellite Pro A60 does not recognize DVD-R blank disc

    Can anyone help? I've tried several brands of DVD - R, but also blank discs DVD + R on my Satellite Pro A60, but very few of them are even recognized. Pioneer DV - RW DVR - K13A is supposed to work correctly when I check the Properties tab. I tried t

  • dv6-1320ep recovery disks

    I have a Pavilion dv6-1320ep and I have not the recovery disc for it and I do not have them. I have a recovery partition and I tried to restore the default settings, but it stopped at 1%. So now I can't even making a record of recovery because window

  • How to install Service Pack 2 on an old computer?

    I have an old computer that I am trying to get running for a friend, and he need to Windows Service pack 2 (it works on XP), but it doesn't have an internet connection. I'm not sure what action I can take that are plausible and legal. I tried to burn

  • Windows explore appcrash wmvdecod.dll

    Windows explore appcrash wmvdecod.dll - cannot do anything, the pop up screen says explore ceased.   If I try to X out or to seek a solution, it closes and comes right off.  An endless loop.    Impossible to get in Start button or all files - mouse w