JWS not working after Java updates to JDK 1.6 update 24 (with apache felix)

Hi,
I'm currently working on some JWS application, which heavily relies on Apache Felix. It was working spotless until recent security update which comes along with Java 1.6u24. Now my application dies just when Apache Felix is starting to work.
The exception being thrown is:
SEVERE: Permission denied: http://felix.extensions:9/META-INF/services/javax.xml.parsers.SAXParserFactory
java.lang.SecurityException: Permission denied: http://felix.extensions:9/META-INF/services/javax.xml.parsers.SAXParserFactory
     at com.sun.deploy.security.DeployURLClassPath$UrlLoader.findResource(Unknown Source)
     at com.sun.deploy.security.DeployURLClassPath.findResource(Unknown Source)
     at java.net.URLClassLoader$2.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at java.net.URLClassLoader.findResource(Unknown Source)
     at com.sun.jnlp.JNLPClassLoader.findResource(Unknown Source)
     at java.lang.ClassLoader.getResource(Unknown Source)
     at com.sun.jnlp.JNLPClassLoader.access$001(Unknown Source)
     at com.sun.jnlp.JNLPClassLoader$1.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at com.sun.jnlp.JNLPClassLoader.getResource(Unknown Source)
     at java.lang.ClassLoader.getResource(Unknown Source)
     at com.sun.jnlp.JNLPClassLoader.access$001(Unknown Source)
     at com.sun.jnlp.JNLPClassLoader$1.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at com.sun.jnlp.JNLPClassLoader.getResource(Unknown Source)
     at java.lang.ClassLoader.getResourceAsStream(Unknown Source)
     at javax.xml.parsers.SecuritySupport$4.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at javax.xml.parsers.SecuritySupport.getResourceAsStream(Unknown Source)
     at javax.xml.parsers.FactoryFinder.findJarServiceProvider(Unknown Source)
     at javax.xml.parsers.FactoryFinder.find(Unknown Source)
     at javax.xml.parsers.SAXParserFactory.newInstance(Unknown Source)     
     at com.sun.javaws.Launcher.executeApplication(Unknown Source)
     at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
     at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
     at com.sun.javaws.Launcher.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
In javaws.policy, java.policy I have set up proper security rules to enable JWS to work out of sandbox by specifying:
grant {
permission java.security.AllPermission;
grant codeBase "http://felix.extensions:9/" {
permission java.security.AllPermission;
Also, I'm using maven's webstart-maven-plugin to create a JWS jnlp file. It's being property signed with security certificate. My resulting jnlp file has this part of configuration embedded:
<security>
<all-permissions />
</security>
Do You have any ideas what might be the problem?
Cheers

I just submitted a bug, and got the following e-mail.
Hope the java guys take a look ...
Full View
Your Report (Review ID: 1990127) - SecurityException from all-permissions app - should be ClassNotFoundException
From:     
"[email protected]" <[email protected]>
Add to Contacts
To:     [email protected]     
Dear Java Developer,
Thank you for your interest in improving the quality of Java Technology.
Your report has been assigned an internal review ID of 1990127, which is NOT visible on the Sun Developer Network (SDN).
Please be aware that the large volume of reports we receive sometimes prevents us from responding individually to each message.
If the information is determined to be a new Bug or RFE, or a duplicate of a known Bug or RFE, you will receive a followup email containing a seven digit bug number. You may search for, view, or vote for this bug in the Bug Database at http://bugs.sun.com/.
If you just reported an issue that could have a major impact on your project and require a timely response, please consider purchasing one of the support offerings described at http://developers.sun.com/services/.
The Sun Developer Network (http://developers.sun.com) is a free service that Sun offers. To join, visit http://developers.sun.com/global/join_sdn.html.
Thank you for using our bug submit page.
Regards,
Java Developer Bug Report Review Team
Date Created: Wed Mar 02 15:43:52 MST 2011
Type: bug
Customer Name: Reuben Pasquini
Customer Email: [email protected]
SDN ID: catdogboy
status: Waiting
Category: javawebstart
Subcategory: other
Company: http://frickjack.com
release: 6u24
hardware: x86
OSversion: windows_7
priority: 4
Synopsis: SecurityException from all-permissions app - should be ClassNotFoundException
Description:
FULL PRODUCT VERSION :
java version "1.6.0_24"
Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
Java HotSpot(TM) Client VM (build 19.1-b02, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows [Version 6.1.7600]
EXTRA RELEVANT SYSTEM CONFIGURATION :
This is a java bug - I have users on WIndows 7 and XP, and also reported on Apache felix mailing list
A DESCRIPTION OF THE PROBLEM :
The following class, when bundled, signed, and deployed with the .jnlp file below, throws a
SecurityException
in the new java release - even though the .jnlp specifes "all-permissions".
Past releases would throw a ClassNotFoundException - which is great,
and is what things like Oracle's thin-client ojdbc6.jar expect.
The program bootstraps the Felix OSGi engine - which apparently sets up a URLClassLoader with a custom felix:// URL.
The output of running the program with webstart follows
below the .jnlp file.
Note that this .jnlp file is setup to run off the file system, but the same result follows from web-launched apps, whatever.
package littleware.demo;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.net.URL;
import java.net.URLClassLoader;
import java.sql.Connection;
import java.util.HashMap;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
import javax.swing.WindowConstants;
import org.apache.felix.framework.Felix;
public class JavaToy {
private static final Logger log = Logger.getLogger( JavaToy.class.getName() );
public static class AppRunner implements Runnable {
public void run() {
final StringWriter swriter = new StringWriter();
final PrintWriter pwriter = new PrintWriter( swriter );
pwriter.append( "Class path: " ).append(
System.getProperty( "java.class.path" )
).append( "\n\n-------------------------\n" );
final ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
if ( classLoader instanceof URLClassLoader ) {
pwriter.append( "URLClassLoader:\n" );
for ( URL url : ((URLClassLoader) classLoader).getURLs() ) {
pwriter.append( url.toString() ).append( "\n" );
pwriter.append( "\n--------------------------------\n" );
try {
Class.forName( "bogus.DoesNotExist" );
pwriter.append( "No exception thrown on bogus class load\n" );
} catch ( Exception ex ) {
pwriter.append( "Caught exception loading bogus class: " ).append( ex.toString() ).append( "\n" );
ex.printStackTrace(pwriter);
pwriter.flush();
final JFrame jframe = new JFrame( "Webstart test" );
final JTextArea jtext = new JTextArea( swriter.toString(), 20, 40 );
jframe.add( new JScrollPane( jtext ) );
jframe.pack();
jframe.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
jframe.setVisible(true);
public static void main( String[] args ) {
try {
log.log( Level.INFO, "Launching felix!" );
(new Felix(new HashMap<String, Object>())).start();
Thread.sleep( 2000 );
} catch (Exception ex) {
log.log(Level.SEVERE, "Caught exception", ex);
System.exit(0);
SwingUtilities.invokeLater( new AppRunner() );
REGRESSION. Last worked in version 6
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
*. Download felix.jar from
http://felix.apache.org
*. Build the following code, sign Toy.jar and felix.jar with your key,
launch with the following .jnlp or something similar ....
package littleware.demo;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.net.URL;
import java.net.URLClassLoader;
import java.sql.Connection;
import java.util.HashMap;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
import javax.swing.WindowConstants;
import org.apache.felix.framework.Felix;
public class JavaToy {
private static final Logger log = Logger.getLogger( JavaToy.class.getName() );
public static class AppRunner implements Runnable {
public void run() {
final StringWriter swriter = new StringWriter();
final PrintWriter pwriter = new PrintWriter( swriter );
pwriter.append( "Class path: " ).append(
System.getProperty( "java.class.path" )
).append( "\n\n-------------------------\n" );
final ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
if ( classLoader instanceof URLClassLoader ) {
pwriter.append( "URLClassLoader:\n" );
for ( URL url : ((URLClassLoader) classLoader).getURLs() ) {
pwriter.append( url.toString() ).append( "\n" );
pwriter.append( "\n--------------------------------\n" );
try {
Class.forName( "bogus.DoesNotExist" );
pwriter.append( "No exception thrown on bogus class load\n" );
} catch ( Exception ex ) {
pwriter.append( "Caught exception loading bogus class: " ).append( ex.toString() ).append( "\n" );
ex.printStackTrace(pwriter);
pwriter.flush();
final JFrame jframe = new JFrame( "Webstart test" );
final JTextArea jtext = new JTextArea( swriter.toString(), 20, 40 );
jframe.add( new JScrollPane( jtext ) );
jframe.pack();
jframe.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
jframe.setVisible(true);
public static void main( String[] args ) {
try {
log.log( Level.INFO, "Launching felix!" );
(new Felix(new HashMap<String, Object>())).start();
Thread.sleep( 2000 );
} catch (Exception ex) {
log.log(Level.SEVERE, "Caught exception", ex);
System.exit(0);
SwingUtilities.invokeLater( new AppRunner() );
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jnlp codebase="file:/C:/Users/pasquini/Documents/Code/JavaToy/dist/" href="launch.jnlp" spec="1.0+">
<information>
<title>JavaToy</title>
<vendor>pasquini</vendor>
<homepage href=""/>
<description>JavaToy</description>
<description kind="short">JavaToy</description>
</information>
<update check="always"/>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5+"/>
<jar href="JavaToy.jar" main="true"/>
<jar href="lib/felix-2.0.4.jar"/>
</resources>
<application-desc main-class="littleware.demo.JavaToy">
</application-desc>
</jnlp>
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Class path: C:\Program Files\Java\jre6\lib\deploy.jar
URLClassLoader:
file:/C:/Users/pasquini/Documents/Code/JavaToy/dist/JavaToy.jar
file:/C:/Users/pasquini/Documents/Code/JavaToy/dist/lib/felix-2.0.4.jar
http://felix.extensions:9/
Caught exception loading bogus class: java.lang.ClassNotFoundException: bogus.DoesNotExist
java.lang.ClassNotFoundException: bogus.DoesNotExist
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at com.sun.jnlp.JNLPClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at littleware.demo.JavaToy$AppRunner.run(JavaToy.java:39)
at java.awt.event.InvocationEvent.dispatch(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
ACTUAL -
Class path: C:\\Program Files (x86)\\Java\\jre6\\lib\\deploy.jar
URLClassLoader:
file:/C:/Users/pasquini/Documents/Code/JavaToy/dist/JavaToy.jar
file:/C:/Users/pasquini/Documents/Code/JavaToy/dist/lib/felix-2.0.4.jar
http://felix.extensions:9/
Caught exception loading bogus class: java.lang.SecurityException: Permission denied: http://felix.extensions:9/bogus/DoesNotExist.class
java.lang.SecurityException: Permission denied: http://felix.extensions:9/bogus/DoesNotExist.class
at com.sun.deploy.security.DeployURLClassPath$UrlLoader.getResource(Unknown Source)
at com.sun.deploy.security.DeployURLClassPath.getResource(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at com.sun.jnlp.JNLPClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at littleware.demo.JavaToy$AppRunner.run(JavaToy.java:39)
at java.awt.event.InvocationEvent.dispatch(Unknown Source)
at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
at java.awt.EventQueue.access$000(Unknown Source)
at java.awt.EventQueue$1.run(Unknown Source)
at java.awt.EventQueue$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
package littleware.demo;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.net.URL;
import java.net.URLClassLoader;
import java.sql.Connection;
import java.util.HashMap;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
import javax.swing.WindowConstants;
import org.apache.felix.framework.Felix;
public class JavaToy {
private static final Logger log = Logger.getLogger( JavaToy.class.getName() );
public static class AppRunner implements Runnable {
public void run() {
final StringWriter swriter = new StringWriter();
final PrintWriter pwriter = new PrintWriter( swriter );
pwriter.append( "Class path: " ).append(
System.getProperty( "java.class.path" )
).append( "\n\n-------------------------\n" );
final ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
if ( classLoader instanceof URLClassLoader ) {
pwriter.append( "URLClassLoader:\n" );
for ( URL url : ((URLClassLoader) classLoader).getURLs() ) {
pwriter.append( url.toString() ).append( "\n" );
pwriter.append( "\n--------------------------------\n" );
try {
Class.forName( "bogus.DoesNotExist" );
pwriter.append( "No exception thrown on bogus class load\n" );
} catch ( Exception ex ) {
pwriter.append( "Caught exception loading bogus class: " ).append( ex.toString() ).append( "\n" );
ex.printStackTrace(pwriter);
pwriter.flush();
final JFrame jframe = new JFrame( "Webstart test" );
final JTextArea jtext = new JTextArea( swriter.toString(), 20, 40 );
jframe.add( new JScrollPane( jtext ) );
jframe.pack();
jframe.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
jframe.setVisible(true);
public static void main( String[] args ) {
try {
log.log( Level.INFO, "Launching felix!" );
(new Felix(new HashMap<String, Object>())).start();
Thread.sleep( 2000 );
} catch (Exception ex) {
log.log(Level.SEVERE, "Caught exception", ex);
System.exit(0);
SwingUtilities.invokeLater( new AppRunner() );
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
I can work around the problem by installing the app locally, so web-start is not necessary. I ran into this problem with an app that connects to Oracle via ojdbc6.jar - ojdbc6.jar invokes "Class.forName" to check for optional i18n classes on the class path. The Oracle code correctly handles the correct ClassNotFoundException, but the new SecurityException is breaking my app.
workaround:

Similar Messages

  • IDVD & Roxio Toast not working after APPLE-SA-2009-02-12 Security Update

    After installing APPLE-SA-2009-02-12 Security Update 2009-001, iDVD and Roxio Toast will not work.
    iDVD will launch, and I can create a project. It starts to render the video, but crashes before it starts to burn the disc.
    Roxio Toast will not even launch.
    Both applications were working perfectly and reliably before this update.
    Anyone else found this problem?
    Greg.

    I re-installed the apps, and they're working now.
    Greg.

  • Apple TV does not work after trying to update software. Main light keeps blinking and on the screen shows itunes icon and a usb cable. What does that means?

    My Apple TV does not work after trying to install the new software update. The main light keeps blinking rapidly and on the screen it shows the itunes icon and a USB cable. What does that mean?

    The Apple TV is in recovery mode. Try to restore the Apple TV. Follow the link for instructions on the restore process.
    http://support.apple.com/kb/HT4367

  • When apple will fix the problem of the Bluetooth. It is not working after the upgrade to7.03

    when apple will fix the problem of the Bluetooth. It is not working after the upgrade to7.03

    there is no problem with B/T and iOS7.0.3 in my case used on iPhone 5 and 4 in several environments including in car
    Do a reset
    restore with back up and if required as new

  • My new iPad sound is not working after updating to ios 6.1

    My new iPad sound not working after updating to ios 6.1. Headphones are working fine. I tried all the troubleshoot. can anyone know the answer, plz share with me

    Hi,
    I have exactly the same issue as everyone above. I only get sound through the slider on the ringtone in settings and through my headphones. I do not get any sound anywhere else at all.
    I Have tried:
    - Updating to iOS 6.1.3
    -re starting the device
    -checking that the device is not muted. My slider switch is set to mute rather than lock and is unmuted.
    -going into general settings and reset all settings
    -the device reset several times (waiting until I saw the all important apple logo)
    -removing the last few apps I installed.
    Nothing at all has worked, please help!
    New iPadiPad

  • Iphone 4 personal Hotspot not working after update to IOS 7.1 India BSNL cellular

    Iphone 4 personal Hotspot not working after update to IOS 7.1 India BSNL cellular

    BSNL is not a supported carrier. Personal Hotspot requires carrier support and provisioning of the account to enable it. iOS 7.1 disabled the ability to manually configure Personal Hotspot on unsupported carriers.

  • Iphone 5 back camara not working after ios update

    My Iphone 5 back camara is not working after ios 8.1 update this morning
    Only getting some fuzzy image.
    Camara was working before the update.
    Resting the phone to factory setting restoring phone nothing seems to work
    I think this will be my last Iphone as apple never respondse in any case

    If you're expecting Apple to respond on this forum, you will have a long wait. This is a user-to-user technical support forum that is only hosted by Apple. This was made clear when you signed up. In any case, try the steps in this article to troubleshoot hardware issues (there is a camera section):
    iPhone: Hardware troubleshooting

  • Caller Id not working after update

    My caller id pictures are not working after the update.

    Still having the same problem.  It appears to be a problem with City ID.  Local Verizon office told me it could be uninstalled.  I can't seem to find out how to uninstall an application that has the uninstall button "greyed out".  After forcing stop the application, it turns itself back on after every call.  When that happens I lose the city the call is coming from, but I still get the number showing.  Other times I don't receive anything.  I NEVER know who's calling me and it's getting annoying. Hell, with AT&T, I knew who was calling me....just couldn't stay connected.  Now if I miss a call..I don't have any clue as to  who to call back.
    Get this City ID crap app off my phone....that's all I want...it's not too much to ask....please...!

  • Card slot does not work after update (14/10/2011)

    Card slot does not work after yesterday update (14/10/2011)! It works with my SD card month ago, but now it dosn't!!!
    MacBook Pro 13 OS ver. 10.6.8

    Thanks for your suggestion. I downloaded OnyX and ran the cleaning function. After restarting, I opened Help and once again the first screen appeared fine. But again most of the links did not work, though those under the "What's New" heading did work. I might add that I had previously tried a variety of suggestions posted in another thread, which included deleting from the caches folder in Home>Library several files such as com.apple.helpui and help.plist in the Preferences folder. (As noted in my previous post this evening, I also created another user but that also did not have any effect.) Any other ideas? Thanks

  • HT1688 My Hot Spot does not work after update to 6.0.1.  Service is with ATT.  Apple says problem is with ATT, ATT says problem is with Apple.  Anyone else having this problem?

    My Hot Spot does not work after update to 6.0.1.  Any suggestions?

    Ok, I had the same issue, my phone is unlocked(iphone 5 with 6.1.3). So I went to the apple store and had it replaced. it worked good for a day and started doing the same thing. When the apple tech replaced my phone, he transfered my screen protector to the new one.
    so I thought it was my sim card, I put in my sisters sim card from a different carrier and it did the same, so then I was like let me take off the screen protector, and that was it.
    so guys, if you have a screen protector on your phone and it's doing "low signal", "No Service", "Searching", "Full bars cycle" then take off the screen protector. so far my phone is working normal.

  • Click to activate does not work after update

    Click to activate plugin does not work after updating to version 23.0.1

    hello Kamullia, if you have set click-to-play to true in about:config you can now go to the ''addons-manager > plugins'' section and set the permissions individually for each plugin type.

  • WiFi iPhone 4S does not work after update iOS 6.0

    WiFi iPhone 4S does not work after update iOS 6.0

    This sounds more like a hardware issue.
    Have you checked that the dock connector port is not dirty?

  • 3G is not working after updating to iOS 6.1

    My 3G connection is not working after updating to iOS 6.1. I have tried all possible solutions like resetting the network, restarting the phone etc.
    With this kind of bugs in every update, Apple will no more be THE Apple.
    There are bugs which have not been fixed even in the subsequent updates. SMSs going blank being one of them.
    Miss you Sir Jobs.....

    I have since managed to sort mine out - when the phone was updated it wiped out the network settings. 
    I was able to reset them by manually putting the information in:
    Settings - General - Cellular - Cellular Data Network and then I put in the correct details for APN, username and Password in the relevant sections and now it works OK.
    Hopefully it will work for others too

  • Phone not working after OS update, phone not working after OS update

    phone not working after OS update, phone not working after OS update

    I do have a questiion.  I started the most recent iOS update on my iPhone last night and before it was ever completed a message appeared on my screen.  It is a pic of the docking/charging cord with an arrow pointing to an iTunes logo...HELP!!!!!  I have tried holding down the home key and power button several times and the same message continues to appear. 

  • Problem with new version 4.3.2 apps not working " after update to the new version "

    Problem with new version 4.3.2 apps not working " after update to the new version "
    i was in 4.3.1 then i do the update , but now after update i face this problem , so what i Supposed to do ?!!

    Hi There
    Had the same problem as you. App would terminate when launched.
    Solution to working You Tube app:
    -Go to playstore
    - Uninstall app (it doesn't remove the app, only removes the update)
    - "Et Voila", working again.
    This doesn't correct the problem, it's just a workaround for you to be able to use youtube app again.
    Hope it helped.
    Best Regards

Maybe you are looking for

  • Safari 6.0.4 keeps crashing

    I had this problem with Safari ever since installing version 6 back on Lion. Then I did a clean install of Mountain Lion 10.8.0 and Safari is still crashing from time to time. Even all the updates up to ML 10.8.3 did not make a difference. I tried di

  • Help putting together a simple portable editing set-up

    I have a MacBookPro at 2.16, with 512 of video memory and 1 GIG ram. I would like to purchase Final Cut Express, an external hard drive, etc, to do some basic Mini DV editing - nothing huge - perhaps short 5 - 10 minute films. Questions: 1. Is 1 GIG

  • Error in Unity Supervise Transfer

    Hi all, Currently, I am trying to enable call queuing on a subscriber account through supervise transfer but cannot make it work in Spanish.  At the beginning, I considered this as a misconfiguration issue but turning the language into English made i

  • Error message when uploading remaining songs from my PC into ICloud

    the message: "I Tunes has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution ias available." Please any help will be appreciated. I am frustrated. I've tried to find a

  • Is EAP-LEAP plug-in supported in Nokia X6 version ...

    For those who has upgraded Nokia X6 16GB to V20.0.005 NAM version, does it still have the EAP-LEAP plug-in available. And, does LEAP still work? LEAP is a little bit out of date and not included in WPA2. I see the reasoning to drop its support. But I