Calendar Configuration

Hi, I'm installing OCS R2 (90411) on Windows 2000.
I am following the guide posted on OTN documentation.
I am trying to access the administration page:
https://Web_server_host:https_port/ocad-bin/ocad.cgi?object=nodeadm
And the SSO page appears. I have no clue on which user should log on.
The guide says the following:
To log on to the Oracle Calendar Administrator, enter the Oracle Calendar administrative password you chose during installation. Do not enter a user name with this password.
After further reading, I see that the calendar configuration assistant ask for the password of the sysop user (who is the calendar administrator, right?). But I don't remember having executed this configuration assistant.
It probably failed or I accidentally cancelled it during the middle tier configuration.
Now my question is: how do i call this configuration assistant?
Also, can I uninstall the Calendar components and reinstall them later? what is the procedure to accomplish this?
The only thing I remember having done is:
- Providing Time Zone for Calendar
- Providing the OS password for the user that is installing calendar
- Providing the node id (1)
- Choosing this node as master node
Also, this is the outcome I have when i execute the command unistart:
D:\ocs\midtier\ocal\bin>unistart
unistart: Oracle Calendar Server 9.0.4
unistart: Copyright (c) 1993, 2003, Oracle.
unistart: All rights reserved.
unistart:
unistart: Starting the Calendar Lock Manager
unistart: Starting the Calendar Engine
unistart: Starting the Calendar Directory Access Server
unistart: Starting the Calendar Synchronous Network Connections
unistart: Starting the Calendar Corporate-Wide Services
unistart: Starting the Calendar Server Manager
unistart: The Calendar Server started successfully.
Thanks for any reply.

Hi 393564
I did those steps that I mentioned.
I remember that the password that I provided was for the Windows user with which I was installing OCS, not for SYSOP.
I even try to log in on the calendar administration webpage:
https://Web_server_host:https_port/ocad-bin/ocad.cgi?object=nodeadm
with SYSOP as user and the OS user's password as password
but it doesn't seem to work.
Moreover, I cant find the SYSOP user on OID users.
Where do I find this user? can I reset his password?
What should I do...
Thanks for any help.

Similar Messages

  • Marketing Calendar Configuration manual?

    Can anyone tell me where to find the SAP CRM Marketing Calendar configuration document for 7.0?    I need to learn how to expand our MKT calendar capabilities and how to configure.
    Thanks,
    Carla
    Edited by: Carla  Frassetto on May 5, 2011 2:59 PM

    Hi Carla,
    You can refer to the following SAP help content to know more about marketing calendar and possible configuration in CRM 7.0:
    http://help.sap.com/saphelp_crm70/helpdata/en/30/7a8d1531554aeaa3c06c94a552b927/frameset.htm
    Regards,
    Shiromani

  • Calendar Configuration Question

    Calendar Configuration
    Anybody have copies of the Dad information (calapps and calpalm) for setting up Unified Messaging Calendar? Also, looking for what needs to go in the Calendar Server Setup in the http://host:port/um/admin/CalServerSetup.uix screen.
    Nothing seems to be working......
    Thanks,
    Dennis

    Hi:
    I have compiled some things to check regarding calendar setup.
    Let me know if this helps.
    Unified Messaging Calendar configuration tips:
    1.     If you are unable to insert the calendar data from the admin page you first have to check the information in LDAP doing the following:
    Connect to sqlplus as the calendar user i.e es_cal
    -- Check LDAP info
    set serveroutput on
    declare
    a varchar2(255);
    begin
    get_install_params('LDAPHOST', a);
    dbms_output.put_line('LDAPHOST=' || a);
    get_install_params('LDAPPORT', a);
    dbms_output.put_line('LDAPPORT=' || a);
    get_install_params('ORCLADMINDN', a);
    dbms_output.put_line('ORCLADMINDN=' || a);
    get_install_params('ORCLADMINPASSWD', a);
    dbms_output.put_line('ORCLADMINPASSWD=' || a);
    end;
    This should show the right info like for example:
    LDAPHOST=cangre.us.oracle.com
    LDAPPORT=4032
    ORCLADMINDN=cn=umadmin,cn=EMailServerContainer,cn=Products,cn=OracleContext
    ORCLADMINPASSWD=um
    PL/SQL procedure successfully completed.
    Otherwise there is something wrong during the install of UM.
    2.     Now check if the information in the mailstore is right too:
    -- Check Calendar info in the mailstore
    set serveroutput on
    declare
    p_login_url varchar2(100) :=' ';
    p_logout_url varchar2(100) := ' ';
    p_locale varchar2(200) := ' ';
    p_admin_user varchar2(100) := ' ';
    begin
    CalAdmin_Get_Info ( p_login_url, p_logout_url ,
    p_locale ,
    p_admin_user );
    dbms_output.put_line(' login_url'||p_login_url);
    dbms_output.put_line(' logout_url'||p_logout_url);
    dbms_output.put_line(' locale'||p_locale);
    dbms_output.put_line(' user'||p_admin_user);
    end;
    which should show an output of :
    login_urlhttp://cangre.us.oracle.com:7779/um/templates/CalSSOLogin.jsp
    logout_urlhttp://cangre.us.oracle.com:7779/um/templates/CalSSOLogout.jsp
    localeAlaska
    userCN=ESADMINC1
    3.     If you are unable to store the calendar info from the UMAdmin page you can use the following:
    --This will force Calendar Registration the same way as throug UMAdmin
    webpage:
    -- logon as ES_CAL
    set serveroutput on
    declare
    p_login_url varchar2(100)
    :='http://omcdev6.us.oracle.com:7779/um/templates/CalSSOLogin.jsp';
    p_logout_url varchar2(100) :=
    'http://omcdev6.us.oracle.com:7779/um/templates/CalSSOLogout.jsp';
    p_locale varchar2(200) := 'Alaska ';
    p_admin_user varchar2(100) := 'cn=es_sysadmin';
    begin
    CalAdmin_Set_Info ( p_login_url, p_logout_url ,
    p_locale ,
    p_admin_user );
    end;
    4.     The dad for calapps is very important.
    Check in the $ORACLE_HOME/Apache/modplsql/conf for the file dads.conf and you should have at least the following :
    <Location /pls/calapps>
    SetHandler pls_handler
    Order deny,allow
    Allow from all
    AllowOverride None
    PlsqlDatabaseUsername es_cal
    PlsqlDatabasePassword !Y2Fs
    PlsqlDatabaseConnectString iasdb
    PlsqlAuthenticationMode Basic
    </Location>
    If not you have to create it using :
    Create the Calendar DAD with name as /pls/calapps on the middle tier
    machine.
    ( Login to http://<infra hostname>:1810
    login as ias_admin
    Select middle tier machine -> http server-> )
    Configure generic DAD.
    The name of the dad will need to be /pls/calapps
    5. Follow the instructions on UM Admin guide page 3-3 to setup the
    calendar.
    In the file oc4j.properties in $ORACLE_HOME/j2ee/OC4J_UM/config
    For example:
    calendar.cookie.domain=.oracle.com
    calendar.dad.webserver.port=7779
    calendar.dad.webserver.host=cangre.us.oracle.com
    calendar.mailstoredn=cn=iasdb.cangre.us.oracle.com,cn=MailStores,cn=UM_SYSTEM,cn=EmailServerContainer,cn=Products,cn=oraclecontext
    in toolkit.properties from $ORACLE_HOME/um/client/config
    Calendar Server login and Logout URL should be as follows.
    login URL :
    http://<middletiermachinename>:<port>/um/templates/CalSSOLogin.jsp
    The logout url should be
    http://<middletiermachinename>:<port>/um/templates/CalSSOLogout.jsp
    6. When you create UM users using http://<mid tier host>:<mid tier
    port>/um/traffic_cop
    you need to fill in the calendar dad ( calapps ) name for each user.

  • CRM onDemand Calendar - Configure First Day of Week?

    Hi guys,
    by default, the calendar is showing Sunday as the first day of week in the CRM calenadr. is it possible to configure any settings to have monday as the first day?

    Mika, at this time it is not possible to configure the first day of the week.

  • Calendar configuration --- hard Apex 3.2

    Dear Apex Users!
    I'm trying use the apex. I have an aplication and i would like to make a dynamic calender. im imagine two calendar, i have a main calendar where i'm use a sql query. Whit my query i can write an message to every day in the calendar. And in my database, i have Msg table and Notice table. Every Msg's have a own Notice. Im use the date by primary key. And between the two table i have a foreign key.
    I'm made a new calendar for the Notice, because i made a link in the main calender from every day. My link is redirect me to the Notice calendar where i can watch the Notice in daily view.
    Unfortunately i have two problem. When i click to link' I look a monthly view from Notice calendar. I don't know where can delete the monthly and weekly view.
    My second problem is that. When i m click to link i would like to see the selected day. But im look the current day. Im try to resolve this 5 days ago.
    Please help me Anyone!
    I'm using Apex 3.2
    postscript: sorry for my English.
    Edited by: 789131 on Aug 18, 2010 12:11 AM
    Edited by: 789131 on Aug 18, 2010 12:28 AM

    On the Page where you have the Calendar you will find a Hidden item like P1_CALENDAR_TYPE. This item determines whether the view will be Monthly, Weekly or Daily. The default is Monthly.
    To directly show the Day view do this.
    1. Create a On Load Before Header Computation on (say) P1_CALENDAR_TYPE. Type Static Assignment
    2. Assign the Value D (upper case) to the item
    This will take you to the Daily View
    As for your 5 days ago, I am not sure why. Depends on the code.
    Regards

  • Calendar configuration for peoplesoft source system

    Hi All,Need one clarification.
    we are using people soft as our source system.now we need to configure globalcalendar id parameter in dac.for that we ran below query in given source DB
    SELECT SETID|| ‘~’|| CALENDAR_ID FROM
    PS_CAL_DEFN_TBL.But for this no results were presenting in given database.So we thought of proceeding with default parameter 'SHARE~01'.Shell we proceed like that?will data load?otherwise any ware house generated calender we need to configure?.If yes what we need to configure.Please provide your valuable suggestions on this.
    Thanks in advance.
    Thanks,
    Anusha

    Its better to check with functional guys from your project, they better know what they need for reporting as of your client.

  • 4-4-5 Calendar Configuration For Year 2012

    Hi
    Please tell me how to config 4-4-5 calendar for the year 2012.
    Thanks & Regards
    Jose

    Hi Guido,
    I want to set up  4-4-5 calendar for 2012 in following way.
    January:     02/1    to 01/29
    Febuary:     01/30 to 02/26
    March:        02/27 to  04/01
    April:           04/02 to  04/29
    May :           04/30 to 05/27
    June :        05/28 to  07/01
    July:           07/02  to  07/29
    August:       07/30 to  08/26
    Sept:           08/27 to 09/30
    October:     10/01 to 10/28
    November: 10/29 to  11/25
    December  11/26 to 12/30
    Please help me to set up this calendar into the SAP system.
    Regards
    Jose

  • How can I stop Exchange calendar event copies appearing in drafts?

    I use Outlook 2010 on a Windows machine at work. On my MacBook I use Outlook 2011 and have the Exchange calendar configured for iCal. Sync'ing works fine, except this one annoyance.
    Since upgrading to Mountain Lion copies of existing, repeating calendar events keep appearing in my Outlook drafts folder. Every few days I have to empty it, sometimes from 50 event copies or more.

    I too, was experiencing this. There seems to be no indication of a solution anywhere on the web. HOWEVER, I figured it out.
    Here's the solution: Strangely, it's not really an exchange issue, but rather an issue with calendaring on the OSX side.
    So you understand, here's the configuration that can cause problems:
    you are using an exchange server to connect your email/calendar/notes/tasks...
    You use a PC (or VM PC) for some/most of your exchange/outlook activities
    You may or may not have MS Office 2011 (Mac) installed.
    You have one or more Apple devices connected to your exchange account (iPhone, iPad, any Mac)
    After installing Mountain lion, you start noticing events being magically duplicated every few minutes in your outlook draft folder. If you delete an event, another one takes its place.
    HERE IS THE FIX:
    Short answer: Sync all calendars on all devices
    On the apple side (OSX, IOS) you MUST turn on calendar sync in all the exchange accounts on all your devices. I thought I had, then discovered that my MS Office Outlook on my Mac was missing that sync. It doesn't seem to matter which apple device is missing the sync, it only takes one of them. Once you set calendar sync to "on" for all the apple devices that access that calendar, just like magic, the phantom multi event creation stops.
    You should check all MS products on the OSX/IOS devices AND all apple devices that allow syncing. I haven't turned on notes sync through the cloud, so that isn't one of the items that cause problems.
    If you do this and the multi still appears, you missed something on one of your apple devices.
    Sweet!

  • Equipment mailbox not showing partial days on calendar for certain user (in month view).

    We have one user that is having a problem with viewing Equipment Mailboxes.
    We are running Exchange 2010 version 14.02.0328.009. Client machine is running Outlook 2010 x86.
    The mailbox is a check-out vehicle that he and one other person manage. When someone sends a request to the van, it books it for that time, then doesn't allow others to book it for that same time as expected. However, some users don't like to do their own
    booking so they have him do it for them. Several times now he has went out on the calendar (actually 3 different vans, all respond the same way) and booked a van on a day that looked available to him, only to find out on that day that two different people
    show up expecting that same van. One person booked it on their own, and he booked it again. It never gave a prompt to disallow him or tell him it was taken from the attendant. However, for the other guy that manages the mailboxes it looks just fine, for me,
    for many other users I've compared with, it looks and responds as it should.
    I have checked the settings on the equipment mailboxes as well as compared his Exchange account with the other person who is working as expected, they are identical. The thing that I've found is that if someone books a van for an 'all day' event, he sees
    it just fine. If they set it up for a partial day, it never shows to him in month view.
    Looking at the calendar permissions for the mailbox both of the people have equal rights. I tried setting this person to owner to see if it helped, to no avail. I also tried setting the "Show As:" to free, busy, tentative, out of office, all respond
    the same way.
    It seems to show up when he does a schedule view, but from a month view, nothing shows and it allows him to book the van. For everyone else that I've tested, it responds as expected.
    I have deleted and recreated his profile on his local machine, and he even recently got a whole new desktop so it shouldn't be anything local (has been going on for many weeks), but I honestly have no idea why it's doing it. Any suggestions from the gurus
    on here would be appreciated. Thanks!

    Hi,
    Since the issue only happens when this specific user view the equipment mailbox's calendar in Outlook monthly view, please access this user's mailbox in OWA and view the equipment maibox's calendar and send test meeting requests to have a try.
    If the issue also happens in OWA, please run the following cmdlet to check the equipment mailbox calendar configuration:
    Get-CalendarProcessing equipmentmailbox | fl
    Regards,
    Winnie Liang
    TechNet Community Support

  • Google calendar event times are shown as -1h

    Summary:
    When I create a new event in the built in WP8 calendar app to a Google calendar the time of the event is being displayed as one hour earlier.
    Steps to reproduce:
    Create a new event in calendar. Choose one of the Google calendars configured (I have two configured in my phone). Set time as 2013/07/17 16:00. Save the event.
    Expected behavior:
    The event time in the agenda view is shown as 2013/07/17 16:00.
    Observed behavior:
    The event time in the agenda view is shown as 2013/07/17 16:00 for a few seconds. It then automatically changes to 2013/07/17 15:00.
    Other notes:
    I have two Google calendars configured. I can observe the same misbehavior on both.
    I also have a Microsoft (@hotmail.com) calendar configured. This works as expected.
    When I log into my Google calendar using a web browser, the time is shown as expected.
    When I use a third party calendar (Chronos) and sync my Google account directly, the time is shown as expected.
    When I use a third party calendar (Chronos) and use it simply as an interface to the built in WP calendar the time is off again showing 2013/07/17 15:00.
    The timezone on my WP is set to (UTC) London.
    I started noticing this perhaps a week ago. It was working as expected before.
    Phone model is Nokia Lumia 925
    Phone OS version is 8.0.10327.77
    Notes 1-6 suggests to me that the internal calendaring module in WP8 fails to recognize DST (daylight saving time) in timezone (UTC) London or misinterprets relevant information fields on Google calendar objects.
    Note 7 suggests to me that this is related to an update to my WP8 phone or a change in Google calendar API.
    Any help is much appreciated, this is driving me rather nuts.
    Thanks,
    Kaarel

    Further investigation reveals this only happens when the event is created from within WP native calendar app and disappears when I make an edit to the event in any other calendar client including Google web. So a more appropriate description of the problem would be:
    "Native calendar app keeps subtracting 1h off a Google calendar event on EVERY edit"
    Create an event at 2013/07/17 15:00 in WP native calendar app. Result: Event shows as 2013/07/17 15:00 in the calendar app for a few seconds, then updates itself to 2013/07/17 14:00.
    Edit the event title and save in WP native calendar app. Event time moves by -1h again to 2013/07/17 13:00.
    Edit the event title in Google web calendar.
    Subsequent edits in WP native calendar do not mess up the time any longer. If I fix the time to what I originally intended (2013/07/17 15:00) in WP native calendar app, it stays there and shows correctly in all previously mentioned calendar viewers.
    I just learned that Lumia 925 was released with GDR2 update pre-installed. This update is only now being made generally available. If the issue is secific to the CalDAV implementation in GDR2 rather than specific to my phone only, this would make a lot of angry people. I hope I'm wrong on this though as it's an extremely frustrating problem.

  • Contacts and Calendar not synching. (Centro, Windows XP, Palm Desktop 6.2.2) Please help!

    I originally posted on the Hotsync forum, and it was suggested that I post my question here.  Important information:  My office uses Microsoft Outlook Exchange, and I have my Centro set up to get my emails.  It also wants to sync my contacts and calendar; however, that is completely unneeded for my purposes.  I need to synch my Contacts and Calendar with my Palm Desktop.  If there is something I have to check or uncheck to do so, please tell me how.
    This is my original post:
    "When I hotsynch, my memopad, my documents to go, everything seems to synch except my contacts and calendar.
    After a few hours on the phone with tech support at sprint, we went for the nuclear option, hard reset, and the temporarily solved the problem, but now it has returned.
    Information that might be important:
    I'm getting a failed to backup 1 file error>PmTraceDatabase>Protocol Error: Handheld file could not be opened (4004)>SYNCERR_FILE_NOT_OPEN.  This may or may not be relevent.
    Anyway, I appreciate any help with this.  I depend on this PDA phone to keep me organized and there's a slight and embarrasing touch of panic to how I feel now that it is not working correctly."
    Post relates to: VisorPhone

    Okay, I'm continuing to do research on this, and here's my suspicion, maybe true or maybe false.  When I set up versamail to get mail from my office's exchange server, it also configured my contact list and calendar to sync as well, and synching with the the exchange server and synching with my desktop software are mutually exclusive.
    If this IS true, then hopefully there is a way to set it up so I synch my email only with the exchange server, and leave my contact list and calendar configured to synch with my desktop software.
    Any feedback or assistance would be greatly appreciated.
    Post relates to: VisorPhone

  • Configuration Mail Store Failed

    Could someone help me ?
    This is my log :
    Using paramFile: D:\OCS_ONEBOX\mtier\oes\config\Disk1\install\win32\oraparam.ini
    Checking requirements...
    Checking operating system version: must be 4.0, 5.0, 5.1 or 5.2.
    Actual 5.0 Passed
    Checking monitor: must be configured to display at least 256 colors.
    Actual 4294967296 Passed
    Checking if CPU speed is above 300 MHz.
    Actual 2405MHz Passed
    All requirements met.
    Environment Variables:
         ORACLE_HOME =
         PATH = C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;Z:.;Y:.;
         CLASSPATH = D:\OCS_ONEBOX\mtier\jlib\ldapjclnt9.jar;D:\OCS_ONEBOX\mtier\jlib\repository.jar;D:\OCS_ONEBOX\mtier\jlib\esinstall.jar;D:\OCS_ONEBOX\mtier\jlib\esldap.jar;D:\OCS_ONEBOX\mtier\jlib\providerutil.jar;D:\OCS_ONEBOX\mtier\jlib\ldap.jar;D:\OCS_ONEBOX\mtier\jlib\jndi.jar;
    Username:Administrator
    This installation is being performed using response file D:/OCS_ONEBOX/mtier/oes/config/Disk1/stage/Response/oracle.um.UM_Config.Typical1.rsp.
    Oracle Universal Installer version is 2.3.0.8.0
    This installation is being performed using response file D:/OCS_ONEBOX/mtier/oes/config/Disk1/stage/Response/oracle.um.UM_Config.Typical1.rsp.
    Setting variable 'FROM_LOCATION' to 'D:\OCS_ONEBOX\mtier\oes\config\Disk1\stage\products.jar'. Received the value from response file.
    Setting variable 'ORACLE_HOME' to 'D:\OCS_ONEBOX\mtier'. Received the value from response file.
    Setting variable 'TOPLEVEL_COMPONENT' to 'oracle.um.UM_Config,9.0.4.1.0,'. Received the value from response file.
    Setting variable 'SHOW_SPLASH_SCREEN' to 'false'. Received the value from response file.
    Setting variable 'SHOW_WELCOME_PAGE' to 'false'. Received the value from response file.
    Setting variable 'SHOW_CUSTOM_TREE_PAGE' to 'false'. Received the value from response file.
    Setting variable 'SHOW_COMPONENT_LOCATIONS_PAGE' to 'false'. Received the value from response file.
    Setting variable 'SHOW_SUMMARY_PAGE' to 'false'. Received the value from response file.
    Setting variable 'SHOW_INSTALL_PROGRESS_PAGE' to 'false'. Received the value from response file.
    Setting variable 'SHOW_REQUIRED_CONFIG_TOOL_PAGE' to 'true'. Received the value from response file.
    Setting variable 'SHOW_CONFIG_TOOL_PAGE' to 'true'. Received the value from response file.
    Setting variable 'SHOW_RELEASE_NOTES' to 'true'. Received the value from response file.
    Setting variable 'SHOW_ROOTSH_CONFIRMATION' to 'true'. Received the value from response file.
    Setting variable 'SHOW_END_SESSION_PAGE' to 'true'. Received the value from response file.
    Setting variable 'SHOW_EXIT_CONFIRMATION' to 'true'. Received the value from response file.
    Setting variable 'NEXT_SESSION' to 'true'. Received the value from response file.
    Setting variable 'NEXT_SESSION_ON_FAIL' to 'true'. Received the value from response file.
    Setting variable 'NEXT_SESSION_RESPONSE' to 'D:\OCS_ONEBOX\mtier\oes\config\Disk1\stage\Response\oracle.um.UM_Config.Typical1.rsp'. Received the value from response file.
    Setting variable 'DEINSTALL_LIST' to 'oracle.um.UM_Config,9.0.4.1.0,'. Received the value from response file.
    Setting variable 'SHOW_DEINSTALL_CONFIRMATION' to 'true'. Received the value from response file.
    Setting variable 'SHOW_DEINSTALL_PROGRESS' to 'true'. Received the value from response file.
    Setting variable 'ACCEPT_LICENSE_AGREEMENT' to 'true'. Received the value from response file.
    *** Welcome Page***
    Initializing install inventory
    Setting up install inventory
    *** Specify File Locations Page***
    Setting the 'SourceLocation ( FROM_LOCATION )' property to 'D:\OCS_ONEBOX\mtier\oes\config\Disk1\stage\products.jar'. Received the value from response file.
    Setting the 'OracleHome ( ORACLE_HOME )' property to 'D:\OCS_ONEBOX\mtier'. Received the value from response file.
    Setting the 'OracleHomeName ( ORACLE_HOME_NAME )' property to 'OCSHome_mid'. Received the value from the default settings.
    Initializing OUI access setup
    Setting variable 'ORACLE_HOME' to 'D:\OCS_ONEBOX\mtier'. Received the value from response file.
    Performing operation for OUI access setup
    Setting variable 'CLUSTER_NODES' to ''. Received the value from a code block.
    *** Select a Product to Install Page***
    Setting the 'TopLevelComp ( ToplevelComp )' property to 'oracle.um.UM_Config, 9.0.4.1.0, >0.0.0.0.0, [ 912 ][OH:2]'. Received the value from the default settings.
    *** Select Installation Type Page***
    Setting the 'InstallType ( DEP_MODE )' property to 'Typical'. Received the value from the default settings.
    Setting the 'TopLevelInstallType ( TLDepModes )' property to 'Typical,'. Received the value from the default settings.
    The selected install type is "typical".
    Install type for "UM configurator 9.0.4.1.0 " is "typical".
    *** Language Selection Page***
    *** Specify Local Host Name Page***
    Setting the 'HostName ( OUI_HOSTNAME )' property to 'oramail.exp.com'. S_LOG_VAR_VALTYPE_CLONE
    *** Component Locations Page***
    *** Entering Component: oracle.um.UM_Config installation
    Setting variable 'system_passwd' to '*Protected value, not to be logged*'. Received the value from response file.
    Setting variable 'sys_passwd' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'summary_str' to 'summary'. Received the value from the variable calculation.
    Setting variable 'start_proc_flag' to 'true'. Received the value from the variable calculation.
    Setting variable 'start_proc' to '1'. Received the value from the variable calculation.
    Setting variable 'port_number' to '389'. Received the value from the variable calculation.
    Setting variable 'out_str4' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'out_str31' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'out_str3' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'oid_flag' to '1'. Received the value from the variable calculation.
    Setting variable 'link_htdocs' to 'cal90jsp'. Received the value from the variable calculation.
    Setting variable 'isportinuse_flag' to 'true'. Received the value from the variable calculation.
    Setting variable 'install_cal' to 'false'. Received the value from the variable calculation.
    Setting variable 'host_name' to 'host_name'. Received the value from the variable calculation.
    Setting variable 'global_db_name_list' to ''. Received the value from the variable calculation.
    Setting variable 'global_db_name' to '<SID>.<Domain Name>'. Received the value from the variable calculation.
    Setting variable 'empty_input_string' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'domain_name' to 'oracle.com'. Received the value from the variable calculation.
    Setting variable 'ctxsys_passwd' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'create_domain_flag' to 'false'. Received the value from the variable calculation.
    Setting variable 'cookie_domain' to '.oracle.com'. Received the value from the variable calculation.
    Setting variable 'connect_str' to 'connect_str'. Received the value from the variable calculation.
    Setting variable 'config_type' to '0'. Received the value from the variable calculation.
    Setting variable 'config4' to 'false'. Received the value from the variable calculation.
    Setting variable 'config3' to 'false'. Received the value from the variable calculation.
    Setting variable 'config2' to 'false'. Received the value from the variable calculation.
    Setting variable 'config1' to 'false'. Received the value from the variable calculation.
    Setting variable 'cal_umadmin_passwd' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'cal_dad_name' to 'cal_dad_name'. Received the value from the variable calculation.
    Setting variable 'b_configureUM' to 'true'. Received the value from the variable calculation.
    Setting variable 'app_svr_port' to 'app_svr_port'. Received the value from the variable calculation.
    Setting variable 'app_svr_host_name' to 'app_svr_host_name'. Received the value from the variable calculation.
    Calling Query WindowsGeneralQueries2.3.0.6.0 getWindowsSystemDirectory
    Query Returned: C:\WINNT\system32
    Setting variable 'SystemRoot' to 'C:\WINNT\system32'. Received the value from the variable calculation.
    Setting variable 'SID' to 'iasdb'. Received the value from the variable calculation.
    Setting variable 'ORAHOME' to ''. Received the value from the variable calculation.
    Setting variable 'Net9_Connect_String' to 'ora9i'. Received the value from the variable calculation.
    Setting variable 'Index_Tblspace' to 'escalindxtbl'. Received the value from the variable calculation.
    Setting variable 'Img_Prefix' to '/i/'. Received the value from the variable calculation.
    Setting variable 'INSTALLHOME' to ''. Received the value from the variable calculation.
    Setting variable 'INSTALLATION_NAME' to ''. Received the value from the variable calculation.
    Setting variable 'HOSTNAME' to ''. Received the value from the variable calculation.
    Setting variable 'Flow_User_Passwd' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'Flow_User' to 'es_cal'. Received the value from the variable calculation.
    Setting variable 'Def_Tblspace' to 'escaldeftbl'. Received the value from the variable calculation.
    Setting variable 'App_User_Passwd' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'App_User' to 'es_cal'. Received the value from the variable calculation.
    Setting variable 'umadmin_passwd' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'empty_input_string' to '*Protected value, not to be logged*'. Received the value from a code block.
    Setting variable 'out_str22' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'empty_input_string' to '*Protected value, not to be logged*'. Received the value from a code block.
    Setting variable 'es_mail_passwd' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'empty_input_string' to '*Protected value, not to be logged*'. Received the value from a code block.
    Setting variable 'out_str2' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'out_str24' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    Setting variable 'global_db_name_list' to '<SID>.<Domain Name>,'. Received the value from a code block.
    *** Unified Messaging Configuration Page***
    Setting the 'TitleLabel' property to 'Unified Messaging Configuration'.
    Setting the 'SubTitleLabel' property to ''.
    Setting the 'Prompt' property to 'Select one of the following options :'.
    Setting the 'Choices' property to 'Mail Store Database Configuration -
    Installs the mail store schema into a dedicated tablespace in a previously installed
    Oracle 9i database.,Middle Tier Configuration -
    Configures the Unified Messaging protocol servers on this host: SMTP, IMAP4, POP3
    and House Keeper.,'.
    Setting the 'BottomDescLabel' property to ''.
    Setting the 'Descriptions' property to 'null'.
    Setting the 'SelectedIndex ( config_type )' property to '0'. Received the value from the UI page.
    Setting variable 'INSTALLATION_NAME' to 'UM_SYSTEM'. Received the value from a code block.
    Setting variable 'config1' to 'false'. Received the value from a code block.
    Setting variable 'config2' to 'false'. Received the value from a code block.
    Setting variable 'config3' to 'false'. Received the value from a code block.
    Setting variable 'config4' to 'false'. Received the value from a code block.
    Setting variable 'install_cal' to 'false'. Received the value from a code block.
    Setting variable 'oid_flag' to '0'. Received the value from a code block.
    Setting variable 'system_passwd' to '*Protected value, not to be logged*'. Received the value from a code block.
    *** Mail Store Database Configuration Page***
    Calling Query generalQueries2.3.0.6.0 getOS
    Query Returned: Windows 2000
    Calling Query SpawnQueries1.1.4 Spawn
    command = Protected value, not to be logged
    Query Returned: 0
    Error:*** Alert: System password is invalid, please reenter. ***
    User Selected: Yes/OK
    Calling Query generalQueries2.3.0.6.0 getOS
    Query Returned: Windows 2000
    Calling Query SpawnQueries1.1.4 Spawn
    command = Protected value, not to be logged
    Query Returned: 0
    Error:*** Alert: System password is invalid, please reenter. ***
    User Selected: Yes/OK
    Calling Query generalQueries2.3.0.6.0 getOS
    Query Returned: Windows 2000
    Calling Query SpawnQueries1.1.4 Spawn
    command = Protected value, not to be logged
    Query Returned: 0
    Error:*** Alert: System password is invalid, please reenter. ***
    User Selected: Yes/OK
    Calling Query generalQueries2.3.0.6.0 getOS
    Query Returned: Windows 2000
    Calling Query SpawnQueries1.1.4 Spawn
    command = Protected value, not to be logged
    Query Returned: 0
    Error:*** Alert: System password is invalid, please reenter. ***
    User Selected: Yes/OK
    Calling Query generalQueries2.3.0.6.0 getOS
    Query Returned: Windows 2000
    Calling Query SpawnQueries1.1.4 Spawn
    command = Protected value, not to be logged
    Query Returned: 0
    Error:*** Alert: System password is invalid, please reenter. ***
    User Selected: Yes/OK
    Calling Query generalQueries2.3.0.6.0 getOS
    Query Returned: Windows 2000
    Calling Query SpawnQueries1.1.4 Spawn
    command = Protected value, not to be logged
    Query Returned: 2
    Setting the 'TitleLabel' property to 'Mail Store Database Configuration'.
    Setting the 'SubTitleLabel' property to ''.
    Setting the 'Prompt' property to 'Enter the values for the service name connect string and system password of this mail store database. These values are used by the Universal Installer to install the mail store schema.'.
    Setting the 'Labels' property to 'Database Host Name,SID,Port Number,System Password,'.
    Setting the 'Types' property to 'TEXTFIELD,TEXTFIELD,TEXTFIELD,SECURE,'.
    Setting the 'Choices' property to ''.
    Setting the 'BottomDescLabel' property to 'null'.
    Setting the 'Selections ( out_str2 )' property to '*Protected value, not to be logged*'. Received the value from the UI page.
    Calling Query generalQueries2.3.0.6.0 getOS
    Query Returned: Windows 2000
    Calling Query SpawnQueries1.1.4 Spawn
    command = Protected value, not to be logged
    Query Returned: 2
    *** CTXSYS Password Page***
    Calling Query generalQueries2.3.0.6.0 getOS
    Query Returned: Windows 2000
    Calling Query SpawnQueries1.1.4 Spawn
    command = Protected value, not to be logged
    Query Returned: 0
    Error:*** Alert: Ctxsys password is invalid, please reenter. ***
    User Selected: Yes/OK
    Calling Query generalQueries2.3.0.6.0 getOS
    Query Returned: Windows 2000
    Calling Query SpawnQueries1.1.4 Spawn
    command = Protected value, not to be logged
    Query Returned: 0
    Error:*** Alert: Ctxsys password is invalid, please reenter. ***
    User Selected: Yes/OK
    Calling Query generalQueries2.3.0.6.0 getOS
    Query Returned: Windows 2000
    Calling Query SpawnQueries1.1.4 Spawn
    command = Protected value, not to be logged
    Query Returned: 1
    Setting the 'TitleLabel' property to 'CTXSYS Password'.
    Setting the 'SubTitleLabel' property to ''.
    Setting the 'Prompt' property to 'This is the password for the ctxsys schema.'.
    Setting the 'Labels' property to 'Enter Password:,'.
    Setting the 'Types' property to 'SECURE,'.
    Setting the 'Choices' property to ''.
    Setting the 'BottomDescLabel' property to 'null'.
    Setting the 'Selections ( out_str24 )' property to '*Protected value, not to be logged*'. Received the value from the UI page.
    Setting variable 'ctxsys_passwd' to '*Protected value, not to be logged*'. Received the value from a code block.
    Setting variable 'host_name' to 'ormail'. Received the value from a code block.
    Setting variable 'SID' to 'ocsstore'. Received the value from a code block.
    Setting variable 'port_number' to '1521'. Received the value from a code block.
    Setting variable 'connect_str' to '''. Received the value from a code block.
    Setting variable 'connect_str' to '"(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ormail)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))"'. Received the value from a code block.
    Setting variable 'system_passwd' to '*Protected value, not to be logged*'. Received the value from a code block.
    Setting variable 'ORAHOME' to 'D:\OCS_ONEBOX\mtier'. Received the value from a code block.
    Setting variable 'config2' to 'true'. Received the value from a code block.
    Setting variable 'summary_str' to 'Click 'Next' to install and configure Unified Messaging mail store , click 'Previous' to go back to the previous page .'. Received the value from a code block.
    *** ES_MAIL Password Page***
    Setting variable 'empty_input_string' to '*Protected value, not to be logged*'. Received the value from a code block.
    Setting the 'TitleLabel' property to 'ES_MAIL Password'.
    Setting the 'SubTitleLabel' property to ''.
    Setting the 'Prompt' property to 'This is the password for the e-mail server schema.'.
    Setting the 'PasswordLabel' property to 'Enter Password:'.
    Setting the 'ConfirmLabel' property to 'Confirm Password:'.
    Setting the 'BottomDescLabel' property to 'null'.
    Setting the 'Password ( es_mail_passwd )' property to '*Protected value, not to be logged*'. Received the value from the UI page.
    Calling Query fileQueries2.3.0.6.0 exists
    filename = D:\OCS_ONEBOX\mtier/oes/log/exists.txt
    Query Returned: false
    *** UMADMIN Password Page***
    Setting variable 'empty_input_string' to '*Protected value, not to be logged*'. Received the value from a code block.
    Setting the 'TitleLabel' property to 'UMADMIN Password'.
    Setting the 'SubTitleLabel' property to ''.
    Setting the 'Prompt' property to 'Enter and confirm the password for the UMADMIN user in the Internet Directory.'.
    Setting the 'PasswordLabel' property to 'Enter Password:'.
    Setting the 'ConfirmLabel' property to 'Confirm Password:'.
    Setting the 'BottomDescLabel' property to 'null'.
    Setting the 'Password ( umadmin_passwd )' property to '*Protected value, not to be logged*'. Received the value from the UI page.
    Setting variable 'oid_flag' to '1'. Received the value from a code block.
    *** Unified Messaging Domain Page***
    Setting the 'TitleLabel' property to 'Unified Messaging Domain'.
    Setting the 'SubTitleLabel' property to ''.
    Setting the 'Prompt' property to 'Enter the name of the new Unified Messaging Domain to be created.'.
    Setting the 'TextLabel' property to 'Domain Name'.
    Setting the 'BottomDescLabel' property to 'null'.
    Setting the 'TextField ( domain_name )' property to 'oramail.exp.com'. Received the value from the UI page.
    *** Summary Page***
    Setting the 'TitleLabel' property to 'Summary'.
    Setting the 'SubTitleLabel' property to ''.
    Setting the 'InfoLabel' property to 'Click 'Next' to install and configure Unified Messaging mail store , click 'Previous' to go back to the previous page .'.
    Setting variable 'create_domain_flag' to 'true'. Received the value from a code block.
    *** Summary Page***
    Summary
    Global Settings
    Source: D:\OCS_ONEBOX\mtier\oes\config\Disk1\stage\products.jar
    Oracle Home: D:\OCS_ONEBOX\mtier (OCSHome_mid)
    Installation Type: typical
    Product Languages
    English
    Space Requirements
    C:\ Required 261KB (includes 258KB temporary) : Available 1.94GB
    D:\ Required 536KB : Available 15.16GB
    New Installations (1 products)
    UM configurator 9.0.4.1.0
    Starting install Install Phase 1 of component UM configurator
    Starting install Install Phase 2 of component UM configurator
    Initializing OUI save inventory
    Unable to read C:\Program Files\Oracle\Inventory/Contents/LibsList.ser. Some inventory information may be lost.
    Current Inventory:
         Independent Products:
              Oracle Windows System Files Fullmode 9.0.2.0.1 Development
              Oracle Windows System Files Installation 9.0.2.0.1 Development
              Java Runtime Environment 1.1.8.16.0a
              Oracle Windows System Files Verification 9.0.2.0.0 Development
         Oracle Home: OUIHome
              This Oracle Home has not been changed in this session.
         Oracle Home: OCSHome
              This Oracle Home has not been changed in this session.
         Oracle Home: OCSHome_stg
              This Oracle Home has not been changed in this session.
         Oracle Home: OCSHome_inf
              This Oracle Home has not been changed in this session.
         Oracle Home: OCSHome_mid
              Oracle Collaboration Suite 9.0.4.1.1
              Sun JDK extensions 9.0.2.0.0
              Sun JDK extensions Patch 9.0.2.3.0
              Sun JDK 1.3.1.0.2a
              Java Runtime Environment 1.4.1.3.0a
              Java Runtime Environment 1.3.1.6.0a
              Installer SDK Component 2.3.0.8.0
              Oracle Universal Installer 2.3.0.8.0
              RDBMS Required Support Files 9.0.1.4.0
              Enterprise Manager Minimal Support Files 9.0.2.0.1
              Collaboration Suite Wireless Server Management 9.0.3.2.0
              Perl Interpreter 5.6.1.0.0a
              Advanced Queueing (AQ) API 9.0.1.4.0
              XML Parser for Java 9.0.2.0.0
              Oracle Dynamic Monitoring Service 9.0.2.0.1
              Oracle Dynamic Monitoring Service Patch 9.0.2.3.0
              regexp 2.0.21.0.0
              Bali Share 1.1.17.0.0
              Oracle9i Application Server Object in OID 9.0.2.0.0
              Oracle9iAS Application Server WebCache Core to non-Core Upgrade 9.0.2.0.0
              Oracle JDBC Development Drivers 9.0.1.4.0
              JDBC Common Files 9.0.1.4.0
              JDBC/OCI Common Files 9.0.1.4.0
              Oracle Trace Required Support Files 9.0.1.0.1
              Oracle Client Required Support Files 9.0.1.4.0
              Agent Required Support Files 9.0.2.0.0a
              SSL Required Support Files 9.0.1.4.0
              LDAP Required Support Files 9.0.2.1.0
              LDAP Required Support Files Patch 9.0.2.3.0
              Parser Generator Required Support Files 9.0.1.0.0
              PL/SQL Required Support Files 9.0.1.4.0
              Oracle9iAS Application Server Core to non-Core Upgrade 9.0.2.0.0
              Repository Config Assistant 9.0.2.0.0
              XML Class Generator for Java 9.0.2.0.0
              Oracle JDBC Thin Driver for JDK 1.1 9.0.1.4.0
              Oracle Extended Windowing Toolkit 3.4.12.0.0
              Oracle Ice Browser 5.06.8.0.0
              Oracle Collaboration Suite Quick Tutorial 9.0.4.1.1
              Java Authorization 9.0.2.0.1
              Java Authorization Patch 9.0.2.3.0
              Enterprise Login Assistant 9.0.2.0.1
              Oracle JFC Extended Windowing Toolkit 4.2.6.0.0
              Oracle 9iAS Single Sign On Registration 9.0.2.0.1
              Oracle Ultra Search Common Files 9.0.3.4.0
              Oracle JDBC Thin Driver for JDK 1.2 9.0.1.4.0
              XML Parser for PL/SQL 9.0.2.0.0
              Platform Required Support Files 9.0.1.4.0
              Oracle Core Required Support Files 9.0.1.4.0
              Oracle Help For Java 3.2.12.0.0
              Extended Windowing Toolkit 3.3.18.0.0
              Oracle interMedia Java Advanced Imaging 9.0.2.0.0
              Oracle Help For Java 4.1.12.0.0
              Oracle interMedia Java Media Framework Client 9.0.2.0.0
              Oracle9i Globalization Support 9.0.1.4.0
              Oracle interMedia Java Client 9.0.2.0.0
              Oracle XML SQL Utility 9.0.1.4.0
              Oracle Net Required Support Files 9.0.1.4.0
              Precompiler Required Support Files 9.0.1.4.0
              XML Class Generator for C++ 9.0.2.0.0
              Oracle Code Editor 1.2.1.0.0A
              XDK Required Support Files 9.0.2.0.0
              XML Parser for C 9.0.2.0.0
              Java Naming and Directory Interface Libraries 1.2.1.0.0
              Oracle Dynamic Services Core 9.0.2.0.1
              Oracle Internet Directory Tools 9.0.2.1.0
              Required Support Files 9.0.1.4.0
              UM common 9.0.4.1.0
              Utilities Common Files 9.0.1.4.0
              Oracle JDBC/OCI Driver for JDK 1.2 9.0.1.4.0
              Oracle Internet Directory Client Common Files 9.0.2.1.0
              Oracle Database User Interface 2.2.11.0.0
              Oracle Ultra Search Middle-Tier 9.0.3.4.0
              Assistant Common Files 9.0.2.0.1
              XML Parser for C++ 9.0.2.0.0
              Oracle Intelligent Agent Base Component Files 9.0.2.0.0a
              Oracle Intelligent Agent 9.0.2.0.0a
              Oracle Property Inspector 4.1.8.0.0
              Oracle EMD Agent Extensions 9.0.2.0.0a
              Oracle Forms Extensions 9.0.2.0.0a
              Database SQL Scripts 9.0.1.4.0
              Oracle Applications Extensions 9.0.2.0.0a
              Oracle Collaboration Suite Release Notes 9.0.4.1.1
              Oracle Portal Data 9.0.2.2.22
              Oracle Net Configuration Assistant 9.0.1.4.0
              Enterprise Manager Translated Files 9.0.2.0.1
              Enterprise Manager Base Classes 9.0.2.0.1
              Oracle HTTP Server Extensions 9.0.2.0.0a
              Oracle Net Manager 9.0.1.4.0
              Oracle Java Portal Development Kit 9.0.2.2.22
              Oracle Portal Community Portlets 9.0.2.2.22
              Oracle9iAS Repository API 9.0.2.1.0
              Oracle JDBC/OCI Driver for JDK 1.1 9.0.1.4.0
              Oracle Java Object Cache 9.0.2.0.0
              Oracle Java Object Cache Patch 9.0.2.3.0
              Oracle Process Management Notification 9.0.2.0.0
              Oracle Process Management Notification Patch 9.0.2.3.0
              Visigenics ORB 3.4.0.0.0
              Oracle Enterprise Java Beans and CORBA Tools 9.0.1.1.1
              Oracle Dynamic Services Server 9.0.2.0.1
              Apache Configuration for EJB 9.0.1.0.1
              HTTP Server files 1.3.22.0.1a
              HTTP Server Files Patch 1.3.22.0.1d
              Oracle OC4J Module 9.0.2.0.0
              Oracle OC4J Module Patch 9.0.2.3.0
              Oracle Ultra Search Server 9.0.3.4.0
              Oracle Wallet Manager 9.0.1.4.0
              Oracle Net 9.0.1.4.0
              Oracle Java Tools 9.0.1.4.0
              Secure Socket Layer 9.0.1.4.0
              Oracle9iAS Clickstream Intelligence Common 9.0.2.2.0
              Enterprise Manager Process Utility 9.0.2.0.0
              Oracle9i Syndication Server Core 9.0.2.0.1
              Oracle Distributed Configuration Management 9.0.2.0.0
              Oracle Distributed Configuration Management Patch 9.0.2.3.0
              Enterprise Manager Encapsulated J2EE 9.0.2.0.0
              Bali Resource Translation System 2.0.5.0.0
              Oracle9i Syndication Server 9.0.2.0.1
              Oracle JDBC Drivers 9.0.1.4.0
              Oracle9iAS Mapviewer 9.0.2.0.0
              XSQL Servlet 9.0.2.0.0
              SQLJ Runtime 9.0.2.0.0
              Oracle Java Server Pages 9.0.2.0.1
              Oracle Java Server Pages Patch 9.0.2.3.0
              Oracle9iAS Containers for J2EE 9.0.2.0.1
              Oracle9iAS Containers for J2EE Patch 9.0.2.3.0
              Oracle Display Fonts 9.0.2.0.0
              Oracle UIX 2.0.21.0.0
              Oracle SOAP Client files 2.2.0.0.0b
              Oracle SOAP Client Files Patch 2.2.0.0.0e
              Oracle Help for the Web 1.0.7.0.0
              Oracle Enterprise Manager Web Site 9.0.2.0.0
              Unified Messaging EMD configuration 9.0.4.1.0
              Oracle9iAS Clickstream Intelligence Collector Agent Management 9.0.2.2.0
              BC4J Runtime Sample for Oracle9iAS 9.0.2.799.0
              Oracle Ultra Search Extension for EMD 9.0.3.4.0
              JSDK 2.0.0.0.0d
              Apache JServ 1.1.2.0.0a
              Apache JServ Patch 1.1.2.0.0d
              Discoverer Services Manager 9.0.2.39.02
              Oracle9i Delegated Administration Service 9.0.2.1.0
              Oracle9i Delegated Administration Service Patch 9.0.2.3.0
              Export/Import 9.0.1.4.0
              SQL*Loader 9.0.1.4.0
              Oracle SOAP Server 2.2.0.0.0b
              Oracle SOAP Server Patch 2.2.0.0.0e
              Oracle eBusiness Management Extensions 9.0.2.0.0a
              Apache Module for Oracle Distributed Authoring and Versioning 9.0.2.0.0
              SQL*Plus 9.0.1.4.0
              XML Transviewer Beans 9.0.2.0.0
              Reports OEM Extension 9.0.2.0.3
              Forms EMEXT 9.0.2.9.0
              Apache Configuration for Oracle Java Server Pages 9.0.2.0.0
              BC4J Runtime for Oracle9iAS 9.0.2.799.0
              Oracle9iAS Configuration for OC4J 9.0.2.0.1
              Oracle XML Runtime Components 9.0.2.0.0
              Oracle Mod PL/SQL Gateway 9.0.2.0.0
              Patch of Oracle Mod PL/SQL Gateway 9.0.2.6.0
              Oracle9iAS Web Cache 9.0.2.0.0
              Oracle9iAS Web Cache Patch 9.0.2.3.0
              Oracle Agent Extensions 9.0.2.0.0a
              Oracle Internet Directory Client 9.0.2.1.0
              Oracle Internet Directory Client Patch 9.0.2.3.0
              Apache Configuration for Oracle XML Developer's Kit 9.0.2.0.0
              Oracle Net Listener 9.0.1.4.0
              Oracle Portal Help 9.0.2.2.22
              Oracle Portal Integration with Reports 9.0.2.2.22
              Oracle Portal Configuration Assistant 9.0.2.2.22
              Oracle Portal CAT 9.0.2.2.22
              Oracle Portal Images 9.0.2.2.22
              Oracle Portal NLS 9.0.2.2.22
              Oracle Portal Common Services 9.0.2.2.22
              Oracle Portal Sitebuilder 9.0.2.2.22
              Oracle Portal Demos 9.0.2.2.22
              Oracle Portal Documentation 9.0.2.2.22
              Oracle Portal Java 9.0.2.2.22
              Oracle Portal SSO 9.0.2.2.22
              Oracle Portal Servlets 9.0.2.2.22
              Oracle Portal PLSQLToolkit 9.0.2.2.22
              Oracle Portal Utilities 9.0.2.2.22
              Oracle Portal VPD Policy 9.0.2.2.22
              Oracle9iAS Clickstream Intelligence Collector Agent 9.0.2.2.0
              Oracle9iAS Clickstream Intelligence Core 9.0.2.2.0
              Voicemail Fax Middletier 9.0.4.1.1
              BC4J Config Assistant 9.0.2.799.0
              Email Server Webmail 9.0.4.1.0
              Unified Messaging 9.0.4.1.0
              Oracle HTTP Server 9.0.2.0.0
              Oracle Portal Config Dialogs 9.0.2.2.22
              Oracle9i Application Server Core Products 9.0.2.0.0
              Oracle9i Application Server Middle Tier Products 9.0.2.0.0
              Oracle Portal Monitoring 9.0.2.2.22
              Oracle Portal Database Objects 9.0.2.2.22
              Oracle9i Application Server Instance 9.0.2.0.0
              Oracle Portal 9.0.2.2.22
              Patch of Oracle Portal 9.0.2.3.0B
              Management Tools 9.0.2.0.0
              Oracle Workflow 2.6.2.0.0
              Oracle Collaboration Suite One-offs 9.0.4.1.1
              Collaboration Suite Wireless Server 9.0.3.2.0
              Oracle Calendar application system 9.0.4.1.1
              Oracle Calendar web services 9.0.4.1.1
              Oracle Calendar SDK 9.0.4.1.0
              Oracle Sync Server 9.0.4.1.1
              Oracle Calendar web client 9.0.4.1.1
              Collaboration Suite Wireless 9.0.3.2.0
              Oracle9i Application Server 9.0.2.0.0
              Oracle Collaboration Suite Upgrade Assistant 9.0.4.1.1
              Oracle Files 9.0.4.3.0
              Oracle Calendar server 9.0.4.1.1
              Oracle Calendar administrator 9.0.4.1.1
              Oracle Calendar configuration 9.0.4.1.1
              Oracle Collaboration Suite Web Client 9.0.4.1.1
              Oracle Real-Time Collaboration Core Components 2.0.4.2.0
              UM configurator 9.0.4.1.0
    Starting to execute configuration assistants
    Launched configuration assistant 'Config MailStore'
    Tool type is: Optional.
    The command being spawned is: 'D:\OCS_ONEBOX\mtier/oes/bin/install_mailstore.bat "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ormail)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" Protected value, not to be logged ocsstore ormail 1521 UM_SYSTEM D:\OCS_ONEBOX\mtier Protected value, not to be logged Protected value, not to be logged 1 oramail.exp.com'
    Start output from spawned process:
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>rem --- running install_mailstore.bat
    "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ormail)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" "<sys_passwd>" "<system_passwd>" "<ctxsys_passwd>" 1521 UM_SYSTEM D:\OCS_ONEBOX\mtier ora123 ora123 "<es_mail_passwd>" "<umadmin_passwd>"
    The system cannot find the path specified.
    The system cannot find the path specified.
    == was unexpected at this time.
    End output from spawned process.
    Invalid Exit Code. The following result code will be used for configuration assistants: 1
    Configuration assistant "Config MailStore" failed
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>rem --- running install_mailstore.bat
    "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ormail)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" "<sys_passwd>" "<system_passwd>" "<ctxsys_passwd>" 1521 UM_SYSTEM D:\OCS_ONEBOX\mtier ora123 ora123 "<es_mail_passwd>" "<umadmin_passwd>"
    The system cannot find the path specified.
    The system cannot find the path specified.
    == was unexpected at this time.
    Result code for launching of configuration assistant is: 1
    The OUICA command is launched from D:\OCS_ONEBOX\mtier\oui\bin\ouica.bat.
    Error:*** Alert: Some of the configuration assistants failed. However these are optional assistants, so they are not required for the correct configuration of your system. If you want to try to run those assistants again, select the failed assistants and click the 'Retry' button. ***
    User Selected: Yes/OK
    Starting to execute configuration assistants
    Launched configuration assistant 'Config MailStore'
    Tool type is: Optional.
    The command being spawned is: 'D:\OCS_ONEBOX\mtier/oes/bin/install_mailstore.bat "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ormail)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" Protected value, not to be logged ocsstore ormail 1521 UM_SYSTEM D:\OCS_ONEBOX\mtier Protected value, not to be logged Protected value, not to be logged 1 oramail.exp.com'
    Start output from spawned process:
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>rem --- running install_mailstore.bat
    "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ormail)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" "<sys_passwd>" "<system_passwd>" "<ctxsys_passwd>" 1521 UM_SYSTEM D:\OCS_ONEBOX\mtier ora123 ora123 "<es_mail_passwd>" "<umadmin_passwd>"
    The system cannot find the path specified.
    The system cannot find the path specified.
    == was unexpected at this time.
    End output from spawned process.
    Invalid Exit Code. The following result code will be used for configuration assistants: 1
    Configuration assistant "Config MailStore" failed
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>rem --- running install_mailstore.bat
    "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ormail)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" "<sys_passwd>" "<system_passwd>" "<ctxsys_passwd>" 1521 UM_SYSTEM D:\OCS_ONEBOX\mtier ora123 ora123 "<es_mail_passwd>" "<umadmin_passwd>"
    The system cannot find the path specified.
    The system cannot find the path specified.
    == was unexpected at this time.
    Result code for launching of configuration assistant is: 1
    The OUICA command is launched from D:\OCS_ONEBOX\mtier\oui\bin\ouica.bat.
    Starting to execute configuration assistants
    Launched configuration assistant 'Config MailStore'
    Tool type is: Optional.
    The command being spawned is: 'D:\OCS_ONEBOX\mtier/oes/bin/install_mailstore.bat "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ormail)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" Protected value, not to be logged ocsstore ormail 1521 UM_SYSTEM D:\OCS_ONEBOX\mtier Protected value, not to be logged Protected value, not to be logged 1 oramail.exp.com'
    Start output from spawned process:
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>rem --- running install_mailstore.bat
    "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ormail)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" "<sys_passwd>" "<system_passwd>" "<ctxsys_passwd>" 1521 UM_SYSTEM D:\OCS_ONEBOX\mtier ora123 ora123 "<es_mail_passwd>" "<umadmin_passwd>"
    The system cannot find the path specified.
    The system cannot find the path specified.
    == was unexpected at this time.
    End output from spawned process.
    Invalid Exit Code. The following result code will be used for configuration assistants: 1
    Configuration assistant "Config MailStore" failed
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>rem --- running install_mailstore.bat
    "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ormail)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" "<sys_passwd>" "<system_passwd>" "<ctxsys_passwd>" 1521 UM_SYSTEM D:\OCS_ONEBOX\mtier ora123 ora123 "<es_mail_passwd>" "<umadmin_passwd>"
    The system cannot find the path specified.
    The system cannot find the path specified.
    == was unexpected at this time.
    Result code for launching of configuration assistant is: 1
    The OUICA command is launched from D:\OCS_ONEBOX\mtier\oui\bin\ouica.bat.
    The following configuration assistants have not been successfully completed. These assistants must be completed for your product to be completely configured.
    Execute file D:\OCS_ONEBOX\mtier\cfgtoollogs/configToolCommands to re-run all skipped/failed configuration assistants.
    echo Config MailStore
    D:\OCS_ONEBOX\mtier/oes/bin/install_mailstore.bat "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ormail)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" Protected value, not to be logged ocsstore ormail 1521 UM_SYSTEM D:\OCS_ONEBOX\mtier Protected value, not to be logged Protected value, not to be logged 1 oramail.exp.com
    Error:*** Alert: One or more configuration assistants have not completed successfully. However these are optional, so they are not required for the correct configuration of your system. A list of the configuration assistants that need to be run is generated in the log of this session which is located at:
    C:\Program Files\Oracle\Inventory\logs\installActions2006-02-02_01-53-52PM.log ***
    User Selected: Yes/OK
    Warning:*** Alert: Do you really want to exit? ***
    User Selected: Yes/OK
    The OUICA command is launched from D:\OCS_ONEBOX\mtier\oui\bin\ouica.bat.
    *** End of Installation Page***
    The installation of UM configurator was successful, but some optional configuration assistants failed or were canceled.

    Hi Andreas,
    I already tried your solution but still got error, this is the log file :
    Starting to execute configuration assistants
    Launched configuration assistant 'Config MailStore'
    Tool type is: Optional.
    The command being spawned is: 'D:\ocs_onebox\mtier/oes/bin/install_mailstore.bat "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=oramail.exp.com)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" Protected value, not to be logged ocsstore oramail.exp.com 1521 UM_SYSTEM D:\ocs_onebox\mtier Protected value, not to be logged Protected value, not to be logged 1 oramail.exp.com'
    Start output from spawned process:
    C:\TMP>rem --- running install_mailstore.bat
    "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=oramail.exp.com)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" "<sys_passwd>" "<system_passwd>" "<ctxsys_passwd>" 1521 UM_SYSTEM D:\ocs_onebox\mtier ora123 ora123 "<es_mail_passwd>" "<umadmin_passwd>"
    The system cannot find the path specified.
    The system cannot find the path specified.
    == was unexpected at this time.
    End output from spawned process.
    Invalid Exit Code. The following result code will be used for configuration assistants: 1
    Configuration assistant "Config MailStore" failed
    C:\TMP>rem --- running install_mailstore.bat
    "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=oramail.exp.com)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" "<sys_passwd>" "<system_passwd>" "<ctxsys_passwd>" 1521 UM_SYSTEM D:\ocs_onebox\mtier ora123 ora123 "<es_mail_passwd>" "<umadmin_passwd>"
    The system cannot find the path specified.
    The system cannot find the path specified.
    == was unexpected at this time.
    Result code for launching of configuration assistant is: 1
    The OUICA command is launched from D:\ocs_onebox\mtier\oui\bin\ouica.bat.
    The following configuration assistants have not been successfully completed. These assistants must be completed for your product to be completely configured.
    Execute file D:\ocs_onebox\mtier\cfgtoollogs/configToolCommands to re-run all skipped/failed configuration assistants.
    echo Config MailStore
    D:\ocs_onebox\mtier/oes/bin/install_mailstore.bat "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=oramail.exp.com)(PORT=1521)))(CONNECT_DATA=(SID=ocsstore)))" Protected value, not to be logged ocsstore oramail.exp.com 1521 UM_SYSTEM D:\ocs_onebox\mtier Protected value, not to be logged Protected value, not to be logged 1 oramail.exp.com
    Error:*** Alert: One or more configuration assistants have not completed successfully. However these are optional, so they are not required for the correct configuration of your system. A list of the configuration assistants that need to be run is generated in the log of this session which is located at:
    C:\Program Files\Oracle\Inventory\logs\installActions2006-02-07_06-35-23PM.log ***
    User Selected: Yes/OK
    *** End of Installation Page***
    The installation of UM configurator was successful, but some optional configuration assistants failed or were canceled.
    Warning:*** Alert: Do you really want to exit? ***
    User Selected: Yes/OK
    The OUICA command is launched from D:\ocs_onebox\mtier\oui\bin\ouica.bat.
    User Exit

  • Calendar Server - Unable to add users

    When I try to add users to a node I get an error message like:
    Working please wait...
    unidsattach failed, see /users/unison/log/unidsattach.log, Error Code =
    0x13205
    Add user [uid=ttesting,o=Airius.com] to node: failed
    Add user(s) to node completed.
    <P>
    This means that the Calendar Server is unable to communicate
    properly with the Directory Server. There are some Calendar-specific
    entries and an ACI that are added to the Directory Server when a node is
    created. These are critical to the proper functioning of the Calendar
    Server. This error may mean that they are missing.
    <P>
    You can also check the access log file of the Directory server to see what
    the problem may be. If you see entries like:
    [27/Jan/1999:07:39:47 -0500] conn=1 op=2 SRCH base="o=Airius.com" scope=2 filter="(nsc
    alxitemid=15000:00001)"
    [27/Jan/1999:07:39:47 -0500] conn=1 op=2 RESULT err=0 tag=101 nentries=0
    This indicates that 0 entries were returned for the search on the SYSOP
    Calendar user.
    <P>
    If you have recently imported data into your Directory Server, it is likely
    that these entries no longer exist. An import to a Directory Server does
    not append data; it replaces the current directory with the data in the
    LDIF file being loaded. You will need to recreate this Calendar information.
    Export your directory to an LDIF file and review the output to see if these
    entries exist.
    <P>
    Here is a boilerplate that may be useful if you don't have a backup copy
    of the original LDIF. Try replacing the baseDN (o=Airius.com) and the node
    id (15000) to match your Calendar configuration. The password is "password".
    The following is for illustration purposes and may not fix all problems:
    aci: (target ="ldap:///o=Airius.com")(targetattr = "*")(version 3.0
    ; acl "Untitled"; allow (write, add , delete ) groupdn = "ldap:///cn=Cal-A
    dministrators-15000, o=Airius.com" ;)
    dn: cn=Cal-Administrators-15000, o=Airius.com
    cn: Cal-Administrators-15000
    objectclass: top
    objectclass: groupofuniquenames
    uniquemember: nsCalXItemId=15000:00001, o=Airius.com
    uniquemember: nsCalXItemId=15000:00002, o=Airius.com
    uniquemember: nsCalXItemId=15000:00003, o=Airius.com
    uniquemember: nsCalXItemId=15000:00004, o=Airius.com
    uniquemember: nsCalXItemId=15000:00005, o=Airius.com
    uniquemember: nsCalXItemId=15000:00006, o=Airius.com
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140113Z
    modifytimestamp: 19980501140113Z
    dn: nsCalXItemId=15000:00001, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00001
    sn: SYSOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00002, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00002
    sn: CWSOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00003, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00003
    sn: STREAMOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00004, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00004
    sn: FOREIGN
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00005, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00005
    sn: SYNCH
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00006, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00006
    sn: HOLIDAYOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z

    Probably in the next couple of weeks, we are releasing beta-2.
    Kumar
    Jim Clark wrote:
    >
    thanks, how often is there a beta refresh?
    Jim
    "Kumar Allamraju" <[email protected]> wrote in message
    news:[email protected]..
    Jim,
    I do not see this problem in the latest source line.
    Probably I'm running a WLS server that is slightly newer than the beta,
    so maybe
    some things might have been fixed.
    Kumar
    Jim Clark wrote:
    I was able to add users and groups through the "console" app, but I was
    unable to add users to the groups. After I added a user "jim" and a
    group
    "clark", I tried adding "jim" to the "clark". It just said "Addeduser...",
    and this, "Members: (none)".
    Jim

  • No calendar in Gmail IMAP settings

    I'm trying to get gmail imap calendar configured for a 3GS running 4.2. Under settings, mail/contacts/calendar it only has Mail and Notes under it. How do I add calendar?
    Thanks,
    Tim

    You need this:
    http://www.google.com/mobile/sync/

  • Share calendar with Outlook

    Hi there,
    I currently share an iCloud calendar with my wife. We call this our 'Family Diary' and this is what we use to put non work events in that effect us both, ie if one of us has a weekend meet up with friends, or one of the kids has a party to go to etc. I'd like to be able to have the diary avaialble on my Mac at work, but in Outlook.
    I have a number of other subscribed calendars that I have been able to set up via OWA, but the iCloud one is being awkward.
    At the moment I have the Shared Calendar set up to share with my wife (she is also an iCloud user). When I go to iCloud on the web I check the box that says 'make public' and am presented with a URL. I've kept the 'share with other iCloud users' checked, and my wife's e-mail address is still there. But when I set up a new calendar in OWA the URL does not pull any data in. This is the same set up as other subscribed calendars, all of which work OK.
    Any ideas as to what's going wrong?
    Thanks

    The following manual workaround seems to function:
    Configure your Apple Mail client to connect to your Outlook/Exchange account
    Select Apple Calendar as the default calendar
    Configure iCloud as you normally would
    At whatever interval you choose open Apple Mail and synch your mail/appointments.
    Shazam!!! iCloud is automatically updated
    Bob

Maybe you are looking for

  • Time Machine backup of external iPhoto library shows recent photos only as outline, no image. Any suggestions?

    The Time Machine backup of my external iPhoto library shows all pictures 'now' but previous backups show the most recent pictures only as box outlines, some with a curled corner. How can I see all pictures to make sure TM has them? And if I would nee

  • Effects Bug

    Hi Spry-Team, Just a little bug I would like to report, that I just noticed. In of my designs I had a DIV with a CSS style shadow, like this: filter:progid:DXImageTransform.Microsoft.Shadow(color='#CCCCCC', Direction=135, Strength=4) When I apply an

  • Install Leopard on a laptop with a broken DVD drive

    I went to install Leopard on an older laptop (PB G5) only to discover it had a broken DVD drive. I tried to install it from my intel MBP (running Snow Leopard) via ethernet, firewire, and also via a flash drive, all with no success. It used to be eas

  • Firefox crashes when Flash Player is enabled..

    I am facing this prob for the last few days...It says firefox encountered a prob and needs to close down....After a lot of findings I came to know that it was due to Adobe Flash Player ...when this plug-in is enabled and i visit video sites firefox c

  • What is the name of IOS of gatekeeper?

    hello...; can u please send me the name of the gatekeeper IOS that contain the command gw-accounting syslog for 3640 or any other router thank u for your effort