Java plugin:security exception even after selecting "grant this session"

I have made a signed jar with a class in it which tries to access system properties "System.getProperties"
Now i am instantiating this class from an applet which is unsigned.
When i try to view the applet th' java plugin it shows the window asking for the permissions but when i say "grant this session " or grant always" it gives secuity exception.
I would like to know that is it possible to access the class which is signed from an unsigned applet.
I have used netscape signing tools 1.3 for making a test certificate and putting it in cacerts store of java plugin.
And signing the jar file with this certificate.
Kindly help.
Thanks in advance.

As far as I understand the Java security model, by default, the AccessController gives your class's method call the lowest common security permissions of all classes invoked. In order for a class in a more trusted/priveleged security domain (i.e. the signed jar) to be used by your unsigned applet you would have to use the doPriveleged() method of the AccessController class. See:
http://java.sun.com/j2se/1.3/docs/api/java/security/AccessController.html
Hope that's of use.
I have made a signed jar with a class in it which
tries to access system properties
"System.getProperties"
Now i am instantiating this class from an applet which
is unsigned.
When i try to view the applet th' java plugin it shows
the window asking for the permissions but when i say
"grant this session " or grant always" it gives
secuity exception.
I would like to know that is it possible to access the
class which is signed from an unsigned applet.
I have used netscape signing tools 1.3 for making a
test certificate and putting it in cacerts store of
java plugin.
And signing the jar file with this certificate.
Kindly help.
Thanks in advance.

Similar Messages

  • I updated java yesterday and I get a java.lang.security.exception. how do I fix it?

    I updated java yesterday and I get a java.lang.security.exception. how do i fix this?

    Hello russhend,
    i think this one should help you to understand your problem and then solve it.
    https://forums.oracle.com/thread/2179273.
    Thank you.

  • How do I stop redirects even after selecting the advanced panel

    How do I stop redirects even after selecting the advanced panel to warn or not to redirect to another web site?

    Go to Edit/Preferences. You'll see the checkbox option to play after render there.
    Unfortunately, render applies only to the timeline. There is no way to render clips before you add them to a timeline -- except converting them to DV-AVIs before you bring them into your project.

  • I'm trying to install a cd application and I keep getting the message 'you do not have permission to use the application FSP OS X'  Even after selecting always allow and entering my login details it still won't accept it.  Help!!..

    I'm trying to install a cd application and I keep getting the message 'you do not have permission to use the application FSP OS X'  Even after selecting always allow and entering my login details it still won't accept it.  Help!!..

    Please repost in the Final Cut Pro forum. Have you considered upgrading your machine, if you are still running Leopard your machine may be as old as 5 years old. While this should not matter you probably won't get the performance you want out of a demanding app like FCP.
    Best of luck.

  • Hi,earlier i was able to download free games on my ipad2,but now every timr i am trying it is asking for billing information?and even after selecting "NONE" option i am not able to download free games on my ipad?please help me if u have solution.thanx

    Hi ,Earlier i was able to download free games on my ipad2,but now everytime i am trying it is asking for billing information?
    even after selecting "none" option  i am not able to download free games on my ipad ?
    please help me if u have solution for this

    khalid08 wrote:
    Hi ,Earlier i was able to download free games on my ipad2,but now everytime i am trying it is asking for billing information?
    Earlier when - today? Some time in the past? When did this start?

  • How do I delete a Security Exception from the list of items where 'Confirm Security Exception' has been selected?

    I looked at all the previous solutions, some of which were the same., but they didn't answer my question.
    Firefox 17.01
    Ubuntu 12.04
    If I go to
    Edit --> Preferences --> Advanced --> Encryption
    it looks like 'View Certificates' is the likeliest place to look for the Security Exceptions resulting from me clicking 'Confirm Security Exception'.
    I have looked at the five tabs on the next dialog box 'Certificate Manager', and the most likely looks like the 'Servers' tab.
    On this tab, I can see that there is a button to 'Add Exception...', but nowhere to 'Show Exceptions', and the 'Add Exception...' button only provides means to add a new exception.

    Correct: you can find the exceptions under the '''Servers''' tab. Unlike other entries, your custom exceptions should have the '''Server''' column filled out; this should make them easier to locate. Select an entry, then click the '''Delete...''' button.

  • Even after selecting Manually to view emaill still loading new messages all

    Even after i choose to only receive mail manually when i select the mail icon it seems that the phone is still receiving mail even after i selected it not to. I proved it myself when i signed up to receive mail from ebay from my personal pc. it also received on my iphone even though i never opened the mail icon

    I've noticed the same thing - even though I've set all my email accounts to 'manual,' when I check the phone after awhile away I find new messages have been dowloaded. Are other people having this problem? Any solutions? It's minor (I don't receive that much email) but annoying.

  • No rows selected even when SELECT granted.

    I have a view that I created in OEM 12c owned by SYSMAN.  The view is the following:
    create or replace view chk_dbmango as
    SELECT LOWER (a_size.target_name) target_name,
             tphost.host_name,
             tpba.business_area,
             tpd.contact,
             tpapp.application,
             tpenv.environment,
             ROUND (AVG (a_size.size_gb), 2) SIZE_GB,
             ROUND (AVG (a_size.used_gb), 2) USED_GB,
             ROUND (AVG (a_size.size_gb - a_size.used_gb), 2) FREE_GB,
             ROUND (AVG ((a_size.used_gb * 100) / DECODE (a_size.size_gb, 0, 1, a_size.size_gb))) USED_PCT
        FROM (  SELECT t.target_name,
                       t.target_guid,
                       SUM (d.tablespace_size) / 1024 / 1024 / 1024 size_gb,
                       SUM (d.tablespace_used_size) / 1024 / 1024 / 1024 used_gb
                  FROM sysman.mgmt$db_tablespaces d, sysman.mgmt$target_type t
                 WHERE (t.target_type = 'rac_database'
                    OR (t.target_type = 'oracle_database'
                   AND t.TYPE_QUALIFIER3 <> 'RACINST'))
                   AND d.target_name(+) = t.target_name
                   AND t.metric_name = 'tbspAllocation'
                   AND (t.metric_column = 'spaceAllocated')
              GROUP BY t.target_name, t.target_guid, t.metric_column) a_size,
             (  SELECT property_value AS host_name,
                       target_guid
                  FROM sysman.mgmt$target_properties
                 WHERE property_name = 'MachineName') tphost,
             (   SELECT property_value AS business_area,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_line_of_bus') tpba,
             (   SELECT property_value AS contact,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_contact') tpd,
             (   SELECT property_value AS application,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_comment') tpapp,
             (   SELECT property_value AS environment,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_deployment_type') tpenv
       WHERE a_size.target_guid = tphost.target_guid
         AND a_size.target_guid = tpba.target_guid(+)
         AND a_size.target_guid = tpd.target_guid(+)
         AND a_size.target_guid = tpapp.target_guid(+)
         AND a_size.target_guid = tpenv.target_guid(+)
    GROUP BY a_size.target_name,
             tphost.host_name,
             tpba.business_area,
             tpd.contact,
             tpapp.application,
             tpenv.environment
    ORDER BY 1;
    I granted SELECT on this view to user svcmango.  When connected as svcmango and query the view, I get no rows selected.  Connected as sysman I get 99 rows.  There must be something simple that I have overlooked.  Please help.  Thanks.

    Here are the steps taken:
    OMS12C> conn SYSMAN
    Enter password:
    Connected.
    OMS12C> create or replace view chk_dbmango as
    SELECT LOWER (a_size.target_name) target_name,
             tphost.host_name,
             tpba.business_area,
             tpd.contact,
             tpapp.application,
             tpenv.environment,
             ROUND (AVG (a_size.size_gb), 2) SIZE_GB,
             ROUND (AVG (a_size.used_gb), 2) USED_GB,
             ROUND (AVG (a_size.size_gb - a_size.used_gb), 2) FREE_GB,
             ROUND (AVG ((a_size.used_gb * 100) / DECODE (a_size.size_gb, 0, 1, a_size.size_gb))) USED_PCT
        FROM (  SELECT t.target_name,
                       t.target_guid,
                       SUM (d.tablespace_size) / 1024 / 1024 / 1024 size_gb,
                       SUM (d.tablespace_used_size) / 1024 / 1024 / 1024 used_gb
                  FROM sysman.mgmt$db_tablespaces d, sysman.mgmt$target_type t
                 WHERE (t.target_type = 'rac_database'
                    OR (t.target_type = 'oracle_database'
                   AND t.TYPE_QUALIFIER3 <> 'RACINST'))
                   AND d.target_name(+) = t.target_name
                   AND t.metric_name = 'tbspAllocation'
                   AND (t.metric_column = 'spaceAllocated')
              GROUP BY t.target_name, t.target_guid, t.metric_column) a_size,
             (  SELECT property_value AS host_name,
                       target_guid
                  FROM sysman.mgmt$target_properties
                 WHERE property_name = 'MachineName') tphost,
             (   SELECT property_value AS business_area,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_line_of_bus') tpba,
             (   SELECT property_value AS contact,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_contact') tpd,
             (   SELECT property_value AS application,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_comment') tpapp,
             (   SELECT property_value AS environment,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_deployment_type') tpenv
       WHERE a_size.target_guid = tphost.target_guid
         AND a_size.target_guid = tpba.target_guid(+)
         AND a_size.target_guid = tpd.target_guid(+)
         AND a_size.target_guid = tpapp.target_guid(+)
         AND a_size.target_guid = tpenv.target_guid(+)
    GROUP BY a_size.target_name,
             tphost.host_name,
             tpba.business_area,
             tpd.contact,
             tpapp.application,
             tpenv.environment
    ORDER BY 1;
      2    3    4    5    6    7    8    9   10   11   12   13   14   15   16   17   18   19   20   21   22   23   24   25   26   27   28   29   30   31   32   33   34   35   36   37   38   39   40   41   42   43   44   45   46   47   48   49   50   51   52   53   54   55
    View created.
    Elapsed: 00:00:00.04
    OMS12C> select count(*) from chk_dbmango;
      COUNT(*)
            99
    1 row selected.
    Elapsed: 00:00:00.48
    OMS12C> grant select on chk_dbmango to svcdbmango;
    Grant succeeded.
    Elapsed: 00:00:00.01
    OMS12C> conn svcdbmango
    Enter password:
    Connected.
    OMS12C> select count(*) from sysman.chk_dbmango;
      COUNT(*)
             0
    1 row selected.
    Elapsed: 00:00:00.73
    OMS12C>

  • Safari keeps asking for Java 8 runtime environment even after multiple instals

    In spite of instaling Java 8 Runtime environment 3 times & restarting safari after verification of Java I keep getting a popup telling me I need the installation to view web content .
    I am getting rather bored of it I shall try shutting down the computer to see if this cures the problem.
    Has any one else experienced this ?

    Most likely, you have either the Facebook video calling plugin or the "NexDef" plugin for watching baseball streams. Both depend on the Java runtime distributed by Apple. If you no longer need the plugin, remove it. Otherwise, install Java.

  • Uanable to use AKO(Army Knowledge Online) due to problems with security certifacitate, even after accepting the risks.

    I am familiar with the certificates page when attempting to pull up AKO. Today the security risk caution popped up, I pressed the add exception button followed by Get Certificate. The window then informed me the site has a valid certificate but still wouldn't open the site.
    [http://example.com https://www.us.army.mil/appiansuite/login/login.fcc?TYPE=33554433&REALMOID=06-000a4cd6-218f-1122-97ea-832f882f0000&GUID=&SMAUTHREASON=0&METHOD=GET&SMAGENTNAME=$SM$HP4c7QPYp2KtCVeQ%2f723ECL4%2bJUIHQcnRMBd2KxCCSc%3d&TARGET=$SM$http%3a%2f%2fwww.us.army.mil%3a81%2fsuite%2fauthenticate.do]

    Do you still have the DoD certificates installed that are used by those servers?
    *Tools > Options > Advanced : Encryption: Certificates - View Certificates
    Also check the date and time in the clock on your computer: (double) click the clock icon on the Windows Taskbar.
    *https://support.mozilla.org/kb/Secure+Connection+Failed

  • Why does Adobe Flash plugin still crash even after executing FlashAid?

    This report was generated by Flash Aid:
    Ubuntu Architecture
    Linux ubuntu 2.6.32-28-generic-pae #55-Ubuntu SMP Mon Jan 10 22:34:08 UTC 2011 i686 GNU/Linux
    Ubuntu Version
    DISTRIB_ID=Ubuntu
    DISTRIB_RELEASE=10.04
    DISTRIB_CODENAME=lucid
    DISTRIB_DESCRIPTION="Ubuntu 10.04.2 LTS"
    Firefox Packages
    firefox install
    firefox-branding install
    firefox-gnome-support install
    Firefox binaries
    /usr/bin/firefox
    /usr/bin/firefox: symbolic link to `../lib/firefox-3.6.13/firefox.sh'
    /usr/local/bin/firefox: ERROR: cannot open `/usr/local/bin/firefox' (No such file or directory)
    /opt/firefox/firefox: ERROR: cannot open `/opt/firefox/firefox' (No such file or directory)
    Firefox divertion
    /usr/bin/firefox.ubuntu: ERROR: cannot open `/usr/bin/firefox.ubuntu' (No such file or directory)
    Sources
    google-earth.list.save
    lucid-partner.list
    lucid-partner.list.save
    medibuntu.list
    Flash packages
    adobe-flashplugin install
    Plugin locations
    /home/john/.mozilla/plugins/libflashplayer.so
    /usr/lib/adobe-flashplugin/libflashplayer.so
    /windows/.Trash-john/.mozilla/plugins/libflashplayer.so
    /windows/.Trash-john/john/.mozilla/plugins/libflashplayer.so
    /usr/lib/firefox/plugins/flashplugin-alternative.so
    /usr/lib/iceape/plugins/flashplugin-alternative.so
    /usr/lib/iceweasel/plugins/flashplugin-alternative.so
    /usr/lib/midbrowser/plugins/flashplugin-alternative.so
    /usr/lib/mozilla/plugins/flashplugin-alternative.so
    /usr/lib/xulrunner/plugins/flashplugin-alternative.so
    /usr/lib/xulrunner-addons/plugins/flashplugin-alternative.so
    Flash symlinks
    /usr/lib/mozilla/plugins/libflashplayer.so: ERROR: cannot open `/usr/lib/mozilla/plugins/libflashplayer.so' (No such file or directory)
    /usr/lib/mozilla/plugins/flashplugin-alternative.so: symbolic link to `/etc/alternatives/mozilla-flashplugin'
    /etc/alternatives/mozilla-flashplugin: symbolic link to `/usr/lib/adobe-flashplugin/libflashplayer.so'
    /usr/lib/flashplugin-installer/libflashplayer.so: ERROR: cannot open `/usr/lib/flashplugin-installer/libflashplayer.so' (No such file or directory)
    /usr/lib/flashplugin-nonfree/libflashplayer.so: ERROR: cannot open `/usr/lib/flashplugin-nonfree/libflashplayer.so' (No such file or directory)
    /usr/lib/adobe-flashplugin/libflashplayer.so: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, stripped
    /usr/lib/lightspark/lightspark.so: ERROR: cannot open `/usr/lib/lightspark/lightspark.so' (No such file or directory)
    /usr/lib/swfdec-mozilla/libswfdecmozilla.so: ERROR: cannot open `/usr/lib/swfdec-mozilla/libswfdecmozilla.so' (No such file or directory)
    /usr/lib/gnash/libgnashplugin.so: ERROR: cannot open `/usr/lib/gnash/libgnashplugin.so' (No such file or directory)
    /var/lib/flashplugin-installer/npwrapper.libflashplayer.so: ERROR: cannot open `/var/lib/flashplugin-installer/npwrapper.libflashplayer.so' (No such file or directory)
    /var/lib/flashplugin-nonfree/npwrapper.libflashplayer.so: ERROR: cannot open `/var/lib/flashplugin-nonfree/npwrapper.libflashplayer.so' (No such file or directory)
    pluginreg.dat
    Generated File. Do not edit.
    [HEADER]
    Version:0.11:$
    [PLUGINS]
    IcedTeaPlugin.so:$
    /usr/lib/jvm/java-6-openjdk/jre/lib/i386/IcedTeaPlugin.so:$
    :$
    1294458897000:1:5:$
    The IcedTea NPR Web Browser Plugin (using IcedTea6 1.9.4 (6b20-1.9.4-0ubuntu1~10.04.1)) executes Java applets.:$
    IcedTea NPR Web Browser Plugin (using IcedTea6 1.9.4 (6b20-1.9.4-0ubuntu1~10.04.1)):$
    34
    0:application/x-java-vm:IcedTea:class,jar:$
    1:application/x-java-applet:IcedTea:class,jar:$
    2:application/x-java-applet;version=1.1:IcedTea:class,jar:$
    3:application/x-java-applet;version=1.1.1:IcedTea:class,jar:$
    4:application/x-java-applet;version=1.1.2:IcedTea:class,jar:$
    5:application/x-java-applet;version=1.1.3:IcedTea:class,jar:$
    6:application/x-java-applet;version=1.2:IcedTea:class,jar:$
    7:application/x-java-applet;version=1.2.1:IcedTea:class,jar:$
    8:application/x-java-applet;version=1.2.2:IcedTea:class,jar:$
    9:application/x-java-applet;version=1.3:IcedTea:class,jar:$
    10:application/x-java-applet;version=1.3.1:IcedTea:class,jar:$
    11:application/x-java-applet;version=1.4:IcedTea:class,jar:$
    12:application/x-java-applet;version=1.4.1:IcedTea:class,jar:$
    13:application/x-java-applet;version=1.4.2:IcedTea:class,jar:$
    14:application/x-java-applet;version=1.5:IcedTea:class,jar:$
    15:application/x-java-applet;version=1.6:IcedTea:class,jar:$
    16:application/x-java-applet;jpi-version=1.6.0_20:IcedTea:class,jar:$
    17:application/x-java-bean:IcedTea:class,jar:$
    18:application/x-java-bean;version=1.1:IcedTea:class,jar:$
    19:application/x-java-bean;version=1.1.1:IcedTea:class,jar:$
    20:application/x-java-bean;version=1.1.2:IcedTea:class,jar:$
    21:application/x-java-bean;version=1.1.3:IcedTea:class,jar:$
    22:application/x-java-bean;version=1.2:IcedTea:class,jar:$
    23:application/x-java-bean;version=1.2.1:IcedTea:class,jar:$
    24:application/x-java-bean;version=1.2.2:IcedTea:class,jar:$
    25:application/x-java-bean;version=1.3:IcedTea:class,jar:$
    26:application/x-java-bean;version=1.3.1:IcedTea:class,jar:$
    27:application/x-java-bean;version=1.4:IcedTea:class,jar:$
    28:application/x-java-bean;version=1.4.1:IcedTea:class,jar:$
    29:application/x-java-bean;version=1.4.2:IcedTea:class,jar:$
    30:application/x-java-bean;version=1.5:IcedTea:class,jar:$
    31:application/x-java-bean;version=1.6:IcedTea:class,jar:$
    32:application/x-java-bean;jpi-version=1.6.0_20:IcedTea:class,jar:$
    33:application/x-java-vm-npruntime:::$
    libflashplayer.so:$
    /usr/lib/adobe-flashplugin/libflashplayer.so:$
    :$
    1290020895000:1:5:$
    Shockwave Flash 10.1 r102:$
    Shockwave Flash:$
    2
    0:application/x-shockwave-flash:Shockwave Flash:swf:$
    1:application/futuresplash:FutureSplash Player:spl:$
    librhythmbox-itms-detection-plugin.so:$
    /usr/lib/mozilla/plugins/librhythmbox-itms-detection-plugin.so:$
    :$
    1277463660000:1:5:$
    This plug-in detects the presence of iTunes when opening iTunes Store URLs in a web page with Firefox.:$
    iTunes Application Detector:$
    1
    0:application/itunes-plugin:::$
    libtotem-narrowspace-plugin.so:$
    /usr/lib/mozilla/plugins/libtotem-narrowspace-plugin.so:$
    :$
    1274279893000:1:5:$
    The <a href="http://www.gnome.org/projects/totem/">Totem</a> 2.30.2 plugin handles video and audio streams.:$
    QuickTime Plug-in 7.6.6:$
    5
    0:video/quicktime:QuickTime video:mov:$
    1:video/mp4:MPEG-4 video:mp4:$
    2:image/x-macpaint:MacPaint Bitmap image:pntg:$
    3:image/x-quicktime:Macintosh Quickdraw/PICT drawing:pict, pict1, pict2:$
    4:video/x-m4v:MPEG-4 video:m4v:$
    libtotem-mully-plugin.so:$
    /usr/lib/mozilla/plugins/libtotem-mully-plugin.so:$
    :$
    1274279893000:1:5:$
    DivX Web Player version 1.4.0.233:$
    DivX® Web Player:$
    1
    0:video/divx:AVI video:divx:$
    libtotem-gmp-plugin.so:$
    /usr/lib/mozilla/plugins/libtotem-gmp-plugin.so:$
    :$
    1274279893000:1:5:$
    The <a href="http://www.gnome.org/projects/totem/">Totem</a> 2.30.2 plugin handles video and audio streams.:$
    Windows Media Player Plug-in 10 (compatible; Totem):$
    13
    0:application/x-mplayer2:AVI video:avi, wma, wmv:$
    1:video/x-ms-asf-plugin:ASF video:asf, wmv:$
    2:video/x-msvideo:AVI video:asf, wmv:$
    3:video/x-ms-asf:ASF video:asf:$
    4:video/x-ms-wmv:Windows Media video:wmv:$
    5:video/x-wmv:Windows Media video:wmv:$
    6:video/x-ms-wvx:Windows Media video:wmv:$
    7:video/x-ms-wm:Windows Media video:wmv:$
    8:video/x-ms-wmp:Windows Media video:wmv:$
    9:application/x-ms-wms:Windows Media video:wms:$
    10:application/x-ms-wmp:Windows Media video:wmp:$
    11:application/asx:Microsoft ASX playlist:asx:$
    12:audio/x-ms-wma:Windows Media audio:wma:$
    libtotem-cone-plugin.so:$
    /usr/lib/mozilla/plugins/libtotem-cone-plugin.so:$
    :$
    1274279893000:1:5:$
    The <a href="http://www.gnome.org/projects/totem/">Totem</a> 2.30.2 plugin handles video and audio streams.:$
    VLC Multimedia Plugin (compatible Totem 2.30.2):$
    19
    0:application/x-vlc-plugin:VLC Multimedia Plugin::$
    1:application/vlc:VLC Multimedia Plugin::$
    2:video/x-google-vlc-plugin:VLC Multimedia Plugin::$
    3:application/x-ogg:Ogg multimedia file:ogg:$
    4:application/ogg:Ogg multimedia file:ogg:$
    5:audio/ogg:Ogg Audio:oga:$
    6:audio/x-ogg:Ogg Audio:ogg:$
    7:video/ogg:Ogg Video:ogv:$
    8:video/x-ogg:Ogg Video:ogg:$
    9:application/annodex:Annodex exchange format:anx:$
    10:audio/annodex:Annodex Audio:axa:$
    11:video/annodex:Annodex Video:axv:$
    12:video/mpeg:MPEG video:mpg, mpeg, mpe:$
    13:audio/wav:WAV audio:wav:$
    14:audio/x-wav:WAV audio:wav:$
    15:audio/mpeg:MP3 audio:mp3:$
    16:application/x-nsv-vp3-mp3:NullSoft video:nsv:$
    17:video/flv:Flash video:flv:$
    18:application/x-totem-plugin:Totem Multimedia plugin::$
    nppdf.so:$
    /usr/lib/mozilla/plugins/nppdf.so:$
    :$
    1295585662000:1:5:$
    The Adobe Reader plugin is used to enable viewing of PDF and FDF files from within the browser. :$
    Adobe Reader 9.4:$
    5
    0:application/pdf:Portable Document Format:pdf:$
    1:application/vnd.fdf:Acrobat Forms Data Format:fdf:$
    2:application/vnd.adobe.xfdf:XML Version of Acrobat Forms Data Format:xfdf:$
    3:application/vnd.adobe.xdp+xml:Acrobat XML Data Package:xdp:$
    4:application/vnd.adobe.xfd+xml:Adobe FormFlow99 Data File:xfd:$
    libflashplayer.so:$
    /home/john/.mozilla/plugins/libflashplayer.so:$
    :$
    1166154660000:1:5:$
    Shockwave Flash 9.0 r31:$
    Shockwave Flash:$
    2
    0:application/x-shockwave-flash:Shockwave Flash:swf:$
    1:application/futuresplash:FutureSplash Player:spl:$

    PROBLEM SOLVED. There were two versions of Flashplayer installed. I re-ran Flash Aid and it sorted the problem.
    Why does Adobe not resolve this problem at installation or upgrade time????

  • Safari yosemite java warning keeps showing even after install

    I can't get rid of the Java warning after upgrading to Yosemite OS on my Mac AIR.
    I have already installed Java and i can verify it online (java.com).
    I already have Java.
    What can i do. I HATE the **** warning. Keeps poping up random.

    Reinstall SE 6 http://support.apple.com/kb/DL1572 and see if that fixes the problem.
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10.1), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • Hey guys can someone please tell me how to reset my security questions even after they have expired?

    Basically i was going to purchase something on my iPhone 4 and all of a sudden this security question thing came up, so i tried it once but it wouldn't work. Then i clicked the forgotten security questions and tried to answer it and reset the questions, there was no option to reset so i tried and tried to answer and eventually it said you have tried the maximum amount of times and now i don't know what to do please help me! i will be very grateful thank you.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (118273)

  • Time Machine restore is grayed out even after selecting a file

    (step one) I used Migration Assistant to restore a 2009 27" iMac with my Time Machine backup from my 2009 24" iMac that crashed.
    (step two) I open Mail on the restored iMac, the inbox loads, my folders in "on my mac" are listed, but the email messages are not there. I click on one of the folders, go to Time Machine/browse other backup disks (which is the same time machine I used in step one) and I can see the old email messages when I "enter time machine".
    (step three) When in the time machine interface, the tick marks are grayed out. The mail program is showing and I can select one of my folders and see the mail messages. However the restore button is grayed no matter if I select a folder or a particular email message.
    (step four) I cancel out of the time machine interface, go to system prefs/time machine and mount this same disk as the new backup disk. The disk is 1 TB with 178 GB left from the old iMac. The time machine starts a backup and then stops with the error that there is not enough room to backup.
    (step five) I go back to step 2 above, and have the same grayed restore button.
    Please help! Thanks

    Although you can restore messages from a Time Machine snapshot within the Mail application, it generally won't work with messages that were saved by an obsolete version of Mail. In that case, you have to use an alternative method.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Mail/V2
    Right-click or control-click the highlighted line and select
              Services ▹ Open
    from the contextual menu.* A folder should open. Inside it are subfolders representing your Mail accounts. The names refer to the email addresses you use.
    Enter Time Machine and scroll back to the snapshot you want. Select the account folders you want and then select  Restore ... to... from the action menu (gear icon) in the toolbar of the snapshot window. Restore the folders to the Desktop, not to their original location.
    From the Mail menu bar, select
              File ▹ Import Mailboxes...
    Choose Apple Mail as the format and import from the mailboxes in the folders you restored to the Desktop. The imported messages will appear in a new mailbox. Move the ones you want to keep wherever you like and delete the rest. Then delete the folders on the Desktop.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Can't get purchasedE video onto Nano even after selecting Advanced convert

    I have a new Nano and have purchased 5 short videos from iTunes store. Firstly, when synching the error was "cannot be copied onto this iPod because they cannot be played on this iPod". I read in the forum that I should try selecting Advanced and then convert to ipod. When I do this, I get "Error occurred when converting. Unknown error (-3000)". Any ideas where I'm going wrong? The 5 videos were all purchased by me from iTunes store. Is it anything to do with the age of my mac? Thanks for any help.

    Your first error happened to me this morning when I was using the iTunes on my computer for my boss's ipod nano. I has to go under Store/Authorize Account and then just followed the prompts. Now my problem is that I cannot see the movies that I purchased from the iTunes store on my ipod. I can see them in iTunes when my ipod is plugged in, but they are greyed out.

Maybe you are looking for

  • How to find open item from sales order

    Hi all,   my requirement is one sales order is there partial delivery is happened for some materials,take exampla matarial X has 100 quantity in sales order pratial delivery 50 is done, iwant to know the open order qunatity for a  material X from sal

  • Addition of extra Space issue in site studio text element

    Hi, we have implemented WCM for our website. We are in webcenter PS3 version. At places where we have used text element for titles of various sections, if we append one extra space and save it, it displays as   in front end. When we remove the space,

  • How to change colors on chart

    I can't find a way to change the color on my vertical line bars? Anyone know where these options are? Edited by: BISP on Jun 1, 2012 9:02 PM Found it. Format Chart Data. I didn't realize this was it because it was showing white in the menu but blue i

  • BlueCoat to ACE

    Has anyone had experience with converting BlueCoat ProxySG URL rewriting rules to ACE? Do you know of a utility that might do the conversion? Thanks!

  • Restriction user to access owa outside the organization

    I need a policy that a specific group of user, they can access owa in inside the organizational network but when they go outside they cannot access owa outside network. if possible please suggest