Poster on SMP

Hi guys,
sadly i do have one problem right now with strobe media playback.
When i set the poster parameter to an absolute path of an image file, it works smoothly and SMP does show that picture in advance of playing the media file.
But when i do want to load dynamic pictures and a php file shall control the access on files, it does not.
So right now i do try to load a thumbnail with a php file.
The syntaxes are like that:
<?php
include('db.php');
if($_GET['action'] == 'UIShowFiles'){UIShowFiles();}
function UIShowFiles(){
     if($_GET['format']=='movie'){
          $filename = '/path_to_folder'.$_GET['file_id'];
          header('Content-Type: video/mp4');
           header("Content-Length: ".filesize($filename));
          readfile($filename);
     }else if($_GET['size']=='thumbnail'){
          $filename = '/path_to_thumbnail_folder'.$_GET['file_id'];
          header('Content-Type: image/jpeg');
          header("Content-Transfer-Encoding: binary");
          header("Content-Length: ".filesize($filename));
          readfile($filename);
?>
So "http://example.com/movie/mymovieid" would be the path to a movie and "http://example.com/thumbnail/mymovieid" would be to the thumbnail. An htaccess with mod rewrite does the rest.
When i try the script in a browser, it works smoothly.
I also don't have any problems to play the video in SMP by givin a videoHref of "http://example.com/movie/mymovieid"
But when i try to load the poster like "http://example.com/thumbnail/mymovieid", SMP does not show any poster at all.
Does anybody know what to do. Can the headers be somehow responsible?
Thanks in advance and greetz

Hi,
You should use an extension to make SMP identify the type of the image.
S.

Similar Messages

  • Internal Implementation - Demo Software

    Hello all,
    We recently become a Nakisa partner and we're trying to do an internal test implementation in order to get knowledge about Nakisa implementation.
    To do this, we have downloaded the Nakisa Demo Software 3.0 SP1 (the file named VSN30PreEhP4SP1_0.zip, cause we're running on SAP ECC 6.0 with no EhP), but when we running the t.code SAINT in order to install the Add-on, the system display a dialog box with additionals required components. The components are SAP_APPL 603 and the Add-on SAP_APPL Release 600.
    How could we fix this issue? We need to install EhP1 (at least) ?. All documentation is about EhP1-2 and 3 but there is not a documentation about EhP0.
    Could someone help us?
    Thank very much
    Best Regards
    Emilio Ciotta

    There is a bug in the Add On version for ECC6.0 pre-EhP4 that was originally posted on SMP and (it appears) on the partner portal!  Please contact Nakisa's partner email address (I'm sure you must know it) and I'm sure you'll be directed correctly.
    I had this on a client site and after an OSS note, a new Add On was issued.  I don't know for certain if an update has been posted onto SMP but the update is certainly available and it works!  We received it on 3rd June 2011.
    Oddly I haven't seen an OSS note appear about this issue yet.
    Regards,
    Stephen

  • Customizing Inventory Manager 4.0 mobile application

    Hi,
    I need to make some customization on Inventory manager 4.0 mobile application. For this I need to know the following:
    Do I need to customize the java source code of the application in order to adapt the mobile application to my business process, like for example: Add fields, Add actions, etc?  or just extending java classes and do modification on the IM Agentry Application is enough to do the customization?
    If I need to include a complete new screen on the mobile application, which is a complex customization. Will I need to ask for this java source code to the sale representative in order to make the customization?
    This questions were raised on this post Integration SMP 3.0 and Inventory Manager 3.2 / 4.0  and as I also read Migrating from SAP IM 3.2 to SAP IM 4.0  I found out the java source code must be requested to SAP because on this version is not available to download from marketplace. But I really want to know if I need to do this or not, I'm not very clear about this. It make sense what Stephen Streeter wrote in one of his answers, I don't want to modify the base java classes... I just want add functionality /fields to what is already develop on IM 4.0, but on the other hand, If I want to add a field to MDO, maybe I will need to change the stepHandler class so... I guess that is why Jason Latko confirmed that I need those file... and therefore I need to request to SAP in order to get it and make the customization possible... But I'm not really sure... so at that point I got so confused that I realize I need to ask about this on another thread.
    Please help me...
    Best Regards,
    MC
    Michael Appleby Manju Venkatesha

    Hi guys,
    I need to include two properties on Order Object for IM 4.0 app in order to make visible two additional fields on the order list screen. I have installed my development environment and import to eclipse the copy of the app project (all good). I saw that on Standard DataObject, both fields are included and with the active flag checked (so I guess the Steplet might read them without doing anything on the classes), but now I have to reference it on the object... but I dont know how were named those fields on the steplet class and I'm reading on the documentation I have and the newly properties name for the object must be the same as it was referenced on the class.... This means that I have to ask for the java classes in order to get the name and create the property with the correct name???
    Or I must  create a custom POJO Class in order to manipulate this fields on the mobile app???
    Or Is there a list where I can see what is the name of those fields on the steplet class???
    Stephen Streeter Jason Latko Mark Pe Omar Candelaria
    BR,
    MC

  • How to use Logging?

    I am trying to get QoS and other information from OSMFPlayer. I have logging set to true in the project properties.
    I import org.osmf.logging.*, and add the code...
    CONFIG::LOGGING { logger.fatal("LOG THIS INFO"); }
    CONFIG::LOGGING { private static const logger:org.osmf.logging.Logger = org.osmf.logging.Log.getLogger("OSMFPlayer"); }
    (I am using logger.fatal because I assumed it would be the best to get only the information i want.)
    It appears that thsi is all I need to create a log, however, I cannot find a log anywhere. Is this all that is needed to create a log. And where should the log appear? The documentation is pretty sparse on this topic.
    My setup is a Linux server with my media and OSMFPlayer streaming to a Windows client using Firefox.
    Thanks,
    Dan

    Dan,
    1) There is no document on VideoQoSPlugin as far as I know.  The brief steps of how to use it is
    1. Add QoS variables to the Plugin as you want to see.
    1.1 Add QoS metadata to VideoQoSPluginMetadata.as as public var.
       eg) public static const VIDEOBUFFERLENGTH:String = "videoBufferLength";
    1.2 Add value to your metadata in VideoOsOProxyElement.as,
          Note that onTimer function has NetStreamInfo "qos".
        eg)       metadata.addValue
                        ( VideoQoSPluginMetadata.VIDEOBUFFERLENGTH
                        , qos.videoBufferLength.toString()
    2. Load the Plugin into your player : See other plugin samples.
          mediaFactory.loadPlugin(pluginResource);
    3.  Get the QoS data in your player .(eg) org.osmf.qos.VideoQoSPluginMetadata.CURRENT_FPS
         It is up to you how to use / display QoS data.
    2) As you said StrobeMediaPlayback has already built for many QoS parameters so I might be just easier to use that.  I saw your post to SMP so you are on the right track as Andrian is the person you want to talk regards to SMP.
    3) Air APP is an application platform as oppposed to an web application such as a HTML based app.  You can download it from here.
    http://get.adobe.com/air/  and install the debug console or run it from your flex builder.   The readme file has an instructions to the debug console.
    Basically, you launch the debug console first, then run OSMF player and play a video.  (Turn on the Logging option on : -define CONFIG::DEBUG true -define CONFIG::FLASH_10_1 true),    The debug message will be displayed on the debug console as the video plays.
    Ryan

  • Error while deploying an Agentry application on SMP 2.3 Server

    Hello Experts,
    I am trying to deploy a customized SAPWM application on the SMP 2.3 server.
    I am referring to the tutorial maintained at the following URL :http://scn.sap.com/docs/DOC-43353
    I have zipped the contents of the application folder (under Serverdev) and added the required DLLs and JAR files.
    While deploying using SCC (Control center), I get an error which says "Application registration failed".
    Under logs, I could find the following entry:
    [com.syclo.agentry.admin.implementation.ClientStatusSocket] [] []     [System Connections] not found - please use editor to publish application then restart the server.
    Thread-1128 [com.syclo.agentry.admin.implementation.ClientStatusSocket] [] []     11:25:31 04/25/2014 25 General 0 Unknown Exception [System Connections] section not found in Agentry.ini file (Publish from editor to correct), agent\ChickamingAgent.cpp#2423:ChickamingAgent::startup
    ERROR   MMS Thread-1128 [com.sybase.sup.agentry.service.AgentryServerListenerImpl] [] [] Agentry application [com.sap.agentry.sapwm] report error: [2014-04-25 11:25:24.151] errorClassCode=[2
    The deployed zip file looks like this:
    I also checked up another thread (Setup Work Manager on SMP2.3) on the same post, but the thread owner was able to resolve the issue after he stopped the server instance and deployed again. However, it didn't work for us.
    Questions:
    1) How can I export the application in ".agp" package?
    2) How can we resolve the deployment error? The Agentry.ini contained within the package does have system connections section with HTTPXML, JavaBE and SQL DLL files.
    Appreciate your help on the same.
    Best,
    Arihant Kothari
    Tags edited by: Michael Appleby

    Hello Abhishek
    thanks for your reply there.. We did get the app name as follows when we tried to deploy the application in SMP 2.3 "Even though it errored out saying - Unable to register the application"
    D:\SAP\MobilePlatform\Servers\UnwiredServer\Repository\Agentry\default\com.sap.agentry.sapwm53
    However we manually unzipped the agentry app into this folder as per instructions from agentry app deployment on SMP 3.0
    What do you mean by "After your appname you should not have any other folder" - clearly if that is the case then we have "Development" folder and some additional folders beneath this.
    Could you please suggest?
    Thanks,
    Raza.

  • Schema Data Type in SOAP Web Service while using Integration Gateway in SMP 3.0

    Hi Experts,
    I was working on Integration gateway component of SMP 3.0.3 where we can have oData services which connect to different data source from SMP and finally we have to consume from SMP. Here I have an SOAP Web service where there is Schema Data type which is an xml structure and because of that while doing the data modelling with Design time tools I am not able to map the properties as there aren't any as only the parent level Schema type is available in the SOAP Web Services. Please see the below image for reference :
    So now I have 2 inputs no problems for design as such then I have the schema for that which comes as a output response which is where I am facing the issue as we don't have that Data Structure itself so how are we going to map that. I have seen some thin possibilities with Custom Scripts with SMP SP06 where this will help us to process the request and response at runtime with JS/Groovy. So needed some lights on this schema data type on Integration Gateway component of SMP 3.0.3 which we are planning to upgrade to SP06 as well so it will be a good starting point for this as well
    Also have concerned my good friend Rakshit Doshi for this as well.
    Regards,
    Fenil.

    Hi All,
    Sorry for the late response guys was stuck somewhere else and so couldn't reply to this, see I have below response in SOAP UI
    There if we see we have the schema as the whole structure being defined under which we have all the child elements, am also posting the raw response from the soapUI below for better understanding
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
       <soap:Body>
          <GetMSUserLoginDetailsResponse xmlns="http://tempuri.org/">
             <GetMSUserLoginDetailsResult>
                <xs:schema id="MemberDetails" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
                   <xs:element name="MemberDetails" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
                      <xs:complexType>
                         <xs:choice minOccurs="0" maxOccurs="unbounded">
                            <xs:element name="Table">
                               <xs:complexType>
                                  <xs:sequence>
                                     <xs:element name="RECID" type="xs:string" minOccurs="0"/>
                                     <xs:element name="FNAME" type="xs:string" minOccurs="0"/>
                                     <xs:element name="LNAME" type="xs:string" minOccurs="0"/>
                                     <xs:element name="CUSTNO" type="xs:decimal" minOccurs="0"/>
                                     <xs:element name="MEMTYP" type="xs:decimal" minOccurs="0"/>
                                     <xs:element name="MEMTYPENAME" type="xs:string" minOccurs="0"/>
                                     <xs:element name="CUSTTYP" type="xs:decimal" minOccurs="0"/>
                                     <xs:element name="EMAIL" type="xs:string" minOccurs="0"/>
                                     <xs:element name="MEMPASSWORD" type="xs:string" minOccurs="0"/>
                                     <xs:element name="ISDEBIT" type="xs:decimal" minOccurs="0"/>
                                     <xs:element name="PARENTID" type="xs:string" minOccurs="0"/>
                                     <xs:element name="CHILDOF" type="xs:string" minOccurs="0"/>
                                     <xs:element name="CUSTTYP1" type="xs:string" minOccurs="0"/>
                                     <xs:element name="ZONEID" type="xs:int" minOccurs="0"/>
                                     <xs:element name="EMAILFOOTERDETAIL" type="xs:string" minOccurs="0"/>
                                  </xs:sequence>
                               </xs:complexType>
                            </xs:element>
                            <xs:element name="Table1">
                               <xs:complexType>
                                  <xs:sequence>
                                     <xs:element name="ErrorCode" type="xs:string" minOccurs="0"/>
                                     <xs:element name="ErrorDesc" type="xs:string" minOccurs="0"/>
                                  </xs:sequence>
                               </xs:complexType>
                            </xs:element>
                         </xs:choice>
                      </xs:complexType>
                   </xs:element>
                </xs:schema>
                <diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
                   <MemberDetails xmlns="">
                      <Table diffgr:id="Table1" msdata:rowOrder="0">
                         <RECID>97101-101-0000057069</RECID>
                         <FNAME>Fenil</FNAME>
                         <LNAME>Doshi</LNAME>
                         <CUSTNO>1042231</CUSTNO>
                         <MEMTYP>42</MEMTYP>
                         <MEMTYPENAME>Management</MEMTYPENAME>
                         <CUSTTYP>8</CUSTTYP>
                         <EMAIL>[email protected]</EMAIL>
                         <MEMPASSWORD>as</MEMPASSWORD>
                         <PARENTID>97101-101-0000057069</PARENTID>
                         <CUSTTYP1>Zone</CUSTTYP1>
                         <ZONEID>2</ZONEID>
                         <EMAILFOOTERDETAIL><![CDATA[<strong></strong><br />]]></EMAILFOOTERDETAIL>
                      </Table>
                      <Table1 diffgr:id="Table11" msdata:rowOrder="0">
                         <ErrorCode>100</ErrorCode>
                         <ErrorDesc>Login Successful.</ErrorDesc>
                      </Table1>
                   </MemberDetails>
                </diffgr:diffgram>
             </GetMSUserLoginDetailsResult>
          </GetMSUserLoginDetailsResponse>
       </soap:Body>
    </soap:Envelope>
    So we have the data but as a xml Structure which is nothing but schema and is my Eclipse while mapping while defining response type it gives me just an schema as the property.
    Regards,
    Fenil.

  • Issue while deploying Agentry application on local SMP server

    Hello Experts,
    I have deployed a customized SAPWM application on the SMP 2.3 server.
    I am referring to the tutorial maintained at the following URL :http://scn.sap.com/docs/DOC-43353
    After deployment, the status of the application is shown as "running_without_metadata".
    Few sections from my agentry.INI (present under application's root folder (C:\SAP\MobilePlatform\Servers\UnwiredServer\Repository\Agentry\default\com.sap.agentry.wm53) are as follows.
    [HTTPXML-2]
    authenticationCertificateStore=MY
    authenticationCertificateStorePassword=
    authenticationCertificateStorePasswordEncoded=False
    autoDequote=True
    baseURL=http://localhost:8282
    basicAuthenticationPassword=
    basicAuthenticationPasswordEncoded=False
    basicAuthenticationUserID=
    constantsFile=httpxml_sd.ini
    enableAuthentication=False
    enablePreviousUserAuthentication=False
    httpConnectTimeout=60
    httpReceiveTimeout=300
    httpResolveTimeout=60
    httpSendTimeout=300
    listenOn=8282
    name=HTTP-XML Back End
    timeZoneName=
    timeout=300
    trustedCertificateStore=
    useSSL=False
    xmlAllowXSLTScript=True
    xmlNamespaces=
    xmlResolveExternals=True
    xmlValidateOnParse=True
    [Java-1]
    classPath=./ini4j.jar;./sapjco.jar;./Agentry-v5.jar;./SAPWM-5.3.0.0.jar;./SAPCommon-122971.jar;WMDeloitte.jar;
    constantsFile=
    deleteSource=True
    enableAuthentication=True
    enablePreviousUserAuthentication=False
    initialHeapSize=256
    maxHeapSize=512
    name=Java Back End
    outputDirectory=.
    performCompile=False
    printBusinessLogicStackTrace=False
    printStackTrace=False
    reduceOSSignalUse=True
    scriptsPath=
    serverClass=com/syclo/sap/workmanager/Server
    sourceDirectory=.
    timeZoneName=
    [File-1]
    name=dos
    enableAuthentication=false
    enablePreviousUserAuthentication=false
    allowPreviousUserLogin=false
    userDomain=dev
    tempPath=
    [Configuration]
    apnsCertificateDirectory=apnsCertificates
    apnsCertificatePassword=Rzdrj~SwixoAqzmbVxgi
    apnsCertificatePasswordEncoded=True
    apnsEnabled=True
    applicationGlobalsFile=Globals.ini
    applicationStringsFile=ApplicationText.ini
    clientStringNamesFile=ClientStringNames.ini
    clientStringsFile=ClientText.ini
    developmentServer=False
    enableFailedTransactionLogging=True
    enableOverrideFile=Enables.ini
    enableTransactionFailureHandling=False
    failedTransactionFilenameFormat=%{userid} %{transaction_name} %{date} %{time}-%{count}.xml
    failedTransactionsQueue=FailedTransactionsQueue
    gcmEnabled=True
    gcmServerAuthorizationKey=Authorization:key=AIzaSyDi0qWQEewdbmNSV_o9QNtSQrlxPnBXtBM
    gcmServerLink=https://android.googleapis.com/gcm/send
    imagesPath=Application\Development\Images
    localizationPath=
    localizations=
    overrideInfoTableDirectory=OverrideInfoTable
    overrideTypesFile=OverrideTypes.ini
    postedTransactionDirectory=posted
    postedTransactionFile=%{device}.pli
    scriptsPath=Application\Development\Scripts
    spinDocIniFile=
    threadCount=0
    transmitConfigurationFile=TransmitConfigurations.ini
    trustedCertificateStore=
    updateIdleWait=60
    updatePeriod=60
    [Web Server Front End]
    listenOn=80
    permitGetCGI=true
    xslDirectory=xsl
    resourceDirectory=resource
    authenticationCertificateStore=AgentryServer.pfx
    authenticationCertificateStorePassword=Rzdrj~SwixoAqzmbVxgi
    authenticationCertificateStorePasswordEncoded=true
    When I connect this application from my iPad with my machine's IP and port as 7003, I get an error saying "Invalid password for User <username>".
    When I debugged this application in the ECC, in the BAPI  /SYCLO/CORE_SUSR_LOGIN_CHECK, I saw that the Password being sent to the ECC was blank, inspite of entering the password on the application. (have run it for another user in ECC in the below screenshot).
    Is something missing in the agentry.INI or application configuration on the SCC which is causing this issue?
    Any help will be appreciated.

    If you are getting "running_without_metadata"  this means the Agentry server did not load any application on start up.
    1) In your Agentry.ini in the [Configuration] section what is developmentServer set to?
    2) Depending on the value is where the Agentry Server looks for the application logic in the following locations:
    Set to" True"
    C:\SAP\MobilePlatform\Servers\UnwiredServer\Repository\Agentry\default\com.sap.agentry.wm53\Application\Development\
    Set to false:
    C:\SAP\MobilePlatform\Servers\UnwiredServer\Repository\Agentry\default\com.sap.agentry.wm53\Application\Production
    In the above folder does it contain your application logic?
    Stephen

  • Install Oracle 9i Hangs on Linux SMP Redhat 7.1

    I posted this message to the General forum but without any reply. So I repost it here.
    Motherboard: Asus A7M266-D
    CPU: Two AMD Duron 1.2GHz
    Memory: 512MB PC2100
    Vedio: Gforce 4 MX440
    hard disk: MAXTOR 6L080L4
    O/S: Redhat 7.1
    Kernel: 2.4.2-2up and 2.4.2-2smp
    I install Oracle 9i on my dual AMD Duron machine. It hangs. If
    I am using smp kernel, it stop at the Installation Types Screen
    with Status Bar showing 47% complete and 'Setting up install types'.
    If I use single single cpu kernel, it stop at the File Locations
    screen and the status bar is 95% complete. The installActions.log
    does not show any error.
    It is the installActions.log when running under smp mode ( I took
    out a lot of setting value of PROD_HOME lines):
    installActions2002-04-19_10-25-26-AM.log
    Environment variables:
    ORACLE_HOME = /u01/app/oracle/product/9.0.1
    PATH = /bin:/usr/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/oracle/bin:/u01/app/oracle/product/9.0.1/bin
    CLASSPATH = /tmp/OraInstall:/tmp/OraInstall/oui/lib/OraInstaller.jar:/tmp/OraInstall/oui/lib/InstImages.jar:/tmp/OraInstall/oui/lib/InstHelp.jar:/tmp/OraInstall/oui/lib/oracleice.jar:/tmp/OraInstall/oui/lib/help.jar:/tmp/OraInstall/oui/lib/ewt.jar:/tmp/OraInstall/oui/lib/xmlparser.jar:/tmp/OraInstall/oui/lib/swingaccess.jar:.:/tmp/OraInstall/jre/bin/../classes:/tmp/OraInstall/jre/bin/../lib/classes.jar:/tmp/OraInstall/jre/bin/../lib/rt.jar:/tmp/OraInstall/jre/bin/../lib/i18n.jar:/tmp/OraInstall/jre/bin/../lib/classes.zip
    java.class.path=/tmp/OraInstall:/tmp/OraInstall/oui/lib/OraInstaller.jar:/tmp/OraInstall/oui/lib/InstImages.jar:/tmp/OraInstall/oui/lib/InstHelp.jar:/tmp/OraInstall/oui/lib/oracleice.jar:/tmp/OraInstall/oui/lib/help.jar:/tmp/OraInstall/oui/lib/ewt.jar:/tmp/OraInstall/oui/lib/xmlparser.jar:/tmp/OraInstall/oui/lib/swingaccess.jar:.:/tmp/OraInstall/jre/bin/../classes:/tmp/OraInstall/jre/bin/../lib/classes.jar:/tmp/OraInstall/jre/bin/../lib/rt.jar:/tmp/OraInstall/jre/bin/../lib/i18n.jar:/tmp/OraInstall/jre/bin/../lib/classes.zip
    Username is: oracle
    *** Welcome Page***Warning :*** Alert: Oracle Universal Installer
    Version 2.0.1.4.0
    Copyright ) 1999, 2001 Oracle Corporation. All Rights Reserved. ***User selected: Yes/OK
    Setting value of FROM_LOCATION to /mnt/cdrom/stage/products.jarSetting value of ORACLE_HOME_NAME to Setting value of SHOW_COMPONENT_LOCATIONS_PAGE to trueSetting value of SHOW_CUSTOM_TREE_PAGE to trueSetting value of SHOW_SUMMARY_PAGE to trueSetting value of SHOW_INSTALL_PROGRESS_PAGE to trueSetting value of SHOW_REQUIRED_CONFIG_TOOL_PAGE to trueSetting value of SHOW_OPTIONAL_CONFIG_TOOL_PAGE to trueSetting value of SHOW_RELEASE_NOTES to trueSetting value of SHOW_END_SESSION_PAGE to trueSetting value of SHOW_SPLASH_SCREEN to trueSetting value of SHOW_WELCOME_PAGE to trueSetting value of SHOW_ROOTSH_CONFIRMATION to trueSetting value of SHOW_EXIT_CONFIRMATION to trueSetting value of NEXT_SESSION to trueSetting value of NEXT_SESSION_ON_FAIL to trueSetting value of INVENTORY_LOCATION to /u01/app/oracle/oraInventorySetting value of INVENTORY_LOCATION to /u01/app/oracle/Setting value of UNIX_GROUP_NAME to dba
    *** UNIX Group Name Page***UnixInstallGroup = UNIX_GROUP_NAME = dbaInitializing inventory setup WCCEUnable to read /u01/app/oracle/Contents/OracleHomesList.ser. Some inventory information may be lost.Unable to read /u01/app/oracle/Contents/LibsList.ser. Some inventory information may be lost.
    The installer version is 2.0.1.4.0
    Doing operation in inventory setup WCCE
    Setting value of FROM_LOCATION to /mnt/cdrom/stage/products.jar
    Setting value of ORACLE_HOME to /u01/app/oracle/product/9.0.1
    Setting value of ORACLE_HOME_NAME to
    *** File Locations Page***
    FromLocation = FROM_LOCATION = /mnt/cdrom/stage/products.jar
    ToLocation = ORACLE_HOME = /u01/app/oracle/product/9.0.1
    ToName = ORACLE_HOME_NAME =
    Initializing installer access setup
    Setting value of ORACLE_HOME to /u01/app/oracle/product/9.0.1
    Setting value of ToplevelComp to oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle_apache_ejb
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Apache
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Apache
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Apache
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jsdk
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jsdk
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jserv
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jserv
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/perl
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/perl
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/mod_plsql
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/mod_plsql
    Calling query areasQueries2.0.1.4.0 getInventoryLocation
    Query returned : /u01/app/oracle/
    Setting value of PROD_HOME to /u01/app/oracle/\..\jre\1.1.8
    Setting value of PROD_HOME to /u01/app/jre/1.1.8
    Calling query generalQueries2.0.1.4.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : false
    Calling query areasQueries2.0.1.4.0 getInventoryLocation
    Query returned : /u01/app/oracle/
    Setting value of PROD_HOME to /u01/app/oracle/../oui
    Setting value of PROD_HOME to /u01/app/oui
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle.options.ops.clustermgr
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/askJDKHome
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle.p2k.proc
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle.p2k.proc
    Doing operation for installer access setup
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of ToplevelComp to oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    *** Available Products Page***
    TopLevelComp = ToplevelComp = oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of ToplevelComp to oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    Unable to read /u01/app/oracle/Contents/CompsList0.ser. Some inventory information may be lost.
    Unable to read /u01/app/oracle/Contents/PatchesList0.ser. Some inventory information may be lost.
    Setting value of DEP_MODE to EE
    Setting value of TLDepModes to EE,
    *** Installation Types Page***
    DepMode = DEP_MODE = EE
    TLDepModes = TLDepModes = EE,
    The selected install type is "Enterprise Edition"
    Setting value of DEP_MODE to EE
    Install type for "Oracle9i Database 9.0.1.0.0 " is "Enterprise Edition"
    # Not all the dependencies for the component Oracle9i Database 9.0.1.0.0 are found. Missing Component oracle.tg 9.0.1.0.0.
    Install type for "Enterprise Edition Options 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Enterprise Edition Options 9.0.1.0.0 are found. Missing Component oracle.olap.aps 9.0.1.0.0.
    Install type for "Oracle Spatial 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Products 9.0.1.0.0 " is "Enterprise Edition"
    Install type for "Oracle Net Services 9.0.1.0.0 " is "Server.Typical"
    # Not all the dependencies for the component Oracle Net Services 9.0.1.0.0 are found. Missing Component oracle.networking.protocol_supp 9.0.1.0.0.
    Install type for "Oracle Partitioning 9.0.1.0.0 " is "Typical"
    Install type for "Oracle9i 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Oracle9i 9.0.1.0.0 are found. Missing Component oracle.rdbms.hs_olefs 9.0.1.0.0.
    # Not all the dependencies for the component Oracle9i 9.0.1.0.0 are found. Missing Component oracle.rdbms.hs_olesql 9.0.1.0.0.
    # Not all the dependencies for the component Oracle9i 9.0.1.0.0 are found. Missing Component oracle.rdbms.hybrid 9.0.1.0.0.
    Install type for "Oracle Database Utilities 9.0.1.0.0 " is "Typical"
    Install type for "Database Verify Utility 9.0.1.0.0 " is "Typical"
    Install type for "Migration Utility 9.0.1.0.0 " is "Typical"
    Install type for "Oracle9i Development Kit 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Oracle9i Development Kit 9.0.1.0.0 are found. Missing Component oracle.p2k.procob18 1.8.76.0.0.
    # Not all the dependencies for the component Oracle9i Development Kit 9.0.1.0.0 are found. Missing Component oracle.p2k.procob 9.0.1.0.0.
    # Not all the dependencies for the component Oracle9i Development Kit 9.0.1.0.0 are found. Missing Component oracle.p2k.profor 1.8.76.0.0.
    Install type for "Oracle Trace 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Advanced Security 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Oracle Advanced Security 9.0.1.0.0 are found. Missing Component oracle.options.ano.dce 9.0.1.0.0.
    Install type for "Oracle JVM 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Ultra Search Server 1.0.3.0.0 " is "Typical"
    Install type for "Oracle Data Migration Assistant 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Database Configuration Assistant 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Agent Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Applications Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Web Site 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Ultra Search Middle-Tier 1.0.3.0.0 " is "Typical"
    Install type for "Oracle Management Server 9.0.1.0.0 " is "Complete"
    Install type for "Generic Connectivity Using ODBC 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Forms Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Reporting Framework 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Enterprise Manager Webserver 9.0.1.0.0 " is "Complete"
    Install type for "Oracle HTTP Server 1.3.12.0.3a " is "Typical"
    Install type for "Oracle eBusiness Management Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle HTTP Server Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Intelligent Agent 9.0.1.0.0 " is "Typical"
    Install type for "Pro*C/C++ 9.0.1.0.0 " is "Typical"
    Install type for "Database SQL Scripts 9.0.1.0.0 " is "Typical"
    Install type for "Generic Connectivity Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Net Listener 9.0.1.0.0 " is "Typical"
    Install type for "Apache Configuration for Oracle Java Server Pages 1.1.2.3.0 " is "Typical"
    Install type for "Replication API 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Text 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Content Syndication Server 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Dynamic Services Server 9.0.1.0.0 " is "Typical"
    Install type for "BC4J Runtime 5.0.0.417.1 " is "Typical"
    Install type for "Oracle Internet Directory Client 3.0.1.0.0 " is "Typical"
    Install type for "Oracle Mod PL/SQL Gateway 3.0.9.0.7 " is "Typical"
    Install type for "PL/SQL Embedded Gateway 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Starter Database 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Complete OLTP Starter Database 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Complete DSS Starter Database 9.0.1.0.0 " is "Typical"
    Install type for "Apache Module for Oracle Servlet Engine 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Java Server Pages 1.1.2.3.0 " is "Typical"
    Install type for "Apache Configuration for EJB 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Diagnostics Pack 9.0.1.0.0 " is "Typical"
    Conflict while setting install type of "Oracle Enterprise Manager Client 9.0.1.0.0 " to "Maximum (Complete)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle Ultra Search Common Files 1.0.3.0.0 " is "Typical"
    Install type for "XML 9.0.1.0.0 " is "Typical"
    Conflict while setting install type of "XML Parser for Java 9.0.1.0.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Apache Configuration for Oracle XML Developer's Kit 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Client Option 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Tuning Pack 9.0.1.0.0 " is "Complete"
    Install type for "Oracle XML Developer's Kit 9.0.1.0.0 " is "Typical"
    Conflict while setting install type of "XML Parser for PL/SQL 9.0.1.0.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Conflict while setting install type of "XML Class Generator for Java 9.0.1.0.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Conflict while setting install type of "XML Transviewer Beans 9.0.1.0.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "XSQL Servlet 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Management Pack for Oracle Applications 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Change Management Pack 9.0.1.0.0 " is "Complete"
    Install type for "Oracle interMedia Video 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Audio 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Image 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Locator 9.0.1.0.0 " is "Typical"
    Install type for "Data Management Services Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Client 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Oracle Enterprise Manager Quick Tours 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle interMedia Annotator 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Integrated Applications 9.0.1.0.0 " is "Complete"
    Install type for "Database Workspace Manager 9.0.1.0.0 " is "Typical"
    Install type for "Change Management Common Files 9.0.1.0.0 " is "Complete"
    Conflict while setting install type of "Oracle Intelligent Agent Base Component Files 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "SQL*Loader 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Database Demos 9.0.1.0.0 " is "Typical"
    Install type for "Advanced Replication 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Net Integration 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Enterprise Manager Database Applications 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Enterprise Manager Console 9.0.1.0.0 " is "Complete"
    Install type for "Authentication and Encryption 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Authentication and Encryption 9.0.1.0.0 are found. Missing Component oracle.options.ano.sns.hybrid 9.0.1.0.0.
    Install type for "Oracle Intelligent Agent Base Component Files 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Required Support Files 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Conflict while setting install type of "Utilities Common Files 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle XML SQL Utility 9.0.1.0.0 " is "Typical"
    Install type for "XML Parser for PL/SQL 9.0.1.0.0 " is "Custom"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.2 9.0.1.0.0 " is "Typical"
    Install type for "XML Class Generator for Java 9.0.1.0.0 " is "Custom"
    Install type for "XML Transviewer Beans 9.0.1.0.0 " is "Custom"
    Install type for "SQL*Plus Worksheet 9.0.1.0.0 " is "Complete"
    Conflict while setting install type of "SQL*Plus 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Enterprise Manager Common Files 9.0.1.0.0 " is "Complete"
    Conflict while setting install type of "Secure Socket Layer 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Conflict while setting install type of "Oracle Java Tools 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Conflict while setting install type of "JEWT 4.1.7.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Advanced Queueing (AQ) API 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Common Schema Demos 9.0.1.0.0 " is "Typical"
    Install type for "Secure Socket Layer 9.0.1.0.0 " is "Custom"
    Install type for "Export/Import 9.0.1.0.0 " is "Typical"
    Install type for "SQL*Plus 9.0.1.0.0 " is "Custom"
    Install type for "Installation Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle9i for UNIX Documentation 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Client Library and Demo 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Wallet Manager 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Assistant Common Files 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Net 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Java Tools 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Oracle Enterprise Java Beans and CORBA Tools 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Conflict while setting install type of "Visigenics ORB 3.4.0.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Conflict while setting install type of "Java Runtime Environment 1.1.8.0.0 " to "Custom (Custom)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "DBUI 2.1.2.0.0 " is "Typical"
    Install type for "XML Parser for C++ 9.0.1.0.0 " is "Typical"
    Install type for "Enterprise Login Assistant 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Enterprise Manager Base Classes 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "XML Parser for C 9.0.1.0.0 " is "Typical"
    Install type for "XML Class Generator for C++ 9.0.1.0.0 " is "Typical"
    Install type for "Oracle C++ Call Interface 9.0.1.0.0 " is "Typical"
    Install type for "Enterprise Manager Base Classes 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Call Interface (OCI) 9.0.1.0.0 " is "Typical"
    Install type for "EM NLS files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Net Manager 9.0.1.0.0 " is "Typical"
    Install type for "Self Service Application 3.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Quick Tours 9.0.1.0.0 " is "Custom"
    Install type for "Enterprise Manager Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Change Management Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Diagnostics Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Tuning Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Management Pack for Oracle Applications Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Management Pack for SAP R/3 QuickTour 9.0.1.0.0 " is "Custom"
    Install type for "Standard Management Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Apache JServ 1.1.0.0.0f " is "Typical"
    Install type for "JSDK 2.0.0.0.0d " is "Typical"
    Install type for "Oracle Directory Manager 3.0.1.0.0 " is "Complete"
    Conflict while setting install type of "Oracle Internet Directory Client Common Files 3.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Recovery Manager 9.0.1.0.0 " is "Typical"
    Install type for "Object Type Translator 9.0.1.0.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.1 9.0.1.0.0 " is "Typical"
    Install type for "CABO 1.0.7.0.0 " is "Complete"
    Conflict while setting install type of "Java 2 Platform Enterprise Edition 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Net Configuration Assistant 9.0.1.0.0 " is "Typical"
    Install type for "Assistant Common Files 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Oracle help For Java 3.2.9.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Conflict while setting install type of "Kodiak 1.2.1.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Character Set Migration Utility 9.0.1.0.0 " is "Typical"
    Install type for "Apache Web Server files 1.3.12.0.0c " is "Typical"
    Install type for "Oracle Perl Interpreter 5.00503.0.0.0b " is "Typical"
    Install type for "askJDKHome 1.1.8.0.0 " is "Typical"
    Install type for "Oracle Enterprise Java Beans and CORBA Tools 9.0.1.0.0 " is "Custom"
    Install type for "website NLS files 9.0.1.0.0 " is "Complete"
    Install type for "Utilities Common Files 9.0.1.0.0 " is "Custom"
    Install type for "Visigenics ORB 3.4.0.0.0 " is "Custom"
    Install type for "Capacity Planner 9.0.1.0.0 " is "Complete"
    Install type for "Java 2 Platform Enterprise Edition 9.0.1.0.0 " is "Custom"
    Install type for "JLE 1.0.6.0.0 " is "Complete"
    Install type for "Oracle Enterprise Manager PagingOMS Common 9.0.1.0.0 " is "Complete"
    Install type for "PL/SQL 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Universal Installer 2.0.1.4.0 " is "Custom"
    Install type for "JDBC/OCI Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Base Events 9.0.1.0.0 " is "Complete"
    Install type for "SQLJ Runtime 9.0.1.0.0 " is "Typical"
    Install type for "Instance Management 9.0.1.0.0 " is "Complete"
    Install type for "Schema Management 9.0.1.0.0 " is "Custom"
    Install type for "Security Management 9.0.1.0.0 " is "Custom"
    Install type for "Storage Management 9.0.1.0.0 " is "Complete"
    Install type for "Required Support Files 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Oracle9i Globalization Support 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Conflict while setting install type of "Oracle Core Required Support Files 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    # Not all the dependencies for the component Required Support Files 9.0.1.0.0 are found. Missing Component oracle.rsf.hybrid 9.0.1.0.0.
    Install type for "Oracle JDBC Thin Driver for JDK 1.1 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Internet Directory Client Common Files 3.0.1.0.0 " is "Custom"
    Install type for "Oracle Trace Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Text Manager 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Policy Manager 9.0.1.0.0 Beta" is "Complete"
    Install type for "Oracle Developer Server Forms Manager 9.0.1.0.0 Beta" is "Typical"
    Install type for "Oracle Parallel Server Manager 9.0.1.0.0 " is "Complete"
    Install type for "RDBMS Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Enterprise Manager Installation Pre-requisite Checks 9.0.1.0.0 " is "Complete"
    Install type for "LDAP Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Reorg Wizard 9.0.1.0.0 " is "Complete"
    Install type for "Precompiler Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Events 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Diagnostic Pack Advanced Events 9.0.1.0.0 " is "Complete"
    Install type for "Advanced Host Events 9.0.1.0.0 " is "Complete"
    Install type for "Performance Manager 9.0.1.0.0 " is "Complete"
    Install type for "Diagnostics Common Files 9.0.1.0.0 " is "Complete"
    Install type for "SQLServer Monitoring Option 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Net Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Graphical Explain Plan 9.0.1.0.0 " is "Complete"
    Install type for "Graphical Layout Tool 9.0.1.0.0 " is "Complete"
    Install type for "Outline Management 9.0.1.0.0 " is "Complete"
    Install type for "Shared Class Files 9.0.1.0.0 " is "Complete"
    Install type for "Tablespace Map 9.0.1.0.0 " is "Complete"
    Install type for "Oracle9i Globalization Support 9.0.1.0.0 " is "Custom"
    Install type for "Concurrent Processing Tuning Assistant 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Service Level Reporting 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Core Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Precompiler Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Platform Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle help For Java 3.2.9.0.0 " is "Custom"
    Conflict while setting install type of "Extended Windowing Toolkit 3.3.18.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Java Runtime Environment 1.1.8.0.0 " is "Custom"
    Install type for "PL/SQL Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Parser Generator Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle JDBC Thin Driver for JDK 1.2 9.0.1.0.0 " is "Typical"
    Install type for "JDBC Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle JDBC Development Drivers 9.0.1.0.0 " is "Typical"
    Install type for "Kodiak 1.2.1.0.0 " is "Custom"
    Install type for "XML Parser for Java 9.0.1.0.0 " is "Custom"
    Install type for "JEWT 4.1.7.0.0 " is "Custom"
    Install type for "Extended Windowing Toolkit 3.3.18.0.0 " is "Custom"
    Install type for "SSL Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Agent Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Client Required Support Files 9.0.1.0.0 " is "Custom"
    Calling query areasQueries2.0.1.4.0 getComponentInstallTypeName
    Query returned : EE
    Calling query generalQueries2.0.1.4.0 getOSName
    Query returned : Linux
    Calling query generalQueries2.0.1.4.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : false
    Calling query areasQueries2.0.1.4.0 productInstalled
    location = /u01/app/oracle/product/9.0.1
    name = oracle.install.instcommon
    startVersion = 8.1.3.0.0
    endVersion = 9.0.0.0.0
    acceptCompatible = null
    Query returned : false

    Mey be this link can help you!
    http://otn.oracle.com/docs/products/oracle9i/content.html
    With this document i have made my first installation of oracle9i
    on Linux Mandrake8.2
    Good Luky

  • How to use RESTFUL web services in SMP 3.0 Appbuilder?

    Hi All,
         I want to develop an application using RESTfull service. I have already developed REST service,I want to use that service in Appbuilder Application for SMP3.0. How can I call the REST services into our SMP 3.0 Appbuilder application? If i directly call the services(GET method) from Appbuilder, It is working but ODataQuery is not working for filter.
         1.How to access the POST method in Appbuilder?
         2.where should I provide the username and password for the login URL in our appbuilder for POST method URL?
         3.How can I convert those REST service to ODATA services?

         In this discussion i found the solution for this issue. But Appbuilder supports the REST services i to used the REST service with GET method, I don't know how to use the POST method directly in Appbuilder?
    Can any one suggest me
         1.How do i querying the GET method of REST services?
         2.Is there any other procedure to call the REST Service with POST method in Appbuilder?

  • Can't Connect to SMP 3.0 server from Client

    Hello All , I am trying to connect SMP 3.0 server but i am getting error like Requesting Public Key from Server Communications error (14) Connection failed Ending transmission and i also checked with url as per my knowledge its  working fine because i am getting message like I am here . I am using below Url . https://Kunal-jit:8082/MobileNorthwind Message : I am here But i think might be SSL certificate issue because its running with red cross. Can you guide ?  how to solve ? Thanks & Regards,      Kunal Varaiya
    Tags edited by: Michael Appleby

    Hello Bill ,
    SMP Server logs for agentry is below :
    15:45:06 06/06/2014: Starting Agentry (64-bit Windows) 15:45:06 06/06/2014: Reading system ini file. 15:45:06 06/06/2014: Starting log file. 15:45:06 06/06/2014: Loading message groups. 15:45:06 06/06/2014: Starting threads. 15:45:06 06/06/2014:    1 initial threads.  Threads will auto-scale. 15:45:06 06/06/2014: Event: 0, 2, Loading the Agentry Runtime's public/private key for password exchanges. 15:45:07 06/06/2014: Event: 0, 2, Key pair loaded successfully. 15:45:07 06/06/2014: Starting Agentry: Agentry Server Agent v7.0.3.159 15:45:07 06/06/2014: Event: 0, 2, Agentry Startup 15:45:07 06/06/2014: Loading 0 front ends 15:45:07 06/06/2014: Loading front end from angelvine 15:45:07 06/06/2014: WebSockets Front End: loading configuration 15:45:07 06/06/2014: Event: 17, 14, WebSockets Front End v7.0.3.159 15:45:07 06/06/2014: Starting Agentry Server Agent 15:45:07 06/06/2014: Agentry Server Agent: Starting threads. 15:45:07 06/06/2014:    1 initial threads.  Threads will auto-scale. 15:45:07 06/06/2014: Agentry Server Agent: Adding messages. 15:45:07 06/06/2014: Event: 1, 4, Agentry Server Agent v7.0.3.159 15:45:07 06/06/2014: Loading agent from ag3.dll 15:45:07 06/06/2014: Starting Server 15:45:07 06/06/2014: Server: reading config file 15:45:08 06/06/2014: Event: 20, 150, Loading Development application definitions 15:45:14 06/06/2014: Initializing SQL-Northwind from ag3sqlbe.dll 15:45:14 06/06/2014: Northwind Back End: reading config information. 15:45:14 06/06/2014: Northwind: name set to 'SQL Back End'. 15:45:14 06/06/2014: SQL Back End Back End: reading query config information. 15:45:14 06/06/2014: SQL Back End Back End: initialized 15:45:14 06/06/2014: Event: 21, 4, Loaded SQL Back End (SQL v7.0.3.159) from ag3sqlbe.dll 15:45:14 06/06/2014: SQL Back End Back End: connecting 'sa' to database 'Northwind' 15:45:16 06/06/2014: Event: 21, 101, dB Connect 15:45:16 06/06/2014: SQL Back End Back End: started 15:45:16 06/06/2014: Event: 20, 152, Loading Development application definitions for default localization 15:45:16 06/06/2014: Event: 20, 153, Finished loading Development application definitions for default localization 15:45:16 06/06/2014: Event: 20, 151, Finished loading Development application definitions 15:45:16 06/06/2014: Server: Starting threads. 15:45:16 06/06/2014:    1 initial threads.  Threads will auto-scale. 15:45:16 06/06/2014: Event: 20, 4, Server v7.0.3.159 15:45:16 06/06/2014: Starting front ends 15:45:16 06/06/2014: WebSockets Front End: Opening WebSockets servlet for sub-URL /MobileNorthwind 15:45:16 06/06/2014: Event: 17, 10, WebSockets Front End v7.0.3.159 15:45:16 06/06/2014: Event: 0, 0, Old log files moved into C:\SAP_SMP\DevSMPServer\Server\log\agentry\rolled\2014-06-06-154506 15:45:16 06/06/2014: Event: 0, 23, Agentry startup is complete.
    So based on logs  it looks good . but when i try to run URL : https://Kunal-Jit:8081/MobileNorthwind I am getting SSL Connection error (I also followed steps provided by last post). ATE : Communication error 14
    Can you please guide ? How to solve ?
    Thanks & Regards, Kunal Varaiya

  • SMP 3.0: Agentry use of source=INI in JavaBE.ini

    Hi Experts.
    Is it still possible to use the JavaBE.ini for parameter configuration in Agentry 7.0 (on SMP 3.0) ?
    We will for sure use source=SAP for productions servers, but for local development environments
    it would be more flexible to use local configuration.
    Does anybody know if an export program exist, to export parameters from SAP to an INI file ?
    Thanks.
    Søren Hansen

    Hi Bill.
    Seems like it is working. I have posted some details in SMP 3.0: Setup local Agentry development environment with source=INI in JavaBE.ini
    I have not been able to find a standard program to export the parameter values, but found it fairly simple to create one myself.
    I will update above document with any findings, but I was able to start up the server, and do a full initial synch via that procedure.
    Søren Hansen

  • Upgrading work manager 5.3 to 6.1 with out SMP 3.0

    Hello Experts,
             As per the blogs and posts, work manager 6.0 is designed for SMP 2.3 and work manager 6.1 for SMP 3.0.Can we use work manager 6.1(with its additional features)without SMP 3.0 similar to work manager 5.3.Can we have standalone work manager 6.1 server or we need to install complete SMP 3.0 runtime .
    Please suggest can we upgrade work manager 5.3 to 6.1 without SMP 3.0 to have standalone Agentry server for work manager 6.1(Like standalone server for work manager 5.3)
    Thanks in advance
    Thanks & Regards,
    Sravanthi Polu

    Hi Bill,
    Thanks for your reply.What about the customization's done in Work Manager 5.3, will they have impact when we upgrade from 5.3 to 6.1 on SMP 3.0.What is the better approach to retain the custom logic if we go for upgrade(SMP 3.0).As per my knowledge if we go for 6.1 on SMP 3.0, then custom logic need to be implemented again, so considering customization's as higher priority, can we migrate existing Work Manager 5.3(With custom logic(Editor,Java,ECC Changes)) to SMP 3.0.If we migrate custom logic would be retained,but can we make use of the new features in SMP 3.0  like open ui,client branding .... etc.
    Please help in this regard.
    Thanks in advance.
    Regards,
    Sravanthi

  • Post-Installation and Configuration of Solution Manager 7.1

    Dear community,
    we are a SAP Channel Partner and want to offer SAP BO support; therefore I am about to set up the Solution Manager 7.1 on a Windows 2008 R2 host with Oracle Database 11g. The installation has been completed successfully and I have applied our permanent license, but performing the following post-installation steps some problems and questions have arised. Because I don't want to write a novel right here, let's begin with the first issue:
    Updating the Solman, as suggested in post-installation.
    I want to update my ISS to SP 04 and followed the common instructions using ESPIN and SPAM (see, for example, this thread: ).
    That means, all packages have been loaded from ESPIN into SPAM. The problem is, that I have SPAM version 0039, but I get error message "you need at least version 0040" when I try to start the update queue. Also, I am not able to download a newer version of SPAM from SMP (702-0043 and 702-0045 are available there), because I need MOPZ for that (a message comes up telling me that items in my download basket have to be confirmed before I am allowed to download them), which will be available not before basic configuration during solman_setup later on.
    So, what to do? Is there another way to get that 5MB SPAM update or do I have to go on with the old version?
    Thanks in advance
    Sönke
    Edited by: Sönke Schnurr on Dec 29, 2011 4:15 PM (small addendum)

    Okay, I am just re-installing my Solution Manager 7.1, because I couldn't solve my SPAM problem (linked thread in my next-to-last post).
    I would like to configure the whole SAProuter SNC thing now. The Solution Manager host is the same which has the SAProuter installed. I have already registered and certified it and created the Windows Service which starts the SAProuter (saprouter -r -S 3299 -G routerlog -K u201Cp:CN=XXX, OU=YYY, OU=SAProuter, O=SAP, C=DEu201C), XXX and YYY being the appropriate values.
    Now I want to create my saprouttable. A beta version is this one here, based on some tutorials in the internet:
    KT "p:CN=sapserv2, OU=SAProuter, O=SAP, C=DE" 194.39.131.34 3299
    KP "p:CN=sapserv2, OU=SAProuter, O=SAP, C=DE"  3200
    1. deny all other connections
    D * * *
    Do you think it's alright? I'm connecting via host port 3299, so the first two lines should be alright, shouldn't they?.
    The fourth line P ? The local IP address of my host? What is that line for at all?
    Another question: The connection to OSS doesn't work yet, probably because of our local hardware router firewall. Which ports do I have to forward? I suppose it is just 3299?
    An elaborate answer would be highly appreciated!
    Regards
    Sönke

  • Please ***Read*** or at least skim through before posting new questions

    Before posting you should look through the various resources below for the answers to your questions. A lot of the "how to" questions are already answered in the material below.More detailed <a href="http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement">rules of engagement</a>, can be found on the Wiki.
    KB's Knowledg Base Articles
    This is a good location to find known issues, look up error messages, and general tips and tricks with the
    BusinessObjects Enterprise product line. [https://service.sap.com/notes] (this requires logon to the SAP Service Marketplace).
    try the new Cross search https://service.sap.com/xsearch to search docs, SCN and KB/notes (also on SMP)
    Business Objects Articles
    [http://www.sdn.sap.com/irj/sdn/businessobjects-articles]
    SAP Idea Place (for suggested product enhancements)
    [https://cw.sdn.sap.com/cw/community/ideas]
    Other SAP/BO Forums
    SDK forums questions about .net or java custom code [/community [original link is broken];
    SAP Forum for questions integrating with SAP BW [BusinessObjects Integration Kits;
    General questions about SAP/BO [/community [original link is broken];
    Please remember to thank others by giving points

    Additional commonly used resources
    Configuring Java AD Single Sign-On (SSO) with Kerberos in Distributed Environments
    [Collection of white papers for XI 3.1 SP2 and earlier here|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233363331333833333335%7D.do]
    [XI 3.1 SP3 here|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433383333333733363332%7D.do]
    [All AD Troubleshooting and Best practices found here|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433373336333333373334%7D.do]
    Business Objects Downloads
    - Service Packs and Fix Packs - Merge Modules and Installation Packages - Sample Reports and Databases
    [http://service.sap.com/bosap-downloads] (requires logon to SAP Service Marketplace).
    [Other SAP/Business Objects Documentation|http://help.sap.com/] (choose SAP Business Objects then All products)

  • SMP Official HTML5 Support

    As of the final SMP 1.6 release, will HTML5 video be officially supported by SMP?
    I have seen the following page on the SMP wiki on SourceForge.com:
    Exploratory HTML5 Video Support
    https://sourceforge.net/adobe/smp/wiki/Exploratory HTML5 Video Support/
    I also remember Andrian Cucu going through the exploratory HTML5 fallback in SMP 1.5 in his OSMF user group presentation in November 2010 (link to the on-demand meeting recording toward the top of the following page:
    http://osmf.groups.adobe.com/index.cfm?event=post.display&postid=32212 )
    Thanks,
    g

    Just writing here to confirm what seems obvious ...
    As of the final SMP 1.6 release, is HTML5 video now officially supported as a "first class" runtime by SMP?
    "Yes" is what the following blog post regarding the SMP 1.6 release seems to imply:
    Announcing OSMF and Strobe Media Playback 1.6
    http://blogs.adobe.com/osmf/2011/09/announcing-osmf-and-strobe-media-playback-1-6.html
    The blog post above having included a link to the following SMP wiki page:
    HTML5 & JavaScript support for SMP
    http://sourceforge.net/apps/mediawiki/osmf.adobe/index.php?title=HTML5_%26_JavaScript_supp ort_for_SMP
    I am seeking to confirm that HTML5 playback is a "first class" runtime for SMP given Adobe's commit to mobile runtimes for SMP, and the following recent Adobe announcement:
    Flash to Focus on PC Browsing and Mobile Apps; Adobe to More Aggressively Contribute to HTML5
    http://blogs.adobe.com/conversations/2011/11/flash-focus.html
    EXCERPT:
    Our future work with Flash on mobile devices will be focused on enabling Flash developers to package native apps with Adobe AIR for all the major app stores. We will no longer continue to develop Flash Player in the browser to work with new mobile device configurations (chipset, browser, OS version, etc.) following the upcoming release of Flash Player 11.1 for Android and BlackBerry PlayBook.
    These changes will allow us to increase investment in HTML5 and innovate with Flash where it can have most impact for the industry, including advanced gaming and premium video. ...
    Thank you again to all on the SMP team for the great player code base that you provide all who are delivering video to web and mobile devices.
    g

Maybe you are looking for

  • Sql server agent job failing

    Hi, I created a ssis package, that simply transfer an excel sheet into ole db, it works on its own, but when I try to use the sql server agent service, the first step is successful,but the second step of execution is not, but I don't have enough deta

  • Problem identified jsf component and problem of checkboxs

    hello, i have 2 questions: - 1 I have a js function that show/don't show a tab when we chose yes/no on a SelectOneRadio: function display(fieldRadio,tabtohide) div = document.getElementById(tabtohide); if(fieldradio.value=='false') div.className='hid

  • My phone has frozen while trying to do the iOS8 update. Help please

    What do i do. Can i get it to reset so i can restore from my back up.

  • Cant login my macbook pro....PLZZZZZZZ HELP

    hey... this morning i switched on my mac and on the login screen i entered my password, but i didnt work. M pretty much sure that the password is correct plz help me out. My mac book's version is 10.6.4 plz plz plzzzz help me out thanks

  • Connectivity Details

    Hi All, We are using Crystal Reports 11.5.3 in windows 7(64 bit) environment. At the same time we are using Oracle 11G Client (64bit). 1) Could anyone let us know is this compatible with the windows 7 64 bit environment? 2) We are able to create the