Oracle 10g Application server alongside Apache

This may be a long question due to lack of knowledge. I just started working here where an Oracle application is about to go into production so I really have no back ground in Oracle.
I am guessing Apache is needed for the Application server to run. The application the was created for Orcale listens to port 443 for https but with Apache listening on port 80 we can not have the application listen to the same port. That is, unless there is a way to pass through teh information from Apache to the Oracle App server without issues.
The other item I am looking at is creating a web page the Apache would answer to that would redirect the users to https. I do not know if the business will go for this, so my first choice is some kind of add-in to Apache to allow this. I have worked with alot of Java servers on Windows that have similar items for IIS, so I am hoping there is something similar for Apache.
Basic info
OS - Windows 2003
Oracle 10g
Sorry for my lack of knowledge. Hopefully soon I'll be up to speed.
Thanks much
Dave

Hi David,
I'm not sure whether this is the right forum for your questions seeing that we're dealing with the integration components of the Oracle Application Server here.
I'd suggest you post your question in the Application Server - General forum. You might get much better response there.
Also, here are also some helpful links to the documentation:
http://download-west.oracle.com/docs/cd/B10464_05/index.htm
http://download-west.oracle.com/docs/cd/B10468_08/index.htm
http://download-west.oracle.com/docs/cd/B10464_05/core.904/b10376/toc.htm
Hope this is helpful.
Thanks,
Markus
Markus Spohn
Principal Product Manager
OracleAS Integration
Oracle Corporation
Worldwide Headquarters
500 Oracle Parkway m/s 1op627
Redwood Shores, CA 94065
U.S.A.
e-Mail: [email protected]

Similar Messages

  • Is it possible to upgrade only apache in oracle 10g application server.

    Hi All,
    I have to upgrade only apache in oracle 10g application server with out upgrading oracle 10g as.
    Is it possibel to upgrade only apache version in oracle 10g application server. if yes.could you suggest the steps that i need to follow.
    This is very urgent.
    Thanks in advance.
    Regards,
    Sathya

    If your trying to upgrade just apache in that oracle home, then no. If your trying to upgrade to a real apache version, from apache.org, mod_oc4j won't work. You need to use Oracle's version of Apache or HTTP Server.
    Is there a reason you only want to upgrade Apache and not the whole oracle home?
    There are ways to do it, but it wouldn't be supported by Oracle and I wouldn't recommend that either.
    Edited by: user11993398 on Apr 13, 2011 3:04 PM

  • Deployment of class file in oracle 10g Application Server

    Hi,
    I have a class file
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class HelloWorld extends HttpServlet {
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException {
    res.setContentType ("text/html");
    PrintWriter out = res.getWriter();
    out.println("<HTML>");
    out.println("<HEAD><TITLE>Hello World</TITLE></HEAD>");
    out.println("<BODY>");
    out.println("<BIG>Hello World</BIG>");
    out.println("</BODY></HTML>");
    now I like to deploy(in oracle 10g Application Server) and run this file.
    please help me.

    Hi
    You have to deploy Servlet as a WAR File. I hope you already have web.xml file which u can get automatically in eclsipse during creation of servelet. I am not sure what ide u r using here. If u have created servlet in eclipse then I would suggest create a project dynamic webproject if u have not where IDE create all required files autmatiicaly and even you can deploy application from there itself.
    If you wanted to deploy manually then follow below steps (if u have war file)
    I am assuming you already created a Weblogic Domain and have admin username/password. Start your domain. Login into weblogic console like http://host:port/console and use admin username/password. Then from Deployments section, deploy the above WAR file. In Weblogic you can deploy JAR (EJBs, java files), WAR (web jsp, html, webservices, servlets) or EAR (JAR + WAR). In your case its just a WAR file.
    Thanks
    Sujit Singh

  • Urgent: problem running reports in Oracle 10g application server

    Hi all,
    our problem is that we deployed a jsp report as Ear file in Oracle 10g application server in infrastructure node.deployment says successfull.when we try to run that report it says 401 unauthorised.while sending request we are passing the database username,password &sid is this correct or any configuration setting to be done to make it run.
    one morething normal jsp works fine.when we run reports jsp it gives the above mentioned 401 error.

    hello,
    when you deploy reports JSPs they still require the reports specific componentes (e.g. TLD file, classes, ...) etc be available. i doubt that's the case in your ear file.
    thanks,
    ph.

  • Installation of Oracle 10g Application Server in custom port or 1522

    I want to install Oracle 10g Application Server in Port 1522 or some other port as in port 1521 Oracle 10g database server is already installed.
    But every time I try to install Oracle 10g Application Server it give the warning about 1521 port and then start installing on same 1521 port automatically.
    What should I do if I want to install in some other port ?
    Please help
    Thanx

    As a method, to install an OAS on a custom port,
    1) make a file called staticports.ini and define your components/ports there.
    2) on the Specify Port Configuration Options screen, select Manual and specify this file.
    Follow this link for details for 10g.
    http://download.oracle.com/docs/cd/B14099_19/win.1012/install.1012/install/reqs.htm#CHDJACIG
    However, there are ways to use the same port for OAS and DB depending upon the version of your listener. Check the version of your DB Listener, and if it is 10.1.0.2 or higher then you are just good to go with automatic port assignments.
    AMN

  • Deploying Oracle Retail Applications in Oracle 10g Application Server

    Hi All..
    Can anyone help me to know:
    How to Deploy Oracle Retail Applications(like RMS,ReIM,RIB) in Oracle 10g Application Server.
    Regards.

    Hi Ahmed,
    It sounds you have not yet had the chance to lay eyes on the installation guides - they are not perfect but should point you in the right direction.
    Please start at http://www.oracle.com/technetwork/documentation/oracle-retail-100266.html and check out the install guide per application module.
    Best regards,
    Erik

  • Auditing in oracle 10g database and oracle 10g application server

    Dear friends,
    We have oracle 10g application server and oracle 10g database server in place.My criteria is to audit users connected using oracle application user credentials to the database.
    Can you please tell me how can i do it.
    Thanks & regards,

    Its the database connection you want to track. The session audit will show where it came from.
    Auditing is turned using this command:
    alter system set audit_trail = DB scope=spfile;
    Note: The use of spfile will require a DB bounce before audit starts
    To audit Sessions:
    audit create session;
    Query by Audit Type:
    SELECT A.USERNAME,
    OS_USERNAME,
    A.TIMESTAMP,
    A.RETURNCODE,
    TERMINAL,
    USERHOST
    FROM DBA_AUDIT_SESSION A
    WHERE USERHOST = <replace with iAS servername> ;
    By User
    SELECT USERNAME,OBJ_NAME,ACTION_NAME , TIMESTAMP
    FROM DBA_AUDIT_TRAIL WHERE USERNAME = 'SCOTT';
    Check for users sharing database accounts
    select count(distinct(terminal)),username
    from dba_audit_session
    having count(distinct(terminal))>1
    group by username;
    Attempts to access the database at unusual hours
    SELECT username, terminal, action_name, returncode,
    TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS'),
    TO_CHAR (logoff_time, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') <
    TO_DATE ('08:00:00', 'HH24:MI:SS')
    OR TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') >
    TO_DATE ('19:30:00', 'HH24:MI:SS');
    Attempts to access the database with non-existent users
    SELECT username, terminal, TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE returncode <> 0
    AND NOT EXISTS (SELECT 'x'
    FROM dba_users
    WHERE dba_users.username = dba_audit_session.username);
    Other audits you might consider:
    audit grant any object privilege;
    audit alter user;
    audit create user;
    audit drop user;
    audit drop tablespace;
    audit grant any role;
    audit grant any privilege;
    audit alter system;
    audit alter session;
    audit delete on AUD$ by access;
    audit insert on AUD$ by access;
    audit update on AUD$ by access;
    audit delete table;
    audit create tablespace;
    audit alter database;
    audit create role;
    audit create table;
    audit alter any procedure;
    audit create view;
    audit drop any procedure;
    audit drop profile;
    audit alter profile;
    audit alter any table;
    audit create public database link;
    Best Regards
    mseberg

  • Setting of ICONS in Oracle 10G Application Server

    Hi...
    I'm facing a problem of Icons which are not displayed at run time.
    I'm using Oracle 10G Application Server.
    plz tell what setting should i do.
    its urgent.
    Thanks & Regards
    Sanjeev Kumar

    1 did u put the icon file in the forms folder in IAS?
    2 Are you able to access the icon if u directly enter the icon value ?
    http://www.Alexyscorp.com/myicon.gif
    if its not port 80 enter the port
    3 In the httpd.conf file whats the root directory ? Try putting the icon there
    Best Regards
    Rajesh Alex
    Message was edited by: Rajesh Alex
    Alex(AlexysCorp)

  • Apply patch 10.1.2.3 on oracle 10g application server 10.1.2.0.2

    Dear All,
    i have installed oracle 10g application server 10.1.2.0.2 with infrastructure and forms & report.
    now i downloaded the patch 10.1.2.3 to apply on it.
    I have two homes in my application 10g server (infra and forms&report).
    should first i apply apply patch on infrastructure and than on forms & report home.
    am i correct.? can you please give me procedure how to apply the patch on 10g application server 10.1.2.0.2.
    Thanks & regards,
    Sher khan

    Hi,
    can you please correct me in sequence..
    1) install oracle 10g application server including
    i) infrastructure
    2) install forms and report.
    3) apply patch 10.1.2.3 on application server
    3.1) apply patch on forms and report
    3.2) than apply patch on infrastructure..
    is it correct sequence thanks,
    Thanks & regards,
    Sher khan

  • Anybody installed Oracle 10g application server on windows 2008 (64 bit) se

    Has anybody installed Oracle 10g application server on OS : windows 2008 (64 bit) server.
    which version of OAS we should use?l. we are using dell server .
    regds
    santosh
    Edited by: user5429538 on Feb 24, 2010 2:59 AM

    Hi Santosh,
    Has anybody installed Oracle 10g application server on OS : windows 2008 (64 bit) server.I dont think any version of Oracle Application Server is certified for windows 2008 yes.
    But, u can Install Oracle Application Server 10g Release 2 (10.1.2.0.2) on windows 2003 (64 bit) server
    Please refer below links for download and to check certification:
    http://www.oracle.com/technology/software/products/ias/htdocs/101202.html
    http://www.oracle.com/technology/software/products/ias/files/as_certification_r2_101202.html
    http://www.oracle.com/technology/software/products/ias/files/oracle_soa_certification_101310.html
    Hope helps
    Regards,
    X A H E E R

  • Oracle 10g Application Server 10.1.3.0 Installation for 64 bit

    Hi,
    Can anyone let me know if there is an Oracle 10g Application Server 10.1.3.0 download available for 64 bit windows 2003 Enterprise Edition installed on Intel X64 Xeon Processor (EMT64T).
    Rgds
    Satya

    Thanks jm.
    But when i tried to check from otn downloads there is a 64 bit deployment version available for itanium processors which we are not able to install on xeon processors. Anyways i installed the 32 bit version of 10G 10.1.3 on 64 bit and its working fine. Can you find out if there is any memory consuption for the 32 bit server when installed on 64 bit windows server
    thanks once again for your promt reply

  • Oracle 10g Database Server or Oracle 10g Application Server

    Greetings and Salutations!
    I need to install APEX 3.01 for development purposes and I'm wondering if I need to do an Oracle 10g Database Server installation, an Oracle 10g Application Server installation, and then the APEX 3.01 installation, or is there another way such as an Oracle 10g Application Server installation and then the APEX 3.01 installation.
    I'm confused and I need advice.
    Thanks,
    Charles

    Apex software runs inside the database using the database's PL/SQL engine.
    Apex software is accessed via HTTP requests that may be sent to an HTTP server as included on the database 'companion CD' or in the Application Server.
    Apex installation is described in the APEX install manual at http://www.oracle.com/technology/products/database/application_express/index.html

  • Oracle 10g Application Server Stand By Creation

    Hi all ,
    I am newbe for oracle 10g application server . I need to know that how to create stand by applicattion server and how to make the report server name same as production server so that in case of emergency i can quickly shift on stand by.

    What we did was build the second server and powered it down. If our main data server loses power we start it up. The two servers are never up at the same time.
    To change the report name :
    1. Backup the file $ORACLE_HOME/sysman/emd/targets.xml.
    [oracle@tasias02 emd]$ pwd
    /u01/app/oracle/product/midtier/sysman/emd
    cp targets.xml targets.xmlbackup
    2. Modify the file targets.xml by changing all the occurrences of the wrong reports server name by the correct one.
    i.e. Replace rep_old with rep_new (4 places - changes)
    Copy the conf file as follows: ( this will named different from system to system )
    cp /u01/app/oracle/product/midtier/reports/conf/rep_old.conf /u01/app/oracle/product/midtier/reports/conf/rep_new.conf
    run this script:
    /u01/app/oracle/product/midtier/bin/addNewServerTarget.sh rep_new          (change rep_new to new report server name)
    3.Update the changed configuration .
    /u01/app/oracle/product/midtier/dcm/bin/dcmctl updateconfig -ct opmn -v -d
    /u01/app/oracle/product/midtier/dcm/bin/dcmctl resyncinstance -v -d
    4. Restart the Application Server Control Console
    /u01/app/oracle/product/midtier/bin/emctl stop iasconsole
    /u01/app/oracle/product/midtier/bin/emctl start iasconsole
    In the file:
    /u01/app/oracle/product/midtier/reports/config/reportsConfig.properties
    Change the Reports_Server_Name setting from "rep_old" to "rep_new" (change rep_new to new report server name)
    For 11 use this note :
    How to Create Two Reports Servers With the Same Name in the Same Subnet? [ID 437228.1]
    Best Regards
    mseberg

  • Oracle 10g application server installation and configuration

    Dear All,
    i am going to install oracle 10g application server including forms & report services.
    what is the latest version for oracle 10g application server so that i download and install the correct one.
    please put URL to download the software .
    Thanks & regards,
    Sher khan

    hi,
    for forms and reports purpose you can download standalone oracle forms and reports (version 10.1.2.0.2) component.
    If you want to upgrade it you can upgrade it to 10.1.2.3.0.
    find url for the same :
    http://www.oracle.com/technetwork/middleware/ias/downloads/101202-095224.html
    i'll recommend you to use oracle fusion middleware 11g forms, reports,portal and discoverer component.
    regards,
    Ajinkya

  • Oracle 10G Application Server : Getting Servlet error

    Hi,
    When I am trying to execute the JSP after deploying the same as war file in Oracle 10G Application server, I am getting the following exception.
    I am not sure why this sample jsp is not compiling and giving this classnot found exception.
    Exception is:
    SampleJSP: Servlet error
    javax.servlet.ServletException: java.lang.ClassNotFoundException: Sample_Hello
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:323)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    This is working fine with Tomcat server when I tried to test from my Netbeans IDE.
    thanks

    Hi
    I could figure out the problem. For Oracle AS, we need to include the folloiwng in web.xml file. Now every thing is working fine for me.
    <servlet>
    <servlet-name>jsp</servlet-name>
    <servlet-class>oracle.jsp.runtimev2.JspServlet</servlet-class>
    <init-param>
    <param-name>check_page_scope</param-name>
    <param-value>false</param-value>
    </init-param>
    <load-on-startup>0</load-on-startup>
    </servlet>
    Thanks

Maybe you are looking for

  • How to delete Init flag in a  process chain, before processing the init

    Hi, At the end of the week i need to re-execute the init request from ODS1 to ODS2. Therefore, i have to delete the init flag first and the requests in the CUBE1, everything automatically in the process chain. The schedule must be as follow : 1. Dele

  • What are the downsides to extending an Airport Express's network with Airport Extreme?

    Or are there downsides at all, assuming latest generation Airports? I think it happens more often than not that the position of the modem from your ISP in the dwelling is not the ideal location for a router, and it is sometimes inconvenient/impossibl

  • Help with starting raid on the k9a2 platnium

    ok well i just got a k9a2 platnium specs- amd 9950 BE edition 4gb of 800mhz ddr2 cas 3 2x 80 gb hard drives 1x 640gb hard drive ati hd 4870 k9a2 platnium 750 watt corsair psu ok. i finished my computer. and i wanted to raid the two 80's. but for some

  • TDS Certificate Address

    Dear All, My requirement is to maintain to two seperate address for vendor. One is to deliver cheques and other to send TDS certificates (Registered address). As we are already using Vendor master-Address tab details for payments, we need new fields

  • Is it safe to change a media asset file outside of Premiere?

    Suppose I have a timeline containing a foo.wav file.  I edit that file and save it with the same name.  When Premiere loads that project will it just work, or do I need to go clear out caches or save it with such provisions ahead of time, or anything