URGENT HELP: Which Redistributable Files do I need...

I've build my app (MS Visual C++ 6.0) using Oracle Objects for OLE v3.9, which OO4O "Redistributable Files" do I need to install along with my app onto a users machine. Do I need to re-register theses dlls?
Cheers

If you cannot guarantee that your end users will have this release of Oracle Objects for OLE installed on their machine, you will need to redistribute specific files along with your OO4O application. The following redistributable files (all 32-bit) are part of Oracle Objects for OLE:
7     oip8.dll
7     oip8.tlb
7     oraansi.dll
These files should be installed in the oracle_base\oracle_home\bin directory.
In addition, the oo4oparm.reg file has been provided to register OO4O configuration information. Please review this file and edit if necessary to reflect the correct oracle_home location on your machine. In order to register oip8.dll and enter the OO4O configuration information in oo4oparm.reg in the registry, please execute the following from a command prompt:
drive:\path\> regsvr32.exe oip8.dll
drive:\path\> oo4oparm.reg
The message file oiplang.msb should also be provided and copied to the oracle_base\oracle_home\oo4o\mesg directory. The message file is specific to a language. For example, oipus.msb would be an English version and oipja.msb would be a Japanese version.
You must also distribute the file(s) from the following list corresponding to the development software you used to build your application:
7     oraclm32.dll (for Microsoft VC++)
7     oradc.ocx
Note that the Oracle Data Control (oradc.ocx) must be registered for it to function. For example, the OCX can be registered by executing the following at a command prompt:
drive:\path\> regsvr32.exe oradc.ocx

Similar Messages

  • Urgent help please - What files needed to compile servlets

    I am trying to compile some servlets but can't. I recently reformatted and forgot how I had configured Tomcat previously.
    What files do I need to compile servlets, and where do I have to save them etc.
    Thanks

    u will require jsdk.jar..
    put this in classpath and then compile ..it will surely compile
    and for compiling ...there is no configuration reqd in tomcat

  • Urgent Help With Connections File Needed Please

    Hello All!
    I am getting the following error when I attempt to test my
    live site. I am testing database connectivity within my site that
    is hosted by GoDaddy. All pages are ASP and the database is stored
    in the root directory in GoDaddy's folder called "access_db". The
    folder has read/write access.
    Here is the error:
    Microsoft JET Database Engine error '80040e4d'
    Cannot start your application. The workgroup information file
    is missing or opened exclusively by another user.
    /sitename/requestquote/index.asp, line 130
    Here is the code from the connections file:
    <%
    ' FileName="Connection_ado_conn_string.htm"
    ' Type="ADO"
    ' DesigntimeType="ADO"
    ' HTTP="false"
    ' Catalog=""
    ' Schema=""
    Dim MM_connNAME_STRING
    MM_connNAME_STRING =
    "Provider=Microsoft.Jet.OLEDB.4.0;DataSource=username\access_db\filename.mdb;UserId=usern ame;Password=password;"
    %>
    The error above refrences "/sitename/requestquote/index.asp,
    line 130", and here is the code:
    rs_quote.ActiveConnection = MM_connNAME_STRING
    Please help.
    Thanks - Matt

    Sorry Tim? This is Dave. Did you read what said? I'm not
    Matt.
    Dave
    "TC2112" <[email protected]> wrote in message
    news:[email protected]...
    > It could be, you'd have to check in the control panel to
    make sure
    > permissions are set to read and write.
    > Have you tried changing the path in your connection
    string to the GoDaddy
    > path and uploading the file?
    > The info I posted tells you how to find out what the
    path on GoDaddy is.
    >
    > Tim
    >
    >
    > "Baxter" <baxter(RemoveThe :-)@gtlakes.com> wrote
    in message
    > news:[email protected]...
    > > Tim,
    > > Very good reply! I have no experience with GD other
    than the complaints
    I
    > > have read here about connections to databases etc.
    I think that if his
    > > connection test is ok that it has to be a
    permissions issue? What do you
    > > think?
    > > Dave
    > > "TC2112" <[email protected]> wrote in message
    > > news:[email protected]...
    > >> Hello,
    > >>
    > >> Sorry if some of this is repetitive in respect
    to what others have
    > >> advised
    > >> in this thread.
    > >> It's an answer I gave someone with similar
    problems a while ago.
    > >> It does answer your question about the
    successful path on your local
    > > server
    > >> being different than the path on GDs server.
    > >> There are also instructions on how to find the
    path on GD's server if
    > > needed
    > >> for DNS-Less connection.
    > >>
    > >>
    > >> Option 1:
    > >> You can try using a map path function like this
    in your connection
    > >> string:
    > >> access_db is the folder the database is in and
    mydatabase.mdb is the
    > > access
    > >> file.
    > >> Substitute your names.
    > >>
    > >> STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source=" &
    > >> Server.MapPath("access_db") &
    "\mydatabase.mdb;User Id=admin;Password="
    > >>
    > >> -or-
    > >>
    > >> Option 2:
    > >> You could try an OLEDB DSN-Less connection
    instead of using a DSN. It's
    > > not
    > >> hard to do.
    > >>
    > >> Step 1 is to figure out the location of the
    root directory on the
    host's
    > >> server..That's very easy to do yourself.
    > >>
    > >> Just make an asp page (I named mine
    "findit.asp"), and put the
    following
    > >> code between the <body> tags, like so:
    > >> <body>
    > >> <%
    > >> Response.Write("The location of this page
    is:<br>")
    > >>
    Response.Write(Request.ServerVariables("PATH_TRANSLATED") &
    "<br>")
    > >> Response.Write("The location of my root
    directory is:<br>")
    > >> Response.Write(Server.MapPath("\"))
    > >> Response.Write Path
    > >> %>
    > >> </body>
    > >>
    > >>
    > >> Upload it to the same location as your site's
    home page.
    > >> Once your new asp page is uploaded, just
    navigate to that page in your
    > >> browser.
    > >>
    > >> For a site on GD the "findit.asp" page displays
    something like this:
    > >>
    > >> The location of this page is:
    > >> d:\hosting\mysite\findit.asp
    > >> The location of my root directory is:
    > >> d:\hosting\mysite
    > >>
    > >> Now that you know the root directory location
    on their server, you can
    > >> figure out the path to your database.
    > >> Let's say that the folder your database is in
    is named _private, and
    it
    > >> happens to be in the root
    > >> directory along with your home page.
    > >>
    > >> Next, just add the database folder name
    (_private) and the database
    > >> inside's name (mydatabase.mdb) to the root
    directory location:
    > >>
    > >> d:hosting\mysite\_private\mydatabase.mdb
    > >>
    > >> That's your Data Source path.
    > >>
    > >> The connection string would look something like
    this:
    > >>
    > >> = "Provider=Microsoft.Jet.OLEDB.4.0;Data
    > >>
    Source=d:hosting\mysite\_private\mydatabase.mdb;User
    ID=;Password=;"
    > >>
    > >> (the code above may appear wrapped (two lines)
    in the forum/ng but it's
    > > one
    > >> line with no return within)
    > >>
    > >> IMPORTANT: If you are using a local testing
    server, make a copy of your
    > >> connection asp page as a backup.
    > >> The reason? The connection information you are
    going to put in this
    file
    > >> will only work on the host's server.
    > >> Once you upload the new connection.asp page
    with the changes for the
    > >> host,
    > >> you'll need to change your local copy back to
    your local connection so
    it
    > >> will work on
    > >> your local testing server.
    > >>
    > >> Upload to server.
    > >>
    > >> Please note: From now on, when you upload (or
    "put" if you're using DW)
    > >> files that refer to your connection asp page
    you're going to get a
    > >> warning
    > >> that your connection asp on the host is
    different than your local copy.
    > >> Always say "No" to updating it, or you'll
    replace the GD DSN-Less
    > > connection
    > >> with your local one.
    > >>
    > >>
    > >> Did you set the appropriate read/write
    permissions on the
    > > directory(folder)
    > >> your database is in?
    > >> You can do that in GD's control panel.
    Hosting> Select your site >
    Manage
    > > to
    > >> open it.
    > >>
    > >> I hope this helps.
    > >>
    > >> For what it's worth, I only use GD for domain
    names now.
    > >> I had numerous problems with some sites hosted
    there, switched them to
    > >> HostMySite and haven't had any.
    > >>
    > >> Take care,
    > >> Tim
    > >>
    > >>
    > >>
    > >>
    > >>
    > >> "Baxter" <baxter(RemoveThe
    :-)@gtlakes.com> wrote in message
    > >> news:[email protected]...
    > >> > Baxter - I get "Connection was Made
    Successfully" if connection to
    the
    > >> > database was made Successfully not sure
    what's going on here? When
    you
    > >> > look
    > >> > at your site files in Dreamwerer on the
    server is there a folder
    named
    > >> > access_db? If so is your data base in that
    folder? The database needs
    > >> > permissions set to read and write to that
    file. Have you checked
    > >> > permissions
    > >> > on the site? does GD give you a control
    panel so that you can set the
    > >> > permissions your self? I have never used
    GD but have seen where
    people
    > >> > have
    > >> > had lots of problems with them when using
    a scripting language. I
    don't
    > >> > know
    > >> > what else it could be at this point.
    > >> > Dave
    > >> > "mtrueblood"
    <[email protected]> wrote in message
    > >> > news:[email protected]...
    > >> >> Baxter - I get "Connection was Made
    Successfully" with the
    credentials
    > >> >> you
    > >> > gave
    > >> >> me. My site works just fine on my
    local machine with
    > > access_trueblood.dsn
    > >> > (it
    > >> >> also worked with the dsn I initally
    created for the site). All pages
    > >> > display
    > >> >> and I get no errors. I think where the
    issue may be, now I am
    guessing
    > >> > here, is
    > >> >> that my connection refrences a
    database located in the folder
    > >> >>
    C:\Users\Administrator\Websites\Sitename\access_db, but once I
    upload
    > > my
    > >> > site,
    > >> >> the database still sits in access_db,
    but the root folder possibly
    has
    > >> > changed
    > >> >> (maybe causing the connection to
    fail).
    > >> >>
    > >> >> Dooza - I don't understand how I can
    use "c:myDsnFile.dsn", when
    once
    > > I
    > >> > upload
    > >> >> my site, "c:myDsnFile.dsn" would then
    not be the location of my dsn.
    > >> >> "c:myDsnFile.dsn" refrences a file on
    my computer. I am using an
    > >> >> online
    > >> > hosting
    > >> >> company. Am I not understanding you
    correctly? See note above. I did
    > > use
    > >> > your
    > >> >> information and got the following
    browser error:
    > >> >>
    > >> >> Microsoft OLE DB Provider for ODBC
    Drivers error '80004005'
    > >> >> General error: Invalid file dsn ''
    > >> >> /sitename/contactus/index.asp, line
    130
    > >> >>
    > >> >> line 130 -
    rs_contactus.ActiveConnection = MM_connTrueblood_STRING
    > >> >>
    > >> >> I am researching on how to do a
    dsn-less connection, unless I can
    get
    > >> > this
    > >> >> figured out.
    > >> >>
    > >> >> Thanks - Matt
    > >> >>
    > >> >
    > >> >
    > >>
    > >>
    > >
    > >
    >
    >

  • Need urgent help for (Message file sp1 lang .msb not found)

    sir
    c:\oracle9i this is my database folder name
    c:\oraform this is my form folder name
    which one my oracle_home name
    sir i test this command
    c:\ set ORACLE_HOME=c:\ORACLE9I
    c:\ set ORACLE_SID=AAMIR
    c:\ sqlplus / as sysdba
    AND RUN SQL PLUS THEN SYSTEM GIVE ME THIS ERROR
    incorrect environment variable plus_dflt program execution error
    please give me idea how i run my system
    thank

    Duplicate post:
    ''Urgent'' incorrect environment variable plus_dflt program execution erro

  • Urgent Help: Password Protect Files in WebLogic

    I am a newbie in Java and have a very urgent and serious problem which I hope to
    get some advice from the experts =}. As u know that by keying in the exact url
    of a document that resides on the server, any1 will be able to download the file
    without logging in at all.
    For my case, I already have secruity checking in place e.g. "/customer/check.jsp"
    to check if the user e.g. ERIC exists in the database before allowing him to login
    to access the files under that specific directory e.g. "/customer/docs/". If someone
    [not ERIC] tried to access other files like jsps/htmls/other directories without
    logging, the person will be thrown back to the login.jsp e.g. "/customer/login.jsp".
    This is ok. But this does not solve the above stated problem. If the person enters
    the URL e.g. "http://www.abc.com/customer/docs/mytest.pdf", he can retrieve that
    particular file without logging in.
    The only way to block it is via the "URLacl" which will prompts for login if the
    URL is entered directly.
    The only problem is that my customers will definitely complain if they have to
    login at the login.jsp e.g. "/customer/login.jsp" and when they click to download
    the file e.g. "/customer/docs/mytest.pdf". Any ideas I can pass the login info
    around without logging twice or how can I protect/restrict the entire directory
    "/customer/docs/" by using jsp?
    Any help is greatly appreciated!!!
    thanks alot in advance....

    Hi,
    I think you want to create a WebApplication.
    Please have a look at:
    http://e-docs.bea.com/wls/docs70/webapp/basics.html#108532
    In this WebApplication some subdirectories are not allowed to everyone to enter.
    For this the user has to be authenticated.
    This can be done through configuring the WebApplication.
    http://e-docs.bea.com/wls/docs70/webapp/security.html#100607
    A sample can be found in the examples directory which comes with
    WLS: examples\webapp\security WebApp.
    Christian Plenagl
    Developer Relations Engineer
    BEA Support
    "moonz02" <[email protected]> wrote:
    >
    I am a newbie in Java and have a very urgent and serious problem which
    I hope to
    get some advice from the experts =}. As u know that by keying in the
    exact url
    of a document that resides on the server, any1 will be able to download
    the file
    without logging in at all.
    For my case, I already have secruity checking in place e.g. "/customer/check.jsp"
    to check if the user e.g. ERIC exists in the database before allowing
    him to login
    to access the files under that specific directory e.g. "/customer/docs/".
    If someone
    [not ERIC] tried to access other files like jsps/htmls/other directories
    without
    logging, the person will be thrown back to the login.jsp e.g. "/customer/login.jsp".
    This is ok. But this does not solve the above stated problem. If the
    person enters
    the URL e.g. "http://www.abc.com/customer/docs/mytest.pdf", he can retrieve
    that
    particular file without logging in.
    The only way to block it is via the "URLacl" which will prompts for login
    if the
    URL is entered directly.
    The only problem is that my customers will definitely complain if they
    have to
    login at the login.jsp e.g. "/customer/login.jsp" and when they click
    to download
    the file e.g. "/customer/docs/mytest.pdf". Any ideas I can pass the login
    info
    around without logging twice or how can I protect/restrict the entire
    directory
    "/customer/docs/" by using jsp?
    Any help is greatly appreciated!!!
    thanks alot in advance....

  • Urgent help. Corrupted files after power outage

    Hello Everyone,
    we are in desperate need for some help. We have a G5 system with two fully loaded xserve raids all striped together as one unit. We just had a power out and no backup installed while doing a copy procedure with the array to a backup disk. After some time of restarting and shutting down we got the xserve back up and running and are just trying to finish the backup procedure. BUT - while coming back up the xserve raid has still some folder structures and files which seem corrupter while the backup was running. We have working copies of the files, but the xserve raid wont let us delete the damaged files. Even in the Command shell or terminal window we can't delete the files. We don't want to risk going on with the raid system with these corrupted files on it. Does anybody know what to do about the files and if there is any way to delete them. Also - does any disk repair software support the xserve raids or even apples disk repair utility? Anyone any idea. We need to get this puppy up and running tonight, so anything would help.
    Thanks a lot,
    Pete

    Yeah, I certainly have some compassion for your situation Gorilla... What you are experiencing is corruption at the file system level, so as other have recommended, your best bet is to use the best file system repair utility (i.e. Disk Warrior, etc.) you can get (sorry I don't have a lot of experience with these). You'll probably lose some files, but the utility should be able to get the file system back into shape so that normal file system commands work (add, delete, etc.).
    Because this is a typical problem, I'll quickly explain what happened. I'm guessing you're running your Xserve RAID's with the disk caches enabled (yields best performance). Unfortunately this makes the system very vulnerable to power loss. If the power is lost, all the data in the disk caches is also lost (nothing can be done about this except to put the enclosure on a UPS). If not using a UPS, then it's advisable to disable the disk caches (and also ensure you are using batteries to backup the controller caches).

  • Urgent help with jar file

    I'm writing a program in VB that calls on a JAR file. It has been working great for weeks. Last night, I moved the JAR file to a new location on my machine, and it suddenly stopped working at all.
    I know nothing about Java. Do I need to recompile the file? I tried moving the whole directory back to its original location but it didn't help.
    Thanks in advance.

    Dude I'm telling you straight up, the program has a bug. The evidence is in the error message. Maybe the bug was not manifested before, but it was there.
    Do you have access to the source? Do you know how to compile it? You should recompile it with the -g flag to include debug information. Then the error message will include a method name and line number for the offending portion of code. If you're not able to figure it out yourself, you could post that portion of code here for someone to comment on.

  • Urgent help for linking file

    hi i am a noob in this area..can someone plz help me..
    well i have to do a link where it will open the latest file..
    how do i do tat......................
    String file = "C:/";
    File f = new File(file);
    String [] fileNames = f.list();
    File [] fileObjects= f.listFiles();
    %>
    <UL>
    <%
    for (int i = 0; i < fileObjects.length; i++) {
         if(!fileObjects.isDirectory()){
    %>
    <LI>
    <a href="<%= fileNames[i %">"><%= fileNames[i] %></A>
    (<%= Long.toString(fileObjects.length()) %> bytes long)
    <%
    tis code can loop for all the documents i have in my C drive..but i dont want it to loop .. i want it to search for me the latest file and just open it...
    thank you very much. </a>

    import java.io.File;
    public class LatestFileInDir {
         static long maxFileDate = 0;
         static String maxFilePath = "";
         static void getLatestFilePath(File fd) throws Exception {
            if (fd.isDirectory()) {
                 String[] children = fd.list();
                 for (int i=0; i<children.length; i++) getLatestFilePath(new File(fd, children));
    else {
         if(fd.lastModified() > maxFileDate) {
              maxFileDate = fd.lastModified();
              maxFilePath = fd.getCanonicalPath();
         public static void main(String args[]) throws Exception {
              getLatestFilePath(new File("C:\\TestDir"));
              System.out.println("Latest File : " + maxFilePath);
    }Cheers

  • URGENT HELP- opening a file from servlet

    I posted this message in other forum by mistake. Please help me. Wish I could award you 1000 duke dollers if had. It would be great help if somebody can help me out.Thanks
    http://forum.java.sun.com/thread.jsp?forum=12&thread=383418&tstart=0&trange=15

    Thanks.
    When I do that, it is disabling the radio button which allows the user to open it from the browser anyway I could solve the problem using the following code. Thanks for your response. I appreciate it.
    res.reset();
        res.resetBuffer();
        res.setContentType("text/plain");
        //  res.setHeader("Content-Disposition","inline; filename=" +urlPdf );
       res.setHeader("Content-disposition","attachment; filename" +urlPdf );
       res.setHeader("Cache-Control","no-cache"); //HTTP 1.1
       res.setHeader("Pragma","no-cache"); //HTTP 1.0
       res.setDateHeader ("Expires", 0); //prevents caching at the proxy server
       res.setHeader("Cache-Control","no-store"); //HTTP 1.1Thanks
    -Sreekanth Varidhireddy

  • Webcam VF0050. I NEED HELP WHICH SPECIFIC DRIVER DO I NEED TO DOWNLOAD

    I LOST MY CD FOR INSTALLATION AND BOUGHT A NEW PC. BUNCH OF DOWNLOADS WERE IN THE SCREEN WHEN I WENT TO THE WEBSITE. WHICH DO I REALLY NEED TO DOWNLOAD?
    MIKEE

    Um, you don't need to download any of those. None of them are the right driver. I just spent an hour downloading things trying to get them to work.
    Do you still have the computer you first installed it on? If so put the driver onto a disk and make your own start up disk. And if this works out... let me know, maybe you can send me the driver!

  • Clean Install of Lion. Which Library files do I need to transfer over?

    I'm planning to do a clean install of Lion and don't want to use the migration assistant. In other words, I'm copying my Home Folder and will reinstall all of applications and would like to manually transfer relevant files to reduce a lot of the clutter that has built up on my computer over the past months and years.
    What home folder library files will be necessary to transfer over? Or, is there a guide online somewhere for this?
    Thanks!

    Treat your "clean install" as a new machine and take advantage of the Setup Assistant, as described in Pondini's Setup New Mac guide. You can selectively choose users, data, and apps. BTW, any left-over crud can be ignored. My baseline has its roots in Jaguar and I've never wasted time or effort "cleaning" it. Older items just take up some disk space (with eight partitions, I still have almost 500 GB free), but doesn't affect performance.

  • URGENT HELP : CANNOT ACCESS FILES/FOLDERS in my IPOD :(

    Folks,
    Two days back, i dropped my IPOD Video and since then it has gone nuts. I used to use it as storage device and have around 70 GB of data stored in it. Now when i connect my IPOD video to my PC through USB cable, though i can see the folders i cannot open the files or folders. it says following on the pop up - cannot open and read the file.
    also all my videos and mp4 songs have been deleted from my ipod. god knows how.
    can someone help

    Dropping the iPod might have caused the reason into this problem. For what I do is I keep my set of music & videos into a seperate USB flash and computer. I'm not an iPod expert but you might want to have it fixed at a local store that can fix iPods. Look into the apple website to find further instructions. For the worse, you probably will lose your files.

  • I have firefox 4.0 mac os 10, i was hacked, i have no firefox's preferences, i've reinstalled..can you help ? what file do i need to deleted

    i think it could have been with quicktime??
    When i click for program's preferences the program hanges...it requires multiple Force Qits

    You could try using the latest version of SeaMonkey available for MacOSX 10.3.9 - it is a little newer than Firefox 2.0.0.20 is, but it still has many "security advisories" .
    http://www.seamonkey-project.org/releases/1.1.19 <br />
    http://www.mozilla.org/security/known-vulnerabilities/seamonkey11.html
    You really aren't safe doing online financial transactions with an old Operating System and and old web browser.

  • Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Thanks for prompt reply, yes we have tried that but have now closed down the browser we where the photos were.
    We haven't sent up time machine, do you know whether there is any roll-back function on a Mac?
    Thanks

  • I am trying to open some *.avi files in quicktime, they are from my security camera at home.  It will not open them, would anyone be able to help me?  It says I need a plugin but it does not tell me which one.

    I am trying to open some *.avi files in quicktime, they are from my security camera at home.  It will not open them, would anyone be able to help me?  It says I need a plugin but it does not tell me which one.

    I am trying to open some *.avi files in quicktime, they are from my security camera at home.  It will not open them, would anyone be able to help me?  It says I need a plugin but it does not tell me which one.
    Basically your player is telling you that you need to install the codecs that will play the compressed data within the AVI file.
    AVI is a legacy file container in which the tracks of data are interleaved to maintain synchronization. This data can be encoded using many different audio and video codecs. Your problem is to determine which codecs you need for the player you are trying to use and install them if they are available. Failing that, your will either have to play the files in a different player which has the codec support your require built into the app or convert the content to a compression format that is natively compatible with the player you wish to use.
    Since you have not stated what platform, operating system, and particular player you are targeting for playback, it is difficult to provide precise instructions for fixing your specific problem at this point. Suggest you try alternative players compatible with your system and platform to see if they will play the files, use a dedicated media information utility to determine the codecs needed for playback, or post a sample file for analysis.

Maybe you are looking for