VM Manager's Launch Console not working with OpenJDK and IcedTea

Fedora 15
java-1.6.0-openjdk-1.6.0.0-59.1.10.3.fc15.x86_64
icedtea-web-1.0.4-1.fc15.x86_64
ICEDTEA-WEB NOTES
Invalid XML
An error like
netx: Unexpected net.sourceforge.jnlp.ParseException: Invalid XML document syntax. at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1203)
indicates that the JNLP file is not valid XML. The error happens because netx uses an XML parser to parse the JNLP file. Other JNLP client implementations may use more lenient parsers and may or may not work with the given JNLP file. Errors caused by malformed JNLP files can often lead to subtle bugs, so it is probably best to fix the JNLP file itself. A tool like xmlproc_parse might be able to pinpoint the error.
XMLPROC_PARSE OUTPUT
$ xmlproc_parse ovm_rasproxy-ws.jnlp
xmlproc version 0.70
Parsing 'ovm_rasproxy-ws.jnlp'
E:ovm_rasproxy-ws.jnlp:3:89: Undeclared entity 'machineName'
E:ovm_rasproxy-ws.jnlp:3:89: ';' expected
Parse complete, 2 error(s) and 0 warning(s)
JAVAWS OUTPUT
$ javaws ovm_rasproxy-ws.jnlp
netx: Unexpected net.sourceforge.jnlp.ParseException: Invalid XML document syntax. at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1243)
JAVAWS -VERBOSE OUTPUT
$ javaws -verbose ovm_rasproxy-ws.jnlp
No User level deployment.properties found.
Starting security dialog thread
JNLP file location: ovm_rasproxy-ws.jnlp
Status: CONNECTED DOWNLOADED STARTED +(CONNECTED DOWNLOADED STARTED) @ ./ovm_rasproxy-ws.jnlp
<?xml version="1.0" encoding="UTF-8"?>
line: 2 <jnlp spec="1.0+" codebase="http://192.168.4.21:7001/ovm/rasproxy/"
line: 3 href="ovm_rasproxy-ws.jnlp?vmachineId=0004fb0000060000046ffdb8a331ce21&machineName=mytestmachine">
line: 4 <information>
line: 5 <title>Oracle VM Remote Access Service</title>
line: 6 <vendor>Oracle</vendor>
line: 7 <homepage>http://support.oracle.com/</homepage>
line: 8 </information>
line: 9 <resources>
line: 10
line: 11 <j2se version="1.5+"
line: 12 href="http://java.sun.com/products/autodl/j2se" />
line: 13 <jar href="ovm_rasproxy-signed.jar" main="true" />
line: 14 <jar href="OvmCoreApi.jar" />
line: 15 <jar href="MgmtUtil.jar" />
line: 16 <jar href="Odof.jar" />
line: 17 <jar href="commons-logging-1.1.1.jar" />
line: 18 </resources>
line: 19
line: 20
line: 21 <application-desc main-class="com.oracle.ovm.ras.proxy.RasProxyApplet">
line: 22 <argument>-server</argument>
line: 23 <argument>192.168.4.21</argument>
line: 24 <argument>-service</argument>
line: 25 <argument>003600010004fb0000060000046ffdb8a331ce21</argument>
line: 26
line: 27 </application-desc>
line: 28 <security>
line: 29      <all-permissions/>
line: 30 </security>
line: 31 <update check="background"/>
line: 32 </jnlp>               net.sourceforge.jnlp.ParseException: Invalid XML document syntax.
     at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1243)
     at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:177)
     at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:162)
     at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:148)
     at net.sourceforge.jnlp.runtime.Boot.getFile(Boot.java:267)
     at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:196)
     at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
     at java.security.AccessController.doPrivileged(Native Method)
     at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
Caused by: net.sourceforge.nanoxml.XMLParseException: XML Parse Exception during parsing of a jnlp element at line 32: Unexpected end of data reached
     at net.sourceforge.nanoxml.XMLElement.unexpectedEndOfData(XMLElement.java:1094)
     at net.sourceforge.nanoxml.XMLElement.readChar(XMLElement.java:877)
     at net.sourceforge.nanoxml.XMLElement.resolveEntity(XMLElement.java:1013)
     at net.sourceforge.nanoxml.XMLElement.scanString(XMLElement.java:658)
     at net.sourceforge.nanoxml.XMLElement.scanElement(XMLElement.java:915)
     at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:512)
     at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:464)
     at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1239)
     ... 8 more
Caused by:
net.sourceforge.nanoxml.XMLParseException: XML Parse Exception during parsing of a jnlp element at line 32: Unexpected end of data reached
     at net.sourceforge.nanoxml.XMLElement.unexpectedEndOfData(XMLElement.java:1094)
     at net.sourceforge.nanoxml.XMLElement.readChar(XMLElement.java:877)
     at net.sourceforge.nanoxml.XMLElement.resolveEntity(XMLElement.java:1013)
     at net.sourceforge.nanoxml.XMLElement.scanString(XMLElement.java:658)
     at net.sourceforge.nanoxml.XMLElement.scanElement(XMLElement.java:915)
     at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:512)
     at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:464)
     at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1239)
     at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:177)
     at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:162)
     at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:148)
     at net.sourceforge.jnlp.runtime.Boot.getFile(Boot.java:267)
     at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:196)
     at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
     at java.security.AccessController.doPrivileged(Native Method)
     at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
netx: Unexpected net.sourceforge.jnlp.ParseException: Invalid XML document syntax. at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1243)

Both realvnc 4.1.3 and tigervnc 1.1.0.1 work on the Linux side.
I was able to get the console to work by wiping the contents of the directory I created at the beginning of this exercise and then copying in a fresh OVM 3.0.2 created ovm_rasproxy-ws.jnlp file.
[gordon@ufo Downloads]$ rm /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/*
[gordon@ufo Downloads]$ javaws ovm_rasproxy-ws.jnlp
java.io.EOFException
     at java.io.DataInputStream.readUnsignedShort(DataInputStream.java:340)
     at java.io.DataInputStream.readUTF(DataInputStream.java:589)
     at java.io.DataInputStream.readUTF(DataInputStream.java:564)
     at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:744)
     at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:55)
     at java.security.KeyStore.load(KeyStore.java:1201)
     at net.sourceforge.jnlp.security.KeyStores.createKeyStoreFromFile(KeyStores.java:358)
     at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:124)
     at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:103)
     at net.sourceforge.jnlp.security.KeyStores.getCertKeyStores(KeyStores.java:157)
     at net.sourceforge.jnlp.security.VariableX509TrustManager.<init>(VariableX509TrustManager.java:91)
     at net.sourceforge.jnlp.security.VariableX509TrustManager.getInstance(VariableX509TrustManager.java:395)
     at net.sourceforge.jnlp.runtime.JNLPRuntime.initialize(JNLPRuntime.java:210)
     at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:182)
     at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
     at java.security.AccessController.doPrivileged(Native Method)
     at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
netx: Unexpected java.io.IOException: /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/ovm_rasproxy-ws.jnlp (No such file or directory) at net.sourceforge.jnlp.JNLPFile.openURL(JNLPFile.java:255)
[gordon@ufo Downloads]$ cp ovm_rasproxy-ws.jnlp /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/
[gordon@ufo Downloads]$ javaws ovm_rasproxy-ws.jnlp
java.io.EOFException
     at java.io.DataInputStream.readUnsignedShort(DataInputStream.java:340)
     at java.io.DataInputStream.readUTF(DataInputStream.java:589)
     at java.io.DataInputStream.readUTF(DataInputStream.java:564)
     at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:744)
     at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:55)
     at java.security.KeyStore.load(KeyStore.java:1201)
     at net.sourceforge.jnlp.security.KeyStores.createKeyStoreFromFile(KeyStores.java:358)
     at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:124)
     at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:103)
     at net.sourceforge.jnlp.security.KeyStores.getCertKeyStores(KeyStores.java:157)
     at net.sourceforge.jnlp.security.VariableX509TrustManager.<init>(VariableX509TrustManager.java:91)
     at net.sourceforge.jnlp.security.VariableX509TrustManager.getInstance(VariableX509TrustManager.java:395)
     at net.sourceforge.jnlp.runtime.JNLPRuntime.initialize(JNLPRuntime.java:210)
     at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:182)
     at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
     at java.security.AccessController.doPrivileged(Native Method)
     at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
java.io.EOFException
     at java.io.DataInputStream.readUnsignedShort(DataInputStream.java:340)
     at java.io.DataInputStream.readUTF(DataInputStream.java:589)
     at java.io.DataInputStream.readUTF(DataInputStream.java:564)
     at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:744)
     at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:55)
     at java.security.KeyStore.load(KeyStore.java:1201)
     at net.sourceforge.jnlp.security.KeyStores.createKeyStoreFromFile(KeyStores.java:358)
     at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:124)
     at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:103)
     at net.sourceforge.jnlp.security.KeyStores.getCertKeyStores(KeyStores.java:157)
     at net.sourceforge.jnlp.tools.JarSigner.checkTrustedCerts(JarSigner.java:414)
     at net.sourceforge.jnlp.tools.JarSigner.verifyJars(JarSigner.java:269)
     at net.sourceforge.jnlp.runtime.JNLPClassLoader.verifyJars(JNLPClassLoader.java:946)
     at net.sourceforge.jnlp.runtime.JNLPClassLoader.initializeResources(JNLPClassLoader.java:422)
     at net.sourceforge.jnlp.runtime.JNLPClassLoader.<init>(JNLPClassLoader.java:169)
     at net.sourceforge.jnlp.runtime.JNLPClassLoader.getInstance(JNLPClassLoader.java:283)
     at net.sourceforge.jnlp.Launcher.createApplication(Launcher.java:650)
     at net.sourceforge.jnlp.Launcher.launchApplication(Launcher.java:436)
     at net.sourceforge.jnlp.Launcher$TgThread.run(Launcher.java:830)
Oct 4, 2011 4:13:41 PM com.oracle.ovm.ras.proxy.RasProxyApplet main
INFO: Server : 192.168.4.16
Oct 4, 2011 4:13:41 PM com.oracle.ovm.ras.proxy.RasProxyApplet main
INFO: service id : 003600010004fb0000060000281734f86e6aab47
Oct 4, 2011 4:13:42 PM com.oracle.ovm.ras.proxy.external.VncViewerLauncherFactory getVncViewerLauncher
INFO: Os is : linux
Oct 4, 2011 4:13:53 PM com.oracle.ovm.ras.proxy.ProxyThread setupSSL
INFO: DONE SSL Handshaking
The console starts and all is well with the world.
This is obviously not how one would want to start a console by downloading the .jnlp file and running it on the command line so I am now going to remove the /home/gordon/.icedtea/cache/http/* and see what happens.
First, let me say that nothing happened. It did not work. I did confirm that it creates the directory structure again /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/ but there is only one file in the directory.
[gordon@ufo rasproxy]$ cat ovm_rasproxy-ws.jnlp.info
#automatically generated - do not edit
#Tue Oct 04 16:43:29 EDT 2011
last-modified=0
last-updated=1317761009801
content-length=883
If I save that ovm_rasproxy-ws.jnlp file instead of opening it and copy it to the /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/ directory the console will now start successfully with one minor drawback - it will only launch that one VM based on the .jnlp file that I downloaded.
Help?

Similar Messages

  • Overdrive Media console not working with iTunes when transferring audio books.  Any suggestions?

    Overdrive Media console not working with iTunes when transferring audiobooks.  Some parts don't transfer.

    Robin, I have the 4S too. Here's wha I've been doing. Well, I am downloading wma books, but it is super time consuming and annoying. First, shut off genius in your preferences in iTunes. Also change to spoken podcast for speed. Then, you start to transfer from Overdrive. It will create a playlist with your book title. Open up books though because you need to keep an eye on it. It may download like three parts and then you may have a grey one. When you get the grey, cancel the transfer, delete the greyed part, exit iTunes, re-enter iTunes, and then try to download the remaining book parts. I usually have to re-enter iTunes three or four different times during a book. When your book is downloaded, all black and none grey, open up the playlist folder and double check that all parts made it in there. If not, carry them from the books folder to the playlist and then move it into numerical order.
    Re non bookmarking problem. I now have a new habit of checking what part I am on before i shut off my phone or switch to another book. It does save where you were, it just doesn't show you. For instance, if I start part three and then play music, and then go back to the book playlist, it will appear as if we are back to the beginning, but if I go to part three, it will start up from where I was. So, just start checking and then it is easy. I am flabbergasted that no other proper solution has been offered by Overdrive. This has been a problem since October. I also wish they would acknowledge the problem on their website as well as post what version number of update they have. I have 3.2.1.0 and think that's current. Does anyone have newer than this. Good luck, and happy commuting!
    An easy, quick workaround is to plug external speakers into your laptop and take it with you in the car. A bit unwieldy, but I can't commute without books.

  • Internal Microphone not working with Quicktime and some other apps, yet it does for Skype.

    Internal Microphone not working with Quicktime and some other apps, yet it does for Skype. 
    Microphone works fine with Quictime on another mac, so I do know how to use it. The one where it is not working (A) had an external microphone and camera attached earlier, and indeed it does work with that external microphone, but not with the internal microphone selected; and (B) had RealPlayer installed previously.
    Any suggestions, please?

    Hi,
    Download Audio driver from here.
    Intructions how to install it in Vista/Win7.
    Extract this driver with Winrar.
    Open Device manager and expand the Sound, video and game controllers section.
    Right click on Either the High Definition Audio Device if you have the generic Microsoft drivers, or the Conexant High Definition SmartAudio 221 if you have older Conexant drivers and choose "Update Driver Software..."
    Click Browse my computer for driver software, then click "Let me pick from a list of device drivers on my computer"
    Click "Have Disk..." then Browse to the folder where the drivers were extracted  .......\V64 for 64-bit Vista/Win7. Click OK.
    Select one of the "Conexant High Definition SmartAudio 221" models in the list, there will be multiple identical entries.
    Click Next, and you're done.
    I'm not sure which one from the list will work for You.
    This drivers weren't test. So if You will try them and it will work for You let us now about.
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • Site list update not working with TED and Zenworks for Servers

    Product: Zenworks for Desktops 7Sp1 and Zenworks For Server/TED 7Sp1HP5
    Subject: Site list update not working with TED and Zenworks for Servers ,
    all on Linux
    Description: We have an exiting environment with 6 ZfS Servers and now we
    brought up a new Server for another location. I configured all same as on
    the other Server and the new one created all NAL-Apps at the new location.
    But in the Application Site list on the golden App is this Application
    missing. So I clicked on the Link up site list on the Distribution Screen
    in C1. On ApplicationSite list the App from the new location is missing.
    So I removed all and added the new from the new location and now i see all
    in the application site list.When I install an app on the client on the
    new location NAL is connecting alway th the same (wrong location-server
    and i get an msi error 1612 or id=53272 with path=\Wrong serverpath to
    file.
    I looked on the other tab on C1 at the golden app an I see the backlinks
    are going to all other servers without the new one. Software installation
    on other locations are ok
    Regards

    Andreas,
    I forgot to mention that you can also set the loging level on the Distributor and the Subscriber to 6. to do this at the Zenworks Server Management prompt type "setconsolelevel 6" if you want to capture this to the log file ted.log then use "setfilelevel 6"
    Next delete the Distribution from the Subscriber and then re-push the channel.
    What we are looking for here in the log is the creation of the object and the linking information about the gold object. it should look like this (not the failure part ;-))) )
    In this excerpt you will see the entry
    Golden App =
    This should be were the link is to
    You can check this both ways in the Golden App and in the Distributed Application.
    Here is a log from me that shows this info as an example of what you should be looking for.
    2008.05.29 03:35:41 [TED:Work Order In(yourserver.yes.com)] Receiving distribution: Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_YOURSERVER.BRN.FL.SUBS.SUBSCRIBERS.ZSM. GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..
    2008.05.29 03:35:41 [TED:Event Processing] Handle Event: Work order IN completed... Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_HAVERHI-FLBRN1.BRN.FL.SUBS.SUBSCRIBERS.ZSM.GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..
    2008.05.29 03:35:41 [TED:Event Processing] Received (from haverhi-flbrn1.yesbank.com) Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_HAVERHI-FLBRN1.BRN.FL.SUBS.SUBSCRIBERS.ZSM.GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..

  • HT3574 The personal hotspot is not working with me and I did not fine the icon for iphone 4 version 5.1.1

    The personal hotspot is not working with me and I did not fine the icon for iphone 4 version 5.1.1

    Check with your carrier or telephone service provider.  Not all carriers provide this service.

  • Polarioid pogo printer not working with ipad and iphone

    And I can not believe how that truly *****... I am traveling through the states and bought the pogo to print on the road... Only to find out that it does not work with ipad and does not work with iphone... Unless I jailbreak my phone which I don't really want to do...
    Apple wants us to go mobile and clouding and all those things, yet, when we do go mobile and try a mobile life style, we are encountering so much technical crap that we loose the will to live...
    I could have spend the hundred dollar for the pogo to have pics printed out in every kiosk in the country...
    WWhen is Apple going to come to its senses about little life savers like the pogo and bluetooth???????
    Is anyone aware of a work around so I can print on the go? And a solution that does not involve a programmers brain because my single braincell is not working while traveling... It needs to be easy!

    To cut through all the rage and anger and "knowing" who wanted what, the Pogo has been out for a year or so, well before Mr. Jobs' passing, and Apple did not make any mention of supporting printing on anything other than Airprint compatible printers.
    Since Airprint is a Wi-Fi/ethernet thing, Polaroid would have to make a significant redesign to the Pogo.  Considering that the first iPhones only supported Bluetooth headsets and Apple didn't provide any indications about increasing Bluetooth support, Polaroid's decision for the Pogo to be Bluetooth was obviously not with iOS devices in mind.  This is why initially Polaroid had links on the FAQ to tell Apple to add Bluetooth printing support (so that in effect, asking Apple to pay for the expenses to make the iPhone compatible with the Pogo, rather than Polaroid paying to make the Pogo compatible with iOS.)
    I come from a photograpic background.  I got the Pogo as soon as it came out.  I quite literally was on Polaroid's website every day checking to see when I could order it.  Having "instant" sticker prints is wonderful at family picnics with all the kids.  While it would be great to be able to get Pogo prints from anyone's iPhone, I stopped holding my breath when Apple announced Airprint, which came well after the Pogo was released.  So I took that as the sign that it was probably never going to happen.  (I knew that the Pogo wasn't iOS compatible when I bought it so not having compatiblity is not a deal-breaker for me.  But, yes, it would be nice.)
    I now use a Polaroid Z340 since it's a 14 megapixel camera that prints larger 3x4 Zink prints.  Polaroid makes the GL10, which is basically a Pogo using the same printer as the Z340.  But it's still Bluetooth only.   So while I sympathize with the desire to have a really compact portable printer like the Pogo, iOS compatibility just does not seem to be on the horizon.  IMHO, it would be more realistic that Polaroid create an app to do Bluetooth printing.  But considering Polaroid's financial issues, I'm not holding my breath

  • My iPhoto will not work with Yosemite, and it says that it was purchased under a different account, but that's not the case.  Any ideas why I cannot update iPhoto?

    my iPhoto will not work with Yosemite, and it says that it was purchased under a different account, but that's not the case.  Any ideas why I cannot update iPhoto?

    How did you buy iPhoto? Did it come preinstalled on your computer with Lion or later, or did it come with Snowleopard on system installer disks?
    Which version of iPhoto?
    If you have a version of iPhoto '11 and it is showing on the Purchased tab of the App Store, with your Apple ID, then delete iPhoto from the Applications folder  (don't empty the Trash) and download iPhoto again from the Purchased tab.
    If that does not work, contact The App Store Support  from the Quick Links on the AppStore main page.
    Only apple Support can fix problems with apple ID.

  • OBI 11g Enterprise Manager (EM Website) does not work with IE8 (v8.0.6)

    I am unable to login to the 11g EM website on Windows x64 2003 server. I get the below error:
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0)
    Timestamp: Wed, 6 Oct 2010 10:41:18 UTC
    Message: Object doesn't support this property or method
    Line: 4354
    Char: 1
    Code: 0
    URI: http://YZU-1:7001/em/afr/partition/ie/default/opt/boot-11.1.1.3.0-0084.js
    Any help is appreciated.
    Thanks
    B

    Hi,
    OBIEE 11g does not work with IE8.
    Check this......What's wrong in OBIEE 11g
    Regards,
    Srikanth

  • Handoff not working with Yosemite and iOS 8

    I have three Macbook Pros in my household.  Two are mid 2012 models and the other a late 2012 model.  Each is supposed to support the handoff feature of Yosemite and ios8.  Everything seems to work properly between my daughter's late 2012 MBP and her iPhone 6.  But on the other two MBPs in our family the continuity feature does not work on either of them.  Receiving and sending calls works fine.  But the continuity does not work even though all three MBPs and all three iPhone 6 are on the same wifi network.
    I've tried all the suggestions that I could find.  Toggling off and on the various settings on the MBPs and the iPhones.
    John

    Thank you for responding to my issue.  I spent the better part of two hours trying to get this to work.  Bluetooth is enabled on all devices. Each computer is set in Preferences/General to allow Handoff.  All computers and iPhones are on the same WiFi network.  I toggled all of the major settings off and on.  Rebooted each of my computers several times. I finally conceded defeat.  Then my daughter asked to have a try at it.  She worked on the first MBP for about thirty minutes and informed me that she had gotten continuity to work.  And indeed, on her MBP late 2012 she is able to use the continuity features in both directions between her computer and her iPhone 6.  But it only works with Mail and Safari.  I asked how she accomplished this feat.  She said she turned off "everything" on her computer and iPhone (WiFi, Bluetooth, "Allow handoff" under Preferences/General) and then rebooted both the iPhone and the computer.  She then turned everything back on.  This worked for her.  So we tried the same thing on my MBP and iPhone 6.  Now continuity works partially. Email activity is mirrored on both the MBP and the iPhone regardless of which device initiates the continuity activity.  But Safari activity on the computer is mirrored on the iPhone but not in the opposite direction.  There is no continuity function for Pages in either direction.  The telephone connectivity works fine on all of my devices– 3 MBPs, Mac Pro, iPad Air, 2nd gen iPad and 3rd gen iPad.

  • Device not working with Log and Transfer in FCP

    I am trying to get some footage off my camera into final cut pro, but Final Cut Pro does not recognise my device when I try to use Log & Transfer
    The camera is question is a Cannon Legria FS20, here is a link
    http://www.canon.co.uk/ForHome/Product_Finder/Camcorders/flash_memory/LEGRIAFS20/
    I have looked around but can't seem to find any plug-ins to get it to work with Final Cut Pro, does anyone know any way I can get it to work with Log and Transfer
    Upon inspecting the hard drive, it saves video files in .MOD format with an .MOI file (which i assume is a metadata file
    How can I get it so that my device works with log and transfer?
    Thanks

    Hi -
    I did a little Google searching for information on your camera and it appears that it is a Standard Definition Camera that records in the MPEG-2 format.
    Log and Transfer only works with High Definition material.
    You will need to convert your video clips into a format that will work with FCP.
    I know nothing about working in PAL, but you want to download an free application called MPEG Streamclip from
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    This application will convert your MPEG-2 files into a format that you can use directly in FCP.
    Once you have converted the files to Apple DV-PAL, with the correct frame rate (25fps?) and field dominance you can either simply drag the converted files into FCP or import them using File > Import.
    Hope this helps.
    MtD

  • Oracle equals_path condition NOT working with table and materialized view

    The user i am using is xdb with dba role.
    1.When i try to use the statement
    SELECT PATH FROM xdb.path_VIEW
    WHERE
    EQUALS_PATH(res, '/home/OE/PurchaseOrders/2002')=1
    the result is
    /home/OE/PurchaseOrders/2002
    2. When i drop the path_view and recreated it like materialized view with statement
    create MATERIALIZED view path_view as
    select /*+ ORDERED */ t2.path path, t.res res,
    xmltype.createxml(xdb.xdb_link_type(NULL, r2.xmldata.dispname, t.name,
    h.name, h.flags, h.parent_oid, h.child_oid),
    'http://xmlns.oracle.com/xdb/XDBStandard.xsd', 'LINK') link,
    t.resid
    from ( select xdb.all_path(9999) paths, value(p) res, p.sys_nc_oid$ resid,
    p.xmldata.dispname name
    from xdb.xdb$resource p
    where xdb.under_path(value(p), '/', 9999)=1 ) t,
    TABLE( cast (t.paths as xdb.path_array) ) t2,
    xdb.xdb$h_link h, xdb.xdb$resource r2
    where t2.parent_oid = h.parent_oid and t2.childname = h.name and
    t2.parent_oid = r2.sys_nc_oid$
    then the equals_path condition STOP working !!!
    3. The same experiment, but i recreate it like table
    create table path_view as .... using the rest of the statement ...
    Can someone help me to understand why equals_path is NOT working on table and materialized view !

    Thanks Jonah. I was under the impression that I already had it but seems like it has to be a direct priv - thru a role doesn't work.
    I granted the reqd privs and then it worked fine. Thx for your help!

  • NB200 Windows 7 Fn key not working with ESC and F1 to F8 keys

    I recently bought a Toshiba NB200-136 and everything worked fine.
    Flash cards on top/bottom of the screen work with Space, ESC and F1 to F8 keys, the rest of function buttons work without showing the cards. Lately the cards stopped showing and I cannot use the Fn + Space, ESC, F1-F8 keys (there's just no reaction), though the rest of buttons work with Fn and the LED is always lit when the Fn is pressed.
    I reset Flash Cards, checked and changed their settings few times and they work only if I choose 'Allow the mouse to bring up the cards' option. Even then they don't appear when I press Fn and the functions work only when I click one of the cards.
    The problem appeared after (though I'm not sure if immediately) such situation:
    I clicked Start -> Shut down and closed the lid. When I opened it the next morning I saw an empty list of programs that wouldn't shut down (it happens quite often, but it's off top). I clicked 'Cancel' or 'Force shut down' but it didn't work so I pressed the Power Button for 5 secs to turn the computer off. I noticed the Fn problem after turning it on and it didn't disappear after resets.
    I think the problem appeared before but disappeared after reset so I ignored it.
    I'll be thankful for your help.

    Any time that you force Windows to stop instead of letting it shut down normally (sometimes you have to shut it off), you may have lost clusters of data that interfere with the proper operation of Windows. So I suggest you start up and run scandisk and make sure you check the box for fixing problems. The other box doesn't need to be checked unless you suspect bad sectors on the hard drive and it takes a long time so I recommend only checking the one box for finding and fixing errors.
    Let us know if this worked and the problem is fixed.
    Good luck.

  • NXT Flatten to String Not Working with Clusters and Arrays

    Hello,
    My name is Joshua and I am from the FIRST Tech Challenge Team 4318, Green Machine. We are trying to write a program that will write to a configuration file and read it back. The idea is that we will be able to write to a config file from our computer that will be read by our autonomous program when it runs. This will define what the autonomous program does.
    The easiest way to do this seems to be flattening a data structure to a string, saving it to a file, and then reading back and unflattening it. The issue is that the flatten to string and unflatten from string VIs don't seem to work with arrays and clusters on the NXT. It does work when running on the computer. We've tried arrays, clusters, clusters in arrays and arrays in clusters, none seem to work. Thinking it was something to do with reading the string from a file, we tried bypassing the file functionality, still not working. It does work with basic data types though, such as strings and numbers.
    No error is thrown from what we can tell. All you get is a blank data structure out of the unflatten VI.
    The program attached is a test program I've been working on to get this functionality to work. It will display the hex content of what is going into the file, coming out of the file, and then the resulting data from the unflatten string, as well as any errors that have been thrown. The data type we are using simulates what we would like to store. There is also a file length in and out counter. The out file is a little larger because the NXT write file VI adds a new line character on to the end (thus the use of the strip white space VI). This character was corrupting even basic data types saved to file.
    I would like to know if there is a problem with what we are doing, or if it is simply not possible to flatten arrays on the NXT. Please ask if you have any questions about the code. Thank you in advanced!
    Joshua
    Attachments:
    ReadableTest.vi ‏20 KB

    Hi jfireball,
    This is a very interesting situation. Take a look at what kbbersch said. I also urge you to post in the FTC Forums. You posted your question to the general LabVIEW forums, but by posting to the FTC Forums, you will have access to others that are using the NXT hardware.
    David B.
    Applications Engineer
    National Instruments

  • Xmldataset is not working  with ie6 and ie7

    xmldataset is working with all browsers (ie8, opera, safari
    firefox) however it doesn't work with ie6 and ie7
    according to me all things are correct,my works doesn't
    appear ..
    http://www.turkedergi.com

    Hello
    I am pretty sure they know about this issue and software companies must not hear what the people say. For me it is logic that they watch what happen on the software market and try to adapt own products as soon as possible.
    This issue with IE8 is known and soon or later the updated version will be offered on download page but the question is: when?
    I cannot understand why they wait so long time. OK, to fix some issue and testing procedure can take a days but IE8 is not on the market from yesterday.
    Lets see how long it will be necessary for AuthenTec to fix this issue.

  • Image cache not working with Firefox and apex

    Hi,
    I'd like to cache all my images to save page rendering time and bandwidth because my images are all static and never change.
    I use the John Scott's caching technique Link: [http://jes.blogs.shellprompt.net/2007/05/18/apex-delivering-pages-in-3-seconds-or-less/], in a few words this technique consists of adding a header line "Expires: date in the future" in the http response.
    It works very well in IE, the images are cached and the same image can be accessed several times (within the same session or in different sessions) without issuing an http request to the server each time.
    with Firefox it does not work, the same image is asked again and again to the server (i'm using FF 3.5 and APEX 3.2).
    - Is it a date format problem? no, because when i type about:cache in FF, i can find my image in the cache with an expire date in the future.
    The weird thing here is that the counter is incremented each time u request the image, so FF knows it is in the cache and even if the expire date is in the future, FF asks it again to the server.
    - Is it a FF bug? If u read the http specs or if u google a little, u can come to the conclusion that FF does not follow the standards,
    but... images.google.com for example manages to get its images cached with FF.
    They use an http response header "cache-control: public, max-age=604800".
    I tried the same and all kinds of combinations but without success.
    When i compare my image with the one from google in the FF cache, they both have the same attributes.
    - It's not an apex issue neither because it works with IE, most probably an incompatibility between apex and FF?
    Maybe the use of cookie? or the http request (not the response) containing "cache-control: max-age=0"?
    I've found so far 2 half solutions:
    1) use ETag and modified date, see the Tyler Muth's note Link: [http://tylermuth.wordpress.com/2008/02/04/image-caching-in-plsql-applications/].
    with this technique FF continues to send request each time but the answer is shorter because it's just a "304 not modified" instead of "200 OK" (200 response is bigger as it contains the image).
    it's better than nothing but you still have 1 request + 1 response for nothing.
    Another problem is that you need SYS access to implement this, which is not possible on an hosted server. (note that for images from the file system it is already foreseen by apex 3.1, Tyler's note is for images from the db)
    2) if you preload the image (using myimage=new Image();myimage.src='...';), then there is max 1 request per browser session.
    There are 2 minor issues here:
    - no caching across sessions
    - if u don't want to preload all the images (example a page with lots of thumbnails, when user clicks it show a bigger image, in that case the thumbnails can be preloaded but overkill for the big images), then you need to load the image, wait until the image has loaded before displaying it, it does not slow down the execution, but requires some extra JS.
    I'm not asking anyone to investigate it, i can live with the 2 workarounds,
    but just in case someone encountered the same problem and already fixed it.
    Let me know if u managed to use the John Scott's technique with Firefox. (U can use Firebug to see the http traffic)
    Thx
    Tim

    Hi Anshul, hope these help. Let me know if you need to see anything else.
    Best,
    Menu Settings:
    Tab Hyperlink:
    Label Text with with hyper link option not available (works as a hyperlink in chrome and IE though):
    Thanks for the help in advance!

Maybe you are looking for

  • Qosmio X305-Q705 - No hdmi video on hdtv

    I've been really trying hard to hook up my laptop to Sharp Aquos 32' 1080p hdtv (Model - LC32GP1U) thru HDMI cable and can't get any external video. When I press FN+F5 the only option I have to choose from is LCD. I did read my hdtv settings and base

  • Service Master items in RRB

    Hello All, In RRB, during customer billing, we have to show, in the invoice/billing request, the Service Master and not the material configured DIP profile currently generic material "EXT_LABOUR". How can we copy the Service Material description into

  • Speeding Up File Transfer on Time Capsule?

    I just bought the 2TB time capsule.  I would like to transfer my iPhoto Library to the TC but for 117 GB it is telling me that it will take 120+ hours to complete.  It appears to be transferring data at about 1KB every 15 seconds.  I have a MacBook P

  • Elements 9 Cloning and Healing problems

    My Cloning and Healing Tool doesn't work correctly. Both very often puts what I am cloning or healing (with content aware) somewhere else on the photo other than where I want it. Sometimes it put a large streak accross the photo as I make a small cor

  • Time Machine stuck at "Looking for backup disk" after installing Windows 8 via Boot Camp

    I've been backing up via Time Machine to an external USB drive and it's been working fine. I recenty installed Windows 8 via Boot Camp and now TM gets stuck forever at "Looking for backup disk...". I've tried the following, to no avail: Using "Select