Need help with an installation problem on XP.

I try to install iTunes and it comes up with this message... An error occurred during the installation of assembly 'Microsoft.VC80.CRT, version="8.0.80727.4053" type="win32," public key token="1fc8b3b9a1e18e3b" process or architecture="x86" please refer to help and support for more info. HRESULT:0x8007054F.
WHAT DO I DO?

Hi RyTemple,
If you are having issues installing iTunes on your Windows Machine, you may find the following article useful:
Apple Support: Trouble installing iTunes or QuickTime for Windows
http://support.apple.com/kb/ht1926
Cheers,
- Brenden

Similar Messages

  • I need help with a browser problem

    I am was given a new iMac G3 (from 2001) which was really never used.I have not yet had any serious problems with it, but really could use some help with a browser problem.
    I have 4 different web browsers that needs the macro media flash player update. The browsers I use are internet explorer, iCab, Netscape, and the original Mozilla Firefox.
    It would be of great appreciation for the readers of this post to answer my question.
    I am also having the problem with installing the plug - ins for the browsers. Thank You For Taking the Time To read This!

    Hi, rynodino -
    As Tom has suggested, plugins need to be installed in the Plug-Ins folder for the browser.
    Typically each browser will have its own Plug-Ins folder, usually located in the same folder containing the browser itself. In order for each of several browsers to access the same plugins, the plugins must be replicated and placed in each of the Plug-Ins folders for each of the browsers. The easy way to do that is to hold down the Option key while dragging a plugin to the new location - a copy (not an alias) of the plugin will be generated at the location it is dragged to.
    Most plugins will display a Netscape icon regardless of where they are located - this is normal.
    It is not unusual for the installer for a plugin to default its install to the Plug-Ins folder for Internet Explorer. So be it. Just replicate the new plugin to the other Plug-Ins folders as needed.
    Note that some plugin installs will involve more than one item. For those, be sure to replicate all items for it. Using labels can help identify what is new, what has been most recently added, in a Plug-Ins folder.

  • Please I really need help with this video problem.

    Hi!
    Please I need help with this app I am trying to make for an Android cellphone and I've been struggling with this for a couple of months.
    I have a main flash file (video player.fla) that will load external swf files. This is the main screen.When I click the Sets Anteriores button I want to open another swf file called sets.swf.The app is freezing when I click Sets Anteriores button
    Here is the code for this fla file.
    import flash.events.MouseEvent;
    preloaderBar.visible = false;
    var loader:Loader = new Loader();
    btHome.enabled = false;
    var filme : String = "";
    carregaFilme("home.swf");
    function carregaFilme(filme : String ) :void
      var reqMovie:URLRequest = new URLRequest(filme);
      loader.load(reqMovie);
      loader.contentLoaderInfo.addEventListener(Event.OPEN,comeco);
      loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,progresso);
      loader.contentLoaderInfo.addEventListener(Event.COMPLETE,completo);
      palco.addChild(loader); 
    function comeco(event:Event):void
              preloaderBar.visible = true;
              preloaderBar.barra.scaleX = 0;
    function progresso(e:ProgressEvent):void
              var perc:Number = e.bytesLoaded / e.bytesTotal;
              preloaderBar.percent.text = Math.ceil(perc*100).toString();
              preloaderBar.barra.scaleX =  perc;
    function completo(e:Event):void
              preloaderBar.percent.text = '';
              preloaderBar.visible = false;
    btHome.addEventListener(MouseEvent.MOUSE_DOWN,onHomeDown);
    btHome.addEventListener(MouseEvent.MOUSE_UP,onHomeUp);
    btSets.addEventListener(MouseEvent.MOUSE_DOWN,onSetsDown);
    btSets.addEventListener(MouseEvent.MOUSE_UP,onSetsUp);
    btVivo.addEventListener(MouseEvent.MOUSE_DOWN,onVivoDown);
    btVivo.addEventListener(MouseEvent.MOUSE_UP,onVivoUp);
    btHome.addEventListener(MouseEvent.CLICK,onHomeClick);
    btSets.addEventListener(MouseEvent.CLICK,onSetsClick);
    function onSetsClick(Event : MouseEvent) : void
              if (filme != "sets.swf")
                          filme = "sets.swf";
                          carregaFilme("sets.swf");
    function onHomeClick(Event : MouseEvent) : void
              if (filme != "home.swf")
                          filme = "home.swf";
                          carregaFilme("home.swf");
    function onHomeDown(Event : MouseEvent) : void
              btHome.y += 1;
    function onHomeUp(Event : MouseEvent) : void
              btHome.y -= 1;
    function onSetsDown(Event : MouseEvent) : void
              btSets.y += 1;
    function onSetsUp(Event : MouseEvent) : void
              btSets.y -= 1;
    function onVivoDown(Event : MouseEvent) : void
              btVivo.y += 1;
    function onVivoUp(Event : MouseEvent) : void
              btVivo.y -= 1;
    Now this is the sets.fla file:
    Here is the code for sets.fla
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    var video:Video;
    var nc:NetConnection;
    var ns:NetStream;
    var t : Timer = new Timer(1000,0);
    var meta:Object = new Object();
    this.addEventListener(Event.ADDED_TO_STAGE,init);
    function init(e:Event):void{
    video= new Video(320, 240);
    addChild(video);
    video.x = 80;
    video.y = 100;
    nc= new NetConnection();
    nc.connect(null);
    ns = new NetStream(nc);
    ns.addEventListener(NetStatusEvent.NET_STATUS, onStatusEvent);
    ns.bufferTime = 1;
    ns.client = meta;
    video.attachNetStream(ns);
    ns.play("http://www.djchambinho.com/videos/segundaquinta.flv");
    ns.pause();
    t.addEventListener(TimerEvent.TIMER,timeHandler);
    t.start();
    function onStatusEvent(stat:Object):void
              trace(stat.info.code);
    meta.onMetaData = function(meta:Object)
              trace(meta.duration);
    function timeHandler(event : TimerEvent) : void
      if (ns.bytesLoaded>0&&ns.bytesLoaded == ns.bytesTotal )
                ns.resume();
                t.removeEventListener(TimerEvent.TIMER,timeHandler);
                t.stop();
    The problem is when I test it on my computer it works but when I upload it to my phone it freezes when I click Sets Anteriores button.
    Please help me with this problem I dont know what else to do.
    thank you

    My first guess is you're simply generating an error. You'll always want to load this on your device in quick debugging over USB so you can see any errors you're generating.
    Outside that, if you plan on accessing anything inside the SWF you should be loading the SWF into the correct context. Relevant sample code:
    var context:LoaderContext = new LoaderContext();
    context.securityDomain = SecurityDomain.currentDomain;
    context.applicationDomain = ApplicationDomain.currentDomain;
    var urlReq:URLRequest = new URLRequest("http://www.[your_domain_here].com/library.swf");
    var ldr:Loader = new Loader();
    ldr.load(urlReq, context);
    More information:
    http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7de0.html
    If you're doing this on iOS you'll need to stripped SWFs if you plan on using any coding (ABC) inside the files. You mentioned iOS so I won't get into that here, but just incase, here's info on stripping external SWFs:
    http://blogs.adobe.com/airodynamics/2013/03/08/external-hosting-of-secondary-swfs-for-air- apps-on-ios/

  • Need help with this book problem...Pig game...can ANYONE help!??

    I need help with the following book problem...could someone write this code for me?? Thanks!!
    First design and implement a class called PairOfDice, composed of two six-sided Die objects. Using the PairOfDice class, design and implement a class to play a game called Pig. In this game, the user competes against the computer. On each turn, the current player rolls a pair of dice and accumulates points. The goal is to reach 100 points before your opponent does. If, on any turn, the player rolls a 1, all points accumulated for that round are forfeited and control of the dice moves to the other player. If the player rolls two 1s in one turn, the player loses all points accumulated thus far in the game and loses control of the dice. The player may voluntarily turn over the dice after each roll. Therefore the player must decide to either roll again (be a pig) and risk losing points, or relinquish control of the dice, possibly allowing the other player to win. Implement the computer player such that it always relinquishes the dice after accumulating 20 or more points in any given round.
    I realize this is a long code, so it would be greatly appreciated to anyone who writes this one for me, or can at least give me any parts of it. I honestly have no clue how to do this because our professor is a dumbass and just expects us to know how to do this...he doesn't teach us this stuff...don't ask. Anyways, thanks for taking the time to read this and I hope someone helps out!! Thank you in advance to anyone who does!!!

    Nasty comments? It's not a matter of not liking you, it's a matter of responding to the
    "I'ts everyone else's fault but mine" attitude of your post.
    If you are genuine, the program is very easy to write, so, your Professor is correct when he said you should
    be able to do it. I'm still very much in the beginner category at java, and it took me only 20 mins to write
    (+5 mins to design it on paper). 2 classes in one file < 100 lines. Most of the regulars here would do it in half the time / half the lines.
    All of the clues are in the description, break them down into their various if / else conditions. Write it down on paper.
    Have a go. Try to achieve something. Post what you've tried, no-one will laugh at you, and you will be
    pleasanty surprised at the level of help you will get when you've "obviously" made some effort.
    Again, have a go. If you don't like problem-solving, then you don't like programming. So, you gotta ask
    yourself - "what am I doin' here?"

  • Novice user needs help with associations (strange problem)

    Background
    =======
    I am in the process of updating several Hyperion reports from version 8.3 to 9.3.
    Each reports contains a number of sections/frames (eg. Home, Segments, Basic, Location, etc), and each frame contains several items - tables, pivot tables and charts.
    Three out of the four reports are working perfectly, and when I connect to each using Dashboard Studio (DS) I can see that the associations for all the items are assigned correctly.
    The problem
    ========
    Report 4 only has associations assigned to two of the sections, but the basic functionality (selecting stuff to update charts and tables etc) is working.
    I now need to enable the "export" and "sort" buttons in the remaining sections and the only way to do this is to associate the remaining sections using DS. After doing this via the "make a best-guess association" button, the basic functionality is now broken - many charts, pivots and tables have had their visible properties turned off.
    Observations
    =========
    All four reports have the following lines of code at the top of each section:
    if (ActiveDocument.Qiq_blnTemplateInitialized)
    { ActiveDocument.Qiq_clsGlobals.Qiq_base_Frame_OnActivate(this) }
    If I remove this code in report 4 the basic functionality is restored but there are now issues with the drop-down lists not returning to their initial (unselected) states.
    So I think the issue is related to associations and frames. Any thoughts?
    Thankyou
    Jon

    I would suggest you try a fresh installation of Leopard on your computer. Make sure you back-up your files that you want to keep before proceeding.
    Use the install disc that came with your computer, either by inserting the disc in your disc drive and restarting the computer while holding down the c key, or by initiating the installer from the window that opens automatically when the disc is inserted.
    Follow the prompts once presented with the installation environment, but watch for an "Options" button in the lower-left corner of the window. When presented with this, choose "Erase & Install" and select "Mac OS Extended (Journaling)". Continue to the next screen.
    Look for the "Customize" button in the lower-left corner. With this screen, you're allowed to select what's installed on your computer. You likely don't need all the printer drivers, and you may or may not need the extra languages packs. X11 is your choice, but I choose to have it installed despite never using it.
    Start the installation, and when the installer starts "verifying" your install disc, click the Skip button. Don't interfere with the installation process, and the computer will restart on its own when finished.
    Setup your computer as before, and then use the Tiger install disc to re-install your iLife applications. You may contact me directly if you'd like to ask questions (alter the following address): spam [at] emoore [dot] org

  • Need help with WRT54G installation

    I just replaced a BEFSR41 with a WRT54G v.8, and came across an installation problem. I had no problem manually installing the BEFSR41 by following the Start Fast instruction. Since the WRT54G didn't come with a Start Fast document, I used the CD instead. After connecting the router to the PC (winXP), and the modem to the router, I kept getting a message about not being able to connect to the Internet. But in fact I was connected, and could access the Net fine. Is there something need fixing? Perhaps another factory reset? A few other questions:
    - When I tried to print the settings, I was asked to install a printer. But I already have three printers installed. How can I print or save the settings?
    - After exiting setup, browsing 192.168.1.1 showed a blank page. ZoneAlarm was disabled, and all other pages worked fine. What is going on?
    - My firmware version is 8.00.2. Should I upgrade it.
    Once I get these resolved, I have some very interesting speed test data to share.

    Update. After factory reset and firmware upgrade, I followed the manual installation suggested in the archive here:
    http://forums.linksysbycisco.com/linksys/board/message?board.id=Wireless_Routers&message.id=146133&query.id=553973#M146133
    Now things seem a lot better. The firmware rev is now 8.00.8, and I can access the 192.168.1.1 page. Please let me knwo what else I should check. Still have to shut down ZoneAlarm to browse with Firefox.
    I'll repeat the speed tests and report later.

  • Need help with simple mask problem

    hi there this is mark from superbooty a band that has played in the bay area for over 10 years...
    i was wondering if someone could help me with a Motion2 problem i'm having regarding masks.
    i'm working on this simple animated scene of a car going by a beach - the photo is from the passenger side and shows the outside mirror.
    i'm moving the background (different from the original that came with the car) and i want to move an image of tokyo inside the mirror housing too.
    i figured out how to do the mask but when i try to animate the image of tokyo the mask layer moves with it. when i lock the mask i can't move the image - ???
    there's got to be a way to lock the mask but be able to move what it is masking..
    here are the links to three images that show what the problem is - the first is
    the shot of the scene unmasked, shot 2 is the scene with the mask enabled, and the third is the shot when i try to animate the tokyo background:
    http://superbooty.com/mirrorbeach1.jpg
    http://superbooty.com/mirrorbeach2.jpg
    http://superbooty.com/mirrorbeach3.jpg
    any help would be most appreciated - thanks!

    Adam's solution is the one I'd use - put the mirror contents in a layer, mask the layer, then manipulate the mirror content image. Did this solve it for you - if so, please click on the or buttons over posts as appropriate...
    Patrick

  • Tecra R840 - Need help with SSD installation

    Hello,
    sorry again, but I really need some help with this?
    My new ssd (arriving in a couple of days) is a Plextor M5P which is 7mm thick! My Tecra R840-16J have a 9.5 mm thick hdd and for what I saw there is no caddy!
    I would appreciate all the tips to install the ssd in my Tecra!
    Thanks for you time,
    paulo

    Hello Paulo
    As far as I know some models are offered with HDD and some with SSD these models offered with SSD have small SSD holder. SSD is fixed with 4 screws into this holder.
    I really dont know how to help you now. Maybe you should contact nearest Toshiba service provider and ask for help. I think they can check part number of this holder or maybe order one for you.

  • Need help with drive installation for K9N2 SLI Platinum

     
    Hi
    I am new to the forum and to MSI
    This is my 6th computer build and first time using SATA and PCIe
    My hardware includes:
    •   MSI K9N2 SLI Platinum Motherboard
    •   Corsair XMS2 TWIN2X4096-6400C5
    •   GeForce 9800 GT 512MB GDDR3
    •   AMD Phenom X4 9850 Quad Core Processor, Black Edition 2.5GHz
                    4MB Cache 2000MHz [4000 MT/s] FSB
    •   Thermaltake  Ruby Orb Aluminum Core CPU Cooler
    •   UltraX3 850 Watt ATX Modular Power Supply
    •   [1] Western Digital 200MB7200 ATA133
    •   [1] Maxtor 80MB ATA133 Drive  [Not connected yet]
    •   [1] Western Digital 500GB 7200RPM 16MB SATA II HARD DRIVE
    •   [2] Seagate 7200.11 ST3500320AS 500GB SATA Hard Drives With 32 MB Cache   
                    [Not  connected]
    •   LG DVD-RW
    •   Toshiba DVD-ROM
    •   AMI Bios
    •   Antec Full Tower case
    The board set up fine, but I can’t figure out how to install my drives. The MSI directions are the worse I’ve ever seen, or should I say non-existent. They don’t even describe the bios entries… I am familiar with the bios, but don’t know all the settings for the board. I set the time and date and had to rearrange my drive placement on the board to have my 2 DVD drives show up on the secondary IDE Channel instead of the primary IDE.  The Western Digital 200MB7200 ATA133 is on the primary master IDE. I’m old fashioned so I still use FDISK to erase the old OS and partition the drive… I couldn’t see my SATA drive in FDISK even though I could see it in the bios. Now I want my Western Digital 500GB 7200RPM 16MB SATA II HARD DRIVE to be the system drive and the Western Digital 200MB7200 ATA133 to be a slave drive. My previous boards had raid but I just used them as additional slave drives.
    My goals: I want to have redundancy for my personal audio/video and my work. I will use the 2 Seagate 7200.11 ST3500320AS 500GB SATA drives for that.
    I also want 2 additional drives not purchased yet for my other data storage needs and for games
    My questions are:
    Can I use the SATA drive as the system drive if a drive is connected to the primary IDE?
    How do I set up Raid on this board? I actually want to use its capabilities this time.
    Does this board present any special problems with dual booting XP sp2 and Vista 64bit.
    If I put another set of Corsair XMS2 TWIN2X4096-6400C5 in anticipation of installing Vista 64bit will this cause a problem other than windows XP not seeing the additional memory.
    Is there additional documentation for this board somewhere?
    Please help…I have been working on this thing for 4 days straight. My last build took 2 hours not including software installation. Hope I stated everything you need to know. Thanks in advance  

    Hello!
    Advice no. 1 will be not to have everything connected at once. Have the chosen SATA and one of the DVD:s connected and install Windows. (Windows can only boot from bootable devices. It "jumps" all un-bootable.) Once you have a successful boot and happy with it, remove other things from the boot-sequence.
    Eh, some of your questions suggest you don't have the full manual, but a multi-lingual one. Check this out, bottom of the list:
    http://global.msi.com.tw/index.php?func=downloadfile&dno=6745&type=manual

  • Need help with applet related problems

    First of all hello to everyone. I'm new to this forum. I usually can solve my problems google-ing around, but this time I just ran out of ideas.
    I'm trying to develop a jni applet that can run native code for performance. I used netbeans so far and the applet works great when run from within the ide. At some point a managed to make the applet run inside firefox and iexplore, however somehow i screwed something up and now i can't make it run anymore. I don't really know what i did but i think it may be related to these lines in the console since everything up until awt works fine in the applet:
    basic: JNLP2ClassLoader.findLibrary: Looking up native library: jawt.dll
    network: Looking up native library in: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\jawt.dll
    basic: Native library jawt.dll not found
    Ofc i may be wrong.
    This also my be a local problem because a friend of mine tried the applet himself and said it's working.
    All the jars are selfsigned.
    below i posted the console output in case you want to take a look. Also I am interested about the "try again.." messages that seem to pop over and over again.
    Java Plug-in 1.6.0_27
    Using JRE version 1.6.0_27-b07 Java HotSpot(TM) Client VM
    User home directory = C:\Users\Gladiator
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition value null
    security: property package.definition new value com.sun.javaws
    security: property package.definition value com.sun.javaws
    security: property package.definition new value com.sun.javaws,com.sun.deploy
    security: property package.definition value com.sun.javaws,com.sun.deploy
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp, version: null]
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp, version: null]
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp, version: null]
    network: ResponseCode for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp : 200
    network: Encoding for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp : null
    network: Sever response: (length: 564, lastModified: Wed Sep 07 16:30:17 EEST 2011, downloadVersion: null, mimeType: application/x-java-jnlp-file)
    network: Downloading resource: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
         Content-Length: 564
         Content-Encoding: null
    network: Wrote URL file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp to File C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\57\7465fe39-7a36cd96-temp
    network: Cache: Enable a new CacheEntry: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
    temp: new XMLParser with source:
    temp: <?xml version="1.0" encoding="UTF-8"?>
    <jnlp href="launch.jnlp">
    <information>
    <title>test app</title>
    <vendor>Raven</vendor>
    </information>
    <resources>
    <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se" />
    <jar href="SpaceGame.jar" main="true" />
    </resources>
    <resources os="Windows">
    <nativelib href="lib/swt.jar"/>
    </resources>
    <applet-desc
    name="test app"
    main-class="javatest.JTest"
    width="800"
    height="600">
    </applet-desc>
    <security>
    <all-permissions/>
    </security>
    </jnlp>
    temp:
    returning ROOT as follows:
    <jnlp href="launch.jnlp">
    <information>
    <title>test app</title>
    <vendor>Raven</vendor>
    </information>
    <resources>
    <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
    <jar href="SpaceGame.jar" main="true"/>
    </resources>
    <resources os="Windows">
    <nativelib href="lib/swt.jar"/>
    </resources>
    <applet-desc name="test app" main-class="javatest.JTest" width="800" height="600"/>
    <security>
    <all-permissions/>
    </security>
    </jnlp>
    temp: returning LaunchDesc from XMLFormat.parse():
    <jnlp spec="1.0+" codebase="file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/" href="file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp">
    <information>
    <title>test app</title>
    <vendor>Raven</vendor>
    <homepage href="null"/>
    </information>
    <security>
    <all-permissions/>
    </security>
    <update check="timeout" policy="always"/>
    <resources>
    <java href="http://java.sun.com/products/autodl/j2se" version="1.6+"/>
    <jar href="file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar" download="eager" main="true"/>
    <nativelib href="file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar" download="eager" main="false"/>
    </resources>
    <applet-desc name="test app" main-class="javatest.JTest" documentbase="file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.html" width="800" height="600"/>
    </jnlp>
    network: CleanupThread used 16572 us
    basic: Plugin2ClassLoader.addURL2 called for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    basic: Plugin2ClassLoader.addURL2 called for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    basic: Plugin2ClassLoader.drainPendingURLs addURL called for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    basic: Plugin2ClassLoader.drainPendingURLs addURL called for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    network: No Custom Progress jar
    network: LaunchDownload: concurrent downloads from LD: 4
    network: Total size to download: -1
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar, version: null]
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar, version: null]
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar, version: null]
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar, version: null]
    network: ResponseCode for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar : 200
    network: ResponseCode for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar : 200
    network: Encoding for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar : null
    network: Encoding for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar : null
    network: Sever response: (length: 12948, lastModified: Tue Sep 06 22:46:50 EEST 2011, downloadVersion: null, mimeType: application/x-java-archive)
    network: Sever response: (length: 2007707, lastModified: Tue Sep 06 22:47:10 EEST 2011, downloadVersion: null, mimeType: application/x-java-archive)
    network: CleanupThread used 1 us
    network: Downloading resource: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
         Content-Length: 12,948
         Content-Encoding: null
    network: Downloading resource: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
         Content-Length: 2,007,707
         Content-Encoding: null
    network: Wrote URL file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar to File C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\5\26fb4185-10c9079c-temp
    network: Validating file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar , version null...
    security: Blacklist revocation check is enabled
    security: Trusted libraries list check is enabled
    network: Cache: Enable a new CacheEntry: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    network: CleanupThread used 1 us
    network: Downloaded file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar: file:/C:/Users/Gladiator/AppData/LocalLow/Sun/Java/Deployment/cache/6.0/5/26fb4185-10c9079c
    network: Download Progress: jarsDone: 1
    network: Wrote URL file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar to File C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-temp
    network: Validating file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar , version null...
    network: Cache: Enable a new CacheEntry: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    network: CleanupThread used 2 us
    network: Downloaded file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar: file:/C:/Users/Gladiator/AppData/LocalLow/Sun/Java/Deployment/cache/6.0/10/1082924a-7851bf5e
    network: Download Progress: jarsDone: 2
    network: Created version ID: 1.6+
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6
    basic: LaunchDesc location: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
    network: Created version ID: 1.0+
    network: Created version ID: 6.0.18
    security: Validating signatures for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
    security: TustedSet null
    security: Empty trusted set for [file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp]
    security: Round 1 (0 out of 2):file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    security: Entry [file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar] is not prevalidated. Revert to full validation of this JAR.
    security: Round 2 (0 out of 2):file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    security: Validating cached jar url=file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar ffile=C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\5\26fb4185-10c9079c com.sun.deploy.cache.CachedJarFile@698403
    security: Round 2 (1 out of 2):file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    security: Validating cached jar url=file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar ffile=C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e com.sun.deploy.cache.CachedJarFile@e80842
    security: Have 1 common certificates after processing file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    security: Istrusted: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp false
    security: Accessing keys and certificate in Mozilla user profile: null
    security: Loading Root CA certificates from C:\Program Files (x86)\Java\jre6\lib\security\cacerts
    security: Loaded Root CA certificates from C:\Program Files (x86)\Java\jre6\lib\security\cacerts
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    security: User has granted the priviledges to the code for this session only
    security: Adding certificate in Deployment session certificate store
    security: Added certificate in Deployment session certificate store
    security: Saving certificates in Deployment session certificate store
    security: Saved certificates in Deployment session certificate store
    security: Mark trusted: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
    basic: LD - All JAR files signed: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
    basic: passing security checks; secureArgs:true, allSigned:false
    basic: continuing launch in this VM
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    basic: JNLP2ClassLoader.findClass: javatest.JTest: try again ..
    basic: JNLP2ClassLoader.getPermissions() ..
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    basic: Plugin2ClassLoader.getPermissions CeilingPolicy allPerms
    security: JAVAWS AppPolicy Permission requested for: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    basic: JNLP2ClassLoader.getPermissions() X
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.events.PaintListener: try again ..
    basic: JNLP2ClassLoader.getPermissions() ..
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    basic: Plugin2ClassLoader.getPermissions CeilingPolicy allPerms
    security: JAVAWS AppPolicy Permission requested for: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    basic: JNLP2ClassLoader.getPermissions() X
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.SWTEventListener: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Drawable: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Layout: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.layout.FillLayout: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Composite: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Scrollable: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Control: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Widget: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Shell: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Decorations: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Canvas: try again ..
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    basic: Applet loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 81605 us, pluginInit dt 2397573 us, TotalTime: 2479178 us
    basic: JNLP2ClassLoader.findClass: javatest.JTest$1: try again ..
    basic: Applet initialized
    C:\Users\Gladiator\AppData\Roaming
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Display: try again ..
    basic: Removed progress listener: null
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Device: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.TEXTMETRICW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.TEXTMETRIC: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.TEXTMETRICA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.LOGFONTW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.LOGFONT: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.LOGFONTA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NONCLIENTMETRICSW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NONCLIENTMETRICS: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NONCLIENTMETRICSA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Event: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OS: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.C: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.Platform: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFO: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFOW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFOA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFOEXW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFOEX: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFOEXA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.Lock: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.Library: try again ..
    basic: JNLP2ClassLoader.findLibrary: Looking up native library: swt-win32-3735.dll
    network: Looking up native library in: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\swt-win32-3735.dll
    basic: JNLP2ClassLoader.findLibrary: native library found: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\swt-win32-3735.dll
    basic: Applet made visible
    basic: Starting applet
    basic: completed perf rollup
    basic: Applet started
    basic: Told clients applet is started
    basic: JNLP2ClassLoader.findLibrary: Looking up native library: swt-win32-3735.dll
    basic: JNLP2ClassLoader.findLibrary: native library found: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\swt-win32-3735.dll
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.TCHAR: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.ACTCTX: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.DLLVERSIONINFO: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.STARTUPINFO: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Display$1: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Font: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Resource: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.Callback: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.WNDCLASS: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.TaskBar: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Listener: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.PAINTSTRUCT: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.GCData: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.GC: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.PROPERTYKEY: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.HIGHCONTRAST: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.MSG: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Synchronizer: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.SWT: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.SWTError: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.SWTException: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Cursor: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NMHDR: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NMLVDISPINFO: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.awt.SWT_AWT: try again ..
    basic: JNLP2ClassLoader.findLibrary: Looking up native library: jawt.dll
    network: Looking up native library in: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\jawt.dll
    basic: Native library jawt.dll not found
    basic: JNLP2ClassLoader.findLibrary: Looking up native library: swt-awt-win32-3735.dll
    basic: JNLP2ClassLoader.findLibrary: native library found: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\swt-awt-win32-3735.dll
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.MenuItem: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Item: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Menu: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NMTTDISPINFOA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NMTTDISPINFO: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NMTTDISPINFOW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.ToolTip: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.awt.SWT_AWT$11: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.awt.SWT_AWT$13: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.EventTable: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.WINDOWPOS: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.LRESULT: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.RECT: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Point: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.SerializableCompatibility: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Rectangle: try again ..
    basic: JNLP2ClassLoader.findClass: javatest.JTest$3: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.TypedListener: try again ..
    -----

    I am sorry for bold, i came here to ask for help. I used bold to differentiate output from my questions since i couldn't find tags.
    I already validated jnlp using JaNeLA and got only optimization suggestions.
    As I said in first post, this works for a friend of mine, so it's possible a local issue with my java or something ...
    Also i reinstalled jre/jdk 7.0, then uninstalled and installed latest jre/jdk 6.
    Hope I didn't leave a bad impression, i just want help.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How do I get Adobe to help with an installation problem?

    I removed Windows Vista, and installed XP instead. Then tried to install CS3 using the file I downloaded from Adobe 2 years ago. It installed Acrobat, but the other components (InDesign, Photoshop, Illustrator) failed with “Component not installed.” No error message. Never even asked for my serial number.
    Phoned Adobe support on Sunday: closed.
    Phoned again on Monday. Told to run CSClean. Did not solve problem. Phoned back. Swapped around departments (2 hours total on hold.) Promised they would email a link to download the installation file again. No email sent.
    Phoned again Tuesday. More hours on hold. More promised link. Never sent.
    Phoned again Wednesday. More hours on hold. Finally given a zip file link. Downloaded it 3 times, using different software (browser, FTP client.) I received the exact number of bytes on Adobe’s server, but the file is “not a valid archive” — rejected both by Windows itself and by WinZip.
    We’ve now lost 3 days work, and cancelled clients for Thurs as well.
    Utterly frustrated! WHAT DO I HAVE TO DO TO GET ADOBE TO HELP???

    Please post your tale of woe here:
    http://forums.adobe.com/community/general/adobedotcom_feedback
    Adobe personell monitor this forum. You might post your casenumber. Hopefully, someone will arrange TS to call you back or provide some other avenue for help.

  • Need help with new email problem

    Hi friends . . . I'm not sure if this is a forum that could help me figure out my new problem . . . but I'll give it a try. . .I need some help . . . My email is sometimes being sent to the wrong address. Instead of my Yahoo address, they're sent to AOL instead. At first I thought this was an eBay or Paypal problem, but other mail that I subscribe to is all of a sudden going to AOL instead of my Yahoo address . . .In all of these cases, the AOL address was never registered with the site. I'm not using an external POP mail program . . . just standard Yahoo mail with iMac and Firefox. Anyone have any clue what's going on . . . .thanks in advance for any help . . .

    You're using Google Mail : you should have said that earlier. the more information you give, the faster the solution.
    Then it's easy for you. Please read this article from the public knowledge base :
    http://www.blackberry.com/btsc/KB10332
    Duplicate sent email message arrives on BlackBerry smartphone when sent using Gmail
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Need help with epm installation

    hello,
    I´m triying to install EPM 11.1.1.3 with essbase, hyperion planning, profitability and cost, smart view and financial reporting in a virtual machine with windows server 2003. I´m unable to do it because i get errors. I don´t know what to do. Someone can help me?
    This is my installTool-install.log
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.wizard.Main, INFO, Installer Version: 11.1.1.3.0.3663
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.log.StdStreamsCaptureUtil, INFO, Trying to replace System.out and System.err..
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.log.DeferredOutputStream, INFO, DeferredOutputStream created.
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.log.LoggedOutputStream, INFO, LoggedOutputStream created.
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.log.DeferredOutputStream, INFO, DeferredOutputStream created.
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.log.LoggedOutputStream, INFO, LoggedOutputStream created.
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.log.StdStreamsCaptureUtil, INFO, Replaced System.out and System.err.
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Checking if the file exist: Z:\assemblies... Ok
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Checking if the file exist: Z:\help... Ok
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Checking if the file exist: Z:\jre... Ok
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Checking if the file exist: Z:\oui... Ok
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Checking if the file exist: Z:\setup.jar... Ok
    (mar 14, 2011, 05:23:42 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Check assemblies:
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_product_reporting_client... Not exists
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_financial_reporting_services\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_financial_reporting_client\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_interactive_reporting_services... Not exists
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\tools\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\hpm\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_financial_reporting_webapp\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\hfm_client... Not exists
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_migration_utility\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\essbaseAddins\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_dds... Not exists
    (mar 14, 2011, 05:23:43 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\hfm_common... Not exists
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\analytic_services_provider_webapp\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\essbase_administration_services_client\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\planning\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_product_reporting_services... Not exists
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\svchve_client\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\hfm_services... Not exists
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\essbase_integration_services\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\offlinePlanning\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\aif... Not exists
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\calc\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\essbase_services\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\bpm_architect_datasync\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:44 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\workspace_configlibs\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\essbase_smartsearch_webapp\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\bpm_architect_batch_client\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\productCommonComponents\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\hsf_server... Not exists
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\hps_webapp... Not exists
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\bpm_architect_webapp\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_product_reporting_common... Not exists
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\fdm... Not exists
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\hsf_client... Not exists
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_financial_reporting_common\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\bpm_architect_generator\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_webanalysis_webapp... Not exists
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_workspace_webapp\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:45 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\essbase_client\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\sharedServices\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\hsf_reader_client... Not exists
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_portlets_webapp\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\essbase_studio\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_configlibs\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\commonComponents\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_core_services\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\essbaseProductCommonComponents\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\essbase_studio_services\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\biplus_interactive_reporting_client... Not exists
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\bpm_architect_services\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\hfm_webapp... Not exists
    (mar 14, 2011, 05:23:46 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\essbase_administration_services_webapp\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:47 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\svc_client\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:47 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Z:\assemblies\rmi\9.5.0.0\assembly.dat... Ok
    (mar 14, 2011, 05:23:47 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Result of checking assemblies: Ok
    (mar 14, 2011, 05:23:47 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Checking environment variables... Ok
    (mar 14, 2011, 05:23:47 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Checking user home...Ok
    (mar 14, 2011, 05:23:47 PM), com.hyperion.install.context.preinstall.PreinstallCheck, INFO, Checking user is admin... Ok
    (mar 14, 2011, 05:24:01 PM), com.hyperion.install.wizard.Main, WARN, Can not write messages in national language to console.
    (mar 14, 2011, 05:24:01 PM), com.hyperion.install.wizard.Main, INFO, Selected locale: es
    (mar 14, 2011, 05:24:02 PM), com.hyperion.hit.wizard.Wizard, INFO, Starting wizard.
    (mar 14, 2011, 05:24:02 PM), com.hyperion.hit.wizard.Wizard, INFO, Wizard state is:WelcomeWizardState
    (mar 14, 2011, 05:24:07 PM), com.hyperion.hit.wizard.Wizard, INFO, Wizard state is:DestinationState
    (mar 14, 2011, 05:24:10 PM), com.hyperion.hit.wizard.Wizard, INFO, Wizard state is:InstallTypeState
    (mar 14, 2011, 05:24:13 PM), com.hyperion.hit.wizard.Wizard, INFO, Wizard state is:FeatureSelectionState
    (mar 14, 2011, 05:24:16 PM), com.hyperion.install.context.DiskSpaceCheck, INFO, Required disk space: 4876
    (mar 14, 2011, 05:24:16 PM), com.hyperion.install.context.DiskSpaceCheck, INFO, Free desk space: 6739
    (mar 14, 2011, 05:24:16 PM), com.hyperion.hit.wizard.Wizard, INFO, Wizard state is:InstallConfirmationState
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.wizard.impl.SummaryToInstallRule$1, INFO, Sending stdout/stderr logs to C:\Oracle\Middleware\EPMSystem11R1\logs\install
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.StdStreamsCaptureUtil, INFO, Trying to create log files for stdout/stderr in directory: C:\Oracle\Middleware\EPMSystem11R1\logs\install
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.LoggedOutputStream, INFO, Trying to set logStream..
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.DeferredOutputStream, INFO, Trying to set backingStream..
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.DeferredOutputStream, INFO, Setting backingStream: succeeded.
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.LoggedOutputStream, INFO, Setting logStream: succeeded.
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.LoggedOutputStream, INFO, Trying to set logStream..
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.DeferredOutputStream, INFO, Trying to set backingStream..
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.DeferredOutputStream, INFO, Setting backingStream: succeeded.
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.LoggedOutputStream, INFO, Setting logStream: succeeded.
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.StdStreamsCaptureUtil, INFO, Created log files for stdout/stderr.
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.StdStreamsCaptureUtil, INFO, stdoutLogLocation = C:\Oracle\Middleware\EPMSystem11R1\logs\install\installTool-install-stdout.log
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.log.StdStreamsCaptureUtil, INFO, stderrLogLocation = C:\Oracle\Middleware\EPMSystem11R1\logs\install\installTool-install-stderr.log
    (mar 14, 2011, 05:24:19 PM), com.hyperion.install.action.InstallActionBuilder, INFO, Installation Type: New-Tier
    (mar 14, 2011, 05:24:19 PM), com.hyperion.hit.wizard.Wizard, INFO, Wizard state is:InstallationState
    (mar 14, 2011, 05:27:04 PM), com.hyperion.cis.CISUpdatePanelSetHostName, WARN, unknown panel id passed in: panelEnterURLBean
    (mar 14, 2011, 05:27:21 PM), com.hyperion.install.action.impl.InstallCheckMessageHandler, ERROR, Installation check "diskspace" failed
    (mar 14, 2011, 05:27:26 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Foundation
    (mar 14, 2011, 05:27:27 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\aps
    (mar 14, 2011, 05:27:27 PM), com.hyperion.cis.ConfigToolProductInfo, WARN, Failed to create task dependencies file: java.io.IOException: entry 42c4ff4856ad80c9f182bd4b099eb30c/configtoolInfo1_dependencyFile does not exist in Z:\assemblies\analytic_services_provider_webapp\9.5.0.0\assembly.dat
    (mar 14, 2011, 05:27:28 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Foundation\workspace
    (mar 14, 2011, 05:27:28 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\biplus
    (mar 14, 2011, 05:27:28 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\biplus
    (mar 14, 2011, 05:27:29 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Foundation\workspace
    (mar 14, 2011, 05:27:29 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Foundation\BPMA
    (mar 14, 2011, 05:27:29 PM), com.hyperion.cis.ConfigToolProductInfo, WARN, Failed to create task dependencies file: java.io.IOException: entry aee2fb92d4db8d475685a6b6127db691/awbconfigToolProductInfo_dependencyFile does not exist in Z:\assemblies\bpm_architect_datasync\9.5.0.0\assembly.dat
    (mar 14, 2011, 05:27:43 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Foundation\BPMA
    (mar 14, 2011, 05:27:43 PM), com.hyperion.cis.ConfigToolProductInfo, WARN, Failed to create task dependencies file: java.io.IOException: entry 1d6fa3550dda38facdbd60c8ae87879e/awbconfigToolProductInfo_dependencyFile does not exist in Z:\assemblies\bpm_architect_services\9.5.0.0\assembly.dat
    (mar 14, 2011, 05:27:44 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Foundation\BPMA
    (mar 14, 2011, 05:27:44 PM), com.hyperion.cis.config.ProductConfigWriter, INFO, Application with port 19000 allready exist: EPMADataSynchronizer
    (mar 14, 2011, 05:27:44 PM), com.hyperion.cis.config.ProductConfigWriter, INFO, Setting application server to
    (mar 14, 2011, 05:27:44 PM), com.hyperion.cis.ConfigToolProductInfo, WARN, Failed to create task dependencies file: java.io.IOException: entry fba4b91ca4553df98a0b46d331879bd7/awbconfigToolProductInfo_dependencyFile does not exist in Z:\assemblies\bpm_architect_webapp\9.5.0.0\assembly.dat
    (mar 14, 2011, 05:27:44 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Foundation\CALC
    (mar 14, 2011, 05:27:44 PM), com.hyperion.cis.ConfigToolProductInfo, WARN, Failed to create task dependencies file: java.io.IOException: entry 599031a7abc932cbaeea509f5535ac31/configToolProductInfo_dependencyFile does not exist in Z:\assemblies\calc\9.5.0.0\assembly.dat
    (mar 14, 2011, 05:27:44 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\eas
    (mar 14, 2011, 05:27:44 PM), com.hyperion.cis.ConfigToolProductInfo, WARN, Failed to create task dependencies file: java.io.IOException: entry ea3591f5783c2ffc0890a5df284dc8df/configtoolproductXmlWrite1_dependencyFile does not exist in Z:\assemblies\essbase_administration_services_webapp\9.5.0.0\assembly.dat
    (mar 14, 2011, 05:27:47 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseServer
    (mar 14, 2011, 05:27:47 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\SmartSearch
    (mar 14, 2011, 05:27:47 PM), com.hyperion.cis.ConfigToolProductInfo, WARN, Failed to create task dependencies file: java.io.IOException: entry 6cefaf1c9efa07ea4437624dd6b6a998/bid_ConfigToolInfo_win32_dependencyFile does not exist in Z:\assemblies\essbase_smartsearch_webapp\9.5.0.0\assembly.dat
    (mar 14, 2011, 05:27:48 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: \EssbaseStudio
    (mar 14, 2011, 05:27:48 PM), com.hyperion.cis.ConfigToolProductInfo, WARN, Failed to create task dependencies file: java.io.IOException: entry 73a2db9f0d610372a260482ec72d329a/ConfigtoolProductInfo_dependencyFile does not exist in Z:\assemblies\essbase_studio_services\9.5.0.0\assembly.dat
    (mar 14, 2011, 05:27:48 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Profitability
    (mar 14, 2011, 05:27:48 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Planning
    (mar 14, 2011, 05:27:49 PM), com.hyperion.cis.ConfigToolDocument, WARN, Invalid Product Location: C:\Oracle\Middleware\EPMSystem11R1\products\Foundation
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for commonComponents is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseProductCommonComponents is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for productCommonComponents is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for tools is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for biplus_migration is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for ws_configlibs is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for hssWebApp is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for workspaceWebApp is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for workspaceService is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for smartViewClient is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for epmaClient1 is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for epmaGenerator is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for BPMAWebApp is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for epmaDataSync is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for epmaServices is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for CalcWebApp is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for offlinePlanningClient is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for planningWebApp32 is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseAddins is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseClient32 is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseAdministrationConsole is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseClientStudio is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseIntegrationServiceClient32 is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseWebApp32 is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseApsWebApp is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseSmartSearchWebApp is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseIntegrationServiceServer32 is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseStudioService is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for essbaseService32 is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for frClient is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for frWebApp is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for fr.server.reports is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for fr.server.print is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for fr.server.scheduler is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.wizard.impl.InstallableItemsUtil, INFO, Completion status for osloWebApp is fail
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.action.impl.OUIExecAction, INFO, Creating Oracle inventory.
    (mar 14, 2011, 05:27:55 PM), com.hyperion.cis.utils.ScriptFileModifier, INFO, File C:\Oracle\Middleware\EPMSystem11R1\common\config\9.5.0.0\startconfigtool.bat does not exist - creating it...
    (mar 14, 2011, 05:27:55 PM), com.hyperion.install.util.ConsoleUtil, ERROR, Can not find string, that run java
    (mar 14, 2011, 05:27:56 PM), com.hyperion.hit.wizard.Wizard, INFO, Wizard state is:InstallSummaryState
    thank you

    (mar 14, 2011, 05:27:21 PM), com.hyperion.install.action.impl.InstallCheckMessageHandler, ERROR, Installation check "diskspace" failed
    --- Seems like you do not have enough diskspace.
    (mar 14, 2011, 05:27:27 PM), com.hyperion.cis.ConfigToolProductInfo, WARN, Failed to create task dependencies file: java.io.IOException: entry 42c4ff4856ad80c9f182bd4b099eb30c/configtoolInfo1_dependencyFile does not exist in Z:\assemblies\analytic_services_provider_webapp\9.5.0.0\assembly.dat
    --- Have you downloaded and unzipped all the components that are needed?
    If you downloaded files to a central location, make sure you unzip the following common files. If you downloaded files to multiple machines in your deployment, on each machine in the deployment, unzip the following common files:
    l Oracle Hyperion Enterprise Performance Management System Installer, Fusion Edition Release 11.1.1.3.0
    l Hyperion Enterprise Performance Management System Foundation Services Release 11.1.1.3.0 Part 1 of 4
    l Hyperion Enterprise Performance Management System Foundation Services Release 11.1.1.3.0 Part 2 of 4
    l Hyperion Enterprise Performance Management System Foundation Services Release 11.1.1.3.0 Part 3 of 4
    l Hyperion Enterprise Performance Management System Foundation Services Release 11.1.1.3.0 Part 4 of 4
    Refer Page 20 of http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_install.pdf and Page 19 of http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_install_start_here.pdf
    HTH-
    Jasmine.

  • I need help with a iMac problem my brother has!

    Hello! So my brothers old iMac (around 2-3 years old) would just not start. When i pressed the start button on the back of the computer the screen just turned white with a apple logo in the middle and the typical wheel spinning. We waited for about 30 minutes but still nothing. My friend told me to hold shift+command+r+p and that brings up a menu after a while if i want to restore from time machine, reinstall max os x, get help on the internet or so some stuff with the discs. The last 2 things are not important tho. When i then press "restore from timemachine" or something it starts to search for a backup. After 10 minutes it still hasnt found one. So i went back and clicked "reinstall mac os x" and it showed the disks i was going to install the new mac os x software on.
    There was one called "Macintosh HD" and one called "Recovery HD". But they both were locked and i could not install mac os x beacause they were the only 2 disks there. Macintosh HD was about 600GB memory and 150GB free and the other one was only about 600MB. How can i fix this? It would be nice if we could restore the computer back to before because he had some things from school but if it dosnt work we can do a full new mac os x so it is all new and no programs/users on it. I hope you understood what i said because my english is not that good
    Its OS x 10.8.4 i think, might be 10.8.2/3 or something xD

    I suggest verifying that your hard drive is OK. First power off the system, then hold down the Command and R keys to get into the Mac OS X recovery mode. Once you select your language you can run Disk Utility to determine whether your hard drive is functioning correctly. I suggest using the 'Repair Disk' and Repair Disk Permissions' options. If Disk Utility finds problems (SMART errors) then you will need to get them resolved before proceeding. I believe too many SMART errors can lock your drive.
    I also suggest reviewing the following Apple website describing the iMac 1TB Seagate Hard Drive Replacement Program to see if your system is affected. The program has been around for quite awhile. According to the document, eligibility may have ended April 12th depending on when you purchased the system, but it's worth checking.
    http://www.apple.com/support/imac-harddrive/

  • Still Need Help with this String Problem

    basically, i need to create a program where I input 5 words and then the program outputs the number of unique words and the words themselves. for example, if i input the word hello 5 times, then the output is 1 unique word and the word "hello". i have been agonizing over this dumb problem for days, i know how to do it using hashmap, but this is an introductory course and we cannot use more complex java functions, does ANYONE know how to do this just using arrays, strings, for loops, if clauses, etc. really basic java stuff. i want the code to be able to do what the following program does:
    import java.io.*; import java.util.ArrayList;
        public class MoreUnique {
           public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str[] = new String[5]; int uniqueEntries = 0; ArrayList<String> ue = new ArrayList<String>();
             for (int i = 0; i < 5; i++) { System.out.print((i +1) + ": "); str[i] = br.readLine(); }
             for (int j = 0; j < 5; j++) {
                if (!ue.contains(str[j].toLowerCase())) { ue.add(str[j].toLowerCase()); } } uniqueEntries = ue.size(); System.out.print("Number of unique entries: " + uniqueEntries + " { ");
             for (int q = 0; q < ue.size(); q++ ) { System.out.print(ue.get(q) + " "); } System.out.println("}"); } } but i need to find how to do it so all 5 words are put in at once on one line, and without all the advanced java functions that are in here, can anyone help out?

    you have to compare string 0 to strings 1-4, then
    string 1 with strings 2-4, then string 2 with strings
    3 and 4 then string 3 with string 4....right???Here's a way to do it:
    public class MoreUnique {
        public static void main(String[] args) throws IOException {
            BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
            final int NUM_WORDS = 5;
            String[] words = new String[NUM_WORDS];
            int uniqueEntries = 0;
            for(int i = 0; i < NUM_WORDS; i++) {
                System.out.print((i+1)+": ");
                String temp = br.readLine();
                if(!contains(temp, words)) {
                    words[uniqueEntries++] = temp;
            System.out.print("Number of unique entries: "+uniqueEntries+" { ");   
            for (int i = 0; i < uniqueEntries; i++ ) {   
                System.out.print(words[i]+" ");
            System.out.println("}");
        private static boolean contains(String word, String[] array) {
                 Your code here: just a simple for-statement to
                 loop through your array and to see if 'word'
                 is in your 'array'.
    }Try to fill in the blanks.
    Good luck.

Maybe you are looking for