Web adi with R11 on sun sparc solaris platform

we have been trying for months to get this product working without success. does anybody have any experience with using this product in the environment stated, and if they do, would they be willing to correspond via email to give us some assistance?
despite months of trying to progress the issue via metalink, we have made nil progress.
thanks in anticipation
allen

we have been trying for months to get this product working without success. does anybody have any experience with using this product in the environment stated, and if they do, would they be willing to correspond via email to give us some assistance?
despite months of trying to progress the issue via metalink, we have made nil progress.
thanks in anticipation
allen

Similar Messages

  • Oracle 8.1.6 on Sun Sparc Solaris 8

    Any successful story of Oracle 8.1.6 runs on Sun Sparc Solaris 8?
    The documentation of Oracle 8.1.6 mentions that it can run on Solaris 2.6 and 7. But how about Solaris 8?
    Thanks.

    Could you tell us how to do that????
    We all met the ORA-01034 problem!
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Wile E. Coyote:
    Yes, that's no problem
    I've installed 8.1.6 on several machines running Solaris 8 without any problem<HR></BLOCKQUOTE>
    null

  • Oracle Forms Developer/Services 6i Release 2 for Sun SPARC Solaris

    Exist? :
    Oracle Forms Developer/Services 6i Release 2 for Sun SPARC Solaris
    6i Release 2 ,it's product or patch ?
    I want to know then Software Product CD Part number, Part # ????? Release 2 , not Release 1!!

    I'm getting the page not found error on trying to download the setup Oracle Forms Developer 6i Release 2 for 95/98/NT/2000/XP from:
    http://www.oracle.com/technology/software/products/forms/htdocs/winsoft.html

  • Management Agent 10.2.0.3 on Sun SPARC Solaris

    Hi all,
    can anyone tell me what are the requirements (software,hardware) for installing the management agent 10.2.0.3 on Sun SPARC Solaris??
    Thanks,
    in advance

    http://download-west.oracle.com/docs/cd/B16240_01/doc/install.102/b25949/toc.htm

  • Web ADI with excel 2010,

    Hi,
    Is it possible to use Web ADI with excel 2010.
    I saw an article in metalink saying we need to apply a patch in order to word.
    However we were able to generate the template without applying the patch, but it didnt have the Oracle under Add Ins menu.
    Does anyone know if it is possbible to use web adi with excel 2010 without appying a patch.
    Thanks and Regards,
    MPH

    Hi
    Please try this
    Close all your excel windows which you have opened
    open new excel, navigate to
    File-->Options-->Trust Center--> Click on Trust Center Settings
    select Macro Settings --> Select the radio button Enable all Macros (not recommended;potentially, dangerous code can run) { dont worry about selectign this option once web adi is downloaded changes back to its original disable notifications icon}
    Enable the check box Trust Access to the VBA Project Object Model
    Click on OK again click on OK close the excel
    Thanks
    Krishna

  • How to install Apache Web Server with PHP on Sun Solaris Sparc machine

    Hi,
    We are trying to install the Apache Web Server and the PHP package on a Sun Solaris Sparc machine running on SunOS 5.8. We are having compilation problems with the source code of both these packages.
    Does anybody know if there are ready solaris packages for Apache and PHP available from where we can download and install instead of source code compilation?
    Or any instructions / things to watch for when installing Apache with PHP (if anybody has tried installing Apache with PHP on Sun Solaris earlier) is most welcome.
    Thanks,
    Harish

    Apache should be bundled along with Solaris check in "/var/apache" in Solaris 8 and Solaris 9
    php is available at www.php.net
    I found an old document for installing PHP maybe this will help.
    Cheers
    -Dhruva
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++Installing PHP 3.x for Apache 1.x.x on Solaris
    Introduction
    This document describes how to install PHP for Apache on Solaris.
    You should have Apache installed before trying to install PHP.
    If you want to use PHP with MySQL then you must install MySQL first.
    Before we Begin
    1. These instructions assume that you have Apache installed according to instructions.
    Getting PHP
    1. You must be logged in as root to perform this installation.
    su root
    2. I save all my downloads in:
    /usr/local/dist
    If you don't already have one, you may need to create that directory now:
    mkdir /usr/local/dist
    3. You can get PHP 3.0.14 from here(www.php.net).
    cd /usr/local/dist
    ftp ftp.php.net
    cd pub/distributions
    bin
    get php-3.0.14.tar.gz
    bye
    Installing PHP
    1. We will install PHP in /usr/local/build, but use a tricky tar command
    to do it in on hit from the download directory:
    cd /usr/local/dist
    tar xvfz php-3.0.12.tar.gz -C ../build
    Compiling PHP
    1. First let's get where the action is:
    cd /usr/local/build/php-3.0.14
    2. You now have 3 options:
    * Simple PHP install without MySQL - goto step 3
    * Simple PHP install with MySQL - goto step 4
    * Custom PHP install - goto step 5
    3. Simple PHP install without MySQL. Next, jump to step 6.
    ./configure --with-apache=../apache_1.3.12
    4. Simple PHP install with MySQL. MySQL must be installed before you can configure PHP to use it. I recommend that MySQL should always be reachable with /usr/local/mysql. Even if you install it else where you
    should create a symbolic link from /usr/local/mysql. Otherwise the compiler can have problems finding the mysqlclient library. The command
    should look like this:
    ./configure with-mysql=/usr/local/mysql with-apache=../apache_1.3.12
    Next, jump to step 6.
    5. Custom PHP install. Take a look at the available configuration directives by using this command:
    ./configure --help
    6. Now we can make the PHP executable. This may take a while.
    make
    7. Now we install the PHP module with:
    make install
    Adding the PHP Module to Apache
    1. Now we have to setup Apache to include the PHP module:
    cd ../apache_1.3.12
    2. Re-configure Apache to use the PHP module. You should use your previous Apache configure command along with the PHP activate module directive.
    You can see your previous Apache configure command by doing:
    cat config.status
    You can configure Apache using the previous command with the added PHP module by doing:
    ./config.status --activate-module=src/modules/php3/libphp3.a
    If you used the simple Apache install from instructions the command will look like this:
    ./configure prefix=/usr/local/apache activate-module=src/modules/php3/libphp3.a
    3. Make and install Apache with PHP enabled:
    make
    4. We need to stop the server before installing the files:
    /usr/local/apache/bin/apachectl stop
    5. Now we can install the new binaries:
    make install
    6. Start apache again (now running the new php enabled version):
    /usr/local/apache/bin/apachectl start
    Setting Up PHP
    1. We have to tell Apache to pass certain file extensions to PHP. We do this in Apache's httpd.conf file.
    cd /usr/local/apache/conf
    2. Edit the httpd.conf file. If you do a search for php you will find a couple of commented out lines telling Apache to use the PHP module. You should uncomment them to look like this.
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .phps
    3. I prefer to use the extension .phtml, you can use whatever extension you like (even .html) by adding lines to httpd.conf like this:
    AddType application/x-httpd-php3 .phtml
    Check that it Works
    1. We have to restart Apache to make these changes take effect on the running server.
    cd /usr/local/apache/bin
    ./apachectl restart
    2. Apache should now be running with PHP enabled. The server version should include PHP/3.0b2.
    ./apachectl status
    Apache Server Status for dev.synop.com
    Server Version: Apache/1.3.9 (Unix) PHP/3.0.12
    Server Built: Oct 25 1999 00:37:07
    3. Now it is time to test PHP with a page. The simplest thing to do is create a page called test.php3. My file is here. This file contains the
    following text:
    <?php phpinfo(); ?>
    4. Point your browser at this file on the virtual host which you used:
    http://localhost/test.php3

  • Sun sparc Solaris 10 patches for Oracle E-Business Suit 11.5.10.2 + 10g R2

    Hi Experts,
    Please note that we have SUN SOLARIS 10 64-bit Operating system Installed on our Server.
    I would like to setup the E-Business Suit 11.5.10.2 with 10gR2.
    I would like to know the patches required for the solaris 10 os to support the EBS 11i 10gr2 ?
    Kindly let me know ASAP.
    Regards
    Mohammed.

    I would like to setup the E-Business Suit 11.5.10.2 with 10gR2.
    I would like to know the patches required for the solaris 10 os to support the EBS 11i 10gr2 ?Recommendations To Install Oracle Applications 11i [ID 294932.1]
    11i Release Notes [ID 215868.1]
    Thanks,
    Hussein

  • Need Oracle 8.1.5 for Sun SPARC Solaris

    I need this version of Oracle to use a vendor package that was developed and certified on this platform. Does anyone know where I can download this from? I cannot find it anywhere in the Oracle site.

    Oracle 8i Enterprise Edition Release 8.1.5.0.0 was in the sun solaris 8 distribution.

  • Wfsdupld fails when run against 8.1.7 database on 64 bit Sun SPARC Solaris 8

    Attempting to run in the seed data.
    Platform is 64 bit Solaris v8
    Database is 8.1.7.0
    Workflow 2.6
    Everything is fine until we run the wfsdupld script. The script
    fails with
    ORA-29516 Aurora Assertion Failed: Assertion failure at
    joncomp.c:127
    jtc_active_clint_ncomp_slots (oracle/xml/parser/v2/DTD, 0)
    returned 0
    ORA-6512 at OWF_MGR.WF_EVENT_SYNCHRONIZE_PKG line 373
    Any ideas?

    I raised this as a TAR #1838186.995 and received the following
    workaround which does seem to have worked on 8.1.7.0 >>
    I have taken a look at bug 2034596 which suggests a problem with
    the 8.1.7.0 database. However, by upgrading the database to
    8.1.7.2 the error was replaced by a nullpointerexception.
    As a possible workaround it may be worth trying the following
    (on a 8.1.7.0 database):
    $ svrmgrl
    SVRMGR>connect internal
    SVRMGR>alter system flush shared_pool;
    SVRMGR>alter system flush shared_pool;
    SVRMGR>alter system flush shared_pool;
    SVRMGR>alter java class "java/io/Serializable" check;
    SVRMGR>alter system flush shared_pool;
    SVRMGR>alter system flush shared_pool;
    SVRMGR>alter system flush shared_pool;
    SVRMGR>shutdown immediate;
    SVRMGR> startup

  • Is fake utility program for sun sparc solaris 2.6 available.?

    Hai ,
    Fake is a IP address take over tool used in linux.
    "fake is a simple utility designed to enable the switching in of backup servers buy bringing up an additional interface and using arp spoofing to take over the ip address. Either additional physically or logical interfaces can be used."This is all about fake.
    I searched a lot to get fake utility for solaris 2.6.but i could't.
    Is any fake utility version for solaris .? or the same of its kinds.?
    Please help me
    Thank you
    Arun

    hai Alan,
    Let me specific on the problem.
    I developed a fail-over software for Linux servers(need 2 servers of same configuration). In this servers ,there are two modes , Active and passive mode. At a time one can be active,and other passive. Clients can communicate the with the servers through a common alias ip address. But the actual ip address of servers can be different.Normally Active server would be having the alias ip.
    When switching take place from active to passive mode,server will be assigned with its actual ip address. When switching takes place other passive server becomes active and its get common alias ip address.?
    This is the actual scenario . And fake is used in Linux to refresh the arp table of immediate switching device.
    But i came to know that solaris os would do it normally when it switches .?
    Is this possible with solaris.?

  • Permission Denied error on RAC Install Sun SPARC Solaris-NetApps

    Our RAC Installation is failing when installing in silent mode the base install of Oracle RDBMS 10.2.0.1. During the process file emtgtctl is copied from node1 to node2. On node1 the file has the following permissions:
    -rwsr-s--x (note the user group and set-id "s" is on).
    Oracle user is performing the intsall and he is a member of oinstall.
    We get the error:
    "Permission Denied" and the install fails.
    We try and do the copy manually as well and this fails also.
    Any one ever run accross something like this?

    is oinstall the primary group for that user ?

  • NAS 4.0 evaluation version installation problem on SPARC/Solaris 2.8

    Installing the NAS 4.0 that was bundled with a Sun SPARC/Solaris 2.8 throws
    the following error:
    ( Installed with quick installation after correct installation of iWS 4.0,
    from documentation Directory Server installed is not needed since NAS
    installs its own)
    In December of 1999, the Sun-Netscape Alliance announced
    i P l a n e t A p p l i c a t i o n S e r v e r 6.0
    * 100% J2EE compliant
    * reliability and high availability for non-stop service required by
    the Enterprise
    * scalability to go the distance for unplanned success
    * the best performance of any web application server
    * broadest support of tools for J2EE application development
    * high performance and complete solutions for internet enterprise
    integration
    Information and availability of this next generation application server
    can be found at
    Please enter the install location [usr/netscape/server4]:
    Please enter the FULL PATH of the Web Server Instance to be used
    for NAS:
    /usr/netscape/server4/https-sofiana03.sofiana
    Please enter the password for Netscape Directory Server Adminstrator
    and Netscape Application Server Administrator.
    The password needs to tb be at least 8 characters. [changeit]:
    Installing Netscape core components
    Installing Netscape Server Family Core Components
    Installing Netscape Directory Suite
    Installing Administration Services
    Installing Netscape Application Server Suite
    Starting the NAS install ...Installing Netscape Application Server 4.0
    Core
    Binaries
    Extracting Netscape core components ...
    Extracting Netscape Server Family Core Components ...
    Extracting Netscape Core Java classes ...
    Extracting Java Runtime Environment ...
    Extracting Netscape Directory Server ...
    Extracting Netscape Directory Server Console ...
    Extracting Netscape Administration Server ...
    Extracting Netscape Console ...
    Extracting NAS Web Connector Component ...
    Extracting NAS Core Server Component ...
    Extracting NAS Administrator Component ...
    Extracting NAS Deployment Manager ...
    Extracting Netscape Application Server 4.0 Core Binaries ...
    Fatal Slapd The required field AdminDomain is not present in the install
    info fi
    le.
    Configuring Administration Server...
    Your parameters are now entered into the Administration Server
    database, and the Administration Server will be started.
    Changing ownership to admin user root...
    Setting up Admininistration Server Instance...
    ERROR: Ldap authentication failed (151:Unknown error.)
    Proceeding with installation of Netscape Application Server (NAS)...
    Reading userinput log file ..... done
    Configuring web server plugin
    ....../usr/netscape/server4/nas/bin/nas_postinstall
    ..ksh[49]: /usr/netscape/server4/https-sofiana03.sofiana/start.1007: cannot
    creat
    e
    mv: cannot access /usr/netscape/server4/https-sofiana03.sofiana/start.1007
    /usr/netscape/server4/nas/bin/nas_postinstall.ksh[188]:
    /usr/netscape/server4/ht
    tps-sofiana03.sofiana/config/.obj.conf: cannot create
    mv: cannot access
    /usr/netscape/server4/https-sofiana03.sofiana/config/.obj.conf
    ERROR: Variable KIVAwebdocs was not defined. This command:
    /usr/netscape/server4/nas/bin/.kconfns
    /usr/netscape/server4/https-sofia
    na03.sofiana /usr/netscape/server4/nas
    did not set the DocRoot variable correctly.
    Please make sure that this file exists and is executable:
    /usr/netscape/server4/nas/bin/.kconfns
    This NAS installation might not be succesful.
    Please enter the WebServer docs directory pathname:
    ==>
    What's WebServer docs? entered usr/netscape/server4/docs didn't help.
    Thanks for the support
    Pablo

    hi,
    Make sure that your network uses DNS naming.
    This error occurs when a machine is not correctly configured to use DNS naming. The default fully qualified host and domain name presented during installation is not correct.
    To successfully install, you need to provide a fully qualified domain name that consists of a local host name along with its domain name.
    for example yoursystem is a host name and yourdomain.com is a fully qualified domain name.
    regards,
    saravanan

  • OFM 11gr1 and php 5.2.13 on a sun sparc platform

    Hello,
    I have a sun sparc 64 platform. Currently upgrading to 11g and have most things up and running.
    I need to upgrade my version of php to 5.x. Wanted to upgrade to 5.3 but apparently it is not available for my platform.
    But, php 5.2.13 for the sparc is available from the sunfree site. However, it requires mysql, openldap, and openssl and some other packages.
    Has anyone had any success installing/configuring and using this version of php inconjuction with the 11g OFM weblogic server products.
    I'm concerned that installing them will result in port conflicts.
    We have no need to install these additional packages other than they appear to be "required".
    Thanks.
    So the sysadmin has installed all of the packages. Apparently the libphp5.so is in 32bit mode. We getting the following error when we try to start the ohs:
    /disk0/Oracle/Middleware/as_tools/ohs/bin/apachectl startssl: execing httpd
    httpd.worker: Syntax error on line 247 of /disk0/Oracle/Middleware/asinst_tools/config/OHS/ohs1/httpd.conf: Cannot load /usr/local/apache2/modules/libphp5.so into server: ld.so.1: httpd.worker: fatal: /usr/local/apache2/modules/libphp5.so: wrong ELF class: ELFCLASS32
    I want to pass on the steps in the "PHP instructions for OHS" article that was on otn but it is for linux not solaris sparc.
    Does anyone have any notes on installing php on a sparc platform with 11g?
    Edited by: emmett on Jun 8, 2010 11:46 AM

    Hello,
    I have a sun sparc 64 platform. Currently upgrading to 11g and have most things up and running.
    I need to upgrade my version of php to 5.x. Wanted to upgrade to 5.3 but apparently it is not available for my platform.
    But, php 5.2.13 for the sparc is available from the sunfree site. However, it requires mysql, openldap, and openssl and some other packages.
    Has anyone had any success installing/configuring and using this version of php inconjuction with the 11g OFM weblogic server products.
    I'm concerned that installing them will result in port conflicts.
    We have no need to install these additional packages other than they appear to be "required".
    Thanks.
    So the sysadmin has installed all of the packages. Apparently the libphp5.so is in 32bit mode. We getting the following error when we try to start the ohs:
    /disk0/Oracle/Middleware/as_tools/ohs/bin/apachectl startssl: execing httpd
    httpd.worker: Syntax error on line 247 of /disk0/Oracle/Middleware/asinst_tools/config/OHS/ohs1/httpd.conf: Cannot load /usr/local/apache2/modules/libphp5.so into server: ld.so.1: httpd.worker: fatal: /usr/local/apache2/modules/libphp5.so: wrong ELF class: ELFCLASS32
    I want to pass on the steps in the "PHP instructions for OHS" article that was on otn but it is for linux not solaris sparc.
    Does anyone have any notes on installing php on a sparc platform with 11g?
    Edited by: emmett on Jun 8, 2010 11:46 AM

  • Web ADI is not certified for IE7 and Windows XP...Supportable?

    SR: 7615910.992
    TACONIC FARMS INC
    MSP Integration
    12.06
    The following error is received when trying to install MS Projects Integration:
    Error
    The following error has occurred
    Exception Name: oracle.apps.bne.exception.BneFatalException
    Cause: Microsoft VBScript runtime error: 429 - ActiveX component can't create object.
    Action: Assure is installed, and check your browser's security by navigating to the Internat Explorer Tools Menu > Internat Options...
    They follow the steps given and yet the error remains. The customer is using Windows XP and Internet Explorer 7.0. According to the certify tab, this is NOT a certified combination for Web ADI. When the customer tries this exact same thing using IE 6.0, no error is received. Does not running a cerified combination become a showstopper from development's perspective or should I continue my research?
    Thanks, Elizabeth

    Hi,
    Please refer to the following documents, and see if it helps.
    Note: 561095.1 - The Error "MICROSOFT VBSCRIPT RUNTIME ERROR: 429 - ActiveX component can't create object" Appears when "Create Document" is Used on 11i with BND.D
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=561095.1
    Note: 416321.1 - Using Web ADI with Internet Explorer 7
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=416321.1
    Regards,
    Hussein

  • Web ADI and Excel XP

    Hi,
    I am trying to create a custom integrator using HR Integrator setup. The downloaded excel sheet shows up a modal window " Processing: Create Document" and it remains in that state forever. I also dont see Oracle menu option in the menu bar. My desktop configuration is: Windows XP home & Excel XP and I have set required options in IE and Excel. I tried on another desktop with Excel 2003 and it works fine there. So did any one face any issues working with Excel XP?Any help is much appreciated.
    Thanks,
    Murari

    I am using Web ADI with Excel XP and it is working fine. Please ensure that the Security Level is set to Medium and Trusted publisher is also set to "Trust access to Visual Basic Project".
    Also, for the browser set browser security correctly i.e
    in Local Intranet -> Custom Level -> "Initialize and script ActiveX controls not marked safe" to Prompt

Maybe you are looking for