Timezone Validation

Hi All
I need to check Australia day not in (sat,sun) and time between 8 am - 8 pm for below query
SQL> SELECT present.object_type, present.object_id
2 FROM (SELECT cb2.object_type, cb2.object_id,incident_status_name,incident_severity_name
3 FROM cs_brm_3d_service_request_v cb2,
4 cs_incidents_all cia,
5 jtf_rs_groups_vl jrgv
6 WHERE cb2.record_status = 'PRESENT'
7 AND ( cb2.incident_id = cia.incident_id )
8 AND cb2.incident_type_name = 'Customer Service Request'
9 AND cia.owner_group_id = jrgv.GROUP_ID
10 AND jrgv.group_name IN ('CSA')
11 AND cb2.incident_status_name NOT IN
12 ('Waiting on Client',
13 'Pending Research',
14 'Waiting on Responder')
15 AND cb2.close_date IS NULL
16 AND cb2.creation_date <= (SYSDATE - 1440 / 1440)
17 AND NOT EXISTS (SELECT 1 FROM cs_hz_sr_contact_points chsc
18 WHERE chsc.incident_id =cb2.incident_id)
19 )present
20 WHERE 1=1
21 AND TO_CHAR (SYSDATE, 'dy') NOT IN ('sat', 'sun')
22 AND SYSDATE >= TRUNC(SYSDATE) + (8 / 24)
23 AND SYSDATE <= TRUNC(SYSDATE) + (20 / 24);
Could you please Advise me..
My server in New york

Hi,
Welcome to the forum!
You can see if the current time in Sydney, Austraila is between 8:00:00 am and 8:00:00 pm (inclusive) like this:
WHERE   TO_CHAR ( SYSTIMESTAMP AT TIME ZONE 'Australia/Sydney'
          , 'HH24:MI:SS'
          )     BETWEEN     '08:00:00'
               AND     '20:00:00'The NEW_TIME function can also return the time in time zone A, given a time in time zone B.
http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/functions097.htm#sthref1686

Similar Messages

  • Schema validation not enforcing full datetime or timezone formats

    We have a schema definition which requires that all date elements are in the format YYYY-MM-DDTHH:MM:SSZ (eg 2010-06-05T05:26:59Z),
    so to register this in Oracle we have added xdb:SQLType="TIMESTAMP WITH TIME ZONE" against the date elements.
    However if a date contains a value in YYYY-MM-DD format, then the schema passes validation in Oracle. This is incorrect as the same
    xml fails validation in Altova XMLSpy. [http://www.w3schools.com/schema/schema_dtypes_date.asp] confirms that all components of the date
    format are required.
    To illustrate my point:
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Oct 5 11:19:15 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> DECLARE
    2 xmlschema CLOB := '<?xml version="1.0" encoding="UTF-8"?>
    4 <xs:schema xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
    5 <xs:complexType name="dateTypes" mixed="true" xdb:SQLType="DATES_T">
    6 <xs:sequence>
    7 <xs:element name="date" type="xs:date"/>
    8 <xs:element name="dateTime" type="xs:dateTime"/>
    9 <xs:element name="timestamp" type="xs:dateTime" xdb:SQLType="TIMESTAMP WITH TIME ZONE"/>
    10 </xs:sequence>
    11 </xs:complexType>
    12 <xs:element name="Test" type="dateTypes" xdb:defaultTable="DATE_TABLE"/>
    13 </xs:schema>' ;
    14 BEGIN
    15 dbms_xmlschema.registerSchema (schemaURL => 'Testdate.xsd',
    16 schemaDoc => xmlschema,
    17 local => TRUE,
    18 genTypes => TRUE,
    19 genBean => FALSE,
    20 genTables => TRUE);
    21 END;
    22 /
    PL/SQL procedure successfully completed.
    SQL> DECLARE
    2 xmlfile XMLTYPE := xmltype('<Test>
    3 <date>2010-06-05</date>
    4 <dateTime>2010-06-05T05:26:59</dateTime>
    5 <timestamp>2010-06-05T05:26:59Z</timestamp>
    6 </Test>') ;
    7 BEGIN
    8 xmlfile := xmlfile.createSchemaBasedXML ('Testdate.xsd');
    9 xmlfile.schemaValidate ();
    10 END;
    11 /
    PL/SQL procedure successfully completed.
    SQL> SQL> DECLARE
    2 xmlfile XMLTYPE := xmltype('<Test>
    3 <date>2010-06-05</date>
    4 <dateTime>2010-06-05</dateTime>
    5 <timestamp>2010-06-05</timestamp>
    6 </Test>') ;
    7 BEGIN
    8 xmlfile := xmlfile.createSchemaBasedXML ('Testdate.xsd');
    9 xmlfile.schemaValidate ();
    10 END;
    11 /
    PL/SQL procedure successfully completed.
    The latter xml should fail. Validating this in XMLSpy it gives the error:
    Value '2010-06-05' is not allowed for element <dateTime>.
         Hint: A valid value would be '2001-12-17T09:30:47Z'.
         Error location: Test / dateTime
         Details
              cvc-datatype-valid.1.2.1: For type definition 'xs:dateTime' the string '2010-06-05' does not match a literal in the lexical space of built-in type definition 'xs:dateTime'.
              cvc-simple-type.1: For type definition 'xs:dateTime' the string '2010-06-05' is not valid.
              cvc-type.3.1.3: The normalized value '2010-06-05' is not valid with respect to the type definition 'xs:dateTime'.
              cvc-elt.5.2.1: The element <dateTime> is not valid with respect to the actual type definition 'xs:dateTime'.
    Is there any way to enforce validation of the full format?
    We are running Oracle 10.2.0.4 on Linux.
    Jon

    SQL> sho user
    USER is "OTN"
    SQL> desc date_table
    Name                                      Null?    Type
    TABLE of SYS.XMLTYPE(XMLSchema "Testdate.xsd" Element "Test") STORAGE Object-relational TYPE "DATES_T"
    SQL> desc "DATES_T"
    "DATES_T" is NOT FINAL
    Name                                      Null?    Type
    SYS_XDBPD$                                         XDB.XDB$RAW_LIST_T
    date                                               DATE
    dateTime                                           TIMESTAMP(6)
    timestamp                                          TIMESTAMP(6) WITH TIME ZONE
    SQL> DECLARE
      2    xmlfile XMLTYPE := xmltype('<Test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      3                   xsi:noNamespaceSchemaLocation="Testdate.xsd">
      4                      <date>2010-06-05</date>
      5                      <dateTime>2010-06-05</dateTime>
      6                      <timestamp>2010-06-05</timestamp>
      7                      </Test>') ;
      8  BEGIN
      9      xmlfile.schemaValidate ();
    10 END;
    11 /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    SQL> DECLARE
      2    xmlfile XMLTYPE := xmltype('<Test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      3                   xsi:noNamespaceSchemaLocation="Testdate.xsd">
      4                      <date>2010-06-05</date>
      5                      <dateTime>2010-06-05</dateTime>
      6                      <timestamp>2010-06-05</timestamp>
      7                      </Test>') ;
      8  BEGIN
      9      insert into date_table
    10      values
    11      (xmlfile);
    12  END;
    13 /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    SQL> select * from date_table;
    SYS_NC_ROWINFO$
    <Test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchem
    aLocation="Testdate.xsd"><date>2010-06-05</date><dateTime>2010-06-05T00:00:00.00
    0000</dateTime><timestamp>2010-06-05T00:00:00.000000+00:00</timestamp></Test>
    SQL>DECLARE
      2    xmlfile XMLTYPE := xmltype('<Test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      3                                xsi:noNamespaceSchemaLocation="Testdate.xsd">
      4                               <date>2010-06-05</date>
      5                               <dateTime>2010-06-05T05:26:59</dateTime>
      6                               <timestamp>2010-06-05T05:26:59Z</timestamp>
      7                               </Test>') ;
      8  BEGIN
      9      insert into date_table
    10      values
    11      (xmlfile);
    12 END;
    13 /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    SQL>  select * from date_table;
    SYS_NC_ROWINFO$
    <Test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchem
    aLocation="Testdate.xsd"><date>2010-06-05</date><dateTime>2010-06-05T00:00:00.00
    0000</dateTime><timestamp>2010-06-05T00:00:00.000000+00:00</timestamp></Test>
    <Test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchem
    aLocation="Testdate.xsd"><date>2010-06-05</date><dateTime>2010-06-05T05:26:59.00
    0000</dateTime><timestamp>2010-06-05T05:26:59.000000+00:00</timestamp></Test>
    Elapsed: 00:00:00.01Edited by: Marco Gralike on Oct 5, 2010 5:40 PM

  • Validation Errors with new Install of W7 x64 Ent Debug Checker On New Equipment

    I am receiving multiple Errors. I am trying to use the Windows 7 x64 Enterprise which happens to be the Debug Checker version OS as the host machine.  I have only built the machine, and tried to load the Drivers.
    I say this due to the starting issue that upon the loading of the entire driver set, (for the MB, Seagate Harddrive, and Vid Card), I would get the BSOD.  I identified that the Bluetooth driver was the issue.  I then did not load the Bluetooth
    drivers for the MB on the 5<sup>th</sup> or so install of the 7 Ent os.  (Tried Server 2k8 r2. Which is not compatible with the MB Drivers.)
    I have not received a single Update either.  The Auto update feature claims that I am up to date.  I do not believe this due to the fact that any fresh Install of any OS has about several decades of updates and reboots to go through.
    Upon trying the suggestions on the forum about turning off the IE Addons, the errors remain.  Also the results of the sfc /scannow are copied below.
    My Questions
    I am seeking assistance on solving the Errors that have refused to leave me alone , to put it humorously and am asking for your insight and wisdom.  Will you take a look??
    Do I need to go to Win 7 Ent or Ult x64 that is not a Debug Checker version.
    Are there other Microsoft download Registery file checkers besides the MGA Diag tool that are freeware that I can use to check, for corrupted registry files.
    Or do I just need to take it to the stores (Fry’s and Microcenter) that recommended the equipment and have them just reload the software and allow them the headache of solving the error issue, by paying them to install the drivers and have ALL of the
    drivers work. (including the blue tooth)
    The Goal is to turn it into a Active Directory Server using Virtual Box with Server 2k8 R2 running in the virtual box environment.
    Errors and Results.
    There are also a number of logs that show various Crit, Error, and Warning logs.  I will include those if need be.
    This is the majority of the error messages, and I have missed the opportunity to capture others.
    Internet explorer encountered Validation errors:
    Validation Error
    i.     
    Process Name: iexplorer.exe
    ii.     
    Module Name : mshtml.dll
    iii.     
    Assert offset: 0000000000B221DB
    Validation Error
    i.     
    Process Name: iexplorer.exe
    ii.     
    Module Name : comctl32.dl
    iii.     
    Assert offset: 00133A2A
    Validation Error
    i.     
    Process Name: iexplorer.exe
    ii.     
    Module Name : mshtml.dll
    iii.     
    Assert offset: 008BE823
    Validation Error
    i.     
    Process Name: iexplorer.exe
    ii.     
    Module Name : mshtml.dll
    iii.     
    Assert offset: 0040F9E8
    Validation Error
    i.     
    Process Name: iexplorer.exe
    ii.     
    Module Name : iertutil.dll
    iii.     
    Assert offset: 001DEC51
    Validation Error
    i.     
    Process Name: iexplorer.exe
    ii.     
    Module Name : KERNELBASE.dll
    iii.     
    Assert offset: 00014159
    Validation Error
    i.     
    Process Name: iexplorer.exe
    ii.     
    Module Name : mshtml.dll
    iii.     
    Assert offset: 0000000000B221DB
    Microsoft Management Console Encountered a Validation Error
    Validation Error
    i.     
    Process Name: mmc.exe
    ii.     
    Module Name : ieframe.dll
    iii.     
    Assert offset: 00000000006C9283
    Scripted Diagnostics Native Hot encountered a Validation Error
    Validation Error
    i.     
    Process Name: sdiagnhost.exe
    ii.     
    Module Name : urlmon.dll
    iii.     
    Assert offset: 00000000001A0A73
    Validation Error
    i.     
    Process Name: sdiagnhost.exe
    ii.     
    Module Name : KERNELBASE.dll
    iii.     
    Assert offset: 0000000000017f32
    Windows System Assessment Tool encountered a validation error
    Validation Error
    i.     
    Process Name: winsat.exe
    ii.     
    Module Name : KERNELBASE.dll
    iii.     
    Assert offset: 0000000000017F32
    Windows Explorer Encountered a validation Error
    Validation Error
    i.     
    Process Name: Explored.exe
    ii.     
    Module Name : thumbcache.dll
    iii.     
    Assert offset: 00000000000300BE
    AI Suite 2 encountered a validation error
    Validation Error
    i.     
    Process Name: AI Suite 2.exe
    ii.     
    Module Name : ntdll.dll
    iii.     
    Assert offset: 000686BD
    the number “2” is the substitutedfor the roman numeral 2
    I believe that this is part of the MB Suite.
    My the environment is a new equipment, and Downloaded student software. Windows 7 Enterprise SPK 1 Debug Checker, Valid Key with the software download.  Activated on 8-12-2012
    Motherboard: Asus p9x79 Deluxe, Part number: 90-mibh50-g0aay0kz
    Chip Set: bx80619i73930k
    2x Memory: cmx16gx3m2a1600c11 Corsair
    Video Card: Diamond R7870 2GB DD OC 2xDVI/HDMI/2xDisplayport memory Clock 1250 MHz
    Hard Drive: 9jb1n3-574 (leave the last two didgets off when searching in the browser) This is a Seagate 2TB
    Generic optic drive: SH-222bb/bebe Samsung
    Here is the Microsoft Fix It error code
    Assertion Failed!
    Program:…
    File: d:\w7rtm\ds\security\cryptoapi\pki\...\newstor.cpp
    Line: 2131
    Expression: pStore->dwState = = STORE_STATE_OPEN || pStore->dwState = = STORE_STATE_OPENING || pStore->dwState = = STORE_STATE_DEFER_CLOSING || pStore->dwState = = STORE_STATE_NULL
    For information on how your program can cause an assertion failure, see the Visual C++ documentation on asserts
    (Press Retry to debug the application – JIT must be enabled)
                    Abort    Retry     Ignore
    Abort
    Closes the program
    Retry
    Repeats the error
    Verbatim
    Ignore
    Closes the program
    Nothing happens
    Here is the Microsoft Genuine Advantage Diagnostic Report
    Diagnostic Report (1.9.0027.0):
    Windows Validation Data-->
    Validation Code: 0
    Cached Online Validation Code: N/A, hr = 0xc004f012
    Windows Product Key: *****-*****-*****-*****-8C7YB
    Windows Product Key Hash: cezvXJ2/mUhIEFxJfWkZ3IN8EQQ=
    Windows Product ID: 55041-146-2397786-86942
    Windows Product ID Type: 6
    Windows License Type: Volume MAK
    Windows OS version: 6.1.7601.2.00010100.1.0.004
    ID: {EBD85729-DBBB-479F-AB15-EBC0DDE0CC28}(1)
    Is Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/A, hr = 0x80070002
    Signed By: N/A, hr = 0x80070002
    Product Name: Windows 7 Enterprise
    Architecture: 0x00000009
    Build lab: 7601.win7sp1_rtm.101119-1850
    TTS Error:
    Validation Diagnostic:
    Resolution Status: N/A
    Vista WgaER Data-->
    ThreatID(s): N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    Windows XP Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    File Exists: No
    Version: N/A, hr = 0x80070002
    WgaTray.exe Signed By: N/A, hr = 0x80070002
    WgaLogon.dll Signed By: N/A, hr = 0x80070002
    OGA Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    OGAExec.exe Signed By: N/A, hr = 0x80070002
    OGAAddin.dll Signed By: N/A, hr = 0x80070002
    OGA Data-->
    Office Status: 109 N/A
    OGA Version: N/A, 0x80070002
    Signed By: N/A, hr = 0x80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3
    Browser Data-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default Browser: c:\Program Files (x86)\Internet Explorer\iexplore.exe
    Download signed ActiveX controls: Prompt
    Download unsigned ActiveX controls: Disabled
    Run ActiveX controls and plug-ins: Allowed
    Initialize and script ActiveX controls not marked as safe: Disabled
    Allow scripting of Internet Explorer Webbrowser control: Disabled
    Active scripting: Allowed
    Script ActiveX controls marked as safe for scripting: Allowed
    File Scan Data-->
    File Mismatch: C:\Windows\system32\wat\watadminsvc.exe[Hr = 0x80070003]
    File Mismatch: C:\Windows\system32\wat\npwatweb.dll[Hr = 0x80070003]
    File Mismatch: C:\Windows\system32\wat\watux.exe[Hr = 0x80070003]
    File Mismatch: C:\Windows\system32\wat\watweb.dll[Hr = 0x80070003]
    Other data-->
    Office Details: <GenuineResults><MachineData><UGUID>{EBD85729-DBBB-479F-AB15-EBC0DDE0CC28}</UGUID><Version>1.9.0027.0</Version><OS>6.1.7601.2.00010100.1.0.004</OS><Architecture>x64</Architecture><PKey>*****-*****-*****-*****-BBBBB</PKey><PID>55041-146-2397786-86942</PID><PIDType>6</PIDType><SID>S-1-5-21-4234423899-2489109333-1931045272</SID><SYSTEM><Manufacturer>System
    manufacturer</Manufacturer><Model>System Product Name</Model></SYSTEM><BIOS><Manufacturer>American Megatrends Inc.</Manufacturer><Version>1103</Version><SMBIOSVersion major="2" minor="7"/><Date>20120409000000.000000+000</Date></BIOS><HWID>CFBA3607018400F2</HWID><UserLCID>0409</UserLCID><SystemLCID>0409</SystemLCID><TimeZone>Pacific
    Standard Time(GMT-08:00)</TimeZone><iJoin>0</iJoin><SBID><stat>3</stat><msppid></msppid><name></name><model></model></SBID><OEM/><GANotification/></MachineData><Software><Office><Result>109</Result><Products/><Applications/></Office></Software></GenuineResults> 
    Spsys.log Content: 0x80070002
    Licensing Data-->
    Software licensing service version: 6.1.7601.17514
    Name: Windows(R) 7, Enterprise edition
    Description: Windows Operating System - Windows(R) 7, VOLUME_MAK channel
    Activation ID: 9abf5984-9c16-46f2-ad1e-7fe15931a8dd
    Application ID: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 55041-00172-146-239778-03-1033-7601.0000-2252012
    Installation ID: 000792957432055771547065313840421702569731971164600080
    Processor Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    Machine Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use License URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product Key Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial Product Key: 8C7YB
    License Status: Licensed
    Remaining Windows rearm count: 5
    Trusted time: 8/12/2012 5:47:25 PM
    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: N/A
    HealthStatus: 0x0000000000000000
    Event Time Stamp: N/A
    ActiveX: Not Registered - 0x80040154
    Admin Service: Not Registered - 0x80040154
    HealthStatus Bitmask Output:
    HWID Data-->
    HWID Hash Current: OAAAAAEAAgABAAEAAgACAAAABAABAAEAHKJu3XDSdMRkx4ieoGkwung0ipvkrmTRDIsORc6qNCE=
    OEM Activation 1.0 Data-->
    N/A
    OEM Activation 2.0 Data-->
    BIOS valid for OA 2.0: yes, but no SLIC table
    Windows marker version: N/A
    OEMID and OEMTableID Consistent: N/A
    BIOS Information:
      ACPI Table Name           OEMID Value     OEMTableID Value
      APIC                                    ALASKA                               
    A M I
      FACP                                   ALASKA                               
    A M I
      HPET                                    ALASKA                               
    A M I
      MCFG                                 ALASKA                               
    OEMMCFG.
      SSDT                                    AMICPU                              
    PROC
    Scan Now Results
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Windows\system32>sfc /scannow
    Beginning system scan.  This process will take some time.
    Beginning verification phase of system scan.
    Verification 100% complete.
    Windows Resource Protection did not find any integrity violations.
    C:\Windows\system32>

    Thank you for your valuable time.
    I have performed the Chkdsk and the memory Diagnostic tool as per the suggestions.
    The Memory Tool did not find anything amiss.
    As per another thread I am going to try flashing the bios as well with the updates.
    Following are the Chkdsk results.
    Are there any other suggestions?
    Chkdsk Results
    Checking file system on C:
    The type of the file system is NTFS.
    A disk check has been scheduled.
    Windows will now check the disk.                        
    CHKDSK is verifying files (stage 1 of 5)...
      89600 file records processed.                               
              File verification completed.
      221 large file records processed.                                     
    0 bad file records processed.                                       
    1596 EA records processed.                                             
    44 reparse records processed.                                      
    CHKDSK is verifying indexes (stage 2 of 5)...
      131874 index entries processed.                                        
    Index verification completed.
      0 unindexed files scanned.                                           0
    unindexed files recovered.                                       CHKDSK
    is verifying security descriptors (stage 3 of 5)...
      89600 file SDs/SIDs processed.                                        
    Cleaning up 36 unused index entries from index $SII of file 0x9.
    Cleaning up 36 unused index entries from index $SDH of file 0x9.
    Cleaning up 36 unused security descriptors.
    Security descriptor verification completed.
      21138 data files processed.                                           
    CHKDSK is verifying Usn Journal...
      36120296 USN bytes processed.                                            
    Usn Journal verification completed.
    CHKDSK is verifying file data (stage 4 of 5)...
      89584 files processed.                                                
    File data verification completed.
    CHKDSK is verifying free space (stage 5 of 5)...
      476262075 free clusters processed.                                        
    Free space verification is complete.
    Windows has checked the file system and found no problems.
    1953410047 KB total disk space.
      48065140 KB in 61610 files.
         43468 KB in 21139 indexes.
             0 KB in bad sectors.
        253139 KB in use by the system.
         65536 KB occupied by the log file.
    1905048300 KB available on disk.
          4096 bytes in each allocation unit.
     488352511 total allocation units on disk.
     476262075 allocation units available on disk.
    Internal Info:
    00 5e 01 00 ef 42 01 00 ef 95 02 00 00 00 00 00  .^...B..........
    e3 00 00 00 2c 00 00 00 00 00 00 00 00 00 00 00  ....,...........
    6d 00 75 00 69 00 00 00 00 00 00 00 00 00 00 00  m.u.i...........
    Windows has finished checking your disk.
    Please wait while your computer restarts.

  • UDI wizard is not applying TimeZone setting (MDT2013)

    Hi All,
    I am working on MDT2013 to create Windows7-64bit Image for OEM vendor. Note:- I am not using any SQL database.
    I have customized the UDIWizard_Config.xml where it should ask for UIlanguage, Inputlocale and Timezone. I am calling this UDI wizard xml in Tasksequence after gathering locally here the problem is after completing the build its not applying the Timezone
    setting in image.
    Any one aware about this issue? why UDI wizard is not applying the Timezone setting in image? 
    I have attached the below UDI wizard XML. please answer and ask if you require any more details..
    <?xml version="1.0" encoding="UTF-8"?>
    -<Wizard>
    -<DLLs>
    <DLL Name="OSDRefreshWizard.dll"/>
    <DLL Name="SharedPages.dll"/>
    </DLLs>
    -<Style>
    <Setter Property="bannerFilename">UDI_Wizard_Banner.bmp</Setter>
    <Setter Property="title">Operating System Deployment (OSD) Wizard</Setter>
    </Style>
    -<Pages>
    -<Page Name="WelcomePage" Type="Microsoft.SharedPages.WelcomePage" DisplayName="Welcome">
    -<Fields>
    -<Field Name="WelcomeText" Summary="" Enabled="true">
    <Default> Welcome to the Deployment Wizard. This wizard will walk you through a series of screens that will allow you to choose Language type. Click on the 'Next' button to start your selected language pack installalation. Please allow 1 hours for installation. If you need support during this process, please e-mail your system administrator. </Default>
    </Field>
    </Fields>
    </Page>
    -<Page Name="ConfigScanPage" Type="Microsoft.OSDRefresh.ConfigScanPage" DisplayName="Deployment Readiness">
    -<Tasks StatusTitle="Status" NameTitle="Configuration Check Name">
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="Check Windows Scripting Host">
    <Setter Property="filename">%windir%\system32\cscript.exe</Setter>
    <Setter Property="parameters">Preflight\OSDCheckWSH.vbs</Setter>
    <Setter Property="BitmapFilename">images\WinScriptHost.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Windows Scripting Host not installed." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.SharedPages.WiredNetworkTask" DisplayName="Wired Network Check">
    <Setter Property="BitmapFilename">images\WiredNetwork.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="No Wired connection found. Please plug in to a network cable." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.OSDRefresh.AppDiscoveryTask" DisplayName="Application Discovery">
    <Setter Property="readcfg">$LogPath$\OSDSetupWizard.xml.app</Setter>
    <Setter Property="writecfg">%temp%\AppDiscoveryresult.xml.app</Setter>
    <Setter Property="log">$LogPath$\AppDiscovery.log</Setter>
    <Setter Property="BitmapFilename">images\AppDiscovery.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="Successfully scanned applications." Value="0" State="Success"/>
    <ExitCode Type="1" Text="Could not run application discovery engine (reason unknown). The appropriate applications may not be selected." Value="*" State="Warning"/>
    <ExitCode Type="1" Text="One or more warnings were encountered (nonfatal) while running App Discovery. The appropriate applications may not be selected." Value="1" State="Warning"/>
    <ExitCode Type="1" Text="Critical problems were encountered while initializing App Discovery. The appropriate applications may not be selected." Value="16777216" State="Warning"/>
    <ExitCode Type="1" Text="Critical problems were encountered while processing the Application Master List. The appropriate applications may not be selected." Value="33554432" State="Warning"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="Get Printers">
    <Setter Property="filename">%windir%\system32\cscript.exe</Setter>
    <Setter Property="parameters">Preflight\OSD_GetPrinters.vbs /xmlout:%temp%\PrinterList.xml;$LogPath$\PrinterList.xml</Setter>
    <Setter Property="BitmapFilename">images\Printers.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="1" Text="Output filename not specified correctly." Value="10" State="Warning"/>
    <ExitCode Type="1" Text="Unable to create output file." Value="20" State="Warning"/>
    <ExitCode Type="1" Text="An unknown error has occurred." Value="*" State="Warning"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="CheckSMSFolderOnUSB">
    <Setter Property="filename">%windir%\system32\cscript.exe</Setter>
    <Setter Property="parameters">Preflight\CheckSMSFolderOnUSB.vbs</Setter>
    <Setter Property="BitmapFilename">images\USB.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Please disconnect any USB Drives at this time, cancel the wizard, and start the task sequence over." Value="*" State="Error"/>
    <Error Type="-1" Text="The path not found" Value="2" State="Error"/>
    <Error Type="-1" Text="The file not found" Value="3" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.OSDRefresh.ACPowerTask" DisplayName="AC Power Check">
    <Setter Property="BitmapFilename">images\ACPower.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="No AC power detected. Please plug in to power." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="Check Drive Encryption">
    <Setter Property="filename">%windir%\system32\cscript.exe</Setter>
    <Setter Property="parameters">Preflight\OSDBitlockerState.vbs %systemdrive%</Setter>
    <Setter Property="BitmapFilename">images\bitlocker.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="1" Text="Drive is fully encrypted. Encryption will be paused during deployment and resumed." Value="1" State="Warning"/>
    <ExitCode Type="1" Text="Drive encryption is paused. Encryption will resume after deployment has completed." Value="4" State="Warning"/>
    <ExitCode Type="1" Text="Drive encryption is paused. Encryption will resume after deployment has completed." Value="5" State="Warning"/>
    <ExitCode Type="-1" Text="Drive is currently encrypting. Please fully encrypt or pause encryption to continue." Value="2" State="Error"/>
    <ExitCode Type="-1" Text="Drive is currently decrypting. Please fully decrypt or pause decryption to continue." Value="3" State="Error"/>
    <ExitCode Type="-1" Text="A script error was detected. Please contact support to continue." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    </Tasks>
    </Page>
    -<Page Name="ConfigScanBareMetal" Type="Microsoft.OSDRefresh.ConfigScanPage" DisplayName="Deployment Readiness">
    -<Tasks StatusTitle="Status" NameTitle="Configuration Check Name">
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="Check Windows Scripting Host">
    <Setter Property="filename">%windir%\system32\cscript.exe</Setter>
    <Setter Property="parameters">Preflight\OSDCheckWSH.vbs</Setter>
    <Setter Property="BitmapFilename">images\WinScriptHost.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Windows Scripting Host not installed." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.SharedPages.WiredNetworkTask" DisplayName="Wired Network Check">
    <Setter Property="BitmapFilename">images\WiredNetwork.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="No Wired connection found. Please plug in to a network cable." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.OSDRefresh.ACPowerTask" DisplayName="AC Power Check">
    <Setter Property="BitmapFilename">images\ACPower.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="No AC power detected. Please plug in to power." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.OSDRefresh.PrestageDriveLookupTask" DisplayName="OEMMedia Lookup">
    <Setter Property="BitmapFilename"/>
    -<ExitCodes>
    <ExitCode Type="0" Text="Success" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Error" Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.OSDRefresh.AppDiscoveryTask" DisplayName="Application Discovery">
    <Setter Property="readcfg">%OSDDataSourceDrive%\%OSDDataSourceDirectory%\AppDiscoveryresult.xml.app</Setter>
    <Setter Property="writecfg">%temp%\AppDiscoveryresult.xml.app</Setter>
    <Setter Property="log">$LogPath$\AppDiscovery.log</Setter>
    <Setter Property="BitmapFilename">images\AppDiscovery.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="Successfully scanned applications." Value="0" State="Success"/>
    <ExitCode Type="1" Text="Could not run application discovery engine (reason unknown). The appropriate applications may not be selected." Value="*" State="Warning"/>
    <ExitCode Type="0" Text="AppDiscovery exited with success as Application matching information is not available in Windows PE." Value="1" State="Success"/>
    <ExitCode Type="1" Text="Critical problems were encountered while initializing App Discovery. The appropriate applications may not be selected." Value="16777216" State="Warning"/>
    <ExitCode Type="1" Text="Critical problems were encountered while processing the Application Master List. The appropriate applications may not be selected." Value="33554432" State="Warning"/>
    </ExitCodes>
    </Task>
    </Tasks>
    </Page>
    -<Page Name="RebootPage" Type="Microsoft.OSDRefresh.RebootPage" DisplayName="Reboot">
    -<Fields>
    -<Field Name="RebootText" Summary="" Enabled="true">
    <Default> Your machine will now be rebooted. Click on the 'Finish' button to reboot. </Default>
    </Field>
    </Fields>
    </Page>
    -<Page Name="WelcomePageReplace" Type="Microsoft.SharedPages.WelcomePage" DisplayName="Welcome">
    -<Fields>
    -<Field Name="WelcomeText" Summary="" Enabled="true">
    <Default> Welcome to the Replace Wizard. This wizard will walk you through a series of screens that will allow you to customize your data and settings for USMT. After you have entered the information, the wizard will begin USMT. Click on the 'Next' button to start. Please allow 2 hours for USMT. If you need support during this process, please e-mail your system administrator. </Default>
    </Field>
    </Fields>
    </Page>
    -<Page Name="VolumePage" Type="Microsoft.OSDRefresh.VolumePage" DisplayName="Volume">
    -<Fields>
    <Field Name="Image" Summary="Image Selection:" Enabled="true" VarName="OSDImageIndex"/>
    -<Field Name="Volume" Summary="Volume:" Enabled="true">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">There are no volumes available for installing the OS.</Setter>
    </Validator>
    </Field>
    <Field Name="Directory" Summary="Windows Directory:" Enabled="true"/>
    <Field Name="Format" Summary="Format:" Enabled="true" VarName="OSDDiskPart"/>
    </Fields>
    <Setter Property="MinimumVolumeSize">10</Setter>
    <Setter Property="FormatWinPE">Partition and &format disk 0.</Setter>
    <Setter Property="FormatFullOS">&Clean the selected volume.</Setter>
    <Setter Property="FormatWinPEWarning">WARNING: Choosing this option will repartition and format disk 0!</Setter>
    <Setter Property="FormatFullOSWarning">WARNING: Choosing this option will delete all data on the target volume!</Setter>
    -<Data Name="ImageSelection">
    -<DataItem>
    <Setter Property="DisplayName">Windows 7 RTM (x86)</Setter>
    <Setter Property="Index">1</Setter>
    <Setter Property="Architecture">x86</Setter>
    <Setter Property="ImageName">Windows 7 RTM Images</Setter>
    </DataItem>
    </Data>
    </Page>
    -<Page Name="UserRestorePage" Type="Microsoft.OSDRefresh.UserStatePage" DisplayName="Select Target">
    -<Fields>
    <RadioGroup Name="LocationGroup" Locked="false"/>
    -<Field Name="TargetDrive" Enabled="true" VarName="">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">No target drive found. Please insert a valid USB drive and click the Refresh button.</Setter>
    </Validator>
    </Field>
    -<Field Name="NetworkLocation" Enabled="true" VarName="SMSConnectNetworkFolderPath">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">No valid network share.</Setter>
    </Validator>
    </Field>
    -<Field Name="Username" Summary="User:" Enabled="true" VarName="OSDUserStateKey">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">You have to input user name. Example is domain\user.</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">User name format is invalid. Example is domain\user.</Setter>
    <Setter Property="Pattern">^([A-Za-z0-9-\.]+)\\([^+#,*"<>;=\[\]:?/|']+)$</Setter>
    </Validator>
    </Field>
    -<Field Name="Password" Summary="" Enabled="true" VarName="OSDUserStateKeyPassword">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">Password is required. Please enter the password.</Setter>
    </Validator>
    </Field>
    <Field Name="NoDataRadio" Enabled="true" VarName=""/>
    <Field Name="LocalRadio" Enabled="true" VarName=""/>
    <Field Name="USBRadio" Enabled="true" VarName=""/>
    <Field Name="NetworkRadio" Enabled="true" VarName=""/>
    </Fields>
    <Setter Property="NetworkPassword"/>
    <Setter Property="NetworkUsername"/>
    <Setter Property="DataSourceText">Please select a location where user data will be captured and/or restored.</Setter>
    <Setter Property="Format">disable</Setter>
    <Setter Property="FormatPrompt">disable</Setter>
    <Setter Property="MinimumDriveSize">10</Setter>
    <Setter Property="State">Restore</Setter>
    <Setter Property="NetworkDrive">n:</Setter>
    <Data Name="Network"/>
    </Page>
    -<Page Name="ComputerPage" Type="Microsoft.OSDRefresh.ComputerPage" DisplayName="New Computer Details">
    -<Fields>
    -<RadioGroup Name="DomainGroup" Locked="false">
    <Default>Workgroup</Default>
    </RadioGroup>
    -<Field Name="ComputerName" Summary="Computer Name:" Enabled="true" VarName="OSDComputerName">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">The computer name is required. Please enter a computer name.</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">The computer name is not valid. It either contains a character that isn't allowed, or is longer than 15 characters.</Setter>
    <Setter Property="NamedPattern">ComputerName</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.InvalidChars">
    <Setter Property="Message">One of the characters in the computer name is not valid.</Setter>
    <Setter Property="InvalidChars"/>
    </Validator>
    </Field>
    -<Field Name="DomainCombo" Enabled="true" VarName="OSDDomainName">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">You must select a domain.</Setter>
    </Validator>
    </Field>
    <Field Name="DomainOUCombo" Enabled="true" VarName="OSDDomainOUName"/>
    -<Field Name="WorkgroupName" Summary="Workgroup:" Enabled="true" VarName="OSDWorkgroupName">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">The workgroup name must be between 1 and 15 characters long, and cannot contain any of these characters: " : ; | = + * ? < ></Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">The workgroup name must be between 1 and 15 characters long, and cannot contain any of these characters: " : ; | = + * ? < ></Setter>
    <Setter Property="NamedPattern">Workgroup</Setter>
    </Validator>
    </Field>
    -<Field Name="Username" Summary="Join Domain Account:" Enabled="true" VarName="OSDJoinAccount">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">You have to input user name. Example is domain\user.</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">User name format is invalid. Example is domain\user.</Setter>
    <Setter Property="Pattern">^([A-Za-z0-9-\.]+)\\([^+#,*"<>;=\[\]:?/|']+)$</Setter>
    </Validator>
    </Field>
    -<Field Name="Password" Summary="" Enabled="true" VarName="OSDJoinPassword">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">Password is required. Please enter the password.</Setter>
    </Validator>
    </Field>
    </Fields>
    <Setter Property="ADCredentialCheck" Type="boolean">true</Setter>
    <Setter Property="ADComputerObjectCheck" Type="boolean">true</Setter>
    <Setter Property="UseExistingComputerName" Type="boolean">false</Setter>
    <Data Name="Domain"/>
    </Page>
    -<Page Name="AdminAccounts" Type="Microsoft.SharedPages.AdminAccountsPage" DisplayName="Administrator Password">
    -<Fields>
    -<Field Name="Username" Summary="Add as Administrator:" Enabled="true" VarName="OSDAddAdmin">
    <Default>%OSDJoinAccount%</Default>
    -<Validator Type="Microsoft.Wizard.Validation.InvalidChars">
    <Setter Property="Message">One of the characters in the Account Name(s) field is not valid.</Setter>
    <Setter Property="InvalidChars">/[]:|=,+*<>?"</Setter>
    </Validator>
    </Field>
    -<Field Name="Password" Summary="" Enabled="true" VarName="OSDLocalAdminPassword">
    <Default/>
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">Password is required. Please enter the password.</Setter>
    </Validator>
    </Field>
    </Fields>
    </Page>
    -<Page Name="UDAPage" Type="Microsoft.OSDRefresh.UDAPage" DisplayName="User Device Affinity">
    -<Fields>
    -<Field Name="DeviceAfinity" Summary="" Enabled="true">
    <Default>false</Default>
    </Field>
    -<Field Name="Username" Summary="User Device Affinity Account:" Enabled="true" VarName="SMSTSUdaUsers">
    <Default>%OSDJoinAccount%</Default>
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">You have to input user name. Example is domain\user.</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">User name format is invalid. Example is domain\user.</Setter>
    <Setter Property="Pattern">^([A-Za-z0-9-]+)\\([^+#,*"<>;=\[\]:?/|']+)$</Setter>
    </Validator>
    </Field>
    <Field Name="Password" Enabled="true"/>
    </Fields>
    </Page>
    -<Page Name="LanguagePage" Type="Microsoft.OSDRefresh.LanguagePage" DisplayName="Language">
    -<Fields>
    -<Field Name="LanguagePack" Summary="Language Pack:" Enabled="true" VarName="UILanguage">
    <Default>DE-DE</Default>
    </Field>
    -<Field Name="InputLocale" Summary="Locale:" Enabled="true" VarName="UserLocale">
    <Default>en-US</Default>
    </Field>
    -<Field Name="KeyboardLocale" Summary="Keyboard Locale:" Enabled="true" VarName="KeyboardLocale">
    <Default>00000409</Default>
    </Field>
    -<Field Name="TimeZone" Summary="Time Zone:" Enabled="true" VarName="OSDTimeZone">
    <Default>Pacific Standard Time</Default>
    </Field>
    </Fields>
    -<Data Name="LanguagePacks">
    -<DataItem>
    <Setter Property="DisplayName">English (United States)</Setter>
    <Setter Property="Language">EN-US</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Chinese (Hong Kong S.A.R.)</Setter>
    <Setter Property="Language">ZH-HK</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">German (Germany)</Setter>
    <Setter Property="Language">DE-DE</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Japanese (Japan)</Setter>
    <Setter Property="Language">JA-JP</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Polish (Poland)</Setter>
    <Setter Property="Language">PL-PL</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Romanian (Romania)</Setter>
    <Setter Property="Language">RO-RO</Setter>
    </DataItem>
    </Data>
    </Page>
    -<Page Name="ApplicationPage" Type="Microsoft.OSDRefresh.ApplicationPage" DisplayName="Install Programs">
    <Setter Property="Link.Uri">%temp%\AppDiscoveryresult.xml.app</Setter>
    <Setter Property="TsAppBaseVariable">PACKAGES</Setter>
    <Setter Property="TsApplicationBaseVariable">APPLICATIONS</Setter>
    <Setter Property="TsWindowsAppPackageAppBaseVariable">WINDOWSAPPPACKAGEAPPS</Setter>
    <Setter Property="TsAppInstall">AppInstall</Setter>
    </Page>
    <Page Name="SummaryPage" Type="Microsoft.Shared.SummaryPage" DisplayName="Summary"/>
    -<Page Name="UserCapturePageOldPC" Type="Microsoft.OSDRefresh.UserStatePage" DisplayName="Select Target">
    -<Fields>
    <RadioGroup Name="LocationGroup" Locked="false"/>
    -<Field Name="TargetDrive" Enabled="true" VarName="">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">No target drive found. Please insert a valid USB drive and click the Refresh button.</Setter>
    </Validator>
    </Field>
    -<Field Name="NetworkLocation" Enabled="true" VarName="SMSConnectNetworkFolderPath">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">No valid network share.</Setter>
    </Validator>
    </Field>
    -<Field Name="Username" Summary="User:" Enabled="true" VarName="OSDUserStateKey">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">You have to input user name. Example is domain\user.</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">User name format is invalid. Example is domain\user.</Setter>
    <Setter Property="Pattern">^([A-Za-z0-9-\.]+)\\([^+#,*"<>;=\[\]:?/|']+)$</Setter>
    </Validator>
    </Field>
    -<Field Name="Password" Summary="" Enabled="true" VarName="OSDUserStateKeyPassword">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">Password is required. Please enter the password.</Setter>
    </Validator>
    </Field>
    <Field Name="NoDataRadio" Enabled="false" VarName=""/>
    <Field Name="LocalRadio" Enabled="false" VarName=""/>
    <Field Name="USBRadio" Enabled="true" VarName=""/>
    <Field Name="NetworkRadio" Enabled="true" VarName=""/>
    </Fields>
    <Setter Property="NetworkPassword"/>
    <Setter Property="NetworkUsername"/>
    <Setter Property="DataSourceText">Please select a location where user data will be captured.</Setter>
    <Setter Property="Format">disable</Setter>
    <Setter Property="FormatPrompt">disable</Setter>
    <Setter Property="MinimumDriveSize">10</Setter>
    <Setter Property="State">Capture</Setter>
    <Setter Property="NetworkDrive">n:</Setter>
    <Data Name="Network"/>
    </Page>
    -<Page Name="ProgressPage" Type="Microsoft.OSDRefresh.ProgressPage" DisplayName="Capture Data">
    <Setter Property="LogFilename">$LogPath$\USMTcapture.prg</Setter>
    -<Tasks StatusTitle="Status" NameTitle="Task Name">
    -<Task Type="Microsoft.Wizard.CopyFilesTask" DisplayName="Copy AppDiscovery XML">
    <File Dest="$DriveLetter$\%OSDDataSourceDirectory%" Source="%temp%\AppDiscoveryresult.xml.app"/>
    <Setter Property="BitmapFilename">images\copy.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Copy failed." Value="*" State="Error"/>
    <Error Type="-1" Text="Copy failed. Please check the OSD Wizard log file for details." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.CopyFilesTask" DisplayName="Copy Printers XML">
    <File Dest="$DriveLetter$\%OSDDataSourceDirectory%" Source="%temp%\PrinterList.xml"/>
    <Setter Property="BitmapFilename">images\Printers.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Copy failed. Please check the OSD Wizard log file for details." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.CopyFilesTask" DisplayName="Copy ProductsList">
    <File Dest="$DriveLetter$\%OSDDataSourceDirectory%" Source="%temp%\ProductsInstalled.txt"/>
    <Setter Property="BitmapFilename">images\copy.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Copy failed." Value="*" State="Error"/>
    <Error Type="-1" Text="Copy failed. Please check the OSD Wizard log file for details." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="Run USMT">
    <Setter Property="BitmapFilename">images\usmt.bmp</Setter>
    <Setter Property="filename">%windir%\system32\wscript.exe</Setter>
    <Setter Property="parameters">//B %ScriptRoot%\ZTIUserState.wsf /capture /OSDStateStorePath:$DriveLetter$\%OSDDataSourceDirectory% /UserDataKey:%OSDUserStateKeyPassword%</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="USMT scan state failed." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    </Tasks>
    </Page>
    -<Page Name="RebootAfterCapture" Type="Microsoft.OSDRefresh.RebootPage" DisplayName="Reboot">
    -<Fields>
    -<Field Name="RebootText" Summary="" Enabled="true">
    <Default> Your machine will now be rebooted. Click on the 'Finish' button to reboot. </Default>
    </Field>
    </Fields>
    </Page>
    -<Page Name="BitLocker" Type="Microsoft.OSDRefresh.BitLockerPage" DisplayName="BitLocker">
    -<Fields>
    <!-- Valid values: TPM,TPMPIN,TPMKey and ExternalKey-->
    -<RadioGroup Name="BitLockerRadioGroup" Locked="false">
    <Default>TPMPIN</Default>
    </RadioGroup>
    -<RadioGroup Name="LocationGroup" Locked="false">
    <Default>AD</Default>
    </RadioGroup>
    -<Field Name="BitLocker" Summary="" Enabled="true" VarName="BDEInstallSuppress">
    <Default>True</Default>
    </Field>
    -<Field Name="PIN" Summary="" Enabled="true" VarName="BDEPIN">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">The PIN must not be emtpy</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">PIN should be a number between 4-20 digits</Setter>
    <Setter Property="Pattern">^[0-9-]{4,20}$</Setter>
    </Validator>
    </Field>
    -<Field Name="WaitForEncryption" Summary="" Enabled="true" VarName="OSDBitlockerWaitForEncryption">
    <Default>True</Default>
    </Field>
    </Fields>
    <Setter Property="KeyLocation"/>
    </Page>
    -<Page Name="Build Type" Type="Microsoft.Wizard.CustomPage" DisplayName="Build Type">
    -<Fields>
    -<Field Name="label3" Summary="" Enabled="true" VarName="">
    <Default>Choose Language Type</Default>
    </Field>
    -<RadioGroup Name="Group1" Summary="ABBLan" Enabled="true" VarName="ABBLang" Locked="false">
    <Default>radiobutton1</Default>
    </RadioGroup>
    -<Field Name="combo5" Summary="ABBLang" Enabled="true" VarName="ABBLang">
    <Default>English</Default>
    </Field>
    </Fields>
    -<Data Name="CustomFields">
    -<DataItem>
    <Setter Property="ControlType">label</Setter>
    <Setter Property="ID">3</Setter>
    <Setter Property="X">37.27</Setter>
    <Setter Property="Y">3.67</Setter>
    <Setter Property="Width">100</Setter>
    <Setter Property="Height">12</Setter>
    <Setter Property="Name">label3</Setter>
    <Setter Property="Label">Choose Language Type</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="ControlType">combo</Setter>
    <Setter Property="ID">5</Setter>
    <Setter Property="X">36.87</Setter>
    <Setter Property="Y">21.25</Setter>
    <Setter Property="Width">100</Setter>
    <Setter Property="Height">12</Setter>
    <Setter Property="Name">combo5</Setter>
    </DataItem>
    </Data>
    -<Data Name="combo5">
    -<DataItem>
    <Setter Property="DisplayName">English</Setter>
    <Setter Property="Value">0</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Chinese</Setter>
    <Setter Property="Value">1</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Japanese</Setter>
    <Setter Property="Value">2</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">German</Setter>
    <Setter Property="Value">3</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-2</Setter>
    <Setter Property="Value">4</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-3</Setter>
    <Setter Property="Value">5</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-4</Setter>
    <Setter Property="Value">6</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-5</Setter>
    <Setter Property="Value">7</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-6</Setter>
    <Setter Property="Value">8</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-7</Setter>
    <Setter Property="Value">9</Setter>
    </DataItem>
    </Data>
    </Page>
    </Pages>
    -<StageGroups>
    -<StageGroup DisplayName="New Computer">
    -<Stage Name="NEWCOMPUTER" DisplayName="New Computer">
    <PageRef Page="WelcomePage"/>
    <PageRef Page="LanguagePage"/>
    <PageRef Page="SummaryPage"/>
    </Stage>
    -<Stage Name="NEWCOMPUTER.Prestaged" DisplayName="New Computer (prestaged media)">
    <PageRef Page="WelcomePage"/>
    <PageRef Page="BitLocker"/>
    <PageRef Page="UserRestorePage"/>
    <PageRef Page="ConfigScanBareMetal"/>
    <PageRef Page="ComputerPage"/>
    <PageRef Page="AdminAccounts"/>
    <PageRef Page="UDAPage"/>
    <PageRef Page="LanguagePage"/>
    <PageRef Page="ApplicationPage"/>
    <PageRef Page="SummaryPage"/>
    </Stage>
    </StageGroup>
    -<StageGroup DisplayName="Refresh">
    -<Stage Name="REFRESH" DisplayName="Refresh">
    <PageRef Page="WelcomePage"/>
    <PageRef Page="VolumePage"/>
    <PageRef Page="UserRestorePage"/>
    <PageRef Page="ConfigScanPage"/>
    <PageRef Page="ComputerPage"/>
    <PageRef Page="AdminAccounts"/>
    <PageRef Page="LanguagePage"/>
    <PageRef Page="ApplicationPage"/>
    <PageRef Page="SummaryPage"/>
    </Stage>
    </StageGroup>
    -<StageGroup DisplayName="Replace">
    -<Stage Name="REPLACE" DisplayName="Replace, in full OS">
    <PageRef Page="WelcomePageReplace"/>
    <PageRef Page="ConfigScanPage"/>
    <PageRef Page="RebootPage"/>
    </Stage>
    -<Stage Name="REPLACE.WinPE" DisplayName="Replace, in WinPE">
    <PageRef Page="UserCapturePageOldPC"/>
    <PageRef Page="ProgressPage"/>
    <PageRef Page="RebootAfterCapture"/>
    </Stage>
    </StageGroup>
    </StageGroups>
    </Wizard>

    I don't know much about the UDI but I think the FieldName should be TimeZoneName and not just TimeZone.

  • Error during Component Deployment Validation

    Windows 2008 SP2 64-bit server running JBoss and LiveCycle ES2 SP1 after installing SP2, running the Configuration Manager, I get the following error in the LiveCycle Component Deployment Validation stage:
    adobe-usermanager-dsc.jar is deployed but is not currently running
    adobe-usermanager-jit-dsc.jar is deployed but is not currently running
    Then validation completes.
    If I go onto the Configure PDF Generator ES2 step, it doesn't have my previously configured user credentials for multi-threaded native conversions, and if I attempt to add any I get:
    An error occurred while adding user. See LCM logs for details.
    Swapping over to the admin webpage, there are no longer any users listed under PDFG User Accounts, in fact that page has this error in the moddle
    ALC-PDG-001-000-Conversion of the input file failed because of an exception.
    And no users or profiles in Settings -> Trust Store Management -> User and Password Credentials. Adding a profile here gives:
    An error has occurred. Please see error log for details.
    If I go into Services -> Applications and Services -> Service Management, and filter for Stopped services, I can see four usermanager services stopped; AuthorizationManagerService, DirectoryManagerService, SPIRegistrationService and AuthenticationManagerService. Selecting any of these and trying to Start them gives:
    ALC-AAC-0017-000: Service(s) failed to start. It could be configuration problem

    Server.log
    2011-02-01 17:30:52,630 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.
    2011-02-01 17:30:52,630 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Setting up property manager MBean and JMX layer
    2011-02-01 17:30:52,786 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Starting recovery manager
    2011-02-01 17:30:52,849 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Recovery manager started
    2011-02-01 17:30:52,864 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Binding TransactionManager JNDI Reference
    2011-02-01 17:30:55,115 INFO  [org.jboss.ejb3.EJB3Deployer] Starting java:comp multiplexer
    2011-02-01 17:30:56,771 INFO  [org.jboss.ws.core.server.ServiceEndpointManager] jbossws-1.2.1.GA (build=200704151756)
    2011-02-01 17:30:57,396 INFO  [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] SNMP agent going active
    2011-02-01 17:30:57,990 INFO  [org.jboss.iiop.CorbaNamingService] Naming: [IOR:000000000000002B49444C3A6F6D672E6F72672F436F734E616D696E672F4E616D696E67436F6E746578 744578743A312E3000000000000200000000000000E8000102000000000D31302E32302E32312E31373000000D C8000000114A426F73732F4E616D696E672F726F6F74000000000000050000000000000008000000004A414300 000000010000001C00000000050100010000000105010001000101090000000105010001000000210000006000 000000000000010000000000000024000000200000007E00000000000000010000000D31302E32302E32312E31 373000000DC9004000000000000000000010040100080606678102010101000000000000000000000000000000 00000000000000002000000004000000000000001F000000040000000300000001000000200000000000000002 0000002000000004000000000000001F0000000400000003]
    2011-02-01 17:30:58,021 WARN  [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.transaction.arjunacore.lastResource.startupWarning] [com.arjuna.ats.internal.jta.transaction.arjunacore.lastResource.startupWarning] You have chosen to enable multiple last resources in the transaction manager. This is transactionally unsafe and should not be relied upon.
    2011-02-01 17:30:58,037 INFO  [org.jboss.tm.iiop.CorbaTransactionService] TransactionFactory: [IOR:000000000000003049444C3A6F72672F6A626F73732F746D2F69696F702F5472616E73616374696F6E46 6163746F72794578743A312E30000000000200000000000000E8000102000000000D31302E32302E32312E3137 3000000DC8000000144A426F73732F5472616E73616374696F6E732F4600000005000000000000000800000000 4A414300000000010000001C000000000501000100000001050100010001010900000001050100010000002100 00006000000000000000010000000000000024000000200000007E00000000000000010000000D31302E32302E 32312E31373000000DC90040000000000000000000100401000806066781020101010000000000000000000000 0000000000000000000000002000000004000000000000001F0000000400000003000000010000002000000000 000000020000002000000004000000000000001F0000000400000003]
    2011-02-01 17:30:58,427 INFO  [org.apache.catalina.core.AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.6.0_19\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Wi ndows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;D:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Common Files\Adobe\AGL
    2011-02-01 17:30:58,537 INFO  [org.apache.coyote.http11.Http11Protocol] Initializing Coyote HTTP/1.1 on http-10.20.21.170-8080
    2011-02-01 17:30:58,537 INFO  [org.apache.coyote.ajp.AjpProtocol] Initializing Coyote AJP/1.3 on ajp-10.20.21.170-8009
    2011-02-01 17:30:58,537 INFO  [org.apache.catalina.startup.Catalina] Initialization processed in 232 ms
    2011-02-01 17:30:58,537 INFO  [org.apache.catalina.core.StandardService] Starting service jboss.web
    2011-02-01 17:30:58,537 INFO  [org.apache.catalina.core.StandardEngine] Starting Servlet Engine: JBossWeb/2.0.0.GA
    2011-02-01 17:30:58,568 INFO  [org.apache.catalina.startup.Catalina] Server startup in 29 ms
    2011-02-01 17:30:58,646 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/, warUrl=.../deploy/jboss-web.deployer/ROOT.war/
    2011-02-01 17:30:59,115 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/httpha-invoker.sar/invoker.war/
    2011-02-01 17:30:59,334 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/jbossws, warUrl=.../tmp/deploy/tmp1594363530041496429jbossws-context-exp.war/
    2011-02-01 17:30:59,568 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/juddi, warUrl=.../deploy/juddi-service.sar/juddi.war/
    2011-02-01 17:30:59,646 INFO  [org.apache.juddi.registry.RegistryServlet] Loading jUDDI configuration.
    2011-02-01 17:30:59,677 INFO  [org.apache.juddi.registry.RegistryServlet] Resources loaded from: /WEB-INF/juddi.properties
    2011-02-01 17:30:59,677 INFO  [org.apache.juddi.registry.RegistryServlet] Initializing jUDDI components.
    2011-02-01 17:30:59,990 INFO  [org.jboss.mail.MailService] Mail Service bound to java:/Mail
    2011-02-01 17:31:00,646 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-local-jdbc.rar
    2011-02-01 17:31:00,678 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-xa-jdbc.rar
    2011-02-01 17:31:00,787 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar
    2011-02-01 17:31:00,818 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-xa-jdbc.rar
    2011-02-01 17:31:00,849 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/quartz-ra.rar
    2011-02-01 17:31:00,865 INFO  [org.jboss.resource.adapter.quartz.inflow.QuartzResourceAdapter] start quartz!!!
    2011-02-01 17:31:00,912 INFO  [org.quartz.simpl.SimpleThreadPool] Job execution threads will use class loader of thread: main
    2011-02-01 17:31:00,928 INFO  [org.quartz.core.QuartzScheduler] Quartz Scheduler v.1.6.0 created.
    2011-02-01 17:31:00,928 INFO  [org.quartz.simpl.RAMJobStore] RAMJobStore initialized.
    2011-02-01 17:31:00,928 INFO  [org.quartz.impl.StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
    2011-02-01 17:31:00,928 INFO  [org.quartz.impl.StdSchedulerFactory] Quartz scheduler version: 1.6.0
    2011-02-01 17:31:00,928 INFO  [org.quartz.core.QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
    2011-02-01 17:31:01,099 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=IDP_DS' to JNDI name 'java:IDP_DS'
    2011-02-01 17:31:01,099 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=EDC_DS' to JNDI name 'java:EDC_DS'
    2011-02-01 17:31:01,099 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=CTA_DS' to JNDI name 'java:CTA_DS'
    2011-02-01 17:31:01,178 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
    2011-02-01 17:31:02,271 INFO  [org.jboss.deployment.EARDeployer] Init J2EE application: file:/D:/jboss/server/lc_sqlserver/deploy/adobe-assembler-ivs.ear
    2011-02-01 17:31:02,412 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/Assembler, warUrl=.../tmp/deploy/tmp8865139024421213565adobe-assembler-ivs.ear-contents/adobe-assemb ler-ivs-exp.war/
    2011-02-01 17:31:02,506 INFO  [org.jboss.deployment.EARDeployer] Started J2EE application: file:/D:/jboss/server/lc_sqlserver/deploy/adobe-assembler-ivs.ear
    2011-02-01 17:31:04,678 INFO  [org.jboss.deployment.EARDeployer] Init J2EE application: file:/D:/jboss/server/lc_sqlserver/deploy/adobe-livecycle-jboss.ear
    2011-02-01 17:31:07,787 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-dscf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:07,928 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,319 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,663 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-dscf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,756 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,881 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,100 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-dscf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,163 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,319 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,459 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,710 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-ejb-receiver.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:11,913 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,100 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,257 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,397 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,553 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,741 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,991 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,163 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-wkf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,366 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,585 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,679 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-wkf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,944 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:14,225 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:51,321 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_AACComponent
    2011-02-01 17:31:51,618 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_CoreSystemConfigComponent
    2011-02-01 17:31:51,743 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_HealthMonitorComponent
    2011-02-01 17:31:51,821 INFO  [org.jboss.ejb.EjbModule] Deploying SessionBundle
    2011-02-01 17:31:52,305 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_TrustStoreComponent
    2011-02-01 17:31:52,384 INFO  [org.jboss.ejb.EjbModule] Deploying CoreInitializer
    2011-02-01 17:31:52,431 INFO  [org.jboss.ejb.EjbModule] Deploying DocumentManagerEJB
    2011-02-01 17:31:52,524 INFO  [org.jboss.ejb.EjbModule] Deploying DSCInitializerBeanLocalEJB
    2011-02-01 17:31:52,524 INFO  [org.jboss.ejb.EjbModule] Deploying DSCInitializerBeanRemoteEJB
    2011-02-01 17:31:52,618 INFO  [org.jboss.ejb.EjbModule] Deploying EjbTransactionCMTAdapter
    2011-02-01 17:31:52,634 INFO  [org.jboss.ejb.EjbModule] Deploying EjbTransactionBMTAdapter
    2011-02-01 17:31:52,759 INFO  [org.jboss.ejb.EjbModule] Deploying Invocation
    2011-02-01 17:31:52,790 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_OutputAdmin
    2011-02-01 17:31:52,852 INFO  [org.jboss.ejb.EjbModule] Deploying OutputConfigEJB
    2011-02-01 17:31:53,181 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_PGUIComponent
    2011-02-01 17:31:53,759 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFSequenceGeneratorEJB
    2011-02-01 17:31:53,759 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFDataDictionaryLocalEJB
    2011-02-01 17:31:53,759 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFDataDictionaryRemoteEJB
    2011-02-01 17:31:53,774 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFSchemaManagerLocalEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFSchemaManagerRemoteEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFObjectManagerLocalEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFObjectManagerRemoteEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFDeletionProcessorEJB
    2011-02-01 17:31:53,977 INFO  [org.jboss.ejb.EjbModule] Deploying RepositoryUrlDataProvider
    2011-02-01 17:31:53,993 INFO  [org.jboss.ejb.EjbModule] Deploying XappstoreUrlDataProvider
    2011-02-01 17:31:54,087 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_AdminManagerEJB
    2011-02-01 17:31:54,118 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_WorkflowInitializerEJB
    2011-02-01 17:31:54,165 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_WorkflowServiceMessageBeanLocalEJB
    2011-02-01 17:31:54,321 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessManagerLocalEJB
    2011-02-01 17:31:54,321 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessManagerRemoteEJB
    2011-02-01 17:31:54,321 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessEngineCMTEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessEngineBMTEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_TemplateManagerLocalEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_TemplateManagerRemoteEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ComponentManagerLocalEJB
    2011-02-01 17:31:54,352 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ComponentManagerRemoteEJB
    2011-02-01 17:31:54,352 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_TaskManagerEJB
    2011-02-01 17:31:54,681 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_UMUIComponent
    2011-02-01 17:31:54,806 INFO  [org.jboss.ejb.EjbModule] Deploying AuthenticationManagerBean
    2011-02-01 17:31:54,837 INFO  [org.jboss.ejb.EjbModule] Deploying LocalUserManagerBean
    2011-02-01 17:31:54,852 INFO  [org.jboss.ejb.EjbModule] Deploying DirectoryServicesManagerBean
    2011-02-01 17:31:54,868 INFO  [org.jboss.ejb.EjbModule] Deploying SynchronizationAuditLogManagerBean
    2011-02-01 17:31:54,868 INFO  [org.jboss.ejb.EjbModule] Deploying UMHibernateGenericDao
    2011-02-01 17:31:54,868 INFO  [org.jboss.ejb.EjbModule] Deploying HibernateSynchronizationDao
    2011-02-01 17:31:54,884 INFO  [org.jboss.ejb.EjbModule] Deploying PreferencesBean
    2011-02-01 17:31:54,884 INFO  [org.jboss.ejb.EjbModule] Deploying PreferencesRemoteBean
    2011-02-01 17:31:54,884 INFO  [org.jboss.ejb.EjbModule] Deploying BootstrapperManagerBean
    2011-02-01 17:31:55,665 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_AACComponent' to jndi 'ejb/AdobeIDP2UI_AACComponent'
    2011-02-01 17:31:55,665 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/AACComponent.jar
    2011-02-01 17:31:55,759 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_CoreSystemConfigComponent' to jndi 'ejb/AdobeIDP2UI_CoreSystemConfigComponent'
    2011-02-01 17:31:55,759 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/CoreSystemConfigComponent.jar
    2011-02-01 17:31:55,821 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_HealthMonitorComponent' to jndi 'ejb/AdobeIDP2UI_HealthMonitorComponent'
    2011-02-01 17:31:55,821 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/HealthMonitorComponent.jar
    2011-02-01 17:31:55,962 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'SessionBundle' to jndi 'ejb/SessionBundleLocal'
    2011-02-01 17:31:55,962 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'SessionBundle' to jndi 'ejb/SessionBundleRemote'
    2011-02-01 17:31:55,978 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/SessionBundle.jar
    2011-02-01 17:31:56,024 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_TrustStoreComponent' to jndi 'ejb/AdobeIDP2UI_TrustStoreComponent'
    2011-02-01 17:31:56,024 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/TrustStoreComponent.jar
    2011-02-01 17:31:56,103 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'CoreInitializer' to jndi 'local/com/adobe/bmc/config/initializer/CoreInitializerLocal'
    2011-02-01 17:31:56,103 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'CoreInitializer' to jndi 'com/adobe/bmc/config/initializer/CoreInitializer'
    2011-02-01 17:31:56,103 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-csa-config.jar
    2011-02-01 17:31:56,134 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'DocumentManagerEJB' to jndi 'adobe/idp/DocumentManagerEJB'
    2011-02-01 17:31:56,134 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-docmanager-ejb.jar
    2011-02-01 17:31:56,149 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'DSCInitializerBeanLocalEJB' to jndi 'local/DSCInitializerBeanLocalEJB@2107292101'
    2011-02-01 17:31:56,165 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'DSCInitializerBeanRemoteEJB' to jndi 'adobe/DSCInitializerBeanRemoteEJB'
    2011-02-01 17:31:56,165 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-dsc-bootstrap-ejb.jar
    2011-02-01 17:31:56,399 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'EjbTransactionCMTAdapter' to jndi 'adobe/EjbTransactionCMTAdapterLocal'
    2011-02-01 17:31:56,462 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'EjbTransactionBMTAdapter' to jndi 'adobe/EjbTransactionBMTAdapterLocal'
    2011-02-01 17:31:56,462 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-dscf.jar
    2011-02-01 17:31:56,540 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'Invocation' to jndi 'ejb/Invocation'
    2011-02-01 17:31:56,540 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-ejb-receiver.jar
    2011-02-01 17:31:56,603 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_OutputAdmin' to jndi 'ejb/AdobeIDP2UI_OutputAdmin'
    2011-02-01 17:31:56,603 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-output-admin-ejb.jar
    2011-02-01 17:31:56,853 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'OutputConfigEJB' to jndi 'com.adobe.output.config.OutputConfigLocalHome'
    2011-02-01 17:31:56,853 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'OutputConfigEJB' to jndi 'com.adobe.output.config.OutputConfigHome'
    2011-02-01 17:31:57,056 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-output-config-ejb.jar
    2011-02-01 17:31:57,071 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_PGUIComponent' to jndi 'ejb/AdobeIDP2UI_PGUIComponent'
    2011-02-01 17:31:57,087 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-pg-uicomponent.jar
    2011-02-01 17:31:57,134 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFSequenceGeneratorEJB' to jndi 'local/adobe_POFSequenceGeneratorEJB@1278683798'
    2011-02-01 17:31:57,196 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFDataDictionaryLocalEJB' to jndi 'local/adobe_POFDataDictionaryLocalEJB@1334574952'
    2011-02-01 17:31:57,196 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFDataDictionaryRemoteEJB' to jndi 'adobe/POFDataDictionary'
    2011-02-01 17:31:57,212 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFSchemaManagerLocalEJB' to jndi 'local/adobe_POFSchemaManagerLocalEJB@1412892778'
    2011-02-01 17:31:57,228 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFSchemaManagerRemoteEJB' to jndi 'adobe/POFSchemaManager'
    2011-02-01 17:31:57,243 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFObjectManagerLocalEJB' to jndi 'local/adobe_POFObjectManagerLocalEJB@1992663799'
    2011-02-01 17:31:57,259 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFObjectManagerRemoteEJB' to jndi 'adobe/POFObjectManager'
    2011-02-01 17:31:57,274 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFDeletionProcessorEJB' to jndi 'adobe/POFDeletionProcessor'
    2011-02-01 17:31:57,274 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-pof.jar
    2011-02-01 17:31:57,306 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'RepositoryUrlDataProvider' to jndi 'com/adobe/local/repositoryUrlDataProvider'
    2011-02-01 17:31:57,306 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'XappstoreUrlDataProvider' to jndi 'com/adobe/local/xappstoreUrlDataProvider'
    2011-02-01 17:31:57,306 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-repository-bindings.jar
    2011-02-01 17:31:57,353 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_AdminManagerEJB' to jndi 'local/adobe_AdminManagerEJB@284206056'
    2011-02-01 17:31:57,353 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_AdminManagerEJB' to jndi 'adobe/AdminManager'
    2011-02-01 17:31:57,353 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf-admin.jar
    2011-02-01 17:31:57,524 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_WorkflowInitializerEJB' to jndi 'local/adobe_WorkflowInitializerEJB@1594420688'
    2011-02-01 17:31:57,524 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_WorkflowInitializerEJB' to jndi 'adobe/WorkflowInitializerEJB'
    2011-02-01 17:31:57,540 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf-initializer-ejb.jar
    2011-02-01 17:31:57,618 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_WorkflowServiceMessageBeanLocalEJB' to jndi 'local/adobe_WorkflowServiceMessageBeanLocalEJB@712543094'
    2011-02-01 17:31:57,634 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf-services-ejb.jar
    2011-02-01 17:31:57,634 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ProcessManagerLocalEJB' to jndi 'local/adobe_ProcessManagerLocalEJB@51535841'
    2011-02-01 17:31:57,649 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_ProcessManagerRemoteEJB' to jndi 'adobe/ProcessManager'
    2011-02-01 17:31:57,681 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ProcessEngineCMTEJB' to jndi 'local/adobe_ProcessEngineCMTEJB@1209177426'
    2011-02-01 17:31:57,681 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ProcessEngineBMTEJB' to jndi 'local/adobe_ProcessEngineBMTEJB@1699041128'
    2011-02-01 17:31:57,681 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_TemplateManagerLocalEJB' to jndi 'local/adobe_TemplateManagerLocalEJB@30528184'
    2011-02-01 17:31:57,696 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_TemplateManagerRemoteEJB' to jndi 'adobe/TemplateManager'
    2011-02-01 17:31:57,696 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ComponentManagerLocalEJB' to jndi 'local/adobe_ComponentManagerLocalEJB@1434344637'
    2011-02-01 17:31:57,712 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_ComponentManagerRemoteEJB' to jndi 'adobe/ComponentManager'
    2011-02-01 17:31:57,712 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_TaskManagerEJB' to jndi 'local/adobe_TaskManagerEJB@843999483'
    2011-02-01 17:31:57,728 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_TaskManagerEJB' to jndi 'adobe/TaskManager'
    2011-02-01 17:31:57,728 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf.jar
    2011-02-01 17:31:57,868 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_UMUIComponent' to jndi 'ejb/AdobeIDP2UI_UMUIComponent'
    2011-02-01 17:31:57,868 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/um-adminui.jar
    2011-02-01 17:31:57,915 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'AuthenticationManagerBean' to jndi 'com.adobe.idp.um.businesslogic.authentication.AuthenticationManagerHome'
    2011-02-01 17:31:57,915 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'LocalUserManagerBean' to jndi 'com.adobe.idp.um.businesslogic.localuser.LocalUserManagerHome'
    2011-02-01 17:31:57,931 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'DirectoryServicesManagerBean' to jndi 'com.adobe.idp.um.businesslogic.directoryservices.DirectoryServicesManagerHome'
    2011-02-01 17:31:57,946 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'SynchronizationAuditLogManagerBean' to jndi 'com.adobe.idp.um.businesslogic.directoryservices.SynchronizationAuditLogManagerHome'
    2011-02-01 17:31:57,962 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'UMHibernateGenericDao' to jndi 'com.adobe.idp.um.businesslogic.dao.GenericDAOHome'
    2011-02-01 17:31:57,962 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'HibernateSynchronizationDao' to jndi 'com.adobe.idp.um.businesslogic.synch.dao.SynchronizationDAOHome'
    2011-02-01 17:31:57,978 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'PreferencesBean' to jndi 'com.adobe.idp.config.PreferencesSPIHome'
    2011-02-01 17:31:57,978 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'PreferencesRemoteBean' to jndi 'com.adobe.idp.config.remote.PreferencesSPIRemoteHome'
    2011-02-01 17:31:57,993 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'BootstrapperManagerBean' to jndi 'com.adobe.idp.um.businesslogic.bootstrapper.BootstrapperManagerHome'
    2011-02-01 17:31:57,993 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/um.jar
    2011-02-01 17:31:58,025 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/AACComponent, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/AACCompone nt-exp.war/
    2011-02-01 17:31:58,618 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validator-rules.xml'
    2011-02-01 17:31:58,618 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/custom-rules.xml'
    2011-02-01 17:31:58,618 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validation.xml'
    2011-02-01 17:31:58,790 INFO  [org.apache.struts.tiles.TilesPlugin] Tiles definition factory loaded for module ''.
    2011-02-01 17:31:58,806 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/CoreSystemConfigComponent, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/CoreSystem ConfigComponent-exp.war/
    2011-02-01 17:31:59,290 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/datamanagerservice, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/DataManage rService-exp.war/
    2011-02-01 17:31:59,525 INFO  [com.adobe.service.DataManagerService] BMC512: Service DataManagerService: Starting
    2011-02-01 17:31:59,556 INFO  [com.adobe.service.DataManagerService] BMC511: Service DataManagerService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\DataManagerService
    2011-02-01 17:32:02,275 INFO  [com.adobe.fontmanager.FontManager] ALC-FMR-001-010:FontManager: Loading Adobe Server fonts from directory: D:\Adobe\Adobe LiveCycle ES2\fonts
    2011-02-01 17:32:07,697 INFO  [com.adobe.fontmanager.FontManager] ALC-FMR-001-010:FontManager: Loading System fonts from directory: C:\Windows\Fonts
    2011-02-01 17:32:17,713 INFO  [com.adobe.service.DataManagerService] BMC513: Service DataManagerService: Started
    2011-02-01 17:32:17,729 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/HealthMonitor, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/HealthMoni torComponent-exp.war/
    2011-02-01 17:32:18,525 INFO  [com.adobe.monitor.stats.SystemStatistic] Health Monitor Thread started
    2011-02-01 17:32:19,182 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/TrustStoreComponent, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/TrustStore Component-exp.war/
    2011-02-01 17:32:19,494 INFO  [com.adobe.truststore.ui.TSAuthFilter] TSAuthFilter init
    2011-02-01 17:32:19,994 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adminui, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adminui-ex p.war/
    2011-02-01 17:32:20,182 WARN  [org.apache.commons.digester.Digester] [NavigationRuleRule]{faces-config/navigation-rule} Merge(/*)
    2011-02-01 17:32:20,416 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/XMLFMCallBackService, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-XMLF MCallBack-exp.war/
    2011-02-01 17:32:20,510 INFO  [com.adobe.service.XMLFMCallBackService] BMC512: Service XMLFMCallBackService: Starting
    2011-02-01 17:32:20,541 INFO  [com.adobe.service.XMLFMCallBackService] BMC511: Service XMLFMCallBackService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\XMLFMCallBackService
    2011-02-01 17:32:20,541 INFO  [com.adobe.service.XMLFMCallBackService] Starting XMLFM CallBack service
    2011-02-01 17:32:20,557 INFO  [com.adobe.service.XMLFMCallBackService] BMC513: Service XMLFMCallBackService: Started
    2011-02-01 17:32:20,588 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adobe-bootstrapper, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-boot strapper-exp.war/
    2011-02-01 17:32:20,666 INFO  [com.adobe.livecycle.bootstrap.framework.BootstrapServlet] Initializing BootstrapServlet ...
    2011-02-01 17:32:20,682 INFO  [com.adobe.livecycle.bootstrap.framework.BootstrapServlet] BootstrapServlet initialization complete.
    2011-02-01 17:32:20,713 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/cache-controller, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-cach e-controller-exp.war/
    2011-02-01 17:32:20,791 INFO  [com.adobe.livecycle.cache.adapter.GemfireCacheController] BMC512: Service CacheController: Starting
    2011-02-01 17:32:20,807 INFO  [com.adobe.livecycle.cache.adapter.GemfireCacheController] BMC511: Service CacheController: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\CacheController
    2011-02-01 17:32:20,807 INFO  [com.adobe.livecycle.cache.adapter.GemfireCacheController] BMC513: Service CacheController: Started
    2011-02-01 17:32:20,822 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/DocumentManager, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-docm anager-init-exp.war/
    2011-02-01 17:32:20,916 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adobe-forms-cacheService, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-form s-cacheService-exp.war/
    2011-02-01 17:32:21,010 INFO  [com.adobe.formServer.common.config.CacheInitializationServlet] Initialization done for com.adobe.formServer.common.cachemanager.CacheManager and com.adobe.formServer.common.clustercache.ClusterCache
    2011-02-01 17:32:21,026 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/launchpad, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-lc-l aunchpad-exp.war/
    2011-02-01 17:32:21,104 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adobe-lcm-bootstrapper, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-lcm- bootstrapper-redirector-exp.war/
    2011-02-01 17:32:21,197 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/OutputAdmin, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-outp ut-admin-exp.war/
    2011-02-01 17:32:21,447 WARN  [com.adobe.output.admin.LocaleFilter] LF001: Bundle not found: forms.license.forms-productinfo
    2011-02-01 17:32:21,447 INFO  [com.adobe.output.admin.LocaleFilter] LF002: Supported locales: [all]
    2011-02-01 17:32:21,682 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/OutputService, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-outp ut-mbean-exp.war/
    2011-02-01 17:32:21,807 INFO  [com.adobe.output.mbean.Output] BMC512: Service Output: Starting
    2011-02-01 17:32:21,822 INFO  [com.adobe.output.mbean.Output] BMC511: Service Output: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\Output
    2011-02-01 17:32:21,822 INFO  [com.adobe.output.mbean.Output] FSC003: ========== Start Output Service =========
    2011-02-01 17:32:21,822 INFO  [com.adobe.output.mbean.Output] BMC513: Service Output: Started
    2011-02-01 17:32:21,838 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/pdfg-ipp, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-pdfg -ipp-support-exp.war/
    2011-02-01 17:32:21,932 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/pdfgui, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-pdfg ui-exp.war/
    2011-02-01 17:32:22,447 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/pdfg-adminui, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-pg-a dminui-exp.war/
    2011-02-01 17:32:22,979 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/remoting, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-remo ting-provider-exp.war/
    2011-02-01 17:32:23,494 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/repository, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-repo sitory-bindings-exp.war/
    2011-02-01 17:32:23,588 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/rest, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-rest -provider-exp.war/
    2011-02-01 17:32:23,823 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/soap, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-soap -provider-exp.war/
    2011-02-01 17:32:24,104 INFO  [com.adobe.idp.dsc.provider.impl.soap.axis.Logging] SOAP501: Initializing Adobe SOAP Provider
    2011-02-01 17:32:24,119 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/dsc, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/dsc-exp.wa r/
    2011-02-01 17:32:24,213 INFO  [com.adobe.idp.dsc.management.impl.ArchiveFileManagerImpl] ArchiveFileManagerImpl:getLocalCacheRootDir():Adobe tmp directory is:C:\LCTemp\adobejb_server1
    2011-02-01 17:32:25,526 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Initializing DSC Container
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS502: The document storage sweep interval is set to 30000 seconds.
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS503: The global document storage root directory is: D:\LCGlobalDocumentStorage
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS509: The local storage root directory is: C:\LCTemp\AdobeDocumentStorage\local
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS505: The document storage default disposal timeout is set to 600 seconds.
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS506: The document storage default max inline size is set to 65536 bytes.
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS508: Accessing the global document storage filesystem: true
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS510: Called from within the EAR: true
    2011-02-01 17:33:07,684 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] IDPSchedulerService onLoad called
    2011-02-01 17:33:09,246 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Initializing SCHEDULER FACTORY from properties ...
    2011-02-01 17:33:09,262 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] SCHEDULER FACTORY initialized.
    2011-02-01 17:33:09,278 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] IDPSchedulerService onLoad complete
    2011-02-01 17:33:09,278 INFO  [com.adobe.idp.event.EventMgmtLifeCycleImpl] Called onLoad:
    2011-02-01 17:33:09,450 INFO  [com.adobe.idp.event.EventMgmtLifeCycleImpl] onLoad completed:
    2011-02-01 17:33:09,465 INFO  [com.adobe.idp.workflow.dsc.lifecycle.WorkflowDSCLifeCycle] Now loading workflow-dsc service.
    2011-02-01 17:33:09,465 INFO  [com.adobe.idp.workflow.dsc.lifecycle.WorkflowDSCLifeCycle] Workflow-dsc service load completed.
    2011-02-01 17:33:14,059 INFO  [com.adobe.idp.dsc.webservice.WebServiceImpl] WebServiceImpl.onLoad
    2011-02-01 17:33:14,137 INFO  [com.adobe.pdfg.ConfigServiceOnLoad] Calling onLoad of Config Service
    2011-02-01 17:33:14,137 INFO  [com.adobe.pdfg.ConfigServiceOnLoad] Application server started as user: GBVM011742$
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Called onLoad: GeneratePDF
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "Acrobat_PATH" is set to "D:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe"
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "Notepad_PATH" is set to "C:\Windows\System32\Notepad.exe"
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "Photoshop_PATH" is set to "D:\Program Files (x86)\Adobe\Adobe Photoshop CS2\Photoshop.exe"
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "WordPerfect_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "PageMaker_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "FrameMaker_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "OpenOffice_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "JAVA_HOME_32" is set to "C:\Program Files (x86)\Java\jdk1.6.0_19"
    2011-02-01 17:33:15,309 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] DSC Container initialized
    2011-02-01 17:33:15,325 INFO  [com.adobe.idp.dsc.startup.DSCStartupServlet] Install and start of components complete. Now starting core asynchronous services ...
    2011-02-01 17:33:15,325 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Starting Core Components...
    2011-02-01 17:33:15,325 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Starting WorkManager Component...
    2011-02-01 17:33:15,872 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] WorkManager Component started successfully
    2011-02-01 17:33:15,872 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Starting services which need post-dsc-initialization (Scheduler, docmanager purge)...
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Start scheduler service
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Context classloader is org.jboss.util.loading.DelegatingClassLoader
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Creating new scheduler. isInUpgrade:false
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Scheduler is shutdown, will attempt to recreate.
    2011-02-01 17:33:16,012 INFO  [org.quartz.core.QuartzScheduler] Quartz Scheduler v.1.6.0 created.
    2011-02-01 17:33:16,012 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Using thread monitor-based data access locking (synchronization).
    2011-02-01 17:33:16,075 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 0 Volatile Trigger(s).
    2011-02-01 17:33:16,075 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 0 Volatile Job(s).
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] JobStoreTX initialized.
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.DSCSchedulerFactory] Quartz scheduler 'IDPSchedulerService' initialized from an externally provided properties instance.
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.DSCSchedulerFactory] Quartz scheduler version: 1.6.0
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Scheduler loaded with name IDPSchedulerService
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Freed 1 triggers from 'acquired' / 'blocked' state.
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Handling 5 trigger(s) that missed their scheduled fire-time.
    2011-02-01 17:33:16,153 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Recovering 0 jobs that were in-progress at the time of the last shut-down.
    2011-02-01 17:33:16,153 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Recovery complete.
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 0 'complete' triggers.
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 1 stale fired job entries.
    2011-02-01 17:33:16,169 INFO  [org.quartz.core.QuartzScheduler] Scheduler IDPSchedulerService_$_20 started.
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Started services which need post-dsc-initialization (Scheduler, docmanager purge) successfully
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Core Components started successfully
    2011-02-01 17:33:16,231 INFO  [com.adobe.idp.dsc.startup.DSCStartupServlet] Install and start of components complete. Now starting core asynchronous services ...
    2011-02-01 17:33:18,771 WARN  [com.adobe.livecycle.cache.adapter.GemfireCacheAdapter] Cache region 'PartitionedGuaranteed_dsc_sc_endpoint' was already created
    2011-02-01 17:33:30,070 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/launchpad_help_en, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/launchpad_ help_en-exp.war/
    2011-02-01 17:33:30,159 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_de, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_d e-exp.war/
    2011-02-01 17:33:30,232 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_en, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_e n-exp.war/
    2011-02-01 17:33:30,306 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_fr, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_f r-exp.war/
    2011-02-01 17:33:30,376 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_ja, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_j a-exp.war/
    2011-02-01 17:33:30,455 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/umcache, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-cache-e xp.war/
    2011-02-01 17:33:30,551 INFO  [com.adobe.idp.um.services.UMCacheService] BMC512: Service UMCacheService: Starting
    2011-02-01 17:33:30,569 INFO  [com.adobe.idp.um.services.UMCacheService] BMC511: Service UMCacheService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\UMCacheService
    2011-02-01 17:33:30,570 INFO  [com.adobe.idp.um.services.UMCacheService] BMC513: Service UMCacheService: Started
    2011-02-01 17:33:30,582 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/umscheduler, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-schedul er-exp.war/
    2011-02-01 17:33:30,668 INFO  [com.adobe.idp.um.scheduler.IDPScheduler] BMC512: Service IDPScheduler: Starting
    2011-02-01 17:33:30,685 INFO  [com.adobe.idp.um.scheduler.IDPScheduler] BMC511: Service IDPScheduler: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\IDPScheduler
    2011-02-01 17:33:30,698 INFO  [org.quartz.core.QuartzScheduler] Quartz Scheduler v.1.6.0 created.
    2011-02-01 17:33:30,698 INFO  [org.quartz.simpl.RAMJobStore] RAMJobStore initialized.
    2011-02-01 17:33:30,698 INFO  [org.quartz.impl.DirectSchedulerFactory] Quartz scheduler 'SimpleQuartzScheduler
    2011-02-01 17:33:30,698 INFO  [org.quartz.impl.DirectSchedulerFactory] Quartz scheduler version: 1.6.0
    2011-02-01 17:33:30,698 INFO  [org.quartz.core.QuartzScheduler] Scheduler SimpleQuartzScheduler_$_SIMPLE_NON_CLUSTERED started.
    2011-02-01 17:33:30,708 INFO  [com.adobe.idp.um.scheduler.IDPScheduler] BMC513: Service IDPScheduler: Started
    2011-02-01 17:33:30,721 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/umstartup, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-startup -exp.war/
    2011-02-01 17:33:30,822 INFO  [com.adobe.idp.um.services.UMStartupService] BMC512: Service UMStartupService: Starting
    2011-02-01 17:33:30,839 INFO  [com.adobe.idp.um.services.UMStartupService] BMC511: Service UMStartupService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\UMStartupService
    2011-02-01 17:33:30,911 INFO  [STDOUT] Got IP Address of LC Server:10.20.21.170
    2011-02-01 17:33:30,912 INFO  [com.adobe.idp.um.services.UMStartupService] BMC513: Service UMStartupService: Started
    2011-02-01 17:33:30,926 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/um, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-exp.war /
    2011-02-01 17:33:31,364 INFO  [org.apache.struts.tiles.TilesPlugin] Tiles definition factory loaded for module ''.
    2011-02-01 17:33:31,366 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validator-rules.xml'
    2011-02-01 17:33:31,367 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validation.xml'
    2011-02-01 17:33:31,474 INFO  [com.adobe.idp.um.ui.UMActionServlet]
    * System Properties **************************************************
    PROPERTIES_FILE..............................: tsmx.properties
    TSMX_VERSION.................................: unknown
    adobe.server.common.dir......................: D:\jboss\server\lc_sqlserver\svccommon
    adobe.server.data.dir........................: D:\jboss\server\lc_sqlserver\svcdata
    adobe.server.root.dir........................: D:\jboss\server\lc_sqlserver
    adobeidp.serverName..........................: server1
    awt.toolkit..................................: sun.awt.windows.WToolkit
    bind.address.................................: 10.20.21.170
    catalina.base................................: D:\jboss\server\lc_sqlserver
    catalina.ext.dirs............................: D:\jboss\server\lc_sqlserver\lib
    catalina.home................................: D:\jboss\server\lc_sqlserver
    catalina.useNaming...........................: false
    com.adobe.idp.DocumentManagerServlet.........: started
    com.adobe.idp.enableLC7Compatibility.........: false
    com.adobe.idp.enableLC7Compatibility.SetByDM.: true
    com.adobe.serverInstanceId...................: adobejb_server1
    com.adobe.tempDirectory......................: C:\LCTemp\adobejb_server1
    com.arjuna.ats.arjuna.objectstore.objectStoreDir: D:\jboss\server\lc_sqlserver\data/tx-object-store
    com.arjuna.ats.jta.lastResourceOptimisationInterface: org.jboss.tm.LastResource
    com.arjuna.ats.tsmx.agentimpl................: com.arjuna.ats.internal.jbossatx.agent.LocalJBossAgentImpl
    com.arjuna.common.util.logger................: log4j_releveler
    com.arjuna.common.util.logging.DebugLevel....: 0x00000000
    com.arjuna.common.util.logging.FacilityLevel.: 0xffffffff
    com.arjuna.common.util.logging.VisibilityLevel: 0xffffffff
    common.loader................................: ${catalina.home}/lib,${catalina.home}/lib/*.jar
    file.encoding................................: utf8
    file.encoding.pkg............................: sun.io
    file.separator...............................: \
    gemfire.disableShutdownHook..................: true
    hibernate.bytecode.provider..................: cglib
    jacorb.config.log.verbosity..................: 0
    java.awt.graphicsenv.........................: sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob..........................: sun.awt.windows.WPrinterJob
    java.class.path..............................: C:\Program Files\Java\jdk1.6.0_19\lib\tools.jar;D:\jboss\bin\run.jar
    java.class.version...........................: 50.0
    java.endorsed.dirs...........................: D:\jboss\lib\endorsed
    java.ext.dirs................................: C:\Program Files\Java\jdk1.6.0_19\jre\lib\ext;C:\Windows\Sun\Java\lib\ext
    java.home....................................: C:\Program Files\Java\jdk1.6.0_19\jre
    java.io.tmpdir...............................: C:\Windows\TEMP\
    java.library.path............................: C:\Program Files\Java\jdk1.6.0_19\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Wi ndows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;D:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Common Files\Adobe\AGL
    java.naming.factory.initial..................: org.jnp.interfaces.NamingContextFactory
    java.naming.factory.url.pkgs.................: org.jboss.naming:org.jnp.interfaces
    java.net.preferIPv4Stack.....................: true
    java.protocol.handler.pkgs...................: org.jboss.net.protocol
    java.rmi.server.RMIClassLoaderSpi............: org.jboss.system.JBossRMIClassLoader
    java.rmi.server.codebase.....................: http://10.20.21.170:8083/
    java.rmi.server.hostname.....................: 10.20.21.170
    java.runtime.name............................: Java(TM) SE Runtime Environment
    java.runtime.version.........................: 1.6.0_19-b04
    java.specification.name......................: Java Platform API Specification
    java.specification.vendor....................: Sun Microsystems Inc.
    java.specification.version...................: 1.6
    java.vendor..................................: Sun Microsystems Inc.
    java.vendor.url..............................: http://java.sun.com/
    java.vendor.url.bug..........................: http://java.sun.com/cgi-bin/bugreport.cgi
    java.version.................................: 1.6.0_19
    java.vm.info.................................: mixed mode
    java.vm.name.................................: Java HotSpot(TM) 64-Bit Server VM
    java.vm.specification.name...................: Java Virtual Machine Specification
    java.vm.specification.vendor.................: Sun Microsystems Inc.
    java.vm.specification.version................: 1.0
    java.vm.vendor...............................: Sun Microsystems Inc.
    java.vm.version..............................: 16.2-b04
    javax.management.builder.initial.............: org.jboss.mx.server.MBeanServerBuilderImpl
    jboss.bind.address...........................: 10.20.21.170
    jboss.home.dir...............................: D:\jboss
    jboss.home.url...............................: file:/D:/jboss/
    jboss.identity...............................: 1f0ac9f04d8e357cx-36a1f369x129b18f2917x-8000127
    jboss.lib.url................................: file:/D:/jboss/lib/
    jboss.remoting.domain........................: JBOSS
    jboss.remoting.instanceid....................: 1f0ac9f04d8e357cx-36a1f369x129b18f2917x-8000127
    jboss.remoting.jmxid.........................: gbvm011742_1296581443348
    jboss.remoting.version.......................: 22
    jboss.server.base.dir........................: D:\jboss\server
    jboss.server.base.url........................: file:/D:/jboss/server/
    jboss.server.config.url......................: file:/D:/jboss/server/lc_sqlserver/conf/
    jboss.server.data.dir........................: D:\jboss\server\lc_sqlserver\data
    jboss.server.home.dir........................: D:\jboss\server\lc_sqlserver
    jboss.server.home.url........................: file:/D:/jboss/server/lc_sqlserver/
    jboss.server.lib.url.........................: file:/D:/jboss/server/lc_sqlserver/lib/
    jboss.server.log.dir.........................: D:\jboss\server\lc_sqlserver\log
    jboss.server.name............................: lc_sqlserver
    jboss.server.temp.dir........................: D:\jboss\server\lc_sqlserver\tmp
    jbossmx.loader.repository.class..............: org.jboss.mx.loading.UnifiedLoaderRepository3
    jgroups.bind_addr............................: 10.20.21.170
    line.separator...............................:
    org.apache.commons.logging.Log...............: org.apache.commons.logging.impl.Log4JLogger
    org.apache.xerces.xni.parser.Configuration...: org.apache.xerces.parsers.XMLGrammarCachingConfiguration
    org.jboss.ORBSingletonDelegate...............: org.jacorb.orb.ORBSingleton
    org.omg.CORBA.ORBClass.......................: org.jacorb.orb.ORB
    org.omg.CORBA.ORBSingletonClass..............: org.jboss.system.ORBSingleton
    org.w3c.dom.DOMImplementationSourceList......: org.apache.xerces.dom.DOMXSImplementationSourceImpl
    os.arch......................................: amd64
    os.name......................................: Windows Server 2008
    os.version...................................: 6.0
    p2p.useSSL...................................: false
    package.access...............................: sun.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.,sun.be ans.
    package.definition...........................: sun.,java.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.
    path.separator...............................: ;
    program.name.................................: run.bat
    server.loader................................:
    shared.loader................................:
    sun.arch.data.model..........................: 64
    sun.boot.class.path..........................: D:\jboss\lib\endorsed\serializer.jar;D:\jboss\lib\endorsed\xalan.jar;D:\jboss\lib\endorse d\xercesImpl.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\resources.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\rt.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\jce.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.6.0_19\jre\classes
    sun.boot.library.path........................: C:\Program Files\Java\jdk1.6.0_19\jre\bin
    sun.cpu.endian...............................: little
    sun.cpu.isalist..............................: amd64
    sun.desktop..................................: windows
    sun.io.unicode.encoding......................: UnicodeLittle
    sun.java.launcher............................: SUN_STANDARD
    sun.jnu.encoding.............................: Cp1252
    sun.management.compiler......................: HotSpot 64-Bit Server Compiler
    sun.os.patch.level...........................: Service Pack 2
    sun.rmi.dgc.client.gcInterval................: 3600000
    sun.rmi.dgc.server.gcInterval................: 3600000
    tomcat.util.buf.StringCache.byte.enabled.....: true
    user.country.................................: GB
    user.dir.....................................: D:\jboss\bin
    user.home....................................: C:\
    user.language................................: en
    user.name....................................: GBVM011742$
    user.timezone................................: Europe/London
    user.variant.................................:
    * JSP Engine ****
    JSP-Specification..: 2.1
    * Runtime ****
    Total Memory.......: 1691 mb
    2011-02-01 17:33:31,481 INFO  [com.adobe.idp.um.ui.UMActionServlet]
    * Servlet Context ****************************************************
    Servlet API........: 2.5
    ServerInfo.........: JBossWeb/2.0.0.GA
    * Attributes ****
    com.cc.framework.locale......................: true
    com.cc.framework.painter.....................: [app, html, global]
    javax.servlet.context.tempdir................: D:\jboss\server\lc_sqlserver\work\jboss.web\localhost\um
    org.apache.AnnotationProcessor...............: org.apache.catalina.util.DefaultAnnotationProcessor@307dea47
    org.apache.catalina.WELCOME_FILES............: [Ljava.lang.String;@1a9ff430
    org.apache.catalina.jsp_classpath............: /D:/jboss/server/lc_sqlserver/tmp/deploy/tmp8487529096491474650jboss-ha-xa-jdbc.rar-conte nts/jboss-ha-xa-jdbc.jar;/D:/jboss/server/lc_sqlserver/lib/bsf.jar;/D:/jboss/server/lc_sql server/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/gemfire.jar;/D: /jboss/server/lc_sqlserver/deploy/snmp-adaptor.sar/;/D:/jboss/server/lc_sqlserver/tmp/depl oy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/javax77.jar;/D:/jboss/server/l c_sqlserver/lib/jaxen.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642a dobe-livecycle-jboss.ear-contents/adobe-dsc-bootstrap-ejb.jar;/D:/jboss/server/lc_sqlserve r/lib/joesnmp.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp5744798618431161839quartz-ra .rar;/D:/jboss/server/lc_sqlserver/deploy/jbossws.sar/;/D:/jboss/server/lc_sqlserver/deplo y/httpha-invoker.sar/;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe -livecycle-jboss.ear-contents/CoreSystemConfigComponent.jar;/D:/jboss/server/lc_sqlserver/ tmp/deploy/tmp6138912020851092714jboss-ha-local-jdbc.rar-contents/jboss-ha-local-jdbc.jar; /D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-c ontents/lc_admin_en-exp.war/;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp36511446303422966 42adobe-livecycle-jboss.ear-contents/jcsi_license.jar;/D:/jboss/server/lc_sqlserver/tmp/de ploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-event-client.jar;/D:/j boss/server/lc_sqlserver/lib/jboss-iiop.jar;/D:/jboss/server/lc_sqlserver/lib/commons-http client.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle- jboss.ear-contents/adobe-pdfg-common.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp36511 44630342296642adobe-livecycle-jboss.ear-contents/commons-codec-1.3.jar;/D:/jboss/server/lc _sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-bmc-c lient.jar;/D:/jboss/server/lc_sqlserver/deploy/httpha-invoker.sar/invoker.war/;/D:/jboss/s erver/lc_sqlserver/lib/autonumber-plugin.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3 651144630342296642adobe-livecycle-jboss.ear-contents/ldapbp.jar;/D:/jboss/server/lc_sqlser ver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-remoting-pro vider.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp1594363530041496429jbossws-context-e xp.war/;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jbo ss.ear-contents/adobe-pof-adapters.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144 630342296642adobe-livecycle-jboss.ear-contents/jsafeJCEFIPS.jar;/D:/jboss/server/lc_sqlser ver/lib/servlet-api.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642ado be-livecycle-jboss.ear-contents/SessionBundle.jar;/D:/jboss/server/lc_sqlserver/deploy/uui d-key-generator.sar/;/D:/jboss/server/lc_sqlserver/deploy/juddi-service.sar/juddi.war/;/D: /jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-cont ents/pdfencryption.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adob e-livecycle-jboss.ear-contents/flex-messaging-common.jar;/D:/jboss/server/lc_sqlserver/tmp /deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-spi.jar;/D:/jboss/serv er/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/jsafeF IPS.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jbo ss.ear-

  • Windows 7 Genuine Validation Error Code 0x8004fe21

    Windows appears to be activated.  The button to change the license key does not appear.  Please advise how to solve this issue.  I receive the error message below:
    Below is the diagnostic report.
    Diagnostic Report (1.9.0027.0):
    Windows Validation Data-->
    Validation Code: 0
    Cached Online Validation Code: 0x0
    Windows Product Key: *****-*****-XXXXX-XXXXX-XXXXX
    Windows Product Key Hash: yr8OHoeXhbT4dc6MxGYjdAStSPY=
    Windows Product ID: 00371-OEM-8992671-00008
    Windows Product ID Type: 2
    Windows License Type: OEM SLP
    Windows OS version: 6.1.7601.2.00010100.1.0.048
    ID: {139C114B-F907-4C8A-BFB0-5ADAC1666327}(1)
    Is Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/A, hr = 0x80070002
    Signed By: N/A, hr = 0x80070002
    Product Name: Windows 7 Professional
    Architecture: 0x00000000
    Build lab: 7601.win7sp1_ldr.130707-1535
    TTS Error: 
    Validation Diagnostic: 
    Resolution Status: N/A
    Vista WgaER Data-->
    ThreatID(s): N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    Windows XP Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    File Exists: No
    Version: N/A, hr = 0x80070002
    WgaTray.exe Signed By: N/A, hr = 0x80070002
    WgaLogon.dll Signed By: N/A, hr = 0x80070002
    OGA Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    OGAExec.exe Signed By: N/A, hr = 0x80070002
    OGAAddin.dll Signed By: N/A, hr = 0x80070002
    OGA Data-->
    Office Status: 109 N/A
    OGA Version: N/A, 0x80070002
    Signed By: N/A, hr = 0x80070002
    Office Diagnostics: B4D0AA8B-604-645_025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3
    Browser Data-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default Browser: C:\Program Files\Internet Explorer\iexplore.exe
    Download signed ActiveX controls: Prompt
    Download unsigned ActiveX controls: Disabled
    Run ActiveX controls and plug-ins: Allowed
    Initialize and script ActiveX controls not marked as safe: Disabled
    Allow scripting of Internet Explorer Webbrowser control: Allowed
    Active scripting: Allowed
    Script ActiveX controls marked as safe for scripting: Allowed
    File Scan Data-->
    Other data-->
    Office Details: <GenuineResults><MachineData><UGUID>{139C114B-F907-4C8A-BFB0-5ADAC1666327}</UGUID><Version>1.9.0027.0</Version><OS>6.1.7601.2.00010100.1.0.048</OS><Architecture>x32</Architecture><PKey>*****-*****-*****-*****-6P6GT</PKey><PID>00371-OEM-8992671-00008</PID><PIDType>2</PIDType><SID>S-1-5-21-920686674-82526402-3460005700</SID><SYSTEM><Manufacturer>Hewlett-Packard</Manufacturer><Model>HP
    EliteBook 8460p</Model></SYSTEM><BIOS><Manufacturer>Hewlett-Packard</Manufacturer><Version>68SCF Ver. F.08</Version><SMBIOSVersion major="2" minor="6"/><Date>20110826000000.000000+000</Date></BIOS><HWID>50643707018400FE</HWID><UserLCID>0409</UserLCID><SystemLCID>0409</SystemLCID><TimeZone>Eastern
    Standard Time(GMT-05:00)</TimeZone><iJoin>1</iJoin><SBID><stat>3</stat><msppid></msppid><name></name><model></model></SBID><OEM><OEMID>HPQOEM</OEMID><OEMTableID>SLIC-MPC</OEMTableID></OEM><GANotification/></MachineData><Software><Office><Result>109</Result><Products/><Applications/></Office></Software></GenuineResults>
    Spsys.log Content: 0x80070002
    Licensing Data-->
    Software licensing service version: 6.1.7601.17514
    Name: Windows(R) 7, Professional edition
    Description: Windows Operating System - Windows(R) 7, OEM_SLP channel
    Activation ID: 50e329f7-a5fa-46b2-85fd-f224e5da7764
    Application ID: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00371-00178-926-700008-02-1033-7600.0000-1422012
    Installation ID: 009345334236140841192620903534347110985265171254181132
    Processor Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    Machine Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use License URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product Key Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial Product Key: 6P6GT
    License Status: Licensed
    Remaining Windows rearm count: 3
    Trusted time: 12/9/2013 4:17:21 PM
    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: 0x00000000
    HealthStatus: 0x0000000000000000
    Event Time Stamp: 12:9:2013 16:02
    ActiveX: Registered, Version: 7.1.7600.16395
    Admin Service: Registered, Version: 7.1.7600.16395
    HealthStatus Bitmask Output:
    HWID Data-->
    HWID Hash Current: OgAAAAEAAgABAAMAAAACAAAABQABAAEAeqgwqIaqKK3m4LY44PJ4hNqSYj34Z978ZjJqwrZGpFkucw==
    OEM Activation 1.0 Data-->
    N/A
    OEM Activation 2.0 Data-->
    BIOS valid for OA 2.0: yes
    Windows marker version: 0x20001
    OEMID and OEMTableID Consistent: yes
    BIOS Information: 
      ACPI Table Name OEMID Value
    OEMTableID Value
      APIC HPQOEM
    161E    
      FACP HPQOEM
    161E    
      HPET HPQOEM
    161E    
      MCFG HPQOEM
    161E    
      TCPA HPQOEM
    161E    
      SSDT HPQOEM
    SataAhci
      SSDT HPQOEM
    SataAhci
      SLIC HPQOEM
    SLIC-MPC
      SSDT HPQOEM
    SataAhci
      SSDT HPQOEM
    SataAhci
      ASF! HPQOEM
    161E    

    Hi,
    I am just writing to check the status of this thread. Was the information provided in previous
    reply helpful to you? Do you have any further questions or concerns? Please feel free to let us know.
    If you have any feedback on our support, please click
    here
    Alex Zhao
    TechNet Community Support

  • Office install on Windows 8 - validation problem

    Help
    Bought Microsoft Office 2013 Professional but it said the License Key would be invalid; so I started googling and it says the License would have been blocked... 
    Diagnostic Report (1.9.0027.0):
    Windows Validation Data-->
    Validation Status: Validation unsupported OS
    Validation Code: 6
    Cached Online Validation Code: 0x0
    Windows Product Key: *****-*****-69KQ9-R2KM4-R3G7T
    Windows Product Key Hash: /PpmzPmeappbKdYFQmGkQT0cdQw=
    Windows Product ID: 00179-60314-62768-AAOEM
    Windows Product ID Type: 0
    Windows License Type: Unknown
    Windows OS version: 6.3.9600.2.00010300.0.0.101
    ID: {32B4D73F-E030-4DD0-B0E5-2A710C1D2A5C}(1)
    Is Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/A, hr = 0x80070002
    Signed By: N/A, hr = 0x80070002
    Product Name: Windows 8.1
    Architecture: 0x00000009
    Build lab: 9600.winblue_gdr.131030-1505
    TTS Error: 
    Validation Diagnostic: 
    Resolution Status: N/A
    Vista WgaER Data-->
    ThreatID(s): N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    Windows XP Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    File Exists: No
    Version: N/A, hr = 0x80070002
    WgaTray.exe Signed By: N/A, hr = 0x80070002
    WgaLogon.dll Signed By: N/A, hr = 0x80070002
    OGA Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    OGAExec.exe Signed By: N/A, hr = 0x80070002
    OGAAddin.dll Signed By: N/A, hr = 0x80070002
    OGA Data-->
    Office Status: 111 Unsupported OS
    OGA Version: N/A, 0x80070002
    Signed By: N/A, hr = 0x80070002
    Office Diagnostics: 
    Browser Data-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default Browser: C:\Users\Philipp\AppData\Local\Torch\Application\torch.exe
    Download signed ActiveX controls: Prompt
    Download unsigned ActiveX controls: Disabled
    Run ActiveX controls and plug-ins: Allowed
    Initialize and script ActiveX controls not marked as safe: Disabled
    Allow scripting of Internet Explorer Webbrowser control: Disabled
    Active scripting: Allowed
    Script ActiveX controls marked as safe for scripting: Allowed
    File Scan Data-->
    File Mismatch: C:\WINDOWS\system32\licdll.dll[Hr = 0x80070002]
    File Mismatch: C:\WINDOWS\system32\oembios.bin[Hr = 0x80070002]
    File Mismatch: C:\WINDOWS\system32\oembios.dat[Hr = 0x80070002]
    File Mismatch: C:\WINDOWS\system32\oembios.sig[Hr = 0x80070002]
    Other data-->
    Office Details: <GenuineResults><MachineData><UGUID>{32B4D73F-E030-4DD0-B0E5-2A710C1D2A5C}</UGUID><Version>1.9.0027.0</Version><OS>6.3.9600.2.00010300.0.0.101</OS><Architecture>x64</Architecture><PKey>*****-*****-*****-*****-R3G7T</PKey><PID>00179-60314-62768-AAOEM</PID><PIDType>0</PIDType><SID>S-1-5-21-345680080-240479117-3291294462</SID><SYSTEM><Manufacturer>ASUSTeK
    COMPUTER INC.</Manufacturer><Model>K55VJ</Model></SYSTEM><BIOS><Manufacturer>American Megatrends Inc.</Manufacturer><Version>K55VJ.202</Version><SMBIOSVersion major="2" minor="7"/><Date>20121001000000.000000+000</Date></BIOS><HWID>91513B07018400FE</HWID><UserLCID>0409</UserLCID><SystemLCID>0407</SystemLCID><TimeZone>W.
    Europe Standard Time(GMT+01:00)</TimeZone><iJoin>0</iJoin><SBID><stat>3</stat><msppid></msppid><name></name><model></model></SBID><OEM/><GANotification/></MachineData><Software><Office><Result>111</Result><Products/><Applications><App
    Id="00" Version="10" Result="15785388"/><App Id="02" Version="10" Result="2008238971"/><App Id="03" Version="10" Result="15784668"/><App Id="04" Version="10" Result="2008148401"/><App Id="05" Version="10" Result="72"/><App Id="07"
    Version="10" Result="62"/><App Id="09" Version="10" Result="34078782"/><App Id="0A" Version="10" Result="260"/><App Id="0B" Version="10" Result="17653752"/><App Id="0C" Version="10" Result="2"/><App Id="0D" Version="10" Result="10"/><App
    Id="0E" Version="10" Result="31"/><App Id="10" Version="10" Result="80"/><App Id="11" Version="10" Result="3"/><App Id="12" Version="10" Result="31"/><App Id="13" Version="10" Result="62"/><App Id="16" Version="10" Result="28446936"/><App
    Id="18" Version="10" Result="62"/><App Id="19" Version="10" Result="34078782"/><App Id="1A" Version="10" Result="15784760"/><App Id="1B" Version="10" Result="1"/><App Id="1C" Version="10" Result="15784716"/><App Id="1D" Version="10"
    Result="2008158715"/><App Id="1E" Version="10" Result="1905399446"/><App Id="20" Version="10" Result="1905399486"/><App Id="21" Version="10" Result="15789648"/><App Id="22" Version="10" Result="2008487089"/><App Id="23" Version="10"
    Result="114394870"/><App Id="24" Version="10" Result="15785372"/><App Id="25" Version="10" Result="62"/><App Id="26" Version="10" Result="15785288"/><App Id="27" Version="10" Result="2008239772"/><App Id="28" Version="10" Result="17653760"/><App
    Id="29" Version="10" Result="15784760"/><App Id="2A" Version="10" Result="62"/><App Id="2B" Version="10" Result="15786152"/><App Id="2C" Version="10" Result="17655912"/><App Id="2D" Version="10" Result="2008239903"/><App Id="2E"
    Version="10" Result="17653760"/><App Id="2F" Version="10" Result="2008239912"/><App Id="30" Version="10" Result="16777268"/><App Id="31" Version="10" Result="17653752"/><App Id="33" Version="10" Result="34078782"/><App Id="34"
    Version="10" Result="15784760"/><App Id="35" Version="10" Result="15784760"/><App Id="36" Version="10" Result="15785408"/><App Id="37" Version="10" Result="15785388"/><App Id="38" Version="10" Result="34078782"/><App Id="39" Version="10"
    Result="1968451689"/><App Id="3B" Version="10" Result="2"/><App Id="3D" Version="10" Result="3801155"/><App Id="3E" Version="10" Result="5701724"/><App Id="3F" Version="10" Result="5111881"/><App Id="40" Version="10" Result="5177412"/><App
    Id="41" Version="10" Result="5439575"/><App Id="42" Version="10" Result="7536732"/><App Id="43" Version="10" Result="7536761"/><App Id="44" Version="10" Result="6619252"/><App Id="45" Version="10" Result="3342445"/><App Id="46"
    Version="10" Result="6029362"/><App Id="47" Version="10" Result="4653143"/><App Id="48" Version="10" Result="5505089"/><App Id="49" Version="10" Result="7536741"/><App Id="4A" Version="10" Result="3014772"/><App Id="4B" Version="10"
    Result="6357091"/><App Id="4C" Version="10" Result="98"/><App Id="BB" Version="10" Result="15786152"/><App Id="BC" Version="10" Result="-1073741809"/><App Id="BF" Version="10" Result="17627528"/><App Id="C0" Version="10" Result="27"/><App
    Id="C1" Version="10" Result="1905398074"/><App Id="C2" Version="10" Result="15786152"/><App Id="C3" Version="10" Result="-1073741809"/><App Id="C5" Version="10" Result="17651544"/><App Id="C6" Version="10" Result="15785288"/><App
    Id="C8" Version="10" Result="15789648"/><App Id="C9" Version="10" Result="2008487089"/><App Id="CA" Version="10" Result="114328926"/><App Id="CB" Version="10" Result="-2"/><App Id="CC" Version="10" Result="15786080"/><App Id="CD"
    Version="10" Result="1968430296"/><App Id="CE" Version="10" Result="2"/><App Id="CF" Version="10" Result="-1073741809"/><App Id="D0" Version="10" Result="1968496062"/><App Id="D3" Version="10" Result="1968496082"/><App Id="D4"
    Version="10" Result="114687786"/><App Id="D5" Version="10" Result="65534"/><App Id="D6" Version="10" Result="3145776"/><App Id="D7" Version="10" Result="15785404"/><App Id="D8" Version="10" Result="2008158424"/><App Id="D9" Version="10"
    Result="15785492"/><App Id="DA" Version="10" Result="15862616"/><App Id="DB" Version="10" Result="15862592"/><App Id="DC" Version="10" Result="15785588"/><App Id="DD" Version="10" Result="15862548"/><App Id="DE" Version="10" Result="15785520"/><App
    Id="DF" Version="10" Result="2008017974"/><App Id="E0" Version="10" Result="15785492"/><App Id="E1" Version="10" Result="15785444"/><App Id="E2" Version="10" Result="2008158379"/><App Id="E3" Version="10" Result="15785508"/><App
    Id="E4" Version="10" Result="15794428"/><App Id="E5" Version="10" Result="1952"/><App Id="E7" Version="10" Result="2008159919"/><App Id="E8" Version="10" Result="15785680"/><App Id="E9" Version="10" Result="15800140"/><App Id="EA"
    Version="10" Result="15802020"/><App Id="EB" Version="10" Result="15800280"/><App Id="EC" Version="10" Result="15794177"/><App Id="ED" Version="10" Result="16"/><App Id="EE" Version="10" Result="2008158444"/><App Id="EF" Version="10"
    Result="1952"/><App Id="F1" Version="10" Result="15785588"/><App Id="F2" Version="10" Result="15785760"/><App Id="F3" Version="10" Result="16899680"/><App Id="F4" Version="10" Result="-194488364"/><App Id="F5" Version="10" Result="380"/><App
    Id="F7" Version="10" Result="236"/><App Id="F8" Version="10" Result="2"/><App Id="F9" Version="10" Result="2005862271"/><App Id="FA" Version="10" Result="1905398398"/><App Id="FB" Version="10" Result="15785636"/><App Id="FC" Version="10"
    Result="2008159376"/><App Id="FD" Version="10" Result="15785760"/><App Id="FE" Version="10" Result="15785680"/><App Id="FF" Version="10" Result="15785592"/><App Id="00" Version="11" Result="15785588"/><App Id="01" Version="11"
    Result="15785576"/><App Id="02" Version="11" Result="15785568"/><App Id="03" Version="11" Result="15785980"/><App Id="04" Version="11" Result="15785864"/><App Id="05" Version="11" Result="15785912"/><App Id="06" Version="11" Result="1"/><App
    Id="07" Version="11" Result="1952"/><App Id="09" Version="11" Result="15800140"/><App Id="0C" Version="11" Result="-194488364"/><App Id="0D" Version="11" Result="1"/><App Id="0F" Version="11" Result="2127347712"/><App Id="10"
    Version="11" Result="2127360000"/><App Id="11" Version="11" Result="24"/><App Id="12" Version="11" Result="3"/><App Id="14" Version="11" Result="2"/><App Id="15" Version="11" Result="3"/><App Id="16" Version="11" Result="2"/><App
    Id="18" Version="11" Result="15785828"/><App Id="19" Version="11" Result="2008161024"/><App Id="1A" Version="11" Result="3"/><App Id="1C" Version="11" Result="2"/><App Id="1D" Version="11" Result="15785760"/><App Id="1E" Version="11"
    Result="15785680"/><App Id="1F" Version="11" Result="15786360"/><App Id="21" Version="11" Result="2008161125"/><App Id="23" Version="11" Result="64"/><App Id="33" Version="11" Result="-194488364"/><App Id="34" Version="11" Result="-1073741515"/><App
    Id="36" Version="11" Result="4"/><App Id="37" Version="11" Result="1310738"/><App Id="38" Version="11" Result="17750664"/><App Id="3A" Version="11" Result="64"/><App Id="3C" Version="11" Result="15786500"/><App Id="3E" Version="11"
    Result="1"/><App Id="3F" Version="11" Result="131072"/><App Id="40" Version="11" Result="15785816"/><App Id="41" Version="11" Result="-1944883
    Spsys.log Content: 0x80070002
    Licensing Data-->
    N/A, hr = 0x80070424
    Windows Activation Technologies-->
    N/A
    HWID Data-->
    HWID Hash Current: NgAAAAEAAQABAAIAAQACAAAABAABAAEAln0ku5AyPJHKEUCD3vgQAmxP6FosvH57BgHs5ZZj
    OEM Activation 1.0 Data-->
    N/A
    OEM Activation 2.0 Data-->
    BIOS valid for OA 2.0: yes, but no SLIC table
    Windows marker version: N/A
    OEMID and OEMTableID Consistent: N/A
    BIOS Information: 
      ACPI Table Name OEMID Value
    OEMTableID Value
      FACP _ASUS_
    Notebook
      APIC _ASUS_
    Notebook
      HPET _ASUS_
    Notebook
      FPDT _ASUS_
    Notebook
      MCFG _ASUS_
    Notebook
      ECDT _ASUS_
    Notebook
      SSDT AhciR1
    AhciTab1
      SSDT AhciR1
    AhciTab1
      SSDT AhciR1
    AhciTab1
      SSDT AhciR1
    AhciTab1
      BGRT _ASUS_
    Notebook
      MSDM _ASUS_
    Notebook

    You have Office 2013 installed on a Windows 8 computer - but posted in a Windows 7 forum that cannot deal with office problems. Hence the move to this forum.
    You need to repost your problem in the more appropriate Office Community Forums here...
    http://answers.microsoft.com/en-us/office/forum/office_install?tab=Threads 
    Noel Paton | Nil Carborundum Illegitemi
    CrashFixPC |
    The Three-toed Sloth
    No - I do not work for Microsoft, or any of its contractors.

  • Post upgrade issues from Timezone setting

    Everyone,
    We just upgraded from 4.5 -> version 6.0 SP1 (so we first upgraded the data to 4.5 WS then to version 6)
    After the upgrade, we saw the web service registration to have the send timezone setting to portlet as checked for all the portlets that were upgraded/migrated.
    Then after the DB upgrade, we saw some portlets not displaying because of a person's time zone setting. This went a step further and there are users who reported that they can't access the change locale settings page or even add portlets to their page.
    A PT spy of the users experience showed this particular error: com.plumtree.portalpages.browsing.portalsettings.localesettings.LocaleSettingsView     LocaleSettingsView::Display An error occured when trying to display the HTML.
    System.InvalidCastException: Specified cast is not valid.
    at com.plumtree.portalpages.browsing.portalsettings.localesettings.LocaleSettingsModel.GetTimeZoneSetting() in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\browsing\portalsettings\localesettings\LocaleSettingsModel.cs:line 192
    at com.plumtree.portalpages.browsing.portalsettings.localesettings.LocaleSettingsView.Display() in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\browsing\portalsettings\localesettings\LocaleSettingsView.cs:line 59
    I noticed that the cast error originates from the GetTimeZoneSetting() method. This led me to believe that some values in the DB were unexpected. True enough, I noticed that for the strTimeZone preference some users has a value of 1/-1 and the PrefValueType is set to 3 (instead of 8). After modifying this we resolve the issue and the users could proceed as normal.
    My question is that has anyone else experienced a similar issue(or is this just specific to our environment)? Also is there a list of settings/preference you need to check for data integrity after an upgrade? Thanks!

    I experienced an issue similar to this once. I don't know if it was exactly the same because it was a 4.5 to 5.x upgrade done a couple years ago, but it sounds like pretty much the same thing. I also tracked it down to a pref problem in the database. I had to manually fix the bad values, but that resolved the problem, and that was the only problem of that type I encountered. That doesn't mean you won't find anything else strange with your upgrade, but it seemed to be a strange isolated incident to me. I have done many upgrades since that time, and never encountered the problem again. I would suspect that if you have fixed all the database records that were affected by this, then you are probably OK.
    DJ Dewey | VHA Inc. | [email protected]

  • SRM 7.0 SP9  Timezone warning message

    We are currently testing SRM 7.0 for implementation in JUly.    We occassionally get a Timezone warning message, that seems to go away depending on the product/vendor being selected.   The warning message says:   Timezone MSTNO is not valid in country XX, we get this for US as well.   In transaction STZGC, we do have MSTNO set for US AZ.    MSTNO is also our system time.    Does anybody know where this error is coming from and what it means?

    Hello,
    This should be solved with note 1505591. However this note is not released for all customers.
    Open an SAP message assigned to component BC-SRV-ADR and SAP will check if this note can be released for you.
    Regards,
    Ricardo

  • How do I change the default timezone for user calendars?

    The default timezone for new calendars is "America/New_York." How
    do I change the default timezone to my local timezone?
    To change the default timezone, perform the following steps:
    <P>
    <OL>
    <LI>Go to the bin/data/default_user_prefs.xml
    file.
    <P>
    <LI>In this file, change the values for the
    "icsTimeZone" and
    "ceSingleCalendarTZID"
    parameters. The default settings will appear something as follows:
    <P>
    <P>
    Changing these two parameters will change the timezone in the Calendar user
    interface.
    <P>
    <LI>In addition, go to the
    bin/config/ics.conf file.
    <P>
    <LI>In this file, change the value for
    calstore.default.timezoneID
    <P>
    Changing this value will enable the server to pick up the new timezones.
    </OL>
    <P>
    <B>Please note:</B> The values you enter for the above parameters must be valid
    timezones defined in the
    bin/data/timezone.ics
    file.
    <B>Related Technote:</B>
    <P>
    20000330-7: iCS 2.x: How do you change the
    default timezone in JavaScript?<BR>
    see article 4322

    Colin,
    You may substitute any text you like for the "Placeholder Text", as it is called, in Pages. Click on the existing placeholder text and type something more to your liking. Do this in as many places as your particular template of interest demands. Then, Format > Advanced > Define as Placeholder Text. Lastly, File > Save as Template.
    Now that you have defined a Custom Template to your liking, you can go to Pages Preferences and under the General tab's first section, define the new custom template as your default for each new document.
    Regards,
    Jerry

  • How to store date in database , taking cre of timezone

    Hello java users
    I have a user interface in which a user can pick a date, time and timezone.
    Implemented simply.
    start Date as a textbox: format - MM/dd/yyyy
    start time as a textbox : format - HH/mm/ss
    start timezone as a drop down. And currently there is only 3 values here: PST,EST,CST. As this is what we support.
    I am using MSSQL and my date field column ( startdate ) is of type datetime.
    Now how will I pass the correct value to the database.
    Some more details.
    I have a bean i which I am able to retrieve all the values.
    public class MyBean implements serializable{
    private Date startDate;
    private Date startTime;
    private String timezone; // this will store the timezone id selected by the user.
    //getters and setters
    Now, how will I combine all the values selected by the user and set in the bean and save it in the database.
    I am sure there are a lot of times someone has tried to do this. But I am having a hard time finding this info in a collective manner.
    Any help would be usefull
    Thanks
    Aayush

    Its does help.
    And yes it is requirement to get the date and time and the timezone info from the user through a UI.
    And date is in format : MM/dd/yyyy
    time is in format : HH:mm:ss
    and there are 3 timezones : PST,EST,CST (And yes these are valid timezone ids).
    I guess, the other way to put this is that - The user input is the way to get the StartTime data.
    And ya it makes sense to have separate fields in the database to store date and timezone.
    I am fairly new on this date part and its confusing me a little.
    So I will go into a little more details.
    As u suggested that it would be a good idea to have 3 separate fields for doing this.
    you mean to have 3 fields in the database with columns like
    1. startDate - datetime // to store the start date ( MM/dd/yyyy)
    2. startTime - datetime // to store the start time ( HH:mm:ss). Is it possible to store only time in the database or are you suggesting to combine date and time in one database field.
    3. startTimeZone - varchar // to store time zone.
    So how do I achieve this.
    lets say I get these values;
    String startDate = "09/06/2008";
    String startTime = "11:10:12";
    String startTimeZone = EST;
    now how will I store it in the database.
    consider I have a java bean
    public class StartTimeBean{
    private Date startDate ;
    private Date startTime ;
    private String startTimeZone;
    also I am using a OR mapping tool ( ibatis )
    And I have my insert statement mapped to the bean StartTime.
    Essentially what I am looking for a say method say , createTime(StartTimeBean startTimeBean )
    so how will I store the info in the database

  • Timezone update issues in 11.2.0.1- 11.2.0.2 upgrade

    I'm getting lost in the note maze on timezones. I'm upgrading, "out of place," from 11.2.0.1 to 11.2.0.2. When I run utlu112i.sql it tells me to:
    .... After the release migration, it is recommended that DBMS_DST package
    .... be used to upgrade the 11.2.0.1.0 database timezone version
    .... to the latest version which comes with the new release.
    I find, via a search of metalink, "Updating the RDBMS DST version in 11gR2 (11.2.0.1 and up) using DBMS_DST [ID 977512.1]" which says:
    Locate the latest RDBMS DST patch available in NOTE:412160.1 Updated DST transitions and new Time Zones in Oracle Time Zone File patches
    Apply the RDBMS DST patch to the $ORACLE_HOME using Opatch, there is no need to shutdown the database to apply the RDBMS DST patch.
    This is where I get lost. 412160.1 provides DSTv15diff, but this does not look like a patch to me. Also, there is no digest provided, so I can't be sure the file is valid on download (sigh):
    $ unzip -l DSTv15diff.zip
    Archive: DSTv15diff.zip
    Length Date Time Name
    0 12-17-10 14:41 DSTv15diff/
    4604 12-17-10 14:46 DSTv15diff/DST15new.txt
    1882 12-17-10 14:40 DSTv15diff/readme.txt
    32850 12-17-10 14:42 DSTv15diff/tzdst15.txt
    39336 4 files
    Updated DST transitions and new Time Zones in Oracle Time Zone File patches [ID 412160.1] does not seem to say how to apply this patch.
    What rabbit trail did I miss?

    Hello,
    DSTv15diff is pure informative thing, it was added by customer request, i've made it hidden as attachement and added this text "(this is not a "DST patch" or needed to apply dst patches, it's pure informative)"
    in 11.2 there is no need to shutdown a database to apply a new DST patch, it's simply add a new file to the home. Hence it is not in use (like on the older versions), i'll see the readme for 11.2 patch is changed for DSTv16)
    you have 2 distinct different things you can do
    * upgrade a software version (which, for 11.2. you may need to apply a dst patche to the target home)
    * not upgrade the software version but simply update the DST version
    both are handled in different note seen they are different actions, both are in Note 412160.1 Updated DST transitions and new Time Zones in Oracle Time Zone File patches
    If you want to update a DST version of a existing database (= not upgrade the db) then you have the "normal" dst advisory's
    for example if you want to upgrade 11.2.0.1 to the latest tz file from DSTv11-> note 1274498.1 Applying the DSTv15 update for the Oracle Database
    which basically say's, apply the DStv15 patch and then use DBMS_DST to go to 15 for each database in that home
    If you then (later) want to UPGRADE a 11.2.0.1 DSTv15 to 11.2.0.2 then you have notes like Note 1201253.1 Actions For DST Updates When Upgrading To Or Applying The 11.2.0.2 Patchset
    there it basically bottoms down (when coming from 11.2.0.1) to:
    If you do "Out-of-place upgrade" in 11.2 then make sure then new version has your current dst version included (for example you use DSTv15 in 11.2.0.1 , then you need to apply DStv15 on 11.2.0.2 because it's not by default in the 112.0.2 stack), if not, then apply it to the new home and then ,after upgrade, (if needed/wanted) go to the latest dst version
    I will also ask to include a reference to Note 412160.1 Updated DST transitions and new Time Zones in Oracle Time Zone File patches in the upgrade docset (which I assume you follow)
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17222/upgrade.htm#CIAFHIBG
    Regards,
    Gunther
    Edited by: Gunther Vermeir, Oracle on Mar 14, 2011 5:25 PM
    added "no" where it was missing

  • TIMEZONE question on 10.2.0.1.0

    Hi Experts,
    Env: Sun Solaris 8
    DB 10.2.0.1.0 -- Single instance
    a) I did set env variable as TZ=UTC
    b) When I check SQLPLUS from server, it is fine. i.e. It shows time in GMT
    SQL> select to_char(sysdate,'DD-MON-YYYY HH24:MI:SS') from dual ;
    TO_CHAR(SYSDATE,'DD-
    14-MAR-2007 18:51:23
    c) However, when I try from SQLPLUS client, it is NOT showing correctly.
    What I mean, it is still showing LOCAl time.
    SQL> select to_char(sysdate,'DD-MON-YYYY HH24:MI:SS') from dual ;
    TO_CHAR(SYSDATE,'DD-
    14-MAR-2007 12:59:08
    d) We use LDAP for connectyions.
    HOW TO FIX THIS?
    Thanks for help
    Regards
    Natrajan

    Get the current timezone
    SQL> SELECT DBTIMEZONE FROM DUAL;
    DBTIME
    +00:00
    Use the SET TIME_ZONE clause to set the time zone of the database. You can specify the time zone in two ways:
    1.By specifying a displacement from UTC (Coordinated Universal Time--formerly Greenwich Mean Time). The valid range of hh:mm is -12:00 to +14:00.
    ALTER DATABASE SET TIME_ZONE = '+02:00';
    OR
    2. By specifying a time zone region. To see a listing of valid region names, query the TZNAME column of the V$TIMEZONE_NAMES dynamic performance view.
    SELECT TZNAME FROM V$TIMEZONE_NAMES
    http://www.oracleabc.com/forums/viewthread.php?tid=30&extra=page%3D1

  • Using TimeZones in a GUI

    I'm wondering if anybody out there has had to create a form or other type page where a user had to select a timezone. If you do a TimeZone.getAvailableIDs() you get a couple hundred items which is more than what I'd like to have in my list box of choices. Any input would help,
    Thanks

    I'm wondering if anybody out there has had to create a
    form or other type page where a user had to select a
    timezone. If you do a TimeZone.getAvailableIDs() you
    get a couple hundred items which is more than what I'd
    like to have in my list box of choices. Any input
    would help,Of course those are all valid timezones.
    So if want less than that you will have to provide a customized version that is specific to your application.

  • Date problem with IST(+5:30) timezone

    Hi,
    I'm having problem with Timezone IST, which is GMT + 05:30.
    SimpleDateFormat returns incorrect date when timezone on client machine is other than IST.
    When Timezone on machine is IST, correct value is returned.
    See the below example. All four dates are same ( LKT is also + 05:30).
    When timezone on machine is IST, all four dates are displayed same.
    For any other timezone, IST date is displayed incorrectly, rest 3 are displayed correctly.
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    public class Test {
        public static void main(String[] args) throws ParseException {
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("EEE MMM d HH:mm:ss Z yyyy");
            Date date1 = simpleDateFormat.parse("Wed Sep 02 02:17:41 +0530 2009");
            Date date2 = simpleDateFormat.parse("Wed Sep 02 02:17:41 IST 2009");
            Date date3 = simpleDateFormat.parse("Tue Sep 01 13:47:41 PDT 2009");
            Date date4 = simpleDateFormat.parse("Wed Sep 02 02:17:41 LKT 2009");
            System.out.println(date1.toString());
            System.out.println(date2.toString());
            System.out.println(date3.toString());
            System.out.println(date4.toString());
            System.out.println("Date1 equals Date2? " + date1.equals(date2));
            System.out.println("Date1 equals Date3? " + date1.equals(date3));
            System.out.println("Date1 equals Date4? " + date1.equals(date4));
            System.out.println("Date1.getTime() " + date1.getTime());
            System.out.println("Date2.getTime() " + date2.getTime());
            System.out.println("Date3.getTime() " + date3.getTime());
            System.out.println("Date4.getTime() " + date4.getTime());
    Output when timezone on client is GMT IST (GMT + 05:30):
    Wed Sep 02 02:17:41 IST 2009
    Wed Sep 02 02:17:41 IST 2009
    Wed Sep 02 02:17:41 IST 2009
    Wed Sep 02 02:17:41 IST 2009
    Date1 equals Date2? true
    Date1 equals Date3? true
    Date1 equals Date4? true
    Date1.getTime() 1251838061000
    Date2.getTime() 1251838061000
    Date3.getTime() 1251838061000
    Date4.getTime() 1251838061000
    Output when timezone on client is GMT (Casablanca):
    Tue Sep 01 15:47:41 ACT 2009
    Tue Sep 01 19:17:41 ACT 2009
    Tue Sep 01 15:47:41 ACT 2009
    Tue Sep 01 15:47:41 ACT 2009
    Date1 equals Date2? false
    Date1 equals Date3? true
    Date1 equals Date4? true
    Date1.getTime() 1251838061000
    Date2.getTime() 1251850661000
    Date3.getTime() 1251838061000
    Date4.getTime() 1251838061000
    Output when timezone on client is PDT ( -0800, -0700 for this date due due Daylight saving):
    Tue Sep 01 13:47:41 PDT 2009
    Tue Sep 01 17:17:41 PDT 2009
    Tue Sep 01 13:47:41 PDT 2009
    Tue Sep 01 13:47:41 PDT 2009
    Date1 equals Date2? false
    Date1 equals Date3? true
    Date1 equals Date4? true
    Date1.getTime() 1251838061000
    Date2.getTime() 1251850661000
    Date3.getTime() 1251838061000
    Date4.getTime() 1251838061000
    IS this a bug in java??
    Regards

    Your program is in error. PDT and LKT are not valid time zone ids in Java. There may be other problems, also, I didn't check.
    I know this program produces valid results, you can try it
    import java.text.DateFormat;
    import java.util.Date;
    import java.util.TimeZone;
    public class DateTest
        public static void main(String[] args)
            Date current = new Date();
            DateFormat df =
                DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.FULL);
            System.out.println("Default TZ: " + df.format(current));
            df.setTimeZone(TimeZone.getTimeZone("IST"));
            System.out.println(df.format(current));
            df.setTimeZone(TimeZone.getTimeZone("GMT"));
            System.out.println(df.format(current));
            df.setTimeZone(TimeZone.getTimeZone("Etc/GMT-5"));
            System.out.println(df.format(current));
    }This program lists all of Java's time zones
    import java.util.*;
    public class TimezoneList
        public static void main(String[] args)
            int msPerHr = 3600 * 1000;
            String[] ids = TimeZone.getAvailableIDs();
            for (int n = 0; n < ids.length; n++)
                TimeZone tz = TimeZone.getTimeZone(ids[n]);
                System.out.print(
                    "TZ: " + ids[n] + "  " + (double) tz.getRawOffset() / msPerHr + "  ");
                System.out.println(
                    tz.useDaylightTime() ? "DST=" + (double) tz.getDSTSavings() / msPerHr : "");
    }

Maybe you are looking for