I need a web server, what software do i need to dowload?

I need to install arcIMS 4.0.1 (GIS) in win2000.
This software requires a web server.
I am confuse, there are lot OAS products.
Could you please tell me what do I need to install?
I requieres:
web server (could be oracle Application server using apache web server)
servlet engine
java 2 platform standard edition java runtime environment.
I think I need Oracle9iAS Enterprise Edition (9.0.3 and 9.0.2.x), because this has the oracle http server and the servlet. Am I correct?
Thanks for your help,

Yemi,
I'm pleased that someone benefitted from my experience.
You askes about forms server and forms 6i. This is what I found. You will need forms_server on the middle tier machine, and Oracle recomend that you install Forms 6i as well - they say that you should really complie your forms on the middle tier machine, rather than just copy the .fmx files over. I personally have both Forms 6i and forms_server installed, and this is working fine. However, when I tried to install reports_server this caused the forms_server to stop working. This is because they both use certain files that get overwritten by the second product that you install (eg. if you install forms_server first and then reports_server, then reports will work, but form won't; and vice versa). I raised this issue with Oracle Support, but they couldn't come up with an answer, and I've seen other people write about this problem on this board. Luckily we decided not to use Report 6i at all, so it wasn't an issue for me, but if you want to have forms_server and reports_server on the same machine you may have problems. Sorry I don't know what the solution is. But to repeat, please do NOT install OAS at all. It's totally un-necessary.
Harry
null

Similar Messages

  • What software do i need to open downloads, what software do i need to open downloads

    what software do i need to open downloads, what software do i need to open downloads

    For most Mac programs you download in the .dmg format just double clicking them will open them. For .zip files you can use a tool like Stuffit Expander. There are other tools listed here. Hope this helps. P.S. for .Pdf files just right click on the file open with Preview. Most text files can be opened with Text Edit, again right click open with....Text Edit. And as Kenneth is saying if you open a text file and you see code, the file wasn't meant to be opened, if you need to edit that file with a program like Text Wrangler, or SubEthaEdit.
    Regards,
    Joseph

  • What software do I need to install on my I Mac OS X  Lion so it will read downloaded PES files?

    I have a new Brother DreamWeaver sewing machine which I need to download designs on my computer to use on the sewing machine.  I have an IMac OS X Lion and it cannot read the downloads.  What I need to know is what software do I need to install to enable my computer to read these downloads?

    Does the Mac meet the hardware requirements for Lion
    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    2GB of memory
    OS X v10.6.6 or later (v10.6.8 recommended)
    7GB of available space
    If everything works perfectly then your data should be safe. I don't know about you but I am never going to trust my data to everything working perfectly so I always backup first.
    The next step is to buy a Snow Leopard DVD and install it
    Once you have upgraded to 10.6.8 so that you have the App Store for Lion then you can purchase and install Lion.
    Allan

  • What Software do I need???

    Hi folks,
    I'm new to BO so to start from scratch I'm trying to figure out what desktop Software I have to put on my workstation to unleash the full power of BO, work with our BO server and get the SAP Best Practice for BI up and running. I downloaded the following stuff from service.sap.com:
    - Xcelsius 2008
    - Crystal Reports 2008
    - BO XI 3.1 Edge
    I kind figured these would be the most recent releases.
    I first installed Xcelsius, then Crystal Reports. When installing BO XI 3.1 it gave me an error that it can't be installed with Crystal Reports already there. So I uninstalled Crystal Reports 2008 and installed BO XI 3.1 . The SAP Best Practice BI scenario comes with a lot of .rpt files which are Crystal Report Project files as of my knowledge. But I can't install Crystal Reports anymore. I guess because of BO XI 3.1
    So I wonder what software I actually need. I haven't found any source that clearly states what applications to install for what reason and in what version. It would be really great if someone could bring some light into this!

    Hi Robert,
    You can install a Virtual station software like VMWare and stuff like that.
    After installing VMWare please allocate some space for this and then install the OS with that then you can install the Crystal reports.
    Where you can use the Crystal reports and BO at the same machine.
    Hope this helps...
    Regards,
    Ravi Kanth

  • What software do I need to purchase/subscribe?

    I'm planning to do the $143.88 subscription for PLUS on FormsCentral.  I will be creating probably no more than 15 forms per year.  I will need to create forms, maintain them, do reports and gather data on membership information, registration of events/conferences and simple surveys.  What software do I need to purchasein addition to my yearly subscription on FormsCentral? Adobe Acrobat X? Adobe FormsCentral?  I'm not getting a clear picture on what is necessary as I read through the site.  I may need to have access to maintain the forms on both my laptop and my desktop.
    Thanks,
    Mike
    [email protected]

    Hi Mike;
    You don't need anything in addition to the subscription to FormsCentral.  If you want to distribute your forms as PDF as well as (or instead of) on the web you might want Adobe Acrobat XI so you can further edit the PDFs, but that is not necessary and is really up to your needs.
    If you were to consider Acrobat you should look at this subscription "Acrobat Plus" which gives you Adobe Acrobat XI on a subscription basis plus some great online services including FormsCentral: https://www.acrobat.com/acrobatplus/en/home.html
    When you use FormsCentral in a web browser you can access it from any computer or laptop and have access to all the same data, one of the great things about a SAAS (software as a service).  The one exception to that is in the Acrobat Plus subscription you get the desktop application of Acrobat to install which would only work on two computers, the included services would be available from any computer.
    Thanks,
    Josh

  • Do i need a web server for using JDBC?

    I read every article about jdbc but i cannot get it working. It looks like everything is good with the program. So the problem is in required components.
    Do i need a web server to get it woking? Or it is enough to have Eclipse, jdbc driver in classpath?
    Tell me about how that url is working.
    For example i have url with localhost. Who is handling that adress? Database? Can you explain what component answers for access to my database through this url parameter. THnx in advance)

    I am using PostgreSQL
    import java.sql.*;
    public class JDBCTest {
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
               String url = "jdbc:posgresql://localhost:5432/postgres";
                   Connection con;
                   Statement stmt;
                   try {
                        Class.forName("org.postgresql.Driver");
                   } catch(java.lang.ClassNotFoundException e) {
                        System.err.print("ClassNotFoundException: ");
                        System.err.println(e.getMessage());
                   try {
                        con = DriverManager.getConnection(url,
                                                      "postgres", "1111");
                        stmt = con.createStatement();
                        con.setAutoCommit(false);
                        /*String insertStore1 = "INSERT INTO test1 VALUES (" +
                          "newval,1);";
                        stmt.addBatch(insertStore1)
                        int [] updateCounts = stmt.executeBatch(); */
                     ResultSet rs = stmt.executeQuery("SELECT * FROM test1");
                        System.out.println("Table test1:");
                        while (rs.next()) {
                             int storeNo = rs.getInt("second_column");
                             String first_column = rs.getString("first_column");          
                             System.out.println(storeNo);
                             System.out.println(first_column);
                        rs.close();
                        stmt.close();
                        con.close();
                   } catch(BatchUpdateException b) {
                        System.err.println("-----BatchUpdateException-----");
                        System.err.println("SQLState:  " + b.getSQLState());
                        System.err.println("Message:  " + b.getMessage());
                        System.err.println("Vendor:  " + b.getErrorCode());
                        System.err.print("Update counts:  ");
                        int [] updateCounts = b.getUpdateCounts();
                        for (int i = 0; i < updateCounts.length; i++) {
                             System.err.print(updateCounts[i] + "   ");
                        System.err.println("");
                   } catch(SQLException ex) {
                        System.err.println("SQLException: " + ex.getMessage());
                        System.err.println("SQLState:  " + ex.getSQLState());
                        System.err.println("Message:  " + ex.getMessage());
                        System.err.println("Vendor:  " + ex.getErrorCode());
    }1 ) Also i have installed PostgreSQL 8.2 , and its running in my services as "PostgreSQL Database Server (postmaster)"
    2) I included postgresql-8.2-505.jdbc3.jar into classpasth from eclipse (added it as external library)
    3) I have added tcpip_socket = 1 to postgresql.conf
    4) I have
    # IPv4 local connections:
    host all all 127.0.0.1/32 trust
    host all all localhost/32 trust
    # IPv6 local connections:
    #host all all ::1/128 md5
    in my pg_hba.conf
    ==========================
    Finally
    And i get error: no suitable sql driver
    but i don't get System.err.print("ClassNotFoundException: "); as you can see in my code means my classpath is correct...

  • HT204382 what software do i need to play movies on avi file . have connected a external memory disk and all the movies are in avi format.

    What software do i need to install in order to be able
    to play movies in .avi format.
    have connected an external memory and all the entertainment
    files are in .avi format.
    Ansver i get : does not support

    VLC is a good choice. While I don't know if it will play your files, Perian is a helper app for Quicktime which allows you to play a lot of things in the Quicktime Player.
    There is also Flip4Mac which allows you to play windows media files in Quicktime.
    Finally, note that the extension on a video file doesn't really tell you what you need to play it. The .avi, .mpg, etc. is only the wrapper around the actual video. The video is encoded by some means and needs to be decoded. The video inside the .avi can be encoded in one of many different schemes.
    VLC, Perian, Flip4Mac, and many others, are all able to decode various flavors of encoding. Having all of those in your toolbox will help to allow you to play most of the things you'll find.

  • What software do I need to view files or watch movies on my imac/time capsule, from my macbook (away from home)?

    What software do I need to view files or watch movies on my imac/time capsule, from my macbook (away from home)?
    imac is running lion...macbook is couple years old.
    thnx

    It appears you have a iPad Mini and a MacBook. Assuming that, this
    About renting movies from the iTunes Store - Apple Support
    says
    If you rented the movie on your iOS device or Apple TV, you can’t move it to any other device.
    This is the Mac Mini desktop forum

  • What software do I need to manage my itunes on my HP laptop

    What software do I need on my HP laptop to be able to go into itunes and manage my phone, as far as pictures, and calendar, and such?

    To start off with, you will need to download iTunes. Make sure that you download the correct version, Windows, and if you have 32-bit or 64-bit. Pictures taken with the iPhone are imported to the computer via Scanner and Camera Wizard in Windows, or can also be copied via Windows Explorer in Computer. Photos are then synced to the computer via iTunes by selecting a folder on the computer that contains photos and they are copied to the computer.
    Calendar has to be handled by a supported application. That can be Outlook 2003 or 2007. Other choices include using Google calendar, MobileMe,etc. The latter allow for OTA syncing of calendar. Contacts require a supported application as well, those include Outlook 2003 or 2007, or Windows Address book in Vista, or Windows Mail in Windows 7. You also have the option as above for Google or MobileMe.
    Information about what you might want to use is found on the Apple website and descibes the supported applications.

  • HT1338 What software do i need to download for my new HP Photosmart 5510 ePrinter to work on my new iMac

    I have just bought a new HP Photosmart ePrint printer. I could not download the software on to my new iMac. What software do i need to down load from HP to make my printer compatible with iMac.

    With reference to this article from Apple that lists the models of printer drivers available from Apple for Lion and Snow Leopard, there are a couple of HP Photosmart 55xx printer drivers in the list. So if all was well with your  iMac then the driver should be downloaded and installed when you connect to the printer. With this not happening you can try installing this HP Driver update. It contains all the HP models in that driver list - that's why its over 500MB - and it may be just what you need to get this printer connected.

  • What software do I need to transfer data from a pc to imac

    What software do I need to transfer all my data from a pc to my imac?

    Did  you install the Migration Assistant for Windows?
    http://support.apple.com/kb/DL1415
    Can you explain at what point it fails?
    Leave both computers plugged into the router - that's probably the safest network configuration.
    Matt

  • HT204382 what software do i need to play my video on my mac book pro, i have a sony handycam

    oh i just bought a Sony DCR- SX45 handycam, when i connected it to my mac it sais the document MPG, could not be opened. The movie is not in format the QuickTime Player understands. you may need to install additional software to open this type of file.  So what software do i need to transfer the video to my mac, i can see the video when the handycam is connected to my mac, but i cant drag it to the desktop.

    To see them, I recommend VLC. It doesn't transfer videos, but you can see it

  • HT1414 what software do i need for os 5.01

    what software do i need on my mac to upgade iphone OS to 5.01

    FYI: You can not update to 5.0.1 any longer. You can only update to the current version. 5.1.1.

  • Do I need a web server up for clustering

    Question:
              Do I need to have a web server like Netscape, up and running for cluster.
              If I http://XXXXX:7001 I go directly to WL server.
              Am I correct I need to have a Web Server up and running to test out the
              cluster.
              Thank You in Advance.
              David L. Wasler
              [email protected]
              

    You can also use WebLogic server as web server for this purpose by
              configuring HttpClusterServlet. Refer to WebLogic cluster setup document for
              detail.
              Cheers - Wei
              Prasad Peddada <[email protected]> wrote in message
              news:[email protected]..
              > Yes, you need a web server in the front with our plugin. Without plugin
              you
              > won't get failover and loadbalancing.
              >
              >
              > "David L. Wasler" wrote:
              >
              > > Question:
              > >
              > > Do I need to have a web server like Netscape, up and running for
              cluster.
              > >
              > > If I http://XXXXX:7001 I go directly to WL server.
              > >
              > > Am I correct I need to have a Web Server up and running to test out the
              > > cluster.
              > >
              > > Thank You in Advance.
              > >
              > > David L. Wasler
              > > [email protected]
              >
              > --
              > Cheers
              >
              > - Prasad
              >
              >
              

  • What software would I need to copy and burn DVD's

    What software would I need to copy and burn DVD's

    Copy what kind/type of DVDs?  For non-copy protected DVDs you can use Disk Utility (in the Applications folder) to make a disk image of the DVD disk and then burn it back to a disk.
    OT

Maybe you are looking for

  • Guide to External Jobs on 10g with dbms_scheduler e.g. scripts,batch files

    GUIDE TO RUNNING EXTERNAL JOBS ON 10g WITH DBMS_SCHEDULER NOTE: Users using 11g should use the new method of specifying a credential which eliminates many of the issues mentioned in this note. This guide covers several common questions and problems e

  • IDOC to flat File----Problem in File Content Conversion at receiver

    hi experts, I am doing a IDOC to flat file secnario. My requirment is IDOCXI-Flat file Format of flat file is like:-- Every segment in the IDOC will be converted into a single line of file(without any delimiter). So number of lines in flat file will

  • Oracle reports general query

    Can DDL statements be run from Oracle reports If yes how? Thanks, sagar

  • DELVRY07stat.51Handling unit 27 already in existence when trying to do a GR

    Hello SAP Guru's I hope you can help me Doing a goods receipt by using IDoc DELVRY07. I managed to create a delivery with it but I don't manage to update the delivery with a goods receipt or other changes. But let us first concentrate on the goods re

  • Metadata in iPhoto

    There are far more metadata attached to each image in the camera than get downloaded to iPhoto with the image. Can I save the rest to iPhoto or can I only see them on the camera (Nikon D40)? They must be on the card with the image, so why don't they