AIX 4.3.2, apache, oracle 8.1.5.  Will it work?

Hi,
Within the next couple days we will decide what app server to put on our
IBM RS/6000 hardware in a multi-node configuration. It will likely be
WebLogic or WebSphere. I'm confident that apache, oracle 8.1.5, and
websphere 3.0.2 will work.
Would weblogic 4.5.1 work as well?
I downloaded the NT demo and was impressed. I also like the BEA web
site and the fact that there is a lot of documentation on WebLogic
(Including newsgroups. IBM doesn't have that).
The documentation I found only said Oracle 7.3 is tested. The Apache
plug-in for AIX wasn't mentioned either.)
The features of weblogic and websphere see very similar. Both support
EJB 1.0. Any idea when EJB 1.1 will be supported in WL?
WS seems to have more support for XML. Am I missing something with
BEA's product with regard to XML support? It would be nice to create
XML/XSL documents and process them to output HTML for either palm
devices or PC Browsers.
BEA's t3 protocol is interesting in the fact that it looks really easy
to create non-web client apps that access the web server.
I realize I'll be running with IBM's JDK 1.1.8. I suppose this means I
can't use a JDBC 2.0 compliant driver? Standardized connection pooling
and BLOBs are the only thing of real interest. Not a huge issue if it
JDBC 2.0 isn't supported.
Two final things from my brain dump are personalization and
multi-language support. WS supports multi-language. Does WL?
As for personalization, WS has a commerce package that includes
personalization, but it is in C++. WL has a personalization engine
that is part of the commerce server. The documentation I found says the
commerce server only runs on NT and Solaris 2.6. Will it run on AIX
4.3?
Anything I should be concerned about? If WL doesn't run on AIX 4.3
with Oracle 8.1.5, and Apache, WS will be the choice.
If you reply to this post, please e-mail me as well.
Thanks in advance,
-Allen Laack
Senior Software Engineer
GUILD.com
[email protected]

Please see below.
Michael Girdley
WLS Product Manager
al <[email protected]> wrote in message news:[email protected]...
Hi,
Within the next couple days we will decide what app server to put on our
IBM RS/6000 hardware in a multi-node configuration. It will likely be
WebLogic or WebSphere. I'm confident that apache, oracle 8.1.5, and
websphere 3.0.2 will work.
Would weblogic 4.5.1 work as well?
Yes, Weblogic will work on that platform.
I downloaded the NT demo and was impressed. I also like the BEA web
site and the fact that there is a lot of documentation on WebLogic
(Including newsgroups. IBM doesn't have that).
Terrific!
The documentation I found only said Oracle 7.3 is tested. The Apache
plug-in for AIX wasn't mentioned either.)
There is not an AIX plug-in for Apache yet. We plan on building one as our
porting effort continues.
We support later versions of Oracle in 5.1. Or, you can use the type 4
driver from Oracle against it. That driver is free.
The features of weblogic and websphere see very similar. Both support
EJB 1.0. Any idea when EJB 1.1 will be supported in WL?
Yes! Weblogic Server 5.1 supports EJB 1.1.
WS seems to have more support for XML. Am I missing something with
BEA's product with regard to XML support? It would be nice to create
XML/XSL documents and process them to output HTML for either palm
devices or PC Browsers.
Currently, we do not have an XSL processor built into Weblogic. But, it
should be the relatively easy to build in one. Also, you should check out
the XML functionality in version 5.1.
BEA's t3 protocol is interesting in the fact that it looks really easy
to create non-web client apps that access the web server.
I realize I'll be running with IBM's JDK 1.1.8. I suppose this means I
can't use a JDBC 2.0 compliant driver? Standardized connection pooling
and BLOBs are the only thing of real interest. Not a huge issue if it
JDBC 2.0 isn't supported.
Two final things from my brain dump are personalization and
multi-language support. WS supports multi-language. Does WL?
Yes.
As for personalization, WS has a commerce package that includes
personalization, but it is in C++. WL has a personalization engine
that is part of the commerce server. The documentation I found says the
commerce server only runs on NT and Solaris 2.6. Will it run on AIX
4.3?I believe they are targeting that platform. I'm not the product manager for
the product, so I would recommend speaking with either someone on the
commerce newsgroup or contacting your account manager.
>
Anything I should be concerned about? If WL doesn't run on AIX 4.3
with Oracle 8.1.5, and Apache, WS will be the choice.
You should be right on. No problem.
Michael

Similar Messages

  • Version of Apache Oracle 9.0.3

    How do I tell which version of Apache oracle 9.0.3 app server is. Configuration seems to change if between apache 1.3 and apache 2.0, and I need to be sure I am reading the right documentation.

    If your running on a Unix box you can execute the following from Apache/bin to find out : httpd -v

  • Apache Sling JCR Resource Resolver doesn't work for the anchor tags which is been rendered through j

    Certainly I realized that Apache Sling JCR Resource Resolver doesn't work for the anchor tags which is been rendered through jquery or javascript.
    e.g.
    In Felix Console , in Apache Sling JCR Resource Resolver configuration I have added following mapping.
    /content/myproject/-/
    So If any anchor tag is there like <a href="/content/myproject/en.html"> click me </a> then it will be mapped to "/en.html" automatically.
    But the problem is there in following scenario.
    I have an anchor tag as follows.
    <a href="#" id="test"> click here </a>
    And I am assigning the href to anchor through JQUERY.
    <script>
    $("#test").attr("href","/content/myproject/en.html");
    </script>
    Ideally this should have been mapped to "/en.html".
    But it is not mapping to "/en.html". It still shows "/content/myproject/en.html".
    How to resolve this.
    Thanks,
    Sai

    In a servlet you have access to the resourceResolver so if you know which attributes contain links then it's relatively easy to apply resourceResolver.map to those links.
    Your challenge is clearly how do you know which attributes are links and which aren't. Its is the same challenge that makes parsing the response and rewriting it on the way out difficult - the JSON doesn't have any semantic meaning so how do identify which attributes require rewriting. There really is no good answer ot that question in my experience - all the options have down sides.
    Create some convention - all attributes matching this pattern X get mapped before being converted to JSON (could be attributes whose name ends in link, or it could a convention applied to the value of the attribute - if the attribute is a string that starts with /content apply the resource resolver mapping. In this case you have train your developers to follow this convention which is the down side.
    Create some configurable list of attribute names that require mapping. This is brittle, requires training and is easy to break.
    Implement a client side version of the resource resolver mapping. It wouldn't be as full proof as server side mapping (because that takes into account but you could make it work for simple logic like stripping of /content/site/en. If ou are just trying to solve the simple version of this issue - stripping off the top of the repository path this might be your best option.
    Not worry about it and set up Apache 301 redirects that catch any long URLs and redirect them to short URLs (so configure apache to look for any URL matching /content/site/en and strip off /content/site/en and do a 301 redirect to the shortened URL. You end up with a lot of extra HTTP request because of all the 301s but it would work (I wouldn't recommend this option - but it is possible).

  • ODBC Drivers for Oracle 8.1.6 Doesn't work on Windows ME

    Hello. I am in the need of running some aplications (ArcView, in fact) that needs connection to an Oracle 8.1.6 installed on a sun ultra machine. My client machine runs that awful Windows ME.
    The matter is that i've tried installing the Oracle 8i Client, the Oracle 8i Enterprise Manager, and even the Oracle Enterprise Manager Cache (that had worked to me earlier over Win98).
    All of that clients use the Oracle Universal Installer (Java-Based) and when is time for choose the oracle_home for installation that doesn't appear, just the box ready for enter the destination path. I did that, the installer reads the package list and then there are en error message: "There was a problem in the staging area. Please check the source an destination paths are correct". And, of course, that paths are good. Trying to install just the odbc driver (downloaded), causes the same. Anyway the driver needs the net client.
    I've tried installing Oracle 8 client (8.0.4), but the drivers doesn't work at all.
    the microsoft ODBC driver is just for 7.3 versions of Oracle, and is too out of date for my purposes.
    Any help will be appreciated. Thanks in advance.

    Last I heard, the Oracle client wasn't certified on Windows ME. There are folks who have posted to the Oracle newsgroups with registry hacks to work around the problem if you're interested in going down that path.
    Justin

  • Oracle forms 6i designer has stopeed working when opening canvas?

    forms 6i
    Hi to all,
    i have facing one problem when opening form canvas.i get the error message like this "oracle forms 6i designer has stopeed working".
    any one help please
    Regards,
    Stevie

    Hi
    no os no db version not enough information ..!
    Pls try to send adequate information Pls& look at the following thread this might help
    connecting form 6i  to oracle database 10G express edition
    Amatu Allah

  • Oracle BI Administration tool has stopped working

    Just now finished the 11g installation.But im not able to open BI Administrator.Im getting this error.Please help.
    "Oracle BI Administration tool has stopped working
    A problem caused the program to stop working correctly.Please close the program"

    I followed the below steps(taken from this forum) for installing OBIEE11g 64 bit version in a 64 bit machine.Installation completed successfully.But not able to open BI Administration tool.Any suggestions???
    There is not a particular 64bit installation. I think it works like this: if you are using a 64bit JDK the apps server is also running 64 bit.
    You can find the generic jar here: http://www.oracle.com/technetwork/middleware/ias/downloads/wls-main-097127.html and take the generic one (http://download.oracle.com/otn/nt/middleware/11g/wls1033_generic.jar)
    You install this by a command like this (you have to look up the documentation): java -XXm.... .... wls1033_generic.jar
    Then a installer pops up.
    So these were my steps:
    - installed RCU
    - installed 64 bits JDK (jdk-6u21-windows-x64.exe)
    - installed Weblogic (wls1033_generic.jar)
    - installed OBI as "software only"
    - configured OBIi (config.bat you can find in <obi11g home>\Oracle_BI1\bin)
    All together it does not take much longer then the 32bit install. Only some extra steps to do.
    ---------------------------------------------------------------------------------------------------------------------------------------------------------------

  • Does oracle jdbc driver 9.0.1 work with sdk 1.4?

    Hi All Experts...
    Does oracle jdbc driver 9.0.1 work with sdk 1.4.1? Ever since i have moved to 1.4 i am having problems. I keep getting the No Suitable Driver error or NoClassDefFoundError. I have everything in the classpath and i have also tried command line but to no avail. The JVM just refuses to pick up the classes12.zip file from the classpath.
    The oracle site mentions that the 9.0.1 driver is for jdk 1.2 & 1.3 but it does NOT mention that it is NOT for 1.4.1. The site very explicitly mentions that the 9.2 driver is for 1.4.1. SO i am a little confused.This question may be stupid, but nevertheless,If i have to upgrade my driver from 9.0.1 to 9.2 then does that mean that i have to upgrade my DB as well?
    Experts..please help.. THanks

    Thanks a lot, as usual, MOD.
    Now only if i can get my JVM to pick up the classes12.zip file from the classpath. I dont know if you read my previous posting today.

  • Oracle Streams Update conflict handler not working

    Hello,
    I've been working on the Oracle streams and this time we've to come up with Update conflict handler.
    We are using Oracle 11g on Solaris10 env.
    So far, we have implemented bi-directional Oracle Streams Replication and it is working fine.
    Now, when i try to implement Update conflict handler - it executed successfully but it is not fulfilling the desired functionality.
    Here are the steps i performed:
    Steap -1:
    create table test73 (first_name varchar2(20),last_name varchar2(20), salary number(7));
    ALTER TABLE jas23.test73 ADD (time TIMESTAMP WITH TIME ZONE);
    insert into jas23.test73 values ('gugg','qwer',2000,SYSTIMESTAMP);
    insert into jas23.test73 values ('papa','sdds',2050,SYSTIMESTAMP);
    insert into jas23.test73 values ('jaja','xzxc',2075,SYSTIMESTAMP);
    insert into jas23.test73 values ('kaka','cvdxx',2095,SYSTIMESTAMP);
    insert into jas23.test73 values ('mama','rfgy',1900,SYSTIMESTAMP);
    insert into jas23.test73 values ('tata','jaja',1950,SYSTIMESTAMP);
    commit;
    Step-2:
    conn to strmadmin/strmadmin to server1:
    SQL> ALTER TABLE jas23.test73 ADD SUPPLEMENTAL LOG DATA (ALL) COLUMNS;
    Step-3
    SQL>
    DECLARE
    cols DBMS_UTILITY.NAME_ARRAY;
    BEGIN
    cols(1) := 'first_name';
    cols(2) := 'last_name';
    cols(3) := 'salary';
    cols(4) := 'time';
    DBMS_APPLY_ADM.SET_UPDATE_CONFLICT_HANDLER(
    object_name => 'jas23.test73',
    method_name => 'MAXIMUM',
    resolution_column => 'time',
    column_list => cols);
    END;
    Step-4
    conn to strmadmin/strmadmin to server2
    SQL>
    DECLARE
    cols DBMS_UTILITY.NAME_ARRAY;
    BEGIN
    cols(1) := 'first_name';
    cols(2) := 'last_name';
    cols(3) := 'salary';
    cols(4) := 'time';
    DBMS_APPLY_ADM.SET_UPDATE_CONFLICT_HANDLER(
    object_name => 'jas23.test73',
    method_name => 'MAXIMUM',
    resolution_column => 'time',
    column_list => cols);
    END;
    Step-5
    And now, if i try to update the value of salary, then it is not getting handled by update conflict handler.
    update jas23.test73 set salary = 1500,time=SYSTIMESTAMP where first_name='papa'; --server1
    update jas23.test73 set salary = 2500,time=SYSTIMESTAMP where first_name='papa'; --server2
    commit; --server1
    commit; --server2
    Note: Both the servers are into different timezone (i hope it wont be any problem)
    Now, after performing all these steps - the data is not same at both sites.
    Error(DBA_APPLY_ERROR) -
    ORA-26787: The row with key ("FIRST_NAME", "LAST_NAME", "SALARY", "TIME") = (papa, sdds, 2000, 23-DEC-10 05.46.18.994233000 PM +00:00) does not exist in ta
    ble JAS23.TEST73
    ORA-01403: no data found
    Please help.
    Thanks.
    Edited by: gags on Dec 23, 2010 12:30 PM

    Hi,
    When i tried to do it on Server-2:
    SQL> ALTER TABLE jas23.test73 ADD SUPPLEMENTAL LOG DATA (ALL) COLUMNS;
    it throws me an error,
    Error -
    ERROR at line 1:
    ORA-32588: supplemental logging attribute all column exists

  • Which version of oracle will be working in Windows 7

    Please suggest me that Which version of oracle will be working in Windows 7.
    Please provide me the link to download of that version.

    Oracle 10g works property on Windows 7. You just need to download Oracle 10g Release 2 for Windows Vista and install it on Windows 7 using "Windows Vista SP 2 Compatibility Mode" and "As Administrator".
    answered by Wendell
    note:-but it is not certified by oracle.
    source:-Re: ORACLE 10g on Windows 7 x86 & x64

  • Oracle Stock Falls and Downloads Stop Working

    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name
    - Filename
    - Date/Time
    - Browser + Version
    - O/S + Version
    - Error Msg
    Well, let's just skip the BS. Oracle's 9i downloads aren't working, and I'm not going to pay ANYONE to help me download a friggin file. I'm trying to HELP your company, so get you act together and get these files to download without any more problems.
    Regards,
    Mark

    I downloaded Oracle 9i v9.0.1.1 for Windows 2000 and all 3 zip files downloaded successfully with the correct size for each one. Then I followed the directions to unzip each into its own DiskX directory and that worked fine. However, when you try to run the setup.exe file from Disc 1 it does absolutely nothing. An hourglass comes up for a few seconds but nothing happens. No process is running and nothing else works. I even tried using the autorun.exe and a similar thing happens. My system meets all the minimum requirements for 9i so I think there is either something missing in the directions or it just doesn't work.

  • System core dumped "signal 4" post upgrade AIX 5.3 and upd oracle 9.2.0.8

    I have a problem in SAP R3 4.7 ext 1.10 , aix 5.3 oracle 9.2.0.8.
    only on application servers
    My dump is
    Errore run-time        SYSTEM_CORE_DUMPED                                                                               
    Verific. il     21.01.2008 h  08:32:49                                                                               
    Process terminated by signal 4.                                                                               
    Causa dell'errore                                                                               
    The current ABAP program had to be terminated because the                                                                               
    ABAP processor detected an internal system error.                                                                               
    The current ABAP program "ZGESTIONE_ARTICOLI" had to be terminated because the                                                                 
    ABAP                                                                               
    processor discovered an invalid system state.                                                                               
    Possibili soluzioni                                                                               
    Make a note of the actions and input which caused the error.                                                                               
    To resolve the problem, contact your SAP system administrator.                                                                               
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer                                                                       
    termination messages, especially those beyond their normal deletion                                                                            
    date.                                                                               
    Analisi errori                                                                               
    An SAP System process was terminated by an operating system signal.                                                                            
    Possible reasons for this are:                                                                               
    1. Internal SAP System error.                                                                               
    2. Process was terminated externally (by the system administrator).                                                                               
    Last error logged in SAP kernel                                                                               
    Component............ "Taskhandler"                                                                               
    Place................ "SAP-Server assapof_PRD_10 on host assapof (wp 15)"                                                                          
    Version.............. 1                                                                               
    Error code........... 11                                                                               
    Error text........... "ThSigHandler: signal"                                                                               
    Description.......... " "                                                                               
    System call.......... " "                                                                               
    Module............... "thxxhead.c"                                                                               
    Line................. 9806                                                                               
    Indic. per la correzione                                                                               
    The SAP System work directory (e.g. /usr/sap/c11/D00/work ) often                                                                               
    contains a file called 'core'.                                                                               
    ave this file under another name.                                                                               
    f you cannot solve the problem yourself, please send the                                                                         
    ollowing documents to SAP:                                                                               
    . A hard copy print describing the problem.                                                                               
    To obtain this, select the "Print" function on the current screen.                                                                               
    . A suitable hardcopy prinout of the system log.                                                                               
    To obtain this, call the system log with Transaction SM21                                                                      
      and select the "Print" function to print out the relevant                                                                      
      part.                                                                               
    . If the programs are your own programs or modified SAP programs,                                                                
      supply the source code.                                                                               
    To do this, you can either use the "PRINT" command in the editor or                                                            
      print the programs using the report RSINCL00.                                                                               
    . Details regarding the conditions under which the error occurred                                                                
      or which actions and input led to the error.                                                                               
    mbiente sistema                                                                               
    AP Release.............. "620"                                                                               
    pplication server....... "assapof"                                                                               
    etwork address.......... "10.58.19.21"                                                                               
    perating system......... "AIX"                                                                               
    elease.................. "5.3"                                                                               
    ardware type............ "00CB584E4C00"                                                                               
    haracter length......... 8 Bits                                                                               
    ointer length........... 64 Bits                                                                               
    ork process number...... 15                                                                               
    hort dump setting....... "full"                                                                               
    atabase server.......... "ars005sapdb"                                                                               
    atabase type............ "ORACLE"                                                                               
    atabase name............ "PRD"                                                                               
    atabase owner........... "SAPR3"                                                                               
    haracter set............ "it_IT.ISO8859-1"                                                                               
    AP kernel............... "640"                                                                               
    reated on............... "Aug 16 2007 21:01:48"                                                                      
    reated in............... "AIX 1 5 00538A4A4C00"                                                                      
    atabase version......... "OCI_920 "                                                                               
    atch level.............. "196"                                                                               
    atch text............... " "                                                                               
    upported environment....                                                                               
    atabase................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE                                                
    10.2.0.."                                                                               
    AP database version..... "640"                                                                               
    perating system......... "AIX 1 5, AIX 2 5, AIX 3 5"                                                                               
    Utente, transazione.....                                                                               
    Client.............. 300                                                                               
    User................ "WNO1582198"                                                                               
    Language key........ "I"                                                                               
    Transaction......... "ZPOA_ANAG "                                                                               
    Program............. "ZGESTIONE_ARTICOLI"                                                                               
    Screen.............. "ZGESTIONE_ARTICOLI 0101"                                                                               
    Screen line......... 2                                                                               
    Informazioni punto di interr.                                                                               
    The termination occurred in the ABAP program "ZGESTIONE_ARTICOLI" in                                                                 
    "INIT_101".                                                                               
    The main program was "ZGESTIONE_ARTICOLI ".                                                                               
    The termination occurred in line 20 of the source code of the (Include)                                                              
    program "ZGESTIONE_ARTICOLI_INIT_101O01"                                                                               
    of the source code of program "ZGESTIONE_ARTICOLI_INIT_101O01" (when calling                                                         
    the editor 200).                                                                               
    Dettaglio cd. sorgente                                                                               
    000010   *                                                                      *                                                    
    000020   ***INCLUDE ZGESTIONE_ARTICOLI_INIT_101O01 .                                                                               
    000030   *                                                                      *                                                    
    000040   *&                                                                     *                                                    
    000050   *&      Module  INIT_101  OUTPUT                                                                               
    000060   *&                                                                     *                                                     
    000070   *       text                                                                               
    000080   *                                                                      *                                                     
    000090   MODULE init_101 OUTPUT.                                                                               
    000100                                                                               
    000110     IF s_zmarc_poa IS INITIAL.                                                                               
    000120       GET PARAMETER  ID 'WRK' FIELD zmarc_poa-werks.                                                                           
    000130       GET PARAMETER  ID 'MAT' FIELD zmarc_poa-matnr.                                                                           
    000140                                                                               
    000150       CONCATENATE sy-mandt zmarc_poa-matnr                                                                               
    000160                            zmarc_poa-werks                                                                               
    000170       INTO garg SEPARATED BY space.                                                                               
    000180                                                                               
    000190       CLEAR s_zmarc_poa.                                                                               
    >       SELECT SINGLE * FROM zmarc_poa                                                                               
    000210        WHERE matnr EQ zmarc_poa-matnr                                                                               
    000220          AND werks EQ zmarc_poa-werks.                                                                               
    000230                                                                               
    000240       IF sy-subrc EQ 0.                                                                               
    000250         s_zmarc_poa = zmarc_poa.                                                                               
    000260       ELSE.                                                                               
    000270   *     errore                                                                               
    000280         SET SCREEN 0.                                                                               
    000290       ENDIF.                                                                               
    000300     ENDIF.                                                                               
    000310                                                                               
    000320     SELECT SINGLE * FROM MARA                                                                               
    000330       WHERE MATNR = s_zmarc_poa-matnr.                                                                               
    000340                                                                               
    000350     PERFORM get_giacenza USING s_zmarc_poa-werks                                                                               
    000360                                s_zmarc_poa-matnr                                                                               
    000370                                mara-meins                                                                               
    000380                          CHANGING giacenza_old.                                                                               
    please, help me

    Thanks everyone for the response and help.
    I completed the task yesterday with the permission method. However, I think I found the solution after completion. The trick lies at the oraInst.loc file. It lies at /etc directory for my case (AIX 5.3).
    If you do a opatch lsinventory, it shows you the Central Inventory location and the location of orainst.loc. For my case, it is pointing to /oracle/DE1/920_64/inventory. Therefore, even though I am logging in as oraqa1 with all env and oracle settings correct, it still points to DE1 inventory.
    I think modifying the Central inventory location in oraInst.loc will solve this problem.

  • How to install Soap on the (Apache) Oracle HTTP Server

    Hi,
    Does anyone know how to install SOAP on the Oracle HTTP Server? I downloaded a soap version (it seems that the standard version comes without SOAP) from the xml.apache.org site and followed the installation instructions as far as I could (only Tomcat is described). However, no 'soaping'!!! Maybe I'm overlooking something because I cannot imagine that it should be difficult.
    Thanks in advance!
    Hans

    Hans, the SOAP implementation is part of OC4J. You get it out of the box. Check out how to use the out-of-the-box implementation in the tutorials on Web services with Oracle9i JDeveloper at:
    http://otn.oracle.com/tech/webservices/htdocs/series/content.html
    These tutorials/samples use the implementation of SOAP/WSDL that Oracle calls J2EE Web Services and this is the long term direction of Oracle's Web services implementation. This implementation is what Oracle will be evolving to Sun's Java Web Services Developer Pack as it finalizes into J2EE 1.4.
    If you want to use Oracle/Apache SOAP, this too is included in OC4J but its support is being deprecated in future releases of Oracle9iAS in favour of the J2EE Web Services implementation. To find it, check out the OC4J/soap/webapps/ directory for the soap.ear file (it is in a slightly different spot if you are using the full Oracle9iAS R2 but still within the soap directory structure. Simply add <application name="soap" path="../../../soap/webapps/soap.ear" auto-start="true"/> to your OC4J server.xml and <web-app application="soap" name="soap" root="/soap" /> to your OC4J http-web-site.xml, re-start and away you go.
    Finally, just to be sure, SOAP support in Oracle9iAS did not appear until 1.0.2.2.x and higher. If using 1.0.2.1 or less, you are correct, there is no SOAP support.
    Mike.
    Most folks that try out the J2EE Web Services find it is pretty easy to use so

  • AIX OS patch intsalltion on Oracle 10G RAC

    My AIX admin is going to install AIX OS ptach on oracle 10g RAC ( with ASM) ( for AIX bug fixiting)
    It is two node cluster.
    I would like to know what are the steps DBA to consider before applying the OS patch
    Please post any link or dcoument
    In single database instance , I know the steps
    1. backup the database
    2. shutdowm database and listener
    3. shutdown ASM
    apply oS patch
    after OS patch
    start ASM
    start database and listener
    Edited by: user8680248 on 5/09/2010 19:06

    Perhaps this link could be interesting:
    http://download.oracle.com/docs/cd/B19306_01/em.102/b16227/toc.htm
    In particular:
    http://download.oracle.com/docs/cd/B19306_01/em.102/b16227/oui8_opatch.htm#CEGHIJGI

  • PHP + APACHE + Oracle 9i

    Hi everybody, i am in troubles with PHP5 and the library php_oci.dll.
    An error message about OCILobClose appear during apache is starting.
    Sorry, but english is too bad. imnot american. well, i hope sugestions about this.
    thanks,

    Thanks, i verify the extension_dir and php_oci8.dll in the correct path, but the error message says: Warning
    Unknown( ): Unable to load dynamic library 'C:\AppServ\php\extensions\php_oci8.dll - can't found specified module.
    Then,
    "The procedure entry point OCILobClose could not be located in the dynamic link library OCI.dll"
    How can i set or modify the eviroment variables? I can lod php_oracle.dll but i cant use ora_logon() in the oracle server. What services are required? But i can connect with ora_logon() in the client machine.
    Thanks

  • Oracle 9i Client AIX only, tnsnames connection to Oracle 8i HP/UX Server

    I am having problems with the TNSNAMES connection when trying to execute SQLPlus. Are there any known gotchas on setting up the TNSNAMES.ORA, SQLNET.ORA, and LISTENER.ORA files?

    Yes, you have to get it right ;)
    What kind of problems? (steps taken, error codes/messages, etc.)
    Does your tnsnames.ora on the AIX side seem to match what the listener on HP/ux listens for?

Maybe you are looking for

  • ATP check on Sales order items not due for delivery?

    All, In our Sales order, we have a number of dummy material lines. Now, when I use the normal sales order ATP check button, SAP does nothing. However, we have a custom program that does an ATP check, and it returns a zero qty. My question is, how do

  • How do you maintain multiple device music lists from 1 computer?

    How do you maintain different music lists on separate devices to be synched from one computer? Is it best to establish multiple ID's?

  • Auto Logout

    Hi Expert! I have been set the rdisp/gui_auto_logout for the 20 minutes to kill the idle sessions, rdisp/keepalive already set to 20 minutes. My users are complaining that when they are doing the foreground / background processing, users sessions are

  • Transparency and colour question

    Hello - I would like to mix colour in Flash using transparency to create something like this (no interactivity required): If I create Cyan, Magenta and Yellow movie clips and change the Alpha transparency, obviously the whole colour becomes lighter (

  • Bluetooth "unknown" hardware address showing up as Network Sharing address

    On a brand new out-of-the-box iMac (27-inch, Mid 2011) OS 10.7.3, the Bluetooth "unknownxxxxxxxxxxxx" hardware address showing up in Network Sharing preferences as shared name under File Sharing, Remote Login and Remote Management. the first portion