Trouble getting the Java OLAP samples to work

Hello all,
Has anyone else had trouble getting the Java OLAP API samples for 9i working? I've recently downloaded the trial version of 9i and was trying to tinker with the OLAP API. I tried to use the olapi.bat script in $ORACLE_HOME\olap\olapi\bin, but I've been getting JNDI problems (javax.naming.NoInitialContextException). The error message is below:
C:\oracle\ora90\olap\olapi\bin>olapi connection.ConnectionTest
looking up OLAPSERVER in Oracle namespace...
cannot find service namingContext SESS_IIOP://THEPRISONER:2481:
javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:649)
at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:242)
at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:279)
at javax.naming.InitialContext.lookup(InitialContext.java:349)
at oracle.olapi.test.TestDriver.queryAuroraNamespace(TestDriver.java)
at oracle.olapi.test.TestDriver.findServer(TestDriver.java)
at oracle.olapi.test.TestDriver.initializeConnection(TestDriver.java)
at oracle.olapi.test.TestDriver.createTestContext(TestDriver.java)
at oracle.olapi.test.TestDriver.execute(TestDriver.java)
at oracle.olapi.test.connection.ConnectionTest.main(ConnectionTest.java)
Unable to connect toOLAPSERVER
Exception in thread "main" Stack Trace for Original Throwable:
javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:649)
at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:242)
at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:279)
at javax.naming.InitialContext.lookup(InitialContext.java:349)
at oracle.olapi.test.TestDriver.queryAuroraNamespace(TestDriver.java)
at oracle.olapi.test.TestDriver.findServer(TestDriver.java)
at oracle.olapi.test.TestDriver.initializeConnection(TestDriver.java)
at oracle.olapi.test.TestDriver.createTestContext(TestDriver.java)
at oracle.olapi.test.TestDriver.execute(TestDriver.java)
at oracle.olapi.test.connection.ConnectionTest.main(ConnectionTest.java)
I've tried supplying a ContextFactory class name to the environment, using the ContextFactory classes that I found in the aurora.zip or aurora_client.jar files, but that didn't work. If anyone has any suggestions, they would be appreciated. Thanks.
Jason

Only use the == operator for checking for the same object. Use the String.equals()method. I.E replace
if (sex == "Male") {
} else {
with
if (sex.equals( "Male")) {
} else {
or if 'sex' could be null then
if ("Male".equals(sex)) {
} else {
}

Similar Messages

  • Trouble getting the If/Else statement to work

    Hi
    I am a complete newbie and am trying to create a web page output fom a servlet where a separate webpage is created for male or females (for use in a dog breeding database) from a simple text input form.
    The problem is that I cannot get the IF part of the program to work (it always jumps to the ELSE part (as if the IF criteria has not been met).
    I have used:
    String sex = request.getParameter("Sex");
    // Which returns the sex of the dog
    if (sex == "Male") {
    } else {
    I have also tried to use a boolean but am not sure how this is done, the code to initialize the boolean was:
    boolean isMale = (request.getParameter("Sex")=="Male");
    I have just tried : boolean isMale=Boolean.valueOf(sex).booleanValue();
    then used:
    if (isMale) { . . . etc
    In each case (no matter which radio button is selected) the output is from the ELSE part of the code. The radio buttons return the sex of the dog. Sorry about all the definitions below, I thought that the actual code (minus the HTML output) relevant. The below example uses the boolean isMale from the definitions list.
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class MainDogsDetails extends HttpServlet {
    public void doPost(HttpServletRequest request,
    HttpServletResponse response) throws ServletException, IOException {
    // Indicate content type
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    // Define Fields
    String commonName = request.getParameter("CommonName");
    String headShot = request.getParameter("HeadShot");
    String fullPic = request.getParameter("FullPic");
    String pedigreeName = request.getParameter("PedigreeName");
    String kennel = request.getParameter("Kennel");
    String ownersName = request.getParameter("OwnersName");
    String ownersContactPh = request.getParameter("OwnersContactPh");
    String dob = request.getParameter("DOB");
    String champStatus = request.getParameter("ChampStatus");
    String sex = request.getParameter("Sex");
    boolean isMale = (request.getParameter("Sex")=="Male");
    // Get Comments
    String comments = request.getParameter("Comments");
    // Get Pedigree details
    String sireCol1 = request.getParameter("SireCol1");
    String damCol1 = request.getParameter("DamCol1");
    String sire1Col2 = request.getParameter("Sire1Col2");
    String sire2Col2 = request.getParameter("Sire2Col2");
    String dam1Col2 = request.getParameter("Dam1Col2");
    String dam2Col2 = request.getParameter("Dam2Col2");
    String sire1Col3 = request.getParameter("Sire1Col3");
    String sire2Col3 = request.getParameter("Sire2Col3");
    String sire3Col3 = request.getParameter("Sire3Col3");
    String sire4Col3 = request.getParameter("Sire4Col3");
    String dam1Col3 = request.getParameter("Dam1Col3");
    String dam2Col3 = request.getParameter("Dam2Col3");
    String dam3Col3 = request.getParameter("Dam3Col3");
    String dam4Col3 = request.getParameter("Dam4Col3");
    String sire1Col4 = request.getParameter("Sire1Col4");
    String sire2Col4 = request.getParameter("Sire2Col4");
    String sire3Col4 = request.getParameter("Sire3Col4");
    String sire4Col4 = request.getParameter("Sire4Col4");
    String sire5Col4 = request.getParameter("Sire5Col4");
    String sire6Col4 = request.getParameter("Sire6Col4");
    String sire7Col4 = request.getParameter("Sire7Col4");
    String sire8Col4 = request.getParameter("Sire8Col4");
    String dam1Col4 = request.getParameter("Dam1Col4");
    String dam2Col4 = request.getParameter("Dam2Col4");
    String dam3Col4 = request.getParameter("Dam3Col4");
    String dam4Col4 = request.getParameter("Dam4Col4");
    String dam5Col4 = request.getParameter("Dam5Col4");
    String dam6Col4 = request.getParameter("Dam6Col4");
    String dam7Col4 = request.getParameter("Dam7Col4");
    String dam8Col4 = request.getParameter("Dam8Col4");
    // Get Bitchs breeding details
    String sire1b = request.getParameter("Sire1b");
    String sire2b = request.getParameter("Sire2b");
    String sire3b = request.getParameter("Sire3b");
    String sire4b = request.getParameter("Sire4b");
    String sire5b = request.getParameter("Sire5b");
    String sire6b = request.getParameter("Sire6b");
    String sire1Pup1 = request.getParameter("Sire1Pup1");
    String sire1Pup2 = request.getParameter("Sire1Pup2");
    String sire1Pup3 = request.getParameter("Sire1Pup3");
    String sire1Pup4 = request.getParameter("Sire1Pup4");
    String sire1Pup5 = request.getParameter("Sire1Pup5");
    String sire1Pup6 = request.getParameter("Sire1Pup6");
    String sire1Pup7 = request.getParameter("sire1Pup7");
    String sire1Pup8 = request.getParameter("Sire1Pup8");
    String sire2Pup1 = request.getParameter("Sire2Pup1");
    String sire2Pup2 = request.getParameter("Sire2Pup2");
    String sire2Pup3 = request.getParameter("Sire2Pup3");
    String sire2Pup4 = request.getParameter("Sire2Pup4");
    String sire2Pup5 = request.getParameter("Sire2Pup5");
    String sire2Pup6 = request.getParameter("sire2Pup6");
    String sire2Pup7 = request.getParameter("Sire2Pup7");
    String sire2Pup8 = request.getParameter("Sire2Pup8");
    String sire3Pup1 = request.getParameter("Sire3Pup1");
    String sire3Pup2 = request.getParameter("Sire3Pup2");
    String sire3Pup3 = request.getParameter("Sire3Pup3");
    String sire3Pup4 = request.getParameter("Sire3Pup4");
    String sire3Pup5 = request.getParameter("Sire3Pup5");
    String sire3Pup6 = request.getParameter("Sire3Pup6");
    String sire3Pup7 = request.getParameter("sire3Pup7");
    String sire3Pup8 = request.getParameter("Sire3Pup8");
    String sire4Pup1 = request.getParameter("Sire4Pup1");
    String sire4Pup2 = request.getParameter("Sire4Pup2");
    String sire4Pup3 = request.getParameter("Sire4Pup3");
    String sire4Pup4 = request.getParameter("Sire4Pup4");
    String sire4Pup5 = request.getParameter("Sire4Pup5");
    String sire4Pup6 = request.getParameter("sire4Pup6");
    String sire4Pup7 = request.getParameter("Sire4Pup7");
    String sire4Pup8 = request.getParameter("Sire4Pup8");
    String sire5Pup1 = request.getParameter("Sire5Pup1");
    String sire5Pup2 = request.getParameter("Sire5Pup2");
    String sire5Pup3 = request.getParameter("Sire5Pup3");
    String sire5Pup4 = request.getParameter("Sire5Pup4");
    String sire5Pup5 = request.getParameter("Sire5Pup5");
    String sire5Pup6 = request.getParameter("sire5Pup6");
    String sire5Pup7 = request.getParameter("Sire5Pup7");
    String sire5Pup8 = request.getParameter("Sire5Pup8");
    String sire6Pup1 = request.getParameter("Sire6Pup1");
    String sire6Pup2 = request.getParameter("Sire6Pup2");
    String sire6Pup3 = request.getParameter("Sire6Pup3");
    String sire6Pup4 = request.getParameter("Sire6Pup4");
    String sire6Pup5 = request.getParameter("Sire6Pup5");
    String sire6Pup6 = request.getParameter("Sire6Pup6");
    String sire6Pup7 = request.getParameter("sire6Pup7");
    String sire6Pup8 = request.getParameter("Sire6Pup8");
    String year1b = request.getParameter("Year1b");
    String year2b = request.getParameter("Year2b");
    String year3b = request.getParameter("Year3b");
    String year4b = request.getParameter("Year4b");
    String year5b = request.getParameter("Year5b");
    String year6b = request.getParameter("Year6b");
    // Get Dogs breeding details
    String dam1d = request.getParameter("Dam1d");
    String dam2d = request.getParameter("Dam2d");
    String dam3d = request.getParameter("Dam3d");
    String dam4d = request.getParameter("Dam4d");
    String dam5d = request.getParameter("Dam5d");
    String dam6d = request.getParameter("Dam6d");
    String dam7d = request.getParameter("Dam7d");
    String dam8d = request.getParameter("Dam8d");
    String dam9d = request.getParameter("Dam9d");
    String dam10d = request.getParameter("Dam10d");
    String dam11d = request.getParameter("Dam11d");
    String dam12d = request.getParameter("Dam12d");
    String dam13d = request.getParameter("Dam13d");
    String dam14d = request.getParameter("Dam14d");
    String dam15d = request.getParameter("Dam15d");
    String dam16d = request.getParameter("Dam16d");
    String dam17d = request.getParameter("Dam17d");
    String dam18d = request.getParameter("Dam18d");
    String dam19d = request.getParameter("Dam19d");
    String dam20d = request.getParameter("Dam20d");
    String dam21d = request.getParameter("Dam21d");
    String dam22d = request.getParameter("Dam22d");
    String dam23d = request.getParameter("Dam23d");
    String dam24d = request.getParameter("Dam24d");
    String dam25d = request.getParameter("Dam25d");
    String year1d = request.getParameter("Year1d");
    String year2d = request.getParameter("Year2d");
    String year3d = request.getParameter("Year3d");
    String year4d = request.getParameter("Year4d");
    String year5d = request.getParameter("Year5d");
    String year6d = request.getParameter("Year6d");
    String year7d = request.getParameter("Year7d");
    String year8d = request.getParameter("Year8d");
    String year9d = request.getParameter("Year9d");
    String year10d = request.getParameter("Year10d");
    String year11d = request.getParameter("Year11d");
    String year12d = request.getParameter("Year12d");
    String year13d = request.getParameter("Year13d");
    String year14d = request.getParameter("Year14d");
    String year15d = request.getParameter("Year15d");
    String year16d = request.getParameter("Year16d");
    String year17d = request.getParameter("Year17d");
    String year18d = request.getParameter("Year18d");
    String year19d = request.getParameter("Year19d");
    String year20d = request.getParameter("Year20d");
    String year21d = request.getParameter("Year21d");
    String year22d = request.getParameter("Year22d");
    String year23d = request.getParameter("Year23d");
    String year24d = request.getParameter("Year24d");
    String year25d = request.getParameter("Year25d");
    // Select the response based on the sex of the dog
    if (isMale) {
    out.println(
    "<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>");
    out.println("<html>");
    // Males output
    out.println("</html>");
         } else {
                   out.println(
    "<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>");
    out.println("<html>");
    // Females output
    out.println("</html>");
    Also, is there any way to get the output webpage saved as a new file using the + commonName + as the file name?
    Les

    Only use the == operator for checking for the same object. Use the String.equals()method. I.E replace
    if (sex == "Male") {
    } else {
    with
    if (sex.equals( "Male")) {
    } else {
    or if 'sex' could be null then
    if ("Male".equals(sex)) {
    } else {
    }

  • I have Adobe Photoshop Elements 10. It came installed on my HP Desktop. I am can not get the warp text tool to work. It has worked in the past. Once I click warp text, the little window does not pop up, and if I try to do anything else after I click warp

    I have Adobe Photoshop Elements 10. It came installed on my HP Desktop. I am can not get the warp text tool to work. It has worked in the past. Once I click warp text, the little window does not pop up, and if I try to do anything else after I click warp text, it wont let me. Just sounds the ding, alert, can still slightly navigate the program but can not use any other tools after clicking warp text. I just have to open task manager and close the program. not sure if I'm doing something wrong or maybe I just need to uninstall and re install. Having trouble finding out how to uninstall and reinstall because the program came pre installed on my desktop.

    It actually sounds like the warp text window is opening off screen.
    Resetting the photoshop elements 10 preferences should fix it.
    *Press and hold the Shift+Ctrl+Alt keys just after you start the launch of the photoshop elements 10 editor
    *Keep holding the keys down until you get a dialog asking if you want to delete the adobe photoshop elements setting file
    *Press Yes

  • Can I get the Java version of mobile tv with the r...

    I would like to know how to get the Java version of mobile tv with the removed mobile tv application, so I can view the Sky EPG programme guide on my E90.
    Can anyone tell me how I can get it please. The version from sky will not work but reading other posts on here suggests that the java version might.
    Please help.
    Solved!
    Go to Solution.

    Sky have made it near impossible to get this application on current phones.
    Luckily for you the java version is available for download as part of this useful guide.
    The instructions are for the N95 but should work on an E90. I've got it working on an N82 and N96 at the moment.
    Just a note about the java app: It says it's for a sony but it works perfectly on a nokia. Not sure how it will look on the E90's big screen so if it doesn't work try the front screen.
    Message Edited by psychomania on 14-Nov-2008 10:42 AM

  • Can't get the java tray icon or the console to appear

    I can't get the java tray icon or the console to appear on any system that I've tested my applications in.
    I'm using Windows XP mostly and I've also tested on Windows 2000 and 2003. I'm using jre 1.6. I've already set the icon to appear and the console to show on the advanced tab on the java icon in the control panel. I've even tried another application from another author thinking it might be something in the code of my own application.
    I need the console available on the client systems for troubleshooting but I can't get it to open and I can't open it manually from the tray icon because the icon is not there.
    I seem to remember seeing the tray icon and the console on other systems/applications in the past so what do you think is the problem?

    AFAIK, the Sun/Oracle-provided "Java Console" only works (appears) with applets and Java Web Start applications. It shows some information that is unique to those environments, and provides a place for System.out data to be written.
    For a Java application, if the application is started with the java command (as opposed to the javaw command) System.out data is written to the command/cmd window that is created.
    If you need more that that for an application, then [this article|http://www.developer.com/java/other/article.php/630821/Creating-a-Custom-Java-Console.htm] may be of interest. It's old, but still appears to be valid. Note that current versions of Java contain a class java.io.Console. This class should be able to be used as a replacement for the custom Console class that is used in the article.

  • I am having trouble getting my Blutooth Magic Trackpad to work in windows 7 running through a bootcamp partition on my 2008 MacPro.  Any ideas?

    I am having trouble getting my Blutooth Magic Trackpad to work in windows 7 running through a bootcamp partition on my 2008 MacPro.  Any ideas?

    I installed the apple drivers and it works though unlike
    in osx where it works from the start in windows I need to click it once before it begin to work

  • Problem with iTunes. I have Windows 8 on a new laptop. Installed latest version of iTunes. Can play music in My Library but when I click on Itunes Store I get the message "iTunes has stopped working. A problem caused the program to stop working correctly.

    I have a new laptop with Windows 8 as operating system. Installed latest version of iTunes ontop computer. I can play music in My Library but when I click on iTunes, I get the message " iTunes has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify if a solution is available."
    Anyone know what is the cause and if there is a resolution? Have tried to re-installing iTunes and have also tried restoring laptop to an earlier date.

    iPad not appearing in iTunes
    http://www.apple.com/support/ipad/assistant/itunes/
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    iTunes for Windows: Device Sync Tests
    http://support.apple.com/kb/HT4235
    IOS: Syncing with iTunes
    http://support.apple.com/kb/HT1386
    Apple - Support - iPad - Syncing
    http://www.apple.com/support/ipad/syncing/
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi Syncing
    http://support.apple.com/kb/ts4062
    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    iTunes Store: Associating a device or computer to your Apple ID
    http://support.apple.com/kb/ht4627
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
    http://ipadinsight.com/ipad-tips-tricks/best-fixes-for-cannot-connect-to-itunes- store-errors/
    Try this first - Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • I am running windows 7. My itunes keep shutting down on me. I keep getting the message itunes has stopped working What can I do?

    I keep getting the message itunes has stopped working. A problem has caused itunes to stop working correctly. What can be the cause?

    Hello Main Event,
    Thank you for using Apple Support Communities!
    I found this article while researching iTunes quitting unexpectedly on Windows 7 and feel it will help to resolve the issue here.
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/ts1717
    It starts with troubleshooting 3rd party plug ins, then moves on to account troubleshooting if needed.
    Open iTunes in Safe Mode to isolate any inference with plug-ins or scripts not manufactured by Apple.
    Hold down the Shift and Control keys while opening iTunes. If performed correctly, you should see a dialog that says "iTunes is running in safe mode" before iTunes finishes starting up.
    After clicking Continue, determine whether the issue you were experiencing persists in Safe Mode.
    If you see the same issue while iTunes is in Safe Mode, proceed to the Create a New User Account section below. If you do not experience the same issue, consult iTunes: Troubleshooting issues with third-party iTunes plug-insfor steps on how to remove third-party plug-ins.
    Take care,
    Sterling

  • I keep getting the message itunes has stopped working I can't even open itunes I have tried uninstalling and installing, starting in safe mode but nothing seems to work. Please can anyone help me

    I have recently bought a new laptop with windows 7 and when i have tried to install and open itunes i keep getting the message 'itunes has stopped working' itunes then shuts down before i can do anything to fix it. This happens every time I try to open itunes. I have tried uninstalling itunes and reinstalling it, starting itunes in safe mode. Nothing seems to work. Please can anyone help.

    If and when I finally manage to open it, as soon as I click on a movie to watch, the message "itunes has stopped working" comes up.
    Try the following user tip with that one:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

  • How do I get the built in microphone to work on my IMac?  Camera works fine, but I can't record voice.

    How do I get the built-in microphone to work on my IMac?  Camera works fine, but I can't record sound.

    I always assummed that the mic was part of iSight (intertwined?).  The mic is situated right next to iSight.  It would seem to me the solutions would be the same some what.
    Regarding the OP, I also suspect his/her problem is hardware.  It's rather unusual for the internal mic to not work yet the iSight does.

  • I got a iphone 5 but it does not work on my MacBook with Mac OSx 10.5.8  it says i need OSX 10.6.8 but it will not download because I need OSX 10.6 but it would load either. How do I get the older operating system to work with the IPhone5?

    I got a iphone 5 but it does not work on my MacBook with Mac OSx 10.5.8  it says i need OSX 10.6.8 but it will not download because I need OSX 10.6 but it would load either. How do I get the older operating system to work with the IPhone5?

    You don't. Since you have an Intel Mac, buy a Mac OS X 10.6 DVD from the online Apple Store.
    (71894)

  • I am using Windows 7 64-bit. After installing Photoshop Elements 13 and trying to run it I always get the message: Photoshop does not work anymore. And it doesn't.

    I am using Windows 7 64-bit. After installing Photoshop Elements 13 and trying to run it I always get the message: Photoshop does not work anymore. And it doesn't.

    Hi Hardy Tasso,
    Are you seeing this problem since first launch of PSE13 after installation or recently?
    Please try:
    Keep Ctrl + Alt + Shift keys pressed while launching PSE13 Editor and click OK on the dialog that comes next.
    Thanks,
    Anwesha

  • How to get the java code of the message mapping

    how to get the java code of the message mapping,
    I mean to ask how to get the background java code of the message mapping(graphical mapping).
    And where to view it?

    Hi Satya,
    The JAVA code for graphical msg mapping is in below folder:
    \usr\sap\<SID>\<DVEBMGS10>\j2ee\cluster\server0\temp\classpath_resolver
    Here all the mapping jars are there in this folder.
    Just decompile these jars and you can see the code.
    Thanks,
    Rajeev Gupta
    Message was edited by:
            RAJEEV GUPTA

  • After upgrading, I am getting the dreaded "iTunes has stopped working" message.  I've followed all of the troubleshooting tips on the forum without success.  Fortunately, it works on my other computers.  Running Win7 pro.

    After upgrading iTunes, I'm getting the dreaded "iTunes has stopped working" message after launch.  I've tried the troubleshooting tips on the Forum without success (though most are pretty old...).  Fortunately, iTunes works on my other computers, but I have iPad backups on this one that I'd like to keep.  Anybody else with this issue??

    My inclination is that it is something in the projects or in the manuals being linked that is the culprit because that is where the consistency lies - projects were created identically and manuals all follow identical formats. The problem typically only occurs after the project has been successfully created and the manual is subsequently updated and I am syncing the manual in RH so I can generate a new AIR file. This is the first time the project has consistently corrupted every time I try to generate the Word document after linking it in RH. This makes little sense to me since it generated fine a couple weeks ago and I did nothing special when I updated it in Word yet when I tried to update it in RH, that is when it originally corrupted. The bottom line is that I cannot 100% trust that any project I run will work the next time. I end up just crossing my fingers and hoping for the best.
    My problems seemed to start once I went to RH9 (from RH8) because we had upgraded from MS Office 2003 to the 2010 version and I needed 9 for the docx extension. Like I said, it is not all the time - I can be beating my head against the wall getting one of the projects to work, then create 3 more projects that have no problems and then the next one leaves me wanting to throw my PC through a window....
    Deleting the CPD does not corrupt the project, it just removes my default linked document that allows me to circumvent linking the styles individually for that project. Once I have a manual linked and I remove the CPD, it just creates a new one. What I am saying is that if I delete the CPD file, it does not prevent the project from corrupting nor does it make the corrupted project viable again.
    thanks!
    Kathi

  • When I click onto the firefox webbrowser, I get the message "firefox has stopped working, windows will close the application to find a solution to the problem " This has been going on for several days, I've had to go back IE to access web pages

    When I click onto the firefox webbrowser, I get the message "firefox has stopped working, windows will close the application to find a solution to the problem."

    I had this exact same problem.  I found this fix and it worked for me. 
    Step 1:
    Browse to C:\Program Files (x86)\Common Files\Apple\Apple Application Support and copy the filen named QTMovieWin.dll. 
    Step 2:
    Browse and past that file into C:\Program Files (x86)\iTunes.
    Hope this helps you.  I wish I could remember where I saw this originally so I could thank them.
    Good Luck.
    Anthony

Maybe you are looking for