JSR179:LocationProvider: Shutting down! and java.lang.SecurityException

Hello,
I am a newbie both at Java ME and JSR-179 (Location based services). I am trying to create location based services but gets the following error:
JSR179:LocationProvider: Shutting down!
null - 6
java.lang.SecurityException
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at unknown
at java.lang.Thread.run
at unknown
at unknownThe problem occures when trying to execute following line below: Location l = lp.getLocation(60);Additional information:
1. The output "null - 6" above is from my Catch-block. That's how I know at which row the error occurs
2. The application works in WTK.
3. The problem occures when I am using the SEM Device Explorer and doing on device debugging. Not sure if that is related to that.
4. If I am running the directly on the phone it works. Well, not neccessarily if I have tried running it from the Device Explorer, guess it wont work because something happened while using the Device Explorer. And when I am trying to use the application on the phone and it hangs, the only thing I can do is to restart the phone. The phone hangs when the "phone" asks if the application should have access to the resources on the phone.
5. Have I missed something, but could it be some place where I can read about all these things how it works?
Please let me know if I should provide more information. I have noted down everything I can think of. I really need to get this going asap.
My code looks as follows:
package hello;
import java.util.Calendar;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import javax.microedition.location.Coordinates;
import javax.microedition.location.Criteria;
import javax.microedition.location.Location;
import javax.microedition.location.LocationProvider;
public class HelloMIDlet extends MIDlet implements CommandListener {
private int err = 0;
private Command exitCommand;
private Display display;
StringItem errTest;
public HelloMIDlet() {
display = Display.getDisplay(this);
exitCommand = new Command("Exit", Command.EXIT, 0);
public void startApp() {
try{
StringItem t = new StringItem("First: ", "Baseline");
StringItem t2 = new StringItem("After Criteria cr: ", "0");
StringItem t3 = new StringItem("After cr.setHoriz: ", "0");
StringItem t4 = new StringItem("After LocationProvider: ", "0");
StringItem t5 = new StringItem("After Location l: ", "0");
StringItem t6 = new StringItem("After Coordinates c: ", "0");
StringItem t7 = new StringItem("After double lat: ", "0");
StringItem t8 = new StringItem("After double lon", "0");
errTest = new StringItem("Error", "0");
    err = 1;
Form form = new Form("TestLocation");
form.append(t);
form.append(t2);
form.append(t3);
form.append(t4);
form.append(t5);
form.append(t6);
form.append(t7);
form.append(t8);
form.append(errTest);
    err = 2;
form.addCommand(exitCommand);
form.setCommandListener(this);
display.setCurrent(form);
long time = Calendar.getInstance().getTime().getTime();
t.setText(Long.toString((Calendar.getInstance().getTime().getTime())-time));
    err = 3;
    Criteria cr= new Criteria();
t2.setText(Long.toString((Calendar.getInstance().getTime().getTime())-time));
err = 4;
cr.setHorizontalAccuracy(500);
err = 5;
t3.setText(Long.toString((Calendar.getInstance().getTime().getTime())-time));
// Get an instance of the provider
LocationProvider lp= LocationProvider.getInstance(cr);
err = 6;
t4.setText(Long.toString((Calendar.getInstance().getTime().getTime())-time));
Location l = lp.getLocation(60);
err = 7;
t5.setText(Long.toString((Calendar.getInstance().getTime().getTime())-time));
Coordinates c = l.getQualifiedCoordinates();
err = 8;
t6.setText(Long.toString((Calendar.getInstance().getTime().getTime())-time));
if(c != null ) {
// Use coordinate information
double lat = c.getLatitude();
err = 9;
t7.setText(Long.toString((Calendar.getInstance().getTime().getTime())-time));
double lon = c.getLongitude();
err = 10;
t8.setText(Long.toString((Calendar.getInstance().getTime().getTime())-time));
}catch (Exception e){
System.out.println(e.getMessage() + " - " + err);
errTest.setText(e.getMessage() + " - " + err);
e.printStackTrace();
public void pauseApp() {
public void destroyApp(boolean unconditional) {
public void commandAction(Command c, Displayable s) {
if (c == exitCommand) {
destroyApp(false);
notifyDestroyed();
}Would be most greateful if anyone could help ou, it's a bit stressful to dump into problems like this without any clue how to solve it.
Thank you in advance!
/Niklas

...Is there any other way to do on-device debuging not using Sony Ericsson Device Explorer?Well I think it depends on whether device supports debug wire protocol like KDWP or JDWP. If it does then you might try debugging with Netbeans Mobility or with Wireless Toolkit ...

Similar Messages

  • Java.lang.SecurityException on maven build with Xtext and XCore from Mars

    Following the usual maven tutorial, and examples shown before in this forum, I'm attempting to upgrade a maven project that uses xtext and xcore to versions as present in a fresh Eclipse Mars install.
    When running the xtext-maven-plugin on the .xcore file, it gets to:
    [INFO] Validate and generate.
    [INFO] Starting validation for input: 'XCoG.xcore'
    [INFO] Starting generator for input: 'XCoG.xcore'
    and then reports (several hundred times)
    java.lang.SecurityException: class "org.eclipse.core.runtime.Plugin"'s signer information does not match signer information of other classes in the same package
    and nothing is generated.
    The relevant bit of the exception trace seems to be:
    org.eclipse.emf.codegen.ecore.genmodel.util.GenModelUtil.getJavaOptions(GenModelUtil.java:128)
    which is a line that references class JavaCore, which is an import from org.eclipse.jdt.core.
    The full debug log of the build seems to show there are two different version of org.eclipse.jdt.core in play,
    org.eclipse.jdt.core:jar:3.11.0.v20150602-1242 which is as released with Mars.
    org.eclipse.tycho:org.eclipse.jdt.core:jar:3.10.0.v20140604-1726 which is a dependency of org.eclipse.xtext:org.eclipse.xtext.xtext:jar:2.8.3,
    which comes because the pom.xml in org.eclipse.xtext.dependencies specifies:
    <dependency>
    <groupId>org.eclipse.tycho</groupId>
    <artifactId>org.eclipse.jdt.core</artifactId>
    <version>3.10.0.v20140604-1726</version>
    </dependency>
    is that an error? And is there any workaround?

    Just to dump the results here in case it helps someone else (or me next year):
    The signature conflict is between the jars org.eclipse.core.runtime 3.7.0 and org.eclipse.equinox.common 3.6.200, because both have the package org.eclipse.core.runtime, but only the former has class Plugin.
    org.eclipse.emf.codegen.ecore.genmodel.util.GenModelUtil references org.eclipse.jdt.core.JavaCore which references many classes from org.eclipse.core.runtime including Plugin. So it ends up with half of each package, hence the error.
    To get things to work, I needed to fiddle things until the bundle org.eclipse.core.runtime was searched before org.eclipse.equinox.common. This wasn't as simple as copying the example, as I was using tycho and there were other dependencies involved, but once I understood what was going on, it was just trial and error.
    Can't help but thing there is something fundamentally flawed about the design of one or more of OSGI, eclipse or tycho here given everything is so fragile. Beneath jar hell there is a deeper pit where things only work if jars are in the right order, and you can't directly specify the order...

  • Solution to: javax.naming.AuthenticationException.  Root exception is java.lang.SecurityException: attempting to add an object which is not an instance of java.security.Principal to a Subject's Principal Set

    Hello world,
    To anybody who receives this irritating error in a Java client
    application attempting to access Weblogic Server 6.1 (and possibly
    weblogic server 6):
    javax.naming.AuthenticationException. Root exception is
    java.lang.SecurityException: attempting to add an object which is not
    an instance of java.security.Principal to a Subject's Principal Set
    The cause of your problem is having JAAS explicitly in your classpath.
    It somehow messes up authentication to WebLogic. Remove it and your
    problem will disappear.
    The complete exception was:
    javax.naming.AuthenticationException. Root exception is
    java.lang.SecurityException: attempting to add an object which is not
    an instance of java.security.Principal to a Subject's Principal Set
         at javax.security.auth.Subject$SecureSet.add(Subject.java:1098)
         at weblogic.common.internal.BootServicesStub.writeUserInfoToSubject(BootServicesStub.java:72)
         at weblogic.common.internal.BootServicesStub.authenticate(BootServicesStub.java:80)
         at weblogic.security.acl.internal.Security.authenticate(Security.java:108)
         at weblogic.jndi.WLInitialContextFactoryDelegate.pushUser(WLInitialContextFactoryDelegate.java:509)
         at weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialContextFactoryDelegate.java:364)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:336)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:208)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:149)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:668)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
         at javax.naming.InitialContext.init(InitialContext.java:222)
         at javax.naming.InitialContext.<init>(InitialContext.java:198)
         at au.com.orrcon.orrconcentral.Application.<init>(Application.java:87)
         at au.com.orrcon.orrconcentral.Application.getApp(Application.java:52)
         at au.com.orrcon.orrconcentral.orrconCentral.<init>(orrconCentral.java:130)
         at au.com.orrcon.orrconcentral.orrconCentral.main(orrconCentral.java:219)

    Steve Wesemeyer <[email protected]> wrote:
    I have encountered the same problem and I do not have JAAS on my classpath
    at all (unless it's there by default). Are there any other possible
    causes for this?
    Cheers,
    SteveA note to all who read this thread:
    I also had to remove Sun's j2ee (version 1.2) from my client's classpath before
    the same problem went away. 1 programmer day down the drain....
    Regards,
    MG

  • Mac Pro suddenly shuts down and starts up again automatically

    Hello Friends!
    Got a really strange problem here, with my Mac Pro.
    Specs:
    2010 Mac Pro 2.GHz Quad-Core Intel Xeon
    RAM: 16GB Kingston RAM
    2x1000GB HDs (one from apple, and another Western Digital)
    My Mac Pro suddenly shuts down, and starts up again automatically. No warning, no freezing - just a shut down noise and black screen. After 3-4 seconds, it starts up again.
    Can someone help me with that?
    All the best,
    Lukas

    I have an older MacPro 32 GBs RAM 2008   4 hard drives (Int. and two ext. 1 & 2TB).  MacOSX 10.6.8
    Just started shutting down and starting up for not reason a day or two ago.  I'm not a programmer and these instructions are difficult for me.  
    Start Time of first crash.  4-20-14 10:46:01 AM
    4/20/14 10:46:01 AM
    bootlog[49]
    BOOT_TIME: 1397958350 0
    Last One
    4/22/14 1:46:06 PM
    bootlog[43]
    BOOT_TIME: 1398141945 0
    (Not all the way back)!
    4/19/14 4:04:29 PM
    [0x0-0x32032].com.azureus.vuze[282]
      java.lang.NullPointerException
    4/19/14 4:04:29 PM
    [0x0-0x32032].com.azureus.vuze[282]
    at com.aelitis.azureus.ui.swt.shells.opentorrent.OpenTorrentOptionsWindow$OpenTorr entInstance$26.runSupport(OpenTorrentOptionsWindow.java:2606)
    4/19/14 4:04:29 PM
    [0x0-0x32032].com.azureus.vuze[282]
    at org.gudy.azureus2.core3.util.AERunnable.run(AERunnable.java:38)
    4/19/14 4:04:29 PM
    [0x0-0x32032].com.azureus.vuze[282]
    at org.gudy.azureus2.ui.swt.Utils.execSWTThread(Utils.java:733)
    4/19/14 4:04:29 PM
    [0x0-0x32032].com.azureus.vuze[282]
    *** process 282 exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    4/19/14 4:04:51 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=300[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 4:06:03 PM
    [0x0-0x32032].com.azureus.vuze[282]
    /usr/bin/nice -n 0 "/Users/ralphcabit/Library/Application Support/Vuze/plugins/azemp/vuzeplayer" -slave -identify -prefer-ipv4 -osdlevel 0 -noautosub -font /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Tmp-/LiberationSans-Bold.ttf335924 4140842114239.ttf -subfont-text-scale 2.5 -subfont-blur 4 -subfont-outline 2 -framedrop -vo corevideo:buffer_name=vuze_1397891163260 "/Volumes/HD2/AzDL/Day of the Locust/Day of the Locust.avi"
    4/19/14 4:34:10 PM
    [0x0-0x3a03a].org.mozilla.firefox[324]
    OpenGL version detected: 210
    4/19/14 4:34:10 PM
    [0x0-0x3a03a].org.mozilla.firefox[324]
    OpenGL version detected: 210
    4/19/14 4:57:32 PM
    kernel
    IOAudioStream[0x1324c700]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (4627,29b)->(4628,a1b).
    4/19/14 4:57:32 PM
    kernel
    IOAudioStream[0x1324c700]::clipIfNecessary() - adjusting clipped position to (4628,29b)
    4/19/14 5:03:34 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=347[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:47 PM
    /Applications/iTunes.app/Contents/MacOS/iTunes[363]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 5:15:55 PM
    kernel
    Message Version Check or Length Not Match.
    4/19/14 5:15:55 PM
    kernel
    Message Length Check - msglength = 3152, expectingLength = 3152
    4/19/14 5:15:55 PM
    kernel
    Message Version Check - msg(0.0.0)@0x14430024 atifb:(3.1.0)
    4/19/14 5:15:55 PM
    kernel
    Message Version Check or Length Not Match.
    4/19/14 5:15:55 PM
    kernel
    Message Length Check - msglength = 3152, expectingLength = 3152
    4/19/14 5:15:55 PM
    kernel
    Message Version Check - msg(0.0.0)@0x159e6024 atifb:(3.1.0)
    4/19/14 5:15:55 PM
    kernel
    Message Version Check or Length Not Match.
    4/19/14 5:15:55 PM
    kernel
    Message Length Check - msglength = 3152, expectingLength = 3152
    4/19/14 5:15:55 PM
    kernel
    Message Version Check - msg(0.0.0)@0x14348024 atifb:(3.1.0)
    4/19/14 5:23:58 PM
    iTunes[363]
    *** attempt to pop an unknown autorelease pool (0x35003000)
    4/19/14 5:45:56 PM
    [0x0-0x47047].com.apple.iTunes[363]
    AppleGVA:: Error creating the accelerator 1
    4/19/14 6:02:17 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=402[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 6:12:35 PM
    Finder[136]
    CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    4/19/14 6:12:35 PM
    Finder[136]
    CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    4/19/14 6:12:35 PM
    Finder[136]
    CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[427]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 6:21:34 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=429[ksadmin] clearing CS_VALID
    4/19/14 6:21:34 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=432[ksadmin] clearing CS_VALID
    4/19/14 6:21:54 PM
    [0x0-0x50050].com.google.Chrome[427]
    [427:46339:0419/182154:ERROR:rlz.cc(41)] Not implemented reached in bool GoogleUpdateSettings::GetLanguage(base::string16 *)
    4/19/14 6:23:15 PM
    [0x0-0x5b05b].org.mozilla.firefox[444]
    OpenGL version detected: 210
    4/19/14 6:23:15 PM
    [0x0-0x5b05b].org.mozilla.firefox[444]
    OpenGL version detected: 210
    4/19/14 6:25:41 PM
    VLC[449]
    Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    4/19/14 6:25:41 PM
    VLC[449]
    Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x10026a2e0 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x100225150] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
    4/19/14 6:25:41 PM
    VLC[449]
    ERROR: <PXSourceList: 0x10064adc0>: Attempt to set unknown item as dropItem=<SideBarItem: 0x136030330>.
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x1006984d0] es demux error: cannot peek
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x1006984d0] es demux error: cannot peek
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x100267a30] main playlist: stopping playback
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x1045290d0] es demux error: cannot peek
    4/19/14 6:25:41 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [0x1045290d0] es demux error: cannot peek
    4/19/14 6:25:41 PM
    VLC[449]
    *** -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    4/19/14 6:25:41 PM
    VLC[449]
    *** -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    4/19/14 6:25:44 PM
    [0x0-0x5c05c].org.videolan.vlc[449]
    [rm @ 0x10181c600] Invalid stream index 1 for index at pos 1460481
    4/19/14 6:43:10 PM
    Finder[136]
    Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    4/19/14 6:43:10 PM
    Finder[136]
    Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x136921eb0 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    4/19/14 7:01:00 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=481[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 7:06:20 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:20 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:20 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:20 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    /System/Library/CoreServices/SubmitDiagInfo[485]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 7:06:21 PM
    SubmitDiagInfo[485]
    SubmitDiagInfo successfully uploaded 28 diagnostic messages.
    4/19/14 7:59:43 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=512[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:46 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:16:49 PM
    Mail[525]
    Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    4/19/14 8:16:49 PM
    Mail[525]
    Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x137c81d60 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    4/19/14 8:54:11 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:54:11 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:54:11 PM
    /Applications/Mail.app/Contents/MacOS/Mail[525]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    /tmp/KSOutOfProcessFetcher.oKWJJ79TY0/ksfetch[563]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:26 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=562[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:27 PM
    /tmp/KSOutOfProcessFetcher.GGpTOi01qr/ksfetch[565]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 8:58:28 PM
    /Users/ralphcabit/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundl e/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftware UpdateAgent[562]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[599]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:26:48 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=601[ksadmin] clearing CS_VALID
    4/19/14 9:26:48 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=604[ksadmin] clearing CS_VALID
    4/19/14 9:27:07 PM
    [0x0-0x78078].com.google.Chrome[599]
    [599:46851:0419/212707:ERROR:rlz.cc(41)] Not implemented reached in bool GoogleUpdateSettings::GetLanguage(base::string16 *)
    4/19/14 9:27:45 PM
    [0x0-0x78078].com.google.Chrome[599]
    [WARNING:/Volumes/Builds/jenkins/ws/St_Make/code/products/player/pepper/gypbuild /../../../../flash/platform/pepper/pep_url_request_info.cpp(219)] Missing colon in HTTP header line "
    4/19/14 9:27:45 PM
    [0x0-0x78078].com.google.Chrome[599]
    4/19/14 9:29:06 PM
    Google Chrome[599]
    Cannot find function pointer GraphicConverterCMIFactory for factory E3F3BEA1-3194-11D9-87A7-000A95874F98 in CFBundle/CFPlugIn 0x3b41f260 </Users/ralphcabit/Library/Contextual Menu Items/GraphicConverterCMI.plugin> (not loaded)
    4/19/14 9:30:28 PM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/19/14 9:30:28 PM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/19/14 9:30:28 PM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/19/14 9:30:28 PM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/19/14 9:30:28 PM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/19/14 9:30:28 PM
    KernelEventAgent[39]
    tid 00000000 received event(s) VQ_LOWDISK, VQ_VERYLOWDISK (516)
    4/19/14 9:32:00 PM
    Google Chrome[599]
    Cannot find function pointer GraphicConverterCMIFactory for factory E3F3BEA1-3194-11D9-87A7-000A95874F98 in CFBundle/CFPlugIn 0x3b41f260 </Users/ralphcabit/Library/Contextual Menu Items/GraphicConverterCMI.plugin> (not loaded)
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    /Applications/Google Chrome.app/Contents/MacOS/Google Chrome[650]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 9:35:41 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=652[ksadmin] clearing CS_VALID
    4/19/14 9:35:41 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=655[ksadmin] clearing CS_VALID
    4/19/14 9:36:00 PM
    [0x0-0x88088].com.google.Chrome[650]
    [650:46339:0419/213600:ERROR:rlz.cc(41)] Not implemented reached in bool GoogleUpdateSettings::GetLanguage(base::string16 *)
    4/19/14 9:39:03 PM
    com.apple.kextcache[628]
    Created prelinked kernel /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache_i386.AF146629.
    4/19/14 9:56:45 PM
    [0x0-0x88088].com.google.Chrome[650]
    Warning: unknown JFIF revision number 2.01
    4/19/14 9:56:45 PM
    [0x0-0x88088].com.google.Chrome[650]
    Warning: unknown JFIF revision number 2.01
    4/19/14 9:56:45 PM
    [0x0-0x88088].com.google.Chrome[650]
    Warning: unknown JFIF revision number 2.01
    4/19/14 9:56:45 PM
    [0x0-0x88088].com.google.Chrome[650]
    Warning: unknown JFIF revision number 2.01
    4/19/14 9:56:45 PM
    [0x0-0x88088].com.google.Chrome[650]
    Warning: unknown JFIF revision number 2.01
    4/19/14 9:57:09 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=680[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 10:46:25 PM
    quicklookd[714]
    [QL] 'Creating thumbnail - cancelled' timed out for '<QLThumbnailRequest /Volumes/HD4/MUSIC VIDS/Zappa - Video From **** DivX.avi>' (Start date: 2014-04-19 22:46:13 +0900)
    4/19/14 10:46:49 PM
    VLC[716]
    Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    4/19/14 10:46:49 PM
    VLC[716]
    Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x100647cf0 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    4/19/14 10:46:49 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [0x1002240e0] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
    4/19/14 10:46:50 PM
    VLC[716]
    ERROR: <PXSourceList: 0x10028b800>: Attempt to set unknown item as dropItem=<SideBarItem: 0x13636ab70>.
    4/19/14 10:46:50 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [mpeg4 @ 0x103802c00] Video uses a non-standard and wasteful way to store B-frames ('packed B-frames'). Consider using a tool like VirtualDub or avidemux to fix it.
    4/19/14 10:46:50 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [0x103800cb0] mpgatofixed32 audio converter error: libmad error: bad main_data_begin pointer
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/ Versions/A/Support/mdworker[649]
    MDS Error: unable to create user DBs in /var/folders/Zw/ZwiUrc-PG1as5fH6A5NrmE+++TI/-Caches-//mds
    4/19/14 10:46:50 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [mpeg4 @ 0x100830c00] Video uses a non-standard and wasteful way to store B-frames ('packed B-frames'). Consider using a tool like VirtualDub or avidemux to fix it.
    4/19/14 10:46:50 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [0x1020730b0] mpgatofixed32 audio converter error: libmad error: bad main_data_begin pointer
    4/19/14 10:46:52 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    shader program 1: WARNING: vertex shader writes varying 'TexCoord1' which is not active.
    4/19/14 10:46:52 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    WARNING: vertex shader writes varying 'TexCoord2' which is not active.
    4/19/14 10:47:16 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [0x1038948b0] mpgatofixed32 audio converter error: libmad error: bad main_data_begin pointer
    4/19/14 10:47:16 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [0x1038948b0] mpgatofixed32 audio converter error: libmad error: bad main_data_begin pointer
    4/19/14 10:55:52 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=733[GoogleSoftwareUp] clearing CS_VALID
    4/19/14 10:59:41 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [flv @ 0x10105a200] Stream discovered after head already parsed
    4/19/14 10:59:41 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [flv @ 0x1038a0400] Stream discovered after head already parsed
    4/19/14 10:59:41 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    shader program 1: WARNING: vertex shader writes varying 'TexCoord1' which is not active.
    4/19/14 10:59:41 PM
    [0x0-0x9a09a].org.videolan.vlc[716]
    WARNING: vertex shader writes varying 'TexCoord2' which is not active.
    4/19/14 11:52:41 PM
    [0x0-0x32032].com.azureus.vuze[282]
    Jeff Beck - There and Back (1980) [EAC-FLAC]: Incoming keep-alive message flood detected, dropping spamming peer connection.L: 5.254.138.76: 59929 [Transmission 2.82]
    4/19/14 11:54:36 PM
    kernel
    CODE SIGNING: cs_invalid_page(0x1000): p=806[GoogleSoftwareUp] clearing CS_VALID
    4/20/14 12:12:32 AM
    [0x0-0x9a09a].org.videolan.vlc[716]
    [flv @ 0x103860c00] Stream discovered after head already parsed
    4/20/14 12:12:33 AM
    [0x0-0x32032].com.azureus.vuze[282]
    core.stop
    4/20/14 12:12:33 AM
    [0x0-0x32032].com.azureus.vuze[282]
    Stopping idle sleep preventer
    4/20/14 12:12:36 AM
    [0x0-0x32032].com.azureus.vuze[282]
    core.stop done in 3100
    4/20/14 12:12:36 AM
    System Preferences[823]
    Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:
    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    4/20/14 12:12:36 AM
    System Preferences[823]
    Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x200081d60 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    4/20/14 12:12:56 AM
    com.apple.launchd.peruser.501[130]
    ([0x0-0x4f04f].com.apple.Preview[416]) Exited: Killed
    4/20/14 12:12:56 AM
    com.apple.launchd.peruser.501[130]
    (com.apple.AirPortBaseStationAgent[166]) Exited: Killed
    4/20/14 12:12:56 AM
    com.apple.launchd.peruser.501[130]
    (com.apple.FolderActions.enabled[170]) Exited: Killed
    4/20/14 12:12:56 AM
    com.apple.launchd.peruser.501[130]
    ([0x0-0x8008].com.apple.inputmethod.Kotoeri[155]) Exited: Killed
    4/20/14 12:12:56 AM
    loginwindow[38]
    DEAD_PROCESS: 38 console
    4/20/14 12:12:57 AM
    kernel
    systemShutdown true
    4/20/14 12:12:57 AM
    kernel
    systemShutdown true
    4/20/14 12:12:57 AM
    shutdown[828]
    halt by ralphcabit:
    4/20/14 12:12:57 AM
    shutdown[828]
    SHUTDOWN_TIME: 1397920377 530969
    4/20/14 12:12:58 AM
    kernel
    Kext loading now disabled.
    4/20/14 12:12:58 AM
    kernel
    Kext unloading now disabled.
    4/20/14 12:12:58 AM
    kernel
    Kext autounloading now disabled.
    4/20/14 12:12:58 AM
    kernel
    Kernel requests now disabled.
    4/20/14 12:13:17 AM
    mDNSResponder[37]
    mDNSResponder mDNSResponder-258.21 (May 26 2011 14:40:13) stopping
    4/20/14 12:13:17 AM
    DirectoryService[16]
    BUG in libdispatch: 10K549 - 1960 - 0x10004004
    4/20/14 12:13:17 AM
    com.apple.SecurityServer[33]
    Session 0x301fe0 dead
    4/20/14 12:13:17 AM
    com.apple.SecurityServer[33]
    Killing auth hosts
    4/20/14 12:13:17 AM
    WindowServer[91]
    hidd died. Reestablishing connection.
    4/20/14 12:13:17 AM
    com.apple.SecurityServer[33]
    Session 0x301fe0 destroyed
    4/20/14 10:45:55 AM
    kernel
    npvhash=4095
    4/20/14 12:13:17 AM
    WindowServer[91]
    bootstrap_look_ip failed: Unknown service name
    4/20/14 10:45:55 AM
    kernel
    PAE enabled
    4/20/14 10:45:55 AM
    kernel
    64 bit mode enabled
    4/20/14 10:45:55 AM
    kernel
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    4/20/14 10:45:55 AM
    kernel
    vm_page_bootstrap: 6159568 free pages and 99120 wired pages
    4/20/14 10:45:55 AM
    kernel
    standard timeslicing quantum is 10000 us
    4/20/14 10:45:55 AM
    kernel
    mig_table_max_displ = 73
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=2 LocalApicId=6 Enabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=3 LocalApicId=7 Enabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=4 LocalApicId=0 Disabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=5 LocalApicId=0 Disabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=6 LocalApicId=0 Disabled
    4/20/14 10:45:55 AM
    kernel
    AppleACPICPU: ProcessorId=7 LocalApicId=0 Disabled
    4/20/14 10:45:55 AM
    kernel
    calling mpo_policy_init for TMSafetyNet
    4/20/14 10:45:55 AM
    kernel
    Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    4/20/14 10:45:55 AM
    kernel
    calling mpo_policy_init for Quarantine
    4/20/14 10:45:55 AM
    kernel
    Security policy loaded: Quarantine policy (Quarantine)
    4/20/14 10:45:55 AM
    kernel
    calling mpo_policy_init for Sandbox
    4/20/14 10:45:55 AM
    kernel
    Security policy loaded: Seatbelt sandbox policy (Sandbox)
    4/20/14 10:45:55 AM
    kernel
    Copyright (c) 1982, 1986, 1989, 1991, 1993
    4/20/14 10:45:55 AM
    kernel
    The Regents of the University of California. All rights reserved.
    4/20/14 10:45:55 AM
    kernel
    MAC Framework successfully initialized
    4/20/14 10:45:55 AM
    kernel
    using 16384 buffer headers and 4096 cluster IO buffer headers
    4/20/14 10:45:55 AM
    kernel
    IOAPIC: Version 0x20 Vectors 64:87
    4/20/14 10:45:55 AM
    kernel
    ACPI: System State [S0 S3 S4 S5] (S3)
    4/20/14 10:45:55 AM
    kernel
    PFM64 0xf10000000, 0xf0000000
    4/20/14 10:45:55 AM
    kernel
    [ PCI configuration begin ]
    4/20/14 10:45:55 AM
    kernel
    PCI configuration changed (bridge=4 device=1 cardbus=0)
    4/20/14 10:45:55 AM
    kernel
    [ PCI configuration end, bridges 17 devices 26 ]
    4/20/14 10:45:55 AM
    kernel
    AppleIntelCPUPowerManagement: (built 16:44:45 Jun  7 2011) initialization complete
    4/20/14 10:45:55 AM
    kernel
    mbinit: done (64 MB memory set for mbuf pool)
    4/20/14 10:45:55 AM
    kernel
    rooting via boot-uuid from /chosen: 09A76986-C881-305A-9A97-15F2D98B28A5
    4/20/14 10:45:55 AM
    kernel
    Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    4/20/14 10:45:55 AM
    kernel
    com.apple.AppleFSCompressionTypeZlib kmod start
    4/20/14 10:45:55 AM
    kernel
    com.apple.AppleFSCompressionTypeZlib load succeeded
    4/20/14 10:45:55 AM
    kernel
    AppleIntelCPUPowerManagementClient: ready
    4/20/14 10:45:55 AM
    kernel
    Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT0 @0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/WDC WD2500AAJS-41RYA0 Media/IOGUIDPartitionScheme/Customer@2
    4/20/14 10:45:55 AM
    kernel
    BSD root: disk0s2, major 14, minor 2
    4/20/14 10:45:55 AM
    kernel
    FireWire (OHCI) TI ID 8025 built-in now active, GUID 001cb3fffe8e3a66; max speed s800.
    4/20/14 10:45:55 AM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/20/14 10:45:55 AM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/20/14 10:45:55 AM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/20/14 10:45:55 AM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/20/14 10:45:55 AM
    kernel
    SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x20, ASCQ = 0x00
    4/20/14 10:45:50 AM
    com.apple.launchd[1]
    *** launchd[1] has started up. ***
    4/20/14 10:45:55 AM
    com.apple.launchd[1]
    (com.apple.usbmuxd) Unknown key: POSIXSpawnType
    4/20/14 10:45:56 AM
    kernel
    AppleIntel8254XEthernet: Ethernet address 00:17:f2:0d:18:4a
    4/20/14 10:45:56 AM
    kernel
    AppleIntel8254XEthernet: Ethernet address 00:17:f2:0d:18:4b
    4/20/14 10:45:56 AM
    kernel
    systemShutdown false
    System Diagnostic Report (last one)
    Process:         plugin-container [236]
    Path:            /Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/pl ugin-container
    Identifier:      plugin-container
    Version:         ??? (???)
    Code Type:       X86-64 (Native)
    Parent Process:  firefox [220]
    Date/Time:       2014-04-12 17:49:47.384 +0900
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          271743 sec
    Crashes Since Last Report:           6
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      1D7447CF-D1D4-4E24-AEAA-5DEA325A3E4A
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      could not load inserted library:
    Binary Images:
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
    System Profile:
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 12 GB, SMC 1.7f10
    Graphics: ATI Radeon HD 5770, ATI Radeon HD 5770, PCIe, 1024 MB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 32768 MB
    Memory Module: global_name
    Network Service: Ethernet 2, Ethernet, en1
    PCI Card: ATI Radeon HD 5770, sppci_displaycontroller, Slot-1
    PCI Card: ATI Radeon HD 5770, ATY,HoolockParent, Slot-1
    PCI Card: NVIDIA GeForce 7300 GT, sppci_displaycontroller, Slot-2
    Serial ATA Device: WDC WD2500AAJS-41RYA0, 232.89 GB
    Serial ATA Device: WDC WD20EARX-00PASB0, 1.82 TB
    Serial ATA Device: WDC WD5000AAKS-00TMA0, 465.76 GB
    Serial ATA Device: Hitachi HDP725050GLA360, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-112D
    USB Device: Composite Device, 0x0763  (M-Audio), 0x1002, 0x5d100000 / 2
    USB Device: nanoKONTROL2, 0x0944  (KORG, Inc.), 0x0117, 0x1d200000 / 2
    USB Device: Hub in Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x1003, 0x3d100000 / 2
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0x3d110000 / 4
    USB Device: Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x020d, 0x3d130000 / 3
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: My Book 1112, WD, Up to 800 Mb/sec

  • Java.lang.SecurityException: sealing violation

    I got the following error after deploying application.
    I installed ADF runtime module on standalone OC4J. (I tested on both 9.0.3 and 9.0.4. I got the same result)
    I need your help asap.
    Thanks in advance.
    500 Internal Server Error
    java.lang.SecurityException: sealing violation
         at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].naming.ContextClassLoader.defineClass(ContextClassLoader.java:1076)
         at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].naming.ContextClassLoader.findClass(ContextClassLoader.java:365)
         at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].naming.ContextClassLoader.loadLocalClassFirst(ContextClassLoader.java:150)
         at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].naming.ContextClassLoader.loadClass(ContextClassLoader.java:129)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at oracle.adf.model.servlet.ADFBindingFilter.initializeBindingContext(ADFBindingFilter.java:307)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:560)
         at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind[Oracle9iAS (9.0.3.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)

    Daekyun - I think you're going down the right path by installing different adf runtimes - at least thats what helped me when I was having the same problem.
    Here is what we did to solve our problem with the same exception you're getting:
    Since we deploy to linux boxes I set up samba to be able to map a drive to our oracle home directory. I mapped the drive to the oracle home "share" I created on the linux box. I then, in the same jdev that I did my development in (in a multiuser environment I'd imagine as long as you're all developing in the same version everything should be fine), I pointed the adf runtime installer to that mapped drive I created to the samba "share" of the oracle home on the linux box. Everything went great after the adf runtime was installed that matched the version I was using in development.
    HTH
    -Brian

  • Why is Mac Book allowing books and apps I don't use to collect info and send it out without my knowledge.  My computer will not disconnect from the internet.  It seems to find a clone router and continues even when I shut down and unplug my my own home iy

    /*! flamingo 6.4.0 2013-06-18 */
    function AppListView(){this.allBooks=[],this.recentBooks=[],this.$dom=$("<div>",{"class" :"app-list"}),this._loadBooks(),this._createView(),setTimeout($.proxy(this._prel oadIcons,this),1e3)}function Beacon(e,a){location.protocol.match(/^http/)&&e.enable_tracking&&e.product&&e.p latform&&e.version&&(this.title=e.title.toLowerCase(),this.product=e.product.toL owerCase(),this.platform=e.platform.toLowerCase(),this.version=e.version.toLower Case(),this.locale=a.isoCodes[0],this.loaded=$.getScript(App.resourcePath+"sc.js ",$.proxy(this.init,this)),$(e).on("navigate",$.proxy(this.navigate,this)),$(e). on("search",$.proxy(this.search,this)),$(e).on("searchresults",$.proxy(this.sear chResultSelected,this)),$(e).on("feedback",$.proxy(this.feedback,this)),$(e).on( "mediastart",$.proxy(this.mediaStart,this)))}function Book(e){if($.extend(this,e),this.name=this.title,$.each(this.topics,$.proxy(fun ction(e,a){this.topics[e]=new Topic(e,a,this)},this)),$.each(this.sections,$.proxy(function(e,a){this.section s[e]=new Section(e,a,this)},this)),$.each(this.toc,$.proxy(function(e,a){this.toc[e]=thi s.topics[a]||this.sections[a]||a},this)),$.each(this.sections,$.proxy(function(e ,a){var t=a.children;$.each(t,$.proxy(function(e,i){t[e]=this.topics[i]||this.sections[ i]||i,t[e].parent=a},this))},this)),this.landing=this.topics[this.landing]||"",t his.copyright=this.topics[this.copyright]||"",!this.landing){for(var a=this.toc[0];a instanceof Section;)a=a.children[0];this.landing=a}this.unknown_topic=new Topic("unknown",{name:"TOPIC_UNAVAILABLE".loc(),href:""},this)}function ContentView(e,a){this.name=e,this.$dom=$("<div>",{id:e,"class":"contentView"}). addClass(e),this.topic=null,a&&this.showTopic(a)}function DebugPanel(e){this.$dom=$("<dl>",{"class":"debug-info"}),$("<dt>",{text:"flamin go"}).appendTo(this.$dom),$("<dd>",{text:e.version}).appendTo(this.$dom),$.each( ["build_id","title","design","enable_tracking","product","platform","version","l ocale","collect_feedback","framework","source_schema"],$.proxy(function(a,t){$(" <dt>",{text:t}).appendTo(this.$dom),$("<dd>",{text:e.book[t]||"[ undefined ]"}).toggleClass("undefined",!e.book[t]).appendTo(this.$dom)},this))}function Design(e){this.name=e||"default";var a=Design.namedSkins[this.name];this.cssClass="",this.isLayeredStyle=!1,this.hel pviewerWindowSize={height:520,width:815},this.dismissSearchLabel="Cancel",this.p reloadList=["lightbox-close.png","[email protected]","lightbox-close-hover.p ng","[email protected]","disclosure-open.png","[email protected]" ],a&&(a.preloadList&&(this.preloadList.concat(a.preloadList),delete a.preloadList),$.extend(this,a))}function HelpViewerBook(e){this.id=e.bookID(),this.title=e.title(),this.link="help:openb ook='"+this.id+"'",this.iconHref=("x-help-icon://"+encodeURIComponent(this.id)). replace(/\.help$/,""),this.apple=this.id.match(/^com\.apple\./)?!0:!1}function LandingView(e,a){this.book=e,this.bundle=a,this.contentView=new ContentView("landing",e.landing),this.$dom=this.contentView.$dom,this.isHelpCen ter="HelpViewer"in window&&!HelpViewer.currentScope(),this.isHelpCenter?this._addMarquee():this._l ayoutLanding()}function LightboxView(e){this._$previous_focus=$(),this.visible=!1,this.$dom=$("<div>",{ id:e,"class":e,"aria-hidden":"true",role:"alertdialog",tabindex:"-1"}).hide(),$( "<div>",{"class":"background"}).appendTo(this.$dom);var a=$("<div>",{id:"lightboxOuterWrapper"}).appendTo(this.$dom),t=$("<div>",{id:"l ightboxInnerWrapper"}).appendTo(a),i=$("<div>",{id:"lightboxContentWrapper"}).ap pendTo(t);this.contentView=new ContentView("lightbox-content"),i.append(this.contentView.$dom);var n=$("<img>",{src:App.resourcePath+"images/[email protected]",alt:"Close".lo c(),role:"button"});$("<a>",{"class":"closeButton"}).append(n).appendTo(a).click ($.proxy(function(){App.navigation.popPrevious(),this.hide()},this)).hover(funct ion(){n.attr("src",App.resourcePath+"images/[email protected]")},funct ion(){n.attr("src",App.resourcePath+"images/[email protected]")})}function NavController(e){this._book=e,this._linearTOC=[],this._currentItem=null,this._p ushedItem=null,this._addItems(e.toc),App.design.isLayeredStyle||this._linearTOC. unshift(e.landing),this._checkHash();var a=$.proxy(this._checkHash,this);"onhashchange"in window?$(window).bind("hashchange",a):setTimeout(function(){setInterval(a,100)} ,500)}function Section(e,a,t){this.id=e,this.book=t,$.extend(this,a)}function TOC(e,a,t){this.book=e,this._contentPath=t,this._$liByID={},this.$dom=this._$ul ForNavList(this.book.toc,0).addClass("toc");var i=$("<li>",{role:"treeitem","class":"home"}).prependTo(this.$dom),n=$("<a>",{hr ef:"#"+this.book.landing.id}).appendTo(i);$("<img>",{src:a+"images/tangerine/hom [email protected]"}).appendTo(n),$("<span>",{"class":"name",text:"Home".loc()}).appendTo( n),this._$liByID[e.landing.id]=i,this.$dom.on("click","a",$.proxy(this._toggleSe ctions,this))}function Topic(e,a,t){this.id=e,this.book=t,this.categories=[],$.extend(this,a),this.ful l_name=this.name,this._content_loaded=!1,this.$content=$("<div>",{id:e}),this.is _landing=$.inArray("landing",this.categories)>-1,this.is_glossary=$.inArray("glo ssary",this.categories)>-1,this.is_external=!!this.href.match(/^\w+:/),this.is_h ash=!!this.href.match(/^#/)}function TermMatch(e,a,t){this.term=e,this.topic=App.book.topicForID(a),this.weight=t}fu nction WeightedTopic(e){this.topic=e.topic,this.weight=e.weight}function SearchResult(e,a,t){this.query=e,this.matchingTerms=a,this.topics=[];var i={};$.each(t,function(e,a){var t=a.topic.id,n=i[t];n?n.addMatch(a):i[t]=new WeightedTopic(a)});var n=$.map(i,function(e){return e}),o=n.sort(function(e,a){return a.weight-e.weight});this.topics=$.map(o,function(e){return e.topic})}function SearchIndex(e){this._keywordStemRegex="",this._matchesByTerm={};var a,t,i,n,o=[];i=function(e,t){return new TermMatch(a,t,e)},n=function(e,a,t){return"\\b"+a+(t?t.replace(/(.)/g,"$1?"):"" )+"\\b"};for(var s in e)a=s,t=e[a],this._matchesByTerm[a]=$.map(t,i),a=a.replace(/(\.|\*|\+|\?|\{|\}| \||\[|\]|\(|\)|\-|\^|\$)/g,"\\$1"),a=a.replace(/^(..)(.+)$/,n),o.push(a);o.sort( function(e,a){return a.length-e.length}),this._keywordStemRegex=RegExp(o.join("|"),"gi")}window.App= {version:"6.4.0",env:"production"},location.search.match(/%23/)&&location.replac e(location.href.replace("%23","#")),$.ajaxSetup({crossDomain:!1}),window.APD={}, $.extend(window.App,{book:null,bundle:null,design:null,navigation:null,searchInd ex:null,resourcePath:"",queryParams:{},views:{}}),String.prototype.loc=function( ){return App.bundle?App.bundle.translate(this):this},function(){if("console"in window||(window.console={},$.each(["assert","count","debug","dir","dirxml","err or","group","groupCollapsed","groupEnd","info","log","markTimeline","profile","p rofileEnd","time","timeEnd","trace","warn"],function(){window.console[this]=$.no op})),location.search&&$.each(location.search.substring(1).split("&"),function() {var e=this.split("=");App.queryParams[decodeURIComponent(e[0])]=decodeURIComponent( e[1])}),App.queryParams.topic){var e=App.queryParams.topic,a=location.pathname;return delete App.queryParams.topic,a+=$.param(App.queryParams)?"?"+$.param(App.queryParams): "",a+="#"+e,location.replace(a),void 0}App.queryParams.localePath&&App.queryParams.localePath.match(/^http/)&&delete App.queryParams.localePath,navigator.userAgent.match(/Help Viewer/)&&($.browser.helpviewer=!0),$(document).ready(function(){function e(){clearTimeout(i),t.hide().remove()}function a(){e(),console.error("Could not load navigation.json file."),$("html").addClass("nocontent")}$("#javascriptDisabled").remove(),App.r esourcePath=$("script[src$='flamingo.js']").attr("src").replace(/flamingo\.js$/, ""),(new Image).src=App.resourcePath+"images/[email protected]";var t=$("<div>",{id:"updating"}).hide().appendTo("body").append($("<img>",{src:App. resourcePath+"images/[email protected]"})),i=setTimeout(function(){t.show()},500);A pp._loadBundle().pipe(function(){return $.getJSON(App.bundle.URL()+"navigation.json",function(e,a,t){App._addServerType (t),App.book=new Book(e),App.beacon=new Beacon(App.book,App.bundle.current)})}).fail(a).then(e).then(App.init).then(App .showInterface).then(function(){return $.getJSON(App.bundle.URL()+"search.json",function(e){App.searchIndex=new SearchIndex(e)})}).fail(function(){console.error("Could not load search.json file.")})}),App._loadBundle=function(){var e=$.Deferred(),a=App.queryParams.localePath||App.queryParams.lang||window.local ePath;return App.bundle=new APD.Bundle("",a,function(){$("body").attr("dir",this.current["text-direction"]) ,$("<div>",{"class":"localizedUpdateText",text:"Loading latest help...".loc()}).appendTo("#updating"),$("html").attr("lang",this.current.isoCo des[0]),e.resolve()}),e},App._addServerType=function(e){var a=e.getResponseHeader("x-server-type");"development"!==this.env&&a&&a.match(/re view|staging/)&&(this.env=a),$("html").addClass(this.env)},App.setTitle=function (e){var a=App.book.title,t=e&&(e.full_name||e.name);t!==a&&(a+=": "+$("<textarea>",{html:t}).text()),document.title=a},App.init=function(){var e=$("html");if($.each($.browser,function(a){"version"!==a&&e.addClass(a)}),e.ha sClass("nocontent")||$("#contentUnavailable").remove(),window.devicePixelRatio>1 &&void 0!==document.body.style.backgroundSize&&e.addClass("bgsize"),App.design=new Design(App.book.design),$.browser.helpviewer&&Design.helpviewerWindowSize){var a=Design.helpviewerWindowSize,t=Math.max(a.width,top.outerWidth),i=Math.max(a.h eight,top.outerHeight);top.resizeTo(t,i)}if(navigator.userAgent.match(/(iphone|i pad)/i)){"-webkit-overflow-scrolling"in document.body.style||e.addClass("nooverflow");var n=720;App.design.helpviewerWindowSize&&(n=App.design.helpviewerWindowSize.width ),$("<meta>",{name:"viewport",content:"maximum-scale=3.0,width="+n}).prependTo(" head")}},App.showInterface=function(){App.createViews(),App.design.preloadImages (),App.navigation=new NavController(App.book)},App.createViews=function(){var e=$("body"),a=$("<div>",{id:"container","class":"container"}),t=$("<div>",{id:" menu","class":"menu"}).appendTo(a),i=$("<div>",{id:"front-matter","class":"front -matter"}).appendTo(a),n=$("<div>",{id:"navigation","class":"navigation",role:"n avigation"}).appendTo(i);App.views.landing=new LandingView(App.book,App.bundle),App.views.toc=new TOC(App.book,App.resourcePath,App.bundle.URL()),App.views.topic=new ContentView("topic"),App.views.debug=new DebugPanel(App),App.views.lightbox=new LightboxView("lightbox"),$.browser.helpviewer&&!HelpViewer.currentScope()&&(App .views.appList=new AppListView),a.add(App.views.lightbox.$dom).addClass(App.design.name).addClass( App.design.cssClass),e.prepend(a),e.append(App.views.debug.$dom),i.prepend(App.v iews.landing.$dom),a.append(App.views.topic.$dom.hide()),searchController.addInt erfaceElements(n),n.append(App.views.toc.$dom),e.append(App.views.lightbox.$dom) ,App.views.appList&&e.append(App.views.appList.$dom),$("<h1>",{"class":"book-tit le"}).append($("<a>",{href:"#",text:App.book.title})).appendTo(t),$(App.book).on ("navigate",$.proxy(App.views.toc.updateSelection,App.views.toc)),$(App.book).on ("navigate",$.proxy(App.toggleViews,App)),$("body").on("orientationchange",App.r esetOverflow)},App.resetOverflow=function(){var e,a=App.views,t=$(".toc").add(a.landing.$dom).add(a.topic.$dom);t.css("overflow ","visible"),e=t.css("overflow"),t.css("overflow","")},App.toggleViews=function( e,a,t){var i=$(".front-matter"),n=i.find("#landing");App.setTitle(a),t===App.views.appList ?(App.views.topic.hide(),i.hide(),App.views.appList.show()):(App.views.appList&& App.views.appList.hide(),i.show()),t===App.views.landing&&App.views.topic.hide() ,App.design.isLayeredStyle?t===App.views.landing||t===App.views.toc?(i.attr({"ar ia-hidden":!1,tabindex:-1}).show().focus(),App.views.topic.hide()):t===App.views .topic&&i.attr({"aria-hidden":!0,tabindex:-1}).hide():t===App.views.landing||t== =App.views.toc?n.show():t===App.views.topic&&n.hide(),$("#container").attr("aria -hidden",t===App.views.lightbox),t!==App.views.lightbox&&App.views.lightbox.hide ();var o="HelpViewer"in window&&"currentScope"in HelpViewer,s="HelpViewer"in window&&"setBreadcrumbBookTitleWithAnchor"in HelpViewer;o&&s&&"com.apple.machelp"===HelpViewer.currentScope()&&HelpViewer.se tBreadcrumbBookTitleWithAnchor("",null),$("body").prop("scrollTop",0),$("html"). is(".nooverflow")&&window.scrollTo(0,1)},$(document).on("keydown",function(e){!( e.ctrlKey||e.metaKey||e.shiftKey||App.views.lightbox.visible)&&"querySelectorAll "in document&&(37===e.which?App.navigation.previous():39===e.which&&App.navigation. next())}),$(document).on("keypress",function(e){e.ctrlKey&&e.metaKey&&2===e.keyC ode&&App.views.debug.$dom.toggle()}),$("#localizations select").live("change",function(){delete App.queryParams.localePath,App.queryParams.lang=$(this).val(),location.href="?" +$.param(App.queryParams)})}(),AppListView.prototype.show=function(){this.$dom.s how()},AppListView.prototype.hide=function(){this.$dom.hide()},AppListView.proto type._loadBooks=function(){var e=this;"HelpViewer"in window&&HelpViewer.availableBooks&&HelpViewer.recentApplicationList&&($.each(He lpViewer.availableBooks(),function(a,t){e.allBooks.push(new HelpViewerBook(t))}),$.each(HelpViewer.recentApplicationList(),function(a,t){va r i=RegExp(t,"i");$.each(e.allBooks,function(a,t){t.id.match(i)&&e.recentBooks.pu sh(t)})}))},AppListView.prototype._createView=function(){var e=5,a="Show all".loc(),t="Show less".loc(),i=function(){var e=$(this).parents(".app-group"),i=e.hasClass("closed")?t:a;e.toggleClass("close d").find(".showHide").text(i)};if(this.allBooks.length){var n,o,s;n=$("<div>",{"class":"app-group closed"}).appendTo(this.$dom),$("<div>",{"class":"title"}).appendTo(n),$("<a>", {"class":"showHide",text:a,click:i}).appendTo(n),$("<div>",{"class":"clear"}).ap pendTo(n),$("<div>",{"class":"initial-set"}).appendTo(n),$("<div>",{"class":"add itional-set"}).appendTo(n),o=n.clone(!0,!0).appendTo(this.$dom),s=n.clone(!0,!0) .appendTo(this.$dom),$(".title",n).text("Recent applications".loc()),$(".title",o).text("Apple applications".loc()),$(".title",s).text("Other applications".loc()),$.each(this.recentBooks,function(a,t){e>a&&t.$iconLink().a ppendTo(n)}),$.each(this.allBooks,function(a,t){if("com.apple.HelpCenter.help"!= =t.id&&"com.apple.machelp"!==t.id){var i=t.apple?o:s,n=2*e>i.children(".initial-set").children().length?i.children(".i nitial-set"):i.children(".additional-set");t.$iconLink().appendTo(n)}}),$([n,o,s ]).each(function(){if(0===$(".additional-set",this).children().length&&$(".showH ide",this).remove(),0===$(".book",this).length)return $(this).remove(),void 0;for(var a=$(".book:last",this),t=a.parent();0!==t.find(".book").length%e;)$("<a>",{"cla ss":"book"}).appendTo(t)})}},AppListView.prototype._preloadIcons=function(){var e=this;setTimeout(function(){$.each(e.allBooks,function(e,a){setTimeout(functio n(){a.preloadIcon()},20*e)})},1e3)},function(e){var a={events:"",channel:"",pageName:"",eVar1:null,eVar16:null,eVar17:null,eVar18:n ull,eVar20:null,eVar21:null,eVar28:null};e.init=function(){this.setAccount(),thi s.setConstants()},e.setAccount=function(){var e="aaplpdglobaldev";"production"===App.env&&(e="aaplpdglobal"),this.sc=s_gi(e), this.sc.server=this.title,this.sc.trackDownloadLinks=!1,this.sc.trackExternalLin ks=!1,this.sc.trackInlineStats=!1,this.sc.useForcedLinkTracking=!1,this.sc.linkD ownloadFileTypes="exe,zip,wav,mp3,mov,mpg,avi,wmv,pdf,doc,docx,xls,xlsx,ppt,pptx ",this.sc.linkInternalFilters="help.apple.com",this.sc.linkLeaveQueryString=!1,t his.sc.linkTrackVars="eVar1,prop1,eVar2,prop2,eVar3,prop3,eVar4,prop4,eVar5,prop 5,eVar6,prop6,eVar7,prop7,eVar8,prop8,eVar9,prop9,eVar10,prop10,eVar11,prop11,eV ar12,prop12,eVar13,prop13,eVar14,prop14,eVar16,prop16,eVar17,prop17,eVar28,prop2 8,events",this.sc.linkTrackEvents="event1,event2,event3,event4",this.sc.usePlugi ns=!1,this.sc.doPlugins=$.noop,this.sc.visitorNamespace="appleproductdocumentati on",this.sc.trackingServer="metrics.apple.com",this.sc.trackingServerSecure="sec uremetrics.apple.com"},e.setConstants=function(){var e="unknown",a="unknown",t="unknown",i="help:"+this.product,n=i+":"+this.platfor m,o=n+":"+this.version;$.each(["helpviewer","safari","webkit","opera","mozilla", "msie"],function(){return this in $.browser?(e=this,!1):void 0}),$.each([/Mac OS X ([_\.\d]+)/,/iPhone OS ([_\.\d]+)/,/CPU OS ([_\.\d]+)/,/Windows NT ([_\.\d]+)/],function(){var e=navigator.userAgent.match(this);return e?(a=e[0].replace(this,"$1").replace(/_/g,"."),!1):void 0}),$.each([/Version\/([_\.\d]+)/,/Chrome\/([_\.\d]+)/,/MSIE ([_\.\d]+)/,/Firefox\/([_\.\d]+)/],function(){var e=navigator.userAgent.match(this);return e?(t=e[0].replace(this,"$1").replace(/_/g,"."),!1):void 0}),$.extend(this.sc,{eVar2:navigator.userAgent,eVar3:e+":"+t,eVar4:a,eVar5:e+" :"+a,eVar6:App.version,eVar7:i,eVar8:n,eVar9:o,eVar10:this.product,eVar11:this.p latform,eVar12:this.version,eVar13:(navigator.browserLanguage||navigator.systemL anguage||navigator.userLanguage||navigator.language).substr(0,2),eVar14:this.loc ale,eVar15:navigator.language})},e._track=function(e,t){this.loaded.then($.proxy (function(){$.extend(this.sc,a,t),this._resetProps(),this.sc.t(!0,"o",e)},this)) },e._resetProps=function(){var e,a,t={};for(e in this.sc)e.match(/prop\d+/)&&(this.sc[e]=null),e.match(/eVar\d+/)&&this.sc[e]&&( a=e.replace(/eVar(\d+)/,"$1"),t["prop"+a]="D=v"+a);$.extend(this.sc,t)},e.naviga te=function(e,a){var t=this.title+":"+a.name.toLowerCase();this._track("view",{events:"event1",chann el:t,pageName:t,eVar1:(a.is_glossary?"glossary:":"")+a.name,eVar28:a.id})},e.sea rch=function(e,a,t){if(a){var i=this.title+":search",n=t.length?"search":"search: no results";this._track(n,{events:t.length?"event2":"event3",channel:i,pageName:i, eVar1:n,eVar16:a})}},e.searchResultSelected=function(e,a,t){var i=this.title+":search",n="search: result click-through";this._track("name",{events:"event4",channel:i,pageName:i,eVar1:n ,eVar16:a,eVar17:t.name,eVar18:t.id})},e.feedback=function(e,a){var t=this.title+":"+a.name.toLowerCase();this._track("feedback",{events:"event5",c hannel:t,pageName:t,eVar1:a.name,eVar21:"false",eVar28:a.id})},e.mediaStart=func tion(e,a){var t=this.title+":media",i=App.navigation._currentItem;this._track("media: start",{events:"event7",channel:t,pageName:t,eVar1:i.name,eVar18:a,eVar20:"vide o",eVar28:i.id})}}(Beacon.prototype),Book.prototype.topicForID=function(e){retur n e?this.topics[e]:this.landing},Book.prototype.topicForURL=function(e){var a;return $.each(this.topics,function(){return this.href===e?(a=this,!1):void 0}),a},Book.prototype.sectionForID=function(e){return this.sections[e]},Book.prototype.itemForID=function(e){var a=this.topicForID(e)||this.sectionForID(e);return(!a||a instanceof String)&&(a=this.unknown_topic),a},function(){function e(e){return e?e.match(/[^\/]$/)?e+="/":e:""}function a(){var e=[navigator.browserLanguage||navigator.systemLanguage||navigator.userLanguage| |navigator.language];if("HelpViewer"in window&&"preferredLanguages"in HelpViewer)try{e=HelpViewer.preferredLanguages().concat(e)}catch(a){}if("iTunes "in window)try{e=$.map(iTunes.acceptedLanguages.split(","),function(e){return e.replace(/\+?([^;]+);.*/,"$1")}).concat(e)}catch(a){}return e=$.map(e,function(e){return e?(e=e.toLowerCase(),2>=e.length?e:[e,e.substr(0,2)]):null})}function t(e){return i||(i={},$.each(APD.translations,function(e,a){$.each(a.meta.isoCodes,function( e,t){i[t]=a})})),i[e]}var i,n={name:"English",isoName:"English",isoCodes:["en"],folder:"en.lproj","text-d irection":"ltr"};APD.Bundle=function(a,t,i){this.path=e(a),this.current=$.extend ({},n),t&&t.match(/^.*\.lproj$/)&&(this.current.folder=t),this.locales=[],this._ uiStrings={};var o=this;this._loadList().done(function(){var e=o._lookupLocale(t)||o._browserLocale();e&&(o.current=e)}).always(function(){o ._loadStrings()}).always(function(){i&&i.call&&i.call(o,o)})};var o=APD.Bundle.prototype;o._loadList=function(){var e=this,a=$.Deferred();return $.getJSON(this.path+"locale-list.json").done(function(t){e.locales=t,a.resolve( )}).fail(function(){return console.warn("Unable to load language list, loading content from "+e.current.folder),$.getJSON(e.URL()+"locale-info.json").done(function(t){t.me ta.folder=e.current.folder,e.locales.push(t.meta),a.resolve()}).fail(function(){ a.reject()})}),a},o._loadStrings=function(){var e=this,a=e.current.isoCodes;a.push("en"),$.each(a,function(a,i){var n=t(i);return n?(e._uiStrings=n.ui||{},e.cssClass=n.meta.cssClass||"",!1):void 0})},o._lookupLocale=function(e){if(!e)return null;var a=null;return $.each(this.locales,function(t,i){var n=i.isoCodes.concat([i.folder,i.name,i.isoName]);return $.inArray(e,n)>-1?(a=i,!1):void 0}),a},o._browserLocale=function(){var e=null,t=this.locales;return $.each(a(),function(a,i){return $.each(t,function(a,t){return $.inArray(i,t.isoCodes)>-1?(e=t,!1):void 0}),e?!1:void 0}),e},o.list=function(){if(2>this.locales.length)return[];if("iTunes"in window)return[];if("HelpViewer"in window)return[];var e=$.map(this.locales,function(e){return{name:e.name,isoCode:e.isoCodes[0]}});re turn e.sort(function(e,a){return e.name.localeCompare(a.name)}),e},o.translate=function(e){return this._uiStrings[e]||e},o.URL=function(){return this.path+e(this.current.folder)}}(),ContentView.prototype.showTopic=function(e ){e!==this.topic&&(this.topic=e,this.$dom.empty().prop("scrollTop",0).append(e.l oadContent()),"HelpViewer"in window&&"mtContentAccessed"in HelpViewer&&HelpViewer.mtContentAccessed(e.id+" "+e.name,e.book.title)),this.$dom.attr("aria-hidden",!1).show().trigger("conten tLoaded")},ContentView.prototype.hide=function(){this.$dom.attr("aria-hidden",!0 ).hide()},function(){$(".contentView a[href*='.html']").live("click",function(e){var a=$(this).attr("href"),t=a.match(/#/)?a.replace(/^.*\.html(#?.*)/,"$1"):"",i=a. replace(/^(.*\.html)#?.*/,"$1"),n=App.book.topicForURL(i)||App.book.topicForID(t );a.match(/^http/)||a.match(/\//)||(e.preventDefault(),n&&n.navigateTo())}),$(". contentView .Task h2, .contentView .task h2, .showTaskBody, .hideTaskBody").live("click",function(){var e=$(this).parent(".Task, .task").filter(":first"),a=e.toggleClass("closed").hasClass("closed");e.find("[ aria-expanded]").attr("aria-expanded",!a),e.find("[aria-hidden]").attr("aria-hid den",a)}),$(".contentView .LinkAppleWebMovie a, .contentView .movie a").live("click",function(e){if(!("HelpViewer"in window&&HelpViewer.availableBooks)){e.preventDefault();var a=$(this).attr("href");movieLightboxController.showLightboxWithURL(a)}})}(),Des ign.prototype.preloadImages=function(){$.each(this.preloadList,function(e,a){(ne w Image).src=App.resourcePath+"images/"+a})},Design.namedSkins={magenta:{helpview erWindowSize:null,cssClass:"layered",isLayeredStyle:!0},red:{helpviewerWindowSiz e:null,cssClass:"layered",isLayeredStyle:!0},tangerine:{dismissSearchLabel:"Clos e",preloadList:["tangerine/[email protected]","tangerine/disclosure-open.pn g","tangerine/[email protected]","tangerine/home.png","tangerine/[email protected] g","tangerine/menu-background.png"]}},HelpViewerBook.prototype.preloadIcon=funct ion(){(new Image).src=this.iconHref},HelpViewerBook.prototype.$iconLink=function(){return $("<a>",{href:this.link,"class":"book"}).append($("<img>",{src:this.iconHref})) .append($("<div>",{text:this.title}))},function(){var e=LandingView.prototype;e.showTopic=function(e){this.contentView.showTopic(e)}, e._layoutLanding=function(){if(!App.design.isLayeredStyle){var e=this.$dom.wrapInner("<div class='row' />").wrapInner("<div class='center' />").find(".center"),a=$("<div class='row' />").appendTo(e);$.browser.helpviewer||a.append(this._$languageMenu()),$("<div> ",{"class":"copyrightTagline",text:this.book.copyright_text}).appendTo(a)}},e._a ddMarquee=function(e){var a=$(".marquee",e),t=$("img",a).remove().attr("src"),i=$(".title",a).remove().te xt(),n="url("+t+") 0 0 no-repeat, -webkit-gradient(linear, 0 0, 0 100%, from(#ebebeb), to(#fff))";a.length&&e.addClass("hasMarquee"),$("<p>",{text:i}).appendTo(a),$(" <p>",{"class":"spacer"}).prependTo(a).clone().appendTo(a),a.css("background",n)} ,e._$languageMenu=function(){var e=this.bundle.list();if(0!==e.length){var a=$("<div>",{id:"localizations"}),t=$("<select>").appendTo(a);return $("<option>",{text:"Change Language".loc()}).appendTo(t),$.each(e,function(e,a){$("<option>",{val:a.isoCod e,text:a.name}).appendTo(t)}),a}}}(),LightboxView.prototype.showTopic=function(e ){this._$previous_focus=$(":focus"),this.visible=!0,this.contentView.showTopic(e ),this.$dom.show().attr("aria-hidden","false").attr("tabindex","0"),(!$.browser. msie||$.browser.version>=8)&&this.$dom.focus()},LightboxView.prototype.hide=func tion(){(!$.browser.msie||$.browser.version>=8)&&(this.$dom.blur(),this._$previou s_focus.focus()),this.$dom.hide().attr("aria-hidden","true").attr("tabindex","-1 "),this._$previous_focus$previous_focus=$(),this.visible=!1},function(){var e=NavController.prototype,a="showHelpViewerApplicationList";e._addItems=functio n(e){var a=this;$.each(e,function(e,t){t instanceof Section&&(App.design.isLayeredStyle&&!t.parent&&a._linearTOC.push(t),a._addItem s(t.children)),t instanceof Topic&&a._linearTOC.push(t)})},e.hash=function(){return location.hash.replace(/[^\-_a-z0-9]/gi,"")},e._checkHash=function(){this._goToI D(this.hash())},e._goToID=function(e){if(!this._currentItem||this._currentItem.i d!==e){searchController.navigateToItemWithID(e);var t,i=App.book.itemForID(e);i||(i=this._book.landing),e===a?t=App.views.appList:i instanceof Section?t=App.views.toc:i instanceof Topic&&(1>=App.book.toc.length&&App.book.toc[0]instanceof Topic&&i.is_landing?t=App.views.topic:i.is_landing?t=App.views.landing:i.is_glo ssary?(this._pushedItem=this._currentItem,t=App.views.lightbox):t=App.views.topi c,t.showTopic(i)),this._currentItem=i,$(this._book).trigger("navigate",[i,t])}}, e._goToItem=function(e){location.hash=e.id},e._goToPageOffset=function(e){for(va r a=0,t=0;this._linearTOC.length>t;t++)if(this._currentItem===this._linearTOC[t]) {a=t;break}a+=e,0>a?a=this._linearTOC.length+a:a>=this._linearTOC.length&&(a-=th is._linearTOC.length),this._goToItem(this._linearTOC[a])},e.previous=function(){ this._goToPageOffset(-1)},e.next=function(){this._goToPageOffset(1)},e.popPrevio us=function(){this._pushedItem?(this._goToItem(this._pushedItem),this._pushedIte m=null):this._goToItem(this._book.landing)}}(),Section.prototype.navPath=functio n(){return(this.parent?this.parent.navPath():[]).concat(this)},Section.prototype .linkHref=function(){return"#"+this.id},function(){var e=TOC.prototype;e._$ulForNavList=function(e,a){var t=$("<ul>",{role:a?"group":"tree"}).append($.map(e,$.proxy(function(e){return this._$liForNavItem(e,a)},this)));return t},e._$liForNavItem=function(e,a){if("string"==typeof e)return console.log("Unresolved TOC item:",e),void 0;var t=$("<li>",{role:"treeitem"}),i=$("<a>",{href:e.linkHref()}).appendTo(t);return this._$liByID[e.id]=t,t.add(i).data("item",e),e.categories&&t.addClass(e.catego ries.join(" ")),e.icon&&$("<img>",{src:this._contentPath+e.icon,alt:""}).prependTo(i),$("<s pan>",{"class":"name",html:e.name}).appendTo(i),e instanceof Section&&(t.addClass("closed hasChildren").attr("aria-expanded","false"),this._$ulForNavList(e.children,a+1) .appendTo(t)),t},e.updateSelection=function(e,a){this.$dom.find("li").removeClas s("selected").attr("aria-selected",!1);var t=this._$liByID[a.id],i=this.$dom.children("li"),n=!1;if(App.design.isLayeredSt yle&&(n=!0,t&&a.id!==this.book.landing.id||!this.book.toc.length||(a=this.book.t oc[0],t=this._$liByID[a.id]),a instanceof Section&&(i.addClass("closed").attr("aria-expanded",!1),i.is(t)))){var o=t.children("ul:first").height();o&&(this.$dom.css("overflow","hidden"),this.$ dom.css("min-height",o),this.$dom.css("overflow",null))}t&&t.addClass("selected" ).attr("aria-selected",!0).parents("li").add(n?t:null).removeClass("closed").att r("aria-expanded",!0)},e._toggleSections=function(e){var a=$(e.currentTarget).parents("li:first"),t=a.data("item"),i=a.hasClass("closed" );t instanceof Section&&(App.design.isLayeredStyle?a.removeClass("closed").attr("aria-expanded ",!0):(a.toggleClass("closed",!i).attr("aria-expanded",i),e.preventDefault())),t instanceof Topic&&"HelpViewer"in window&&"mtStatisticsIncrement"in HelpViewer&&HelpViewer.mtStatisticsIncrement(0,0,1,0)}}(),function(){var e=Topic.prototype,a=!1;flamingoQTDetect=!1,function(){return navigator.userAgent.match(/applewebkit/i)?(a=!0,void 0):"execScript"in window?(execScript('on error resume next: flamingoQTDetect = IsObject(CreateObject("QuickTimeCheckObject.QuickTimeCheck.1"))',"VBScript"),a= flamingoQTDetect,void 0):($.each($.makeArray(navigator.plugins),function(){return this.name.match(/quicktime/i)?(a=!0,!1):void 0}),void 0)}(),e.navPath=function(){return(this.parent?this.parent.navPath():[]).concat( this)},e.breadcrumbHTML=function(){var e=this.navPath(),a="rtl"===$("body").attr("dir")?"&#9664;":"&#9658;",t=" <span class='breadcrumbArrow'>"+a+"</span> ";return e.pop(),$.map(e,function(e){return e.name}).join(t)},e.linkHref=function(){return this.is_external||this.is_hash?this.href:"#"+this.id},e.navigateTo=function(){l ocation.href=this.linkHref()},e.loadContent=function(){if(!this._content_loaded) {var e=App.bundle.URL(),a=this,t="";a.href&&$.ajax({async:!1,url:e+a.href,dataType:" html"}).done(function(a){t=a.replace(/.*<body/,"<div").replace(/\/body>.*/,"/div >"),t=t.replace(/src="/g,'src="'+e)}),t?(this.$content=$(t).addClass("apd-topic" ),this.$content.find("a[href^='http']").attr("target","_blank"),this.full_name=t his.$content.find("h1:first").text(),this.$content.attr("data-apdid",this.id).re moveAttr("id").find("a[name="+this.id+"]").remove(),this._removeSectionLinks(),t his._collapseTasks(),this._formatMovieLinks(),this._addFeedbackLink(),this._addC opyrightText(),this._content_loaded=!0):(this.$content=this._contentUnavailable( ),this._content_loaded=!1)}return this.$content},e._removeSectionLinks=function(){var e=this;this.$content.find("a:not([href^=http])").each(function(){var a,t=$(this),i=t.attr("href")||"";i.match(/^(\w+).html$/)&&(a=e.book.topicForURL (i),a||t.contents().unwrap())})},e._collapseTasks=function(){var e=this.$content.find(".Task, .task"),a=1===e.length;e.each(function(){$(this).addClass(a?"":"closed").find(" [aria-expanded]").attr("aria-expanded",a).end().find("[aria-hidden]").attr("aria -hidden",!a).end()}),$("<span>",{"class":"hideTaskBody",role:"button",text:"Hide ".loc(),"aria-label":"Hide".loc()}).prependTo(e),$("<span>",{"class":"showTaskBo dy",role:"button",text:"Show".loc(),"aria-label":"Show".loc()}).prependTo(e)},e. _addFeedbackLink=function(){if(this.book.collect_feedback){var e=$("<div>",{"class":"Feedback"}).appendTo(this.$content),a=$.param({bookID:thi s.book.title,topicTitle:this.name,appVersion:this.book.version||"",build:this.bo ok.build_id||"",source:$.browser.helpviewer?"helpviewer":"browser"});$("<span>", {"class":"LinkFeedback",text:"Was this page helpful?".loc()}).appendTo(e),$("<a>",{text:"Send feedback.".loc(),href:"http://help.apple.com/feedbackR1/English/pgs/fdbck_form.php?"+a,target:"_blank"}).click($.proxy(function(){$(this.book).trigger("feedback", this)},this)).appendTo(e)}},e._formatMovieLinks=function(){var e=this;this.$content.find(".LinkAppleWebMovie, .movie").each(function(){var t=$(this),i=t.find("a:first"),n=i.attr("href"),o=i.text(),s=e._getMovieURLFromU RLParam(n);a&&s?(i.parent().is("p")||i.wrap("<p class='p'>"),$("<a>",{title:o}).prependTo(t),t.find("a").attr({href:s,target:"h v_overlay_small"})):t.remove()})},e._getMovieURLFromURLParam=function(e){var a=null;if(e.match(/.*\?movie=/)){e=e.replace(/.*\?movie=/,"");var t=App.bundle.URL()+"movies/"+e+".json";a=this._getMovieURLFromJSONFileAtURL(t)} return a},e._getMovieURLFromJSONFileAtURL=function(e){var a=null;return $.browser.msie&&navigator.userAgent.match(/x64/i)?a:(navigator.onLine&&$.ajax({ async:!1,dataType:"json",url:e,success:function(e){a=e.length?e[0].url:e.url},er ror:function(){console.log(e+" could not be loaded")}}),a)},e._addCopyrightText=function(){if(this.book.copyright_text){var e=$("<div>",{"class":"copyrightTagline",html:this.book.copyright_text}),a=this. $content.find(".contentCell:last");
    a.length?a.append(e):this.$content.append(e)}},e._contentUnavailable=function(){ var e=$("<div>",{id:this.id,"class":"apd-topic"});if($("<img>",{"class":"topicIcon" ,src:App.resourcePath+"images/[email protected]"}).appendTo(e),$("<h1>",{text:"TOPIC _UNAVAILABLE".loc()}).appendTo(e),$.browser.helpviewer&&location.protocol.match( /file/)){var a=$("<div>",{"class":"body conbody"}).appendTo(e);a.append($.map("CONNECT_TO_INTERNET".loc().split("\n"),f unction(e){return $("<p>",{"class":"p",text:e})})),"mtStatisticsIncrement"in HelpViewer&&HelpViewer.mtStatisticsIncrement(1,0,0,0)}return e}}(),APD.translations=[{meta:{isoCodes:["ar"],isoName:"Arabic",name:"Ø§Ù„Ø¹Ø±Ø ¨ÙŠØ©"},ui:{TOPIC_UNAVAILABLE:"الموضوع المØدد غير متوÙ&#129;ر Øاليًا.",CONNECT_TO_INTERNET:'تأكد من الاتصال بالإنترنت. للØصول على مساعدة، اختر قائمة Apple > تÙ&#129;ضيلات النظام، وانقر على الشبكة، ثم انقر على "ساعدني".\nإذا كنت متصلاً بالإنترنت، ولا يظهر المØتوى بعد، Ù&#129;Øاول مرة أخرى لاØقًا.',"%@ Search Results":"%@ نتيجة (نتائج) بØØ«","Apple applications":"تطبيقات Apple",Cancel:"إلغاء","Change Language":"تغيير اللغة",Close:"إغلاق","Featured application help":"تعليمات تطبيقات مميّزة","Go to the homepage":"الانتقال إلى الصÙ&#129;ØØ© الرئيسية","Help for:":"تعليمات لـ:",Hide:"إخÙ&#129;اء",Home:"الشاشة الرئيسية","Loading latest help...":"يتم الآن تØميل Ø£Øدث التعليمات…","Other applications":"تطبيقات أخرى","Recent applications":"Ø£Øدث التطبيقات",Search:"بØØ«","Send feedback.":"أرسل تغذية مرتدّة.","Show all":"إظهار الكل","Show less":"إظهار أقل","Show the previous page":"إظهار الصÙ&#129;ØØ© السابقة","Show the next page":"إظهار الصÙ&#129;ØØ© التالية",Show:"إظهار","Was this page helpful?":"هل كانت هذه الصÙ&#129;ØØ© Ù…Ù&#129;يدة؟"}},{meta:{isoCodes:["ca"],isoName:"Catalan",name:"Català "},ui:{TOPIC_UNAVAILABLE:"El tema seleccionat no està disponible ara",CONNECT_TO_INTERNET:"Comproveu que teniu connexió a Internet. Per obtenir ajuda sobre com establir connexió, seleccioneu el menú Apple > Preferències del Sistema i feu clic a Xarxa i, després, a Assistent.\nSi esteu connectat a Internet però el contingut no apareix, proveu-ho de nou més endavant.","%@ Search Results":"%@ resultats","Apple applications":"Aplicacions d'Apple",Cancel:"Cancel·lar","Change Language":"Canviar idioma",Close:"Tancar","Featured application help":"Ajuda de l'aplicació destacada","Go to the homepage":"Vés a la pà gina inicial","Help for:":"Ajuda de:",Hide:"Ocultar",Home:"Inici","Loading latest help...":"Carregant l'ajuda més actualitzada…","Other applications":"Altres aplicacions","Recent applications":"Aplicacions recents",Search:"Buscar","Send feedback.":"Enviar opinió.","Show all":"Mostrar-ho tot","Show less":"Mostrar menys","Show the previous page":"Mostra la pà gina anterior","Show the next page":"Mostra la pà gina següent",Show:"Mostrar","Was this page helpful?":"Us ha resultat útil aquesta pà gina?"}},{meta:{isoCodes:["cs"],isoName:"Czech",name:"ÄŒeÅ¡tina"},ui:{TOPIC_UNA VAILABLE:"Vybrané téma nenà k dispozici",CONNECT_TO_INTERNET:"UjistÄ›te se, že jste pÅ™ipojeni k Internetu. Chcete-li nápovÄ›du pro pÅ™ipojenÃ, použijte pÅ™Ãkaz PÅ™edvolby systému z nabÃdky Apple, kliknÄ›te na SÃÅ¥ a poté na „Průvodce“.\nJste-li pÅ™ipojeni k Internetu, avÅ¡ak obsah se pÅ™esto nezobrazuje, zkuste to znovu pozdÄ›ji.","%@ Search Results":"Výsledky hledánÃ: %@","Apple applications":"Aplikace Apple",Cancel:"ZruÅ¡it","Change Language":"ZmÄ›nit jazyk",Close:"ZavÅ™Ãt","Featured application help":"NápovÄ›da pro doporuÄ&#141;ené aplikace","Go to the homepage":"OtevÅ™Ãt domovskou stránku","Help for:":"NápovÄ›da pro:",Hide:"Skrýt",Home:"Plocha","Loading latest help...":"NaÄ&#141;Ãtánà nejnovÄ›jÅ¡Ã nápovÄ›dy…","Other applications":"Jiné aplikace","Recent applications":"Poslednà aplikace",Search:"Hledat","Send feedback.":"SdÄ›lte nám svůj názor.","Show all":"Zobrazit vÅ¡e","Show less":"Zobrazit ménÄ›","Show the previous page":"Zobrazit pÅ™edchozà stránku","Show the next page":"Zobrazit dalÅ¡Ã stránku",Show:"Zobrazit","Was this page helpful?":"Pomohla vám tato stránka?"}},{meta:{isoCodes:["da"],isoName:"Danish",name:"Dansk"},ui:{TOPIC_UN AVAILABLE:"Det valgte emne er utilgængeligt",CONNECT_TO_INTERNET:"Sørg for, at der er oprettet forbindelse til internettet. Vælg Apple > Systemindstillinger, klik pÃ¥ Netværk, og klik derefter pÃ¥ “Hjælp migâ€&#157; for at fÃ¥ hjælp med at oprette forbindelse.\nHvis der er forbindelse til internettet, og indholdet stadig ikke vises, kan du prøve igen senere.","%@ Search Results":"%@ søgeresultater","Apple applications":"Apple-programmer",Cancel:"Annuller","Change Language":"Skift sprog",Close:"Luk","Featured application help":"Viste program","Go to the homepage":"GÃ¥ til hjemmesiden","Help for:":"Hjælp til:",Hide:"Skjul",Home:"Hjem","Loading latest help...":"Indlæser den nyeste hjælp…","Other applications":"Andre programmer","Recent applications":"Seneste programmer",Search:"Søg","Send feedback.":"Send feedback.","Show all":"Vis alle","Show less":"Vis færre","Show the previous page":"Vis forrige side","Show the next page":"Vis næste side",Show:"Vis","Was this page helpful?":"Var denne side nyttig?"}},{meta:{isoCodes:["de"],isoName:"German",name:"Deutsch"},ui:{TOPIC_UN AVAILABLE:"Das gewählte Thema ist derzeit nicht verfügbar",CONNECT_TO_INTERNET:"Vergewissern Sie sich, dass eine Verbindung zum Internet besteht. Wählen Sie „Apple“ > „Systemeinstellungen“, klicken Sie auf „Netzwerk“ und dann auf „Assistent“, wenn Sie Hilfe benötigen.\nWenn Sie mit dem Internet verbunden sind, den Inhalt aber dennoch nicht sehen können, versuchen Sie es zu einem späteren Zeitpunkt erneut.","%@ Search Results":"%@ Suchergebnisse","Apple applications":"Apple-Programme",Cancel:"Abbrechen","Change Language":"Sprache wechseln",Close:"Schließen","Featured application help":"Empfohlenes Programm-Hilfe","Go to the homepage":"Zur Homepage","Help for:":"Hilfe für:",Hide:"Ausblenden",Home:"Startseite","Loading latest help...":"Die neuste Hilfe wird geladen ...","Other applications":"Andere Programme","Recent applications":"Benutzte Programme",Search:"Suchen","Send feedback.":"Feedback senden.","Show all":"Alle einblenden","Show less":"Weniger einblenden","Show the previous page":"Nächste Seite einblenden","Show the next page":"Vorherige Seite einblenden",Show:"Einblenden","Was this page helpful?":"War diese Seite nützlich?"}},{meta:{isoCodes:["el"],isoName:"Greek",name:"Ελληνικά"},u i:{TOPIC_UNAVAILABLE:"Αυτήν τη στιγμή, το επιλεγμÎνο θÎμα δεν είναι διαθÎσιμο",CONNECT_TO_INTERNET:"Βεβαιωθείτε ότι είστε συνδεδεμÎνοι στο Διαδίκτυο. Για βοήθεια με τη σÏ&#141;νδεση, επιλÎξτε το μενοÏ&#141; Apple > «ΠÏ&#129;οτιμήσεις συστήματος», κάντε κλικ στο «Δίκτυο» και μετά στο «ΘÎλω βοήθεια».\nΕάν συνδεθείτε στο Διαδίκτυο και το πεÏ&#129;ιεχόμενο δεν εμφανίζεται ακόμη, δοκιμάστε ξανά αÏ&#129;γότεÏ&#129;α.","%@ Search Results":"%@ αποτελÎσματα αναζήτησης","Apple applications":"ΕφαÏ&#129;μογÎÏ‚ Apple",Cancel:"ΑκÏ&#141;Ï&#129;ωση","Change Language":"Αλλαγή γλώσσας",Close:"Κλείσιμο","Featured application help":"Βοήθεια Ï€Ï&#129;οτεινόμενων εφαÏ&#129;μογών","Go to the homepage":"Μετάβαση στην αÏ&#129;χική σελίδα","Help for:":"Βοήθεια για:",Hide:"ΑπόκÏ&#129;υψη",Home:"ΑφετηÏ&#129;ία","Loading latest help...":"Γίνεται φόÏ&#129;τωση της πιο Ï€Ï&#129;όσφατης Βοήθειας…","Other applications":"Άλλες εφαÏ&#129;μογÎÏ‚","Recent applications":"Î Ï&#129;όσφατη εφαÏ&#129;μογή",Search:"Αναζήτηση","Send feedback.":"Στείλετε σχόλια.","Show all":"Εμφάνιση όλων","Show less":"Εμφάνιση λιγότεÏ&#129;ων","Show the previous page":"Εμφάνιση της Ï€Ï&#129;οηγοÏ&#141;μενης σελίδας","Show the next page":"Εμφάνιση της επόμενης σελίδας",Show:"Εμφάνιση","Was this page helpful?":"Ήταν χÏ&#129;ήσιμη αυτή η σελίδα;"}},{meta:{isoCodes:["en-us","en-gb","en-ca","en-ie","en"],isoName :"English",name:"English"},ui:{TOPIC_UNAVAILABLE:"The selected topic is currently unavailable",CONNECT_TO_INTERNET:"Make sure you’re connected to the Internet. For help connecting, choose Apple menu > System Preferences, click Network, and click “Assist me.â€&#157;\nIf you’re connected to the Internet, and the content still doesn’t appear, try again later.","%@ Search Results":"%@ Search Results","Apple applications":"Apple applications",Cancel:"Cancel","Change Language":"Change Language",Close:"Close","Featured application help":"Featured application help","Go to the homepage":"Go to the homepage","Help for:":"Help for:",Hide:"Hide",Home:"Home","Loading latest help...":"Loading latest help...","Other applications":"Other applications","Recent applications":"Recent applications",Search:"Search","Send feedback.":"Send feedback.","Show all":"Show all","Show less":"Show less","Show the previous page":"Show the previous page","Show the next page":"Show the next page",Show:"Show","Was this page helpful?":"Was this page helpful?"}},{meta:{isoCodes:["es"],isoName:"Spanish",name:"Español"},ui:{TOPIC _UNAVAILABLE:"El tema seleccionado no está disponible en estos momentos",CONNECT_TO_INTERNET:"Asegúrese de que está conectado a Internet. Si necesita ayuda para conectarse, seleccione menú Apple > Preferencias del Sistema, haga clic en Red y, a continuación, haga clic en Asistente.\nSi ya está conectado a Internet pero no se muestra el contenido del tema, inténtelo de nuevo más tarde.","%@ Search Results":"%@ resultados","Apple applications":"Aplicaciones de Apple",Cancel:"Cancelar","Change Language":"Cambiar idioma",Close:"Cerrar","Featured application help":"Ayuda de la aplicación destacada","Go to the homepage":"Ir a la página de inicio","Help for:":"Ayuda de:",Hide:"Ocultar",Home:"Inicio","Loading latest help...":"Cargando la ayuda más reciente…","Other applications":"Otras aplicaciones","Recent applications":"Aplicaciones recientes",Search:"Buscar","Send feedback.":"Enviar opinión.","Show all":"Mostrar todo","Show less":"Mostrar menos","Show the previous page":"Mostrar la página anterior","Show the next page":"Mostrar la página siguiente",Show:"Mostrar","Was this page helpful?":"¿Le ha resultado útil esta página?"}},{meta:{isoCodes:["fi"],isoName:"Finnish",name:"Suomi"},ui:{TOPIC_UN AVAILABLE:"Valittu aihe ei ole tällä hetkellä käytettävissä",CONNECT_TO_INTERNET:"Varmista, että olet yhteydessä internetiin. Jos tarvitset apua yhteyden muodostamisessa, valitse Omenavalikko > Järjestelmäasetukset, osoita Verkko ja osoita Avusta.\nJos olet yhteydessä internetiin, mutta sisältö ei silti tule näkyviin, yritä myöhemmin uudelleen.","%@ Search Results":"%@ - hakutulokset","Apple applications":"Applen ohjelmat",Cancel:"Kumoa","Change Language":"Vaihda kieltä",Close:"Sulje","Featured application help":"Esittelyssä olevan ohjelman ohje","Go to the homepage":"Siirry kotisivulle","Help for:":"Ohje:",Hide:"Kätke",Home:"Koti","Loading latest help...":"Ladataan uusinta ohjetta…","Other applications":"Muut ohjelmat","Recent applications":"Äskeiset ohjelmat",Search:"Etsi","Send feedback.":"Lähetä palautetta.","Show all":"Näytä kaikki","Show less":"Näytä vähemmän","Show the previous page":"Näytä edellinen sivu","Show the next page":"Näytä seuraava sivu",Show:"Näytä","Was this page helpful?":"Oliko tästä sivusta apua?"}},{meta:{isoCodes:["fr"],isoName:"French",name:"Français"},ui:{TOPIC_UN AVAILABLE:"La rubrique sélectionnée est actuellement indisponible.",CONNECT_TO_INTERNET:"Assurez-vous d’être connecté à Internet. Pour obtenir de l’aide pour vous connecter, choisissez le menu Pomme > Préférences Système, cliquez sur Réseau puis sur Assistant.\nSi vous êtes connecté à Internet, mais que le contenu ne s’affiche toujours pas, réessayez ultérieurement.","%@ Search Results":"%@ résultats","Apple applications":"Applications Apple",Cancel:"Annuler","Change Language":"Changer de langue",Close:"Fermer","Featured application help":"Aide de l’application actuelle","Go to the homepage":"Aller à la page d'accueil","Help for:":"Aide pour :",Hide:"Masquer",Home:"Accueil","Loading latest help...":"Chargement de l’Aide la plus récente… ","Other applications":"Autres applications","Recent applications":"Applications récentes",Search:"Rechercher","Send feedback.":"Envoyer des commentaires.","Show all":"Affichage total","Show less":"Affichage partiel","Show the previous page":"Afficher la page précédente","Show the next page":"Afficher la page suivante",Show:"Afficher","Was this page helpful?":"Avez-vous trouvé cette page utile ?"}},{meta:{isoCodes:["he"],isoName:"Hebrew",name:"עברית"},ui:{TOPIC_UNAVA ILABLE:"×”× ×•×©×&#144; ×©× ×‘×—×¨ ×&#144;×™× ×• זמין כעת.",CONNECT_TO_INTERNET:"וד×&#144;/×™ ×©×”×™× ×š מחובר/ת ל×&#144;×™× ×˜×¨× ×˜. לעזרה ×‘× ×•×©×&#144; התחברות, בחר/×™ תפריט Apple > ״העדפות המערכת״, לחץ/×™ על ״רשת״ ובחרי ״עזור לי״.\n×&#144;×&#157; ×”×™× ×š מחובר/ת ל×&#144;×™× ×˜×¨× ×˜, ובכל ×–×&#144;ת התוכן ×&#144;×™× ×• מופיע, × ×¡×”/×™ שוב מ×&#144;וחר יותר.","%@ Search Results":"%@ תוצ×&#144;ות","Apple applications":"יישומי Apple",Cancel:"ביטול","Change Language":"החלף/×™ שפה",Close:"סגור","Featured application help":"עזרה ×‘× ×•×©×&#144; היישומי×&#157; המומלצי×&#157;","Go to the homepage":"עבור ×&#144;ל דף הבית","Help for:":"עזרה ×‘× ×•×©×&#144;:",Hide:"הסתר",Home:"בית","Loading latest help...":"טוען ×&#144;ת קבצי העזרה החדשי×&#157; ביותר…","Other applications":"יישומי×&#157; ×&#144;חרי×&#157;","Recent applications":"יישומי×&#157; ×&#144;×—×¨×•× ×™×&#157;",Search:"חיפוש","Send feedback.":"שלח/×™ משוב.","Show all":"הצג הכול","Show less":"הצג פחות","Show the previous page":"הצג ×&#144;ת העמוד הקוד×&#157;","Show the next page":"הצג ×&#144;ת העמוד הב×&#144;",Show:"הצג","Was this page helpful?":"×”×&#144;×&#157; עמוד ×–×” עזר לך?"}},{meta:{isoCodes:["hr"],isoName:"Croatian",name:"Hrvatski"},ui:{TOPIC_U NAVAILABLE:"Odabrana tema trenutno nije dostupna",CONNECT_TO_INTERNET:'Provjerite jeste li spojeni na internet. Za pomoć pri spajanju odaberite Apple izbornik > Postavke sustava, kliknite na Mreža i zatim na "Pomoć".\nAko ste spojeni na internet i sadržaj se svejedno ne pojavljuje, pokuÅ¡ajte ponovno kasnije.',"%@ Search Results":"Rezultata pretraživanja: %@","Apple applications":"Appleove aplikacije",Cancel:"Odustani","Change Language":"Promijeni jezik",Close:"Zatvori","Featured application help":"Pomoć za ponuÄ‘ene aplikacije","Go to the homepage":"Prijelaz na poÄ&#141;etnu stranicu","Help for:":"Pomoć za:",Hide:"Sakrij",Home:"PoÄ&#141;etna stranica","Loading latest help...":"UÄ&#141;itavanje najnovijih datoteka pomoći…","Other applications":"Ostale aplikacije","Recent applications":"Novije aplikacije",Search:"Pretraži","Send feedback.":"PoÅ¡alji povratne informacije.","Show all":"Prikaži sve","Show less":"Prikaži manje","Show the previous page":"Prikaži prethodnu stranicu","Show the next page":"Prikaži sljedeću stranicu",Show:"Prikaži","Was this page helpful?":"Je li vam ova stranica pomogla?"}},{meta:{isoCodes:["hu"],isoName:"Hungarian",name:"Magyar"},ui:{TOPIC _UNAVAILABLE:"A kijelölt témakör jelenleg nem érhetÅ‘ el.",CONNECT_TO_INTERNET:"GyÅ‘zÅ‘djön meg róla, hogy csatlakozik az internethez. Ha segÃtségre van szüksége, válassza az Apple menü > RendszerbeállÃtások menüpontot, kattintson a Hálózat, majd a „SegÃtség kéréseâ€&#157; elemre.\nHa csatlakozik az internethez, és a tartalom továbbra sem jelenik meg, próbálja meg késÅ‘bb.","%@ Search Results":"%@ keresési eredmény","Apple applications":"Apple alkalmazások",Cancel:"Mégsem","Change Language":"Nyelv módosÃtása",Close:"Bezárás","Featured application help":"Kiemelt alkalmazássúgó","Go to the homepage":"Ugrás a kezÅ‘dlapra","Help for:":"Súgó a következÅ‘höz:",Hide:"Elrejtés",Home:"FÅ‘gomb","Loading latest help...":"Legújabb súgó betöltése…","Other applications":"Egyéb alkalmazások","Recent applications":"Legutóbbi alkalmazások",Search:"Keresés","Send feedback.":"Visszajelzés küldése","Show all":"Az összes megjelenÃtése","Show less":"Kevesebb megjelenÃtése","Show the previous page":"ElÅ‘zÅ‘ oldal megjelenÃtése","Show the next page":"KövetkezÅ‘ oldal megjelenÃtése",Show:"MegjelenÃtés","Was this page helpful?":"Hasznosnak találta ezt az oldalt?"}},{meta:{isoCodes:["id"],isoName:"Indonesian",name:"Bahasa Indonesia"},ui:{TOPIC_UNAVAILABLE:"Topik yang dipilih saat ini tidak tersedia",CONNECT_TO_INTERNET:"Pastikan Anda terhubung ke Internet. Untuk bantuan dalam menghubungkan, pilih menu Apple > Preferensi Sistem, klik Jaringan, dan klik “Bantu saya.â€&#157;\nJika Anda terhubung ke Internet, dan konten masih tidak muncul, coba lagi nanti.","%@ Search Results":"%@ Hasil Pencarian","Apple applications":"Aplikasi Apple",Cancel:"Batal","Change Language":"Ubah Bahasa",Close:"Tutup","Featured application help":"Fitur bantuan aplikasi","Go to the homepage":"Kunjungi halaman rumah","Help for:":"Bantuan untuk:",Hide:"Sembunyikan",Home:"Rumah","Loading latest help...":"Memuat bantuan terbaru…","Other applications":"Aplikasi lain","Recent applications":"Aplikasi terbaru",Search:"Cari","Send feedback.":"Kirim umpan balik.","Show all":"Tampilkan semua","Show less":"Tampilkan sebagian","Show the previous page":"Tampilkan halaman sebelumnya","Show the next page":"Tampilkan halaman berikutnya",Show:"Tampilkan","Was this page helpful?":"Apakah halaman ini membantu?"}},{meta:{isoCodes:["it"],isoName:"Italian",name:"Italiano"},ui:{TOPI C_UNAVAILABLE:"L'argomento selezionato non è al momento disponibile.",CONNECT_TO_INTERNET:"Assicurati di essere connesso a Internet. Per assistenza su come configurare la connessione a Internet, scegli menu Apple > Preferenze di Sistema, fai clic su Network, quindi su “Aiutamiâ€&#157;.\nSe sei connesso a Internet, ma non puoi visualizzare il contenuto, riprova più tardi.","%@ Search Results":"%@ risultati di ricerca","Apple applications":"Applicazioni Apple",Cancel:"Annulla","Change Language":"Cambia lingua",Close:"Chiudi","Featured application help":"Aiuto applicazione in primo piano","Go to the homepage":"Vai alla pagina iniziale","Help for:":"Aiuto per:",Hide:"Nascondi",Home:"Inizio","Loading latest help...":"Carico argomento dell'aiuto più recente…","Other applications":"Altre applicazioni","Recent applications":"Applicazioni recenti",Search:"Cerca","Send feedback.":"Invia commenti.","Show all":"Mostra tutto","Show less":"Mostra meno","Show the previous page":"Mostra pagina precedente","Show the next page":"Mostra pagina successiva",Show:"Mostra","Was this page helpful?":"Hai trovato utile questa pagina?"}},{meta:{isoCodes:["ja"],isoName:"Japanese",name:"日本語"},ui:{TOPI C_UNAVAILABLE:"é&#129;¸æŠžã&#129;—ã&#129;Ÿãƒˆãƒ”ックã&#129;¯ç&#143;¾åœ¨åˆ©ç”¨ã &#129;§ã&#129;&#141;ã&#129;¾ã&#129;›ã‚“",CONNECT_TO_INTERNET:"インターãƒ&#14 1;ットã&#129;«æŽ¥ç¶šã&#129;—ã&#129;¦ã&#129;„ã‚‹ã&#129;“ã&#129;¨ã‚’確èª&#141;ã &#129;—ã&#129;¦ã&#129;&#143;ã&#129; ã&#129;•ã&#129;„。接続ã&#129;«ã&#129;¤ã&#129;„ã&#129;¦èª¿ã&#129;¹ã&#129;Ÿã&# 129;„ã&#129;¨ã&#129;&#141;ã&#129;¯ã€&#129;アップルメニュー>「シスム†ãƒ 環境è¨å®šã€&#141;ã&#129;¨é&#129;¸æŠžã&#129;—ã€&#129;「ãƒ&#141;ットワー㠂¯ã€&#141;をクリックã&#129;—ã&#129;¦ã&#129;‹ã‚‰ã€Œã‚¢ã‚·ã‚¹ã‚¿ãƒ³ãƒˆã€&#141 ;をクリックã&#129;—ã&#129;¾ã&#129;™ã€‚\nインターãƒ&#141;ットã&#129;«æ Ž¥ç¶šã&#129;—ã&#129;¦ã&#129;„ã‚‹ã&#129;®ã&#129;«ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã&#129;Œè¡¨ç¤ºã&# 129;•ã‚Œã&#129;ªã&#129;„å ´å&#144;ˆã&#129;¯ã€&#129;後ã&#129;§ã‚„ã‚Šç›´ã&#129;—ã&#129;¦ã&#129;&#143;ã&#12 9; ã&#129;•ã&#129;„。","%@ Search Results":"%@ 件ã&#129;®æ¤œç´¢çµ&#144;æžœ","Apple applications":"Apple アプリケーション",Cancel:"ã‚ャンセル","Change Language":"言語を変更",Close:"é–‰ã&#129;˜ã‚‹","Featured application help":"ã&#129;Šå‹§ã‚&#129;ã&#129;®ã‚¢ãƒ—リケーションヘルプ","Go to the homepage":"ホームページã&#129;«ç§»å‹•","Help for:":"表示ä¸ã&#129;®ãƒ˜ãƒ«ãƒ—:",Hide:"éš ã&#129;™",Home:"ホーム","Loading latest help...":"最新ã&#129;®ãƒ˜ãƒ«ãƒ—ã‚’èªã&#129;¿è¾¼ã&#129;¿ä¸...","Other applications":"ã&#129;»ã&#129;‹ã&#129;®ã‚¢ãƒ—リケーション","Recent applications":"最近使ã&#129;£ã&#129;Ÿã‚¢ãƒ—リケーション",Search:"æ¤œç´ ¢","Send feedback.":"フィードãƒ&#144;ックをé€&#129;ä¿¡","Show all":"ã&#129;™ã&#129;¹ã&#129;¦ã‚’表示","Show less":"一部を表示","Show the previous page":"å‰&#141;ã&#129;®ãƒšãƒ¼ã‚¸ã‚’表示","Show the next page":"次ã&#129;®ãƒšãƒ¼ã‚¸ã‚’表示",Show:"表示","Was this page helpful?":"ã&#129;“ã&#129;®ãƒšãƒ¼ã‚¸ã&#129;¯å½¹ç«‹ã&#129;¡ã&#129;¾ã&#129;—ã&#12 9;Ÿã&#129;‹ï¼Ÿ"}},{meta:{isoCodes:["ko"],isoName:"Korean",name:"한글"},ui:{TOP IC_UNAVAILABLE:"ì„ íƒ&#157;í•œ ì£¼ì œëŠ” 현재 사용할 수 없습니다.",CONNECT_TO_INTERNET:"ì&#157;¸í„°ë„·ì—&#144; ì—°ê²°ë&#144;˜ì–´ 있는지 확ì&#157;¸í•˜ì‹ì‹œì˜¤. ì—°ê²°ì—&#144; 대한 ë&#143;„움ë§&#144;ì&#157;€ Apple 메뉴 > 시스템 í™˜ê²½ì„¤ì •ì&#157;„ ì„ íƒ&#157;하고 네트워í&#129;¬ë¥¼ í&#129;´ë¦í•œ 다ì&#157;Œ “ë&#143;„와주세요â€&#157;를 í&#129;´ë¦í•˜ì‹ì‹œì˜¤.\nì&#157;¸í„°ë„·ì—&#144; ì—°ê²°ë&#144;˜ì–´ 있지만 해당 콘í…&#144;ì¸ ê°€ ì—¬ì „ížˆ 나타나지 않는 경우 나중ì—&#144; 다시 ì‹œë&#143;„í•´ë³´ì‹ì‹œì˜¤.","%@ Search Results":"%@ê°œì&#157;˜ 검색 ê²°ê³¼","Apple applications":"Apple ì&#157;‘ìš© 프로그램",Cancel:"취소","Change Language":"언어 변경",Close:"닫기","Featured application help":"추천 ì&#157;‘ìš© 프로그램 ë&#143;„움ë§&#144;","Go to the homepage":"홈페ì&#157;´ì§€ë¡œ ì&#157;´ë&#143;™","Help for:":"ë&#143;„움ë§&#144;:",Hide:"가리기",Home:"홈","Loading latest help...":"최신 ë&#143;„움ë§&#144; 불러오는 중...","Other applications":"기타 ì&#157;‘ìš© 프로그램","Recent applications":"최근 사용 ì&#157;‘ìš© 프로그램",Search:"검색","Send feedback.":"피드백 보내기.","Show all":"모ë‘&#144; 보기","Show less":"간단히 보기",Show:"보기","Show the previous page":"ì&#157;´ì „ 페ì&#157;´ì§€ 보기","Show the next page":"다ì&#157;Œ 페ì&#157;´ì§€ 보기","Was this page helpful?":"ì&#157;´ 페ì&#157;´ì§€ê°€ ë&#143;„움ì&#157;´ ë&#144;˜ì…¨ìŠµë‹ˆê¹Œ?"}},{meta:{isoCodes:["ms"],isoName:"Malaysian",name:"Bahas a Malaysia"},ui:{TOPIC_UNAVAILABLE:"Topik yang dipilih tidak tersedia sekarang",CONNECT_TO_INTERNET:"Pastikan anda disambungkan ke Internet. Untuk bantuan sambungan, pilih menu Apple > Keutamaan Sistem, klik Rangkaian, dan klik “Bantu saya.â€&#157;\nJika anda disambungkan ke Internet, dan kandungan masih tidak muncul, cuba lagi nanti.","%@ Search Results":"%@ Hasil Carian","Apple applications":"Aplikasi Apple",Cancel:"Batal","Change Language":"Tukar Bahasa",Close:"Tutup","Featured application help":"Bantuan untuk aplikasi yang ditampilkan","Go to the homepage":"Pergi ke laman utama","Help for:":"Bantuan untuk:",Hide:"Sembunyikan",Home:"Utama","Loading latest help...":"Memuatkan bantuan terbaru...","Other applications":"Aplikasi lain","Recent applications":"Aplikasi terbaru",Search:"Cari","Send feedback.":"Hantar maklum balas.","Show all":"Tunjukkan semua","Show less":"Tunjukkan sedikit","Show the previous page":"Tunjukkan halaman sebelumnya","Show the next page":"Tunjukkan halaman seterusnya",Show:"Tunjukkan","Was this page helpful?":"Adakah halaman ini membantu?"}},{meta:{isoCodes:["nl"],isoName:"Dutch",name:"Nederlands"},ui:{TOPI C_UNAVAILABLE:"Het geselecteerde onderwerp is momenteel niet beschikbaar",CONNECT_TO_INTERNET:"Controleer of er verbinding is met het internet. Als u hulp nodig hebt, kiest u Apple-menu > 'Systeemvoorkeuren' en klikt u vervolgens op 'Netwerk' en 'Assistentie'.\nAls u verbinding hebt met het internet en de inhoud nog steeds niet wordt weergegeven, probeert u het later nog

    Hi Mac Attack,
    My computer will not disconnect from the internet.  It seems to find a clone router and continues even when I shut down and unplug my my own home iy
    Your main question was 'chopped' in the title. Please reply in the body of a reply box with the full question and anything you have tried. And no, the long report was not helpful .
    If the same website is opening each time you launch a browser (Safari?) hold down the shift key as you launch to prevent previous pages from opening.
    Have a look at your settings in Safari > Preferences. Especially General and Privacy.
    Reset Safari to remove cookies and other stored data.
    System Preferences > General
    Have a look at your settings in System Preferences >  Security & Privacy.
    Call back with more questions.
    Regards,
    Ian

  • Java.lang.SecurityException: Jurisdiction policy files are not signed by t

    Hi
    *I am installing ECC6 onAIX 6.1 with oarcle 10g.*
    *I am getting error in create secure store*
    *Policy and security files are ok,*
    aused by: java.lang.ExceptionInInitializerError
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:218)
            at javax.crypto.Cipher.a(Unknown Source)
            at javax.crypto.Cipher.getInstance(Unknown Source)
            at iaik.security.provider.IAIK.a(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at com.sap.security.core.server.secstorefs.Crypt.<clinit>(Crypt.java:82)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            at com.sap.security.core.server.secstorefs.SecStoreFS.setSID(SecStoreFS.java:158)
            at com.sap.security.core.server.secstorefs.SecStoreFS.handleCreate(SecStoreFS.java:804)
            at com.sap.security.core.server.secstorefs.SecStoreFS.main(SecStoreFS.java:1274)
            ... 6 more
    Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
            at javax.crypto.b.<clinit>(Unknown Source)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            ... 17 more
    Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers!
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.access$600(Unknown Source)
            at javax.crypto.b$0.run(Unknown Source)
            at java.security.AccessController.doPrivileged(AccessController.java:246)
            ... 20 more
    ERROR      2009-07-07 14:10:47.063
               CJSlibModule::writeError_impl()
    CJS-30050  Cannot create the secure store. SOLUTION: See output of log file SecureStoreCreate.log:
    SAP Secure Store in the File System - Copyright (c) 2003 SAP AG
    java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:88)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:61)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: java.lang.ExceptionInInitializerError
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:218)
            at javax.crypto.Cipher.a(Unknown Source)
            at javax.crypto.Cipher.getInstance(Unknown Source)
            at iaik.security.provider.IAIK.a(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at com.sap.security.core.server.secstorefs.Crypt.<clinit>(Crypt.java:82)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            at com.sap.security.core.server.secstorefs.SecStoreFS.setSID(SecStoreFS.java:158)
            at com.sap.security.core.server.secstorefs.SecStoreFS.handleCreate(SecStoreFS.java:804)
            at com.sap.security.core.server.secstorefs.SecStoreFS.main(SecStoreFS.java:1274)
            ... 6 more
    Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
            at javax.crypto.b.<clinit>(Unknown Source)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            ... 17 more
    Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers!
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.access$600(Unknown Source)
            at javax.crypto.b$0.run(Unknown Source)
            at java.security.AccessController.doPrivileged(AccessController.java:246)
            ... 20 more.
    ERROR      2009-07-07 14:10:47.547 [sixxcstepexecute.cpp:960]
    FCO-00011  The step createSecureStore with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_SecureStore|ind|ind|ind|ind|8|0|createSecureStore was executed with status ERROR ( Last error reported by the step :Cannot create the secure store. SOLUTION: See output of log file SecureStoreCreate.log:
    SAP Secure Store in the File System - Copyright (c) 2003 SAP AG
    java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:88)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:61)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: java.lang.ExceptionInInitializerError
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:218)
            at javax.crypto.Cipher.a(Unknown Source)
            at javax.crypto.Cipher.getInstance(Unknown Source)
            at iaik.security.provider.IAIK.a(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at com.sap.security.core.server.secstorefs.Crypt.<clinit>(Crypt.java:82)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            at com.sap.security.core.server.secstorefs.SecStoreFS.setSID(SecStoreFS.java:158)
            at com.sap.security.core.server.secstorefs.SecStoreFS.handleCreate(SecStoreFS.java:804)
            at com.sap.security.core.server.secstorefs.SecStoreFS.main(SecStoreFS.java:1274)
            ... 6 more
    Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
            at javax.crypto.b.<clinit>(Unknown Source)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            ... 17 more
    Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers!
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.access$600(Unknown Source)
            at javax.crypto.b$0.run(Unknown Source)
            at java.security.AccessController.doPrivileged(AccessController.java:246)
            ... 20 more.).
    what could be the problem ?
    Please give me the soluation
    regards
    Vijay

    Dear Juan
    You are correct.
    I downloaded correct file from IBM site , and Create Secure store step completed but innext step IMPORT JAVA DUMP
    it gave error
    n error occurred while processing service SAP ERP 6.0 Support Release 3 > SAP Systems > Oracle > Central System > Central System( Last error reported by the step : Execution of JLoad tool '/usr/java14_64/bin/java -classpath /swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/launcher.jar -showversion -Xmx512m -Xj9 com.sap.engine.offline.OfflineToolStart com.sap.inst.jload.Jload /swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/lib/iaik_jce.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/jload.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/antlr.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/exception.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/jddi.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/logging.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/offlineconfiguration.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/opensqlsta.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/tc_sec_secstorefs.jar:/oracle/client/10x_64/instantclient/ojdbc14.jar -sec AGQ,jdbc/pool/AGQ,/usr/sap/AGQ/SYS/global/security/data/SecStore.properties,/usr/sap/AGQ/SYS/global/security/data/SecStore.key -dataDir /swdump/NW7.0_SR3_JAVA_COMP_51033513/DATA_UNITS/JAVA_EXPORT_JDMP -job /swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/IMPORT.XML -log jload.log' aborts with return code 1. SOLUTION: Check 'jload.log' and '/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/jload.java.log' for more information.
    regards
    vijjay

  • Java.lang.SecurityException: while starting weblogic server

    Hi,
    I added a admin server on m/c 1 and a remote managed server on m/c 2. When i tried to start the admin server and the managed server and ping it using jmx, it get the following security error:
    Any help regd. this would be appreciated.
    Thanks,
    beauser2005
    <Oct 29, 2004 2:14:38 PM PDT> <Warning> <RMI> <BEA-080003> <RuntimeException thrown by rmi server: weblogic.rmi.internal.BasicServerRef@10c - hostID: '-833462563406253632S:172.20.30.37:[7001,7001,-1,-1,7001,-1,-1,0,0]:mydomain10:myserver10', oid: '268', implementation: 'weblogic.management.internal.RemoteMBeanServerImpl@191f022'
    java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[weblogic, Administrators].
    java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[weblogic, Administrators]
         at weblogic.security.service.SecurityServiceManager.seal(SecurityServiceManager.java:680)
         at weblogic.rjvm.MsgAbbrevInputStream.getSubject(MsgAbbrevInputStream.java:187)
         at weblogic.rmi.internal.BasicServerRef.acceptRequest(BasicServerRef.java:827)
         at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:300)
         at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java:996)
         at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:917)
         at weblogic.rjvm.ConnectionManagerServer.handleRJVM(ConnectionManagerServer.java:225)
         at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:794)
         at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:742)
         at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:105)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)

    was able to solve this
    there was corruption of reports config file

  • Java.lang.SecurityException using a simple jar file

    I created my small application using JDev 11.
    Running from JDev it works well.
    I created a simple jar file including all my classes and all libraries I used.
    Whe I try to run that jar file I get :
    java.lang.SecurityException: no manifiest section for signature file entry javax/mail/internet/AsciiOutputStream.classI didn't find any solution.
    I worked hardly with JDev 10g but I never had such problem.
    Tks
    Tullio
    Edited by: tullio0106 on Nov 25, 2008 2:22 PM

    I simply created a project containing some classes whish use java mail.
    Then I modified the project creating, in the deployment wizard, a "Dependency Analysis" filegroup adding all my classes as well as libraries.
    I uncheck the "Include Manifest" chek otherwise I would run into different problems (well documented in the forum).
    The jar file is created but when I run the application I get the Security error.
    If I remove java mail libraries (activation and java mail)from the list of used libraries and I add it to classpath it works fine.
    I suspect the problem could be in Manifes merging.
    Tks
    Tullio

  • Java.lang.SecurityException when granting java permission

    DB version 11.1.07
    We used this command to grant the following permission in development and stage environment with no problems.
    exec dbms_java.grant_permission( 'SCHEMA', 'SYS:java.lang.RuntimePermission', 'getClassLoader', '' );
    When the same command is run in production, it results in this.
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.SecurityException: policy table update
    SYS:java.lang.RuntimePermission, getClassLoader
    ORA-06512: at "SYS.DBMS_JAVA", line 787
    ORA-06512: at line 1
    These commands were executed as SYS user in all environments. Any ideas what could be causing this?
    Thanks.
    Usman

    Either you are only using a security manager in production or there is a difference in the permissions granted by the security domains (for example, .policy files).

  • Java.lang.SecurityException: [Security:090398]Invalid Subject: WEBLOGIC 9.1

    Hi
    I am getting this error when I am making an EJB method which resides in a different weblogic 9.1 server.
    I have enaled the trust between my two domains. Set the required class path settings.
    My client call is from a JSP , say client.jsp.
    Here I get remote object of the EJB and calls the required method
    Now
    1) My EJB calls are succesful when I DO NOT secure it
    2) but when I make it is secured , ie when I
    include the jsp in secured URL ie. under <security-constraint><url-pattern>client.jsp</> in web.xml
    , it gives me the follwing error
    The stack trace is given below
    java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[com.ebreviate.security.wl9realm.EBRUser@a09a08, ess, everyone]
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:191)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:315)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:250)
    at weblogic.jndi.internal.ServerNamingNode_910_WLStub.lookup(Unknown Source)
    at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:374)
    Truncated. see log file for complete stacktrace
    Any idea why it is ?
    Please let me know
    Thanks
    Binu
    Edited by binurajkr at 01/25/2008 4:36 AM

    Hi. Contact official BEA Support. This is likely
    to be a known issue with a patch available to fix it.
    Joe
    binu raj wrote:
    Hi
    I am getting this error when I am making an EJB method which resides in a different weblogic 9.1 server.
    I have enaled the trust between my two domains. Set the required class path settings.
    My client call is from a JSP , say client.jsp.
    Here I get remote object of the EJB and calls the required method
    Now
    1) My EJB calls are succesful when I DO NOT secure it
    2) but when I make it is secured , ie when I
    include the jsp in secured URL ie. under <security-constraint><url-pattern>client.jsp</> in web.xml
    , it gives me the follwing error
    The stack trace is given below
    java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[com.ebreviate.security.wl9realm.EBRUser@a09a08, ess, everyone]
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:191)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:315)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:250)
    at weblogic.jndi.internal.ServerNamingNode_910_WLStub.lookup(Unknown Source)
    at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:374)
    Truncated. see log file for complete stacktrace
    Any idea why it is ?
    Please let me know
    Thanks
    Binu
    Edited by binurajkr at 01/25/2008 4:36 AM

  • Java.lang.SecurityException: [Security:090398]Invalid Subject

    Hi
              I am getting this error when I am making an EJB method which resides in a different weblogic 9.1 server.
              I have enaled the trust between my two domains. Set the required class path settings.
              My client call is from a JSP , say client.jsp.
              Here I get remote object of the EJB and calls the required method
              Now
              1) My EJB calls are succesful when I DO NOT secure it
              2) but when I make it is secured , ie when I
              include the jsp in secured URL ie. under <security-constraint><url-pattern>client.jsp</> in web.xml
              , it gives me the follwing error
              The stack trace is given below
              java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[com.ebreviate.security.wl9realm.EBRUser@a09a08, ess, everyone]
              at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:191)
              at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:315)
              at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:250)
              at weblogic.jndi.internal.ServerNamingNode_910_WLStub.lookup(Unknown Source)
              at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:374)
              Truncated. see log file for complete stacktrace
              Any idea why it is ?
              Please let me know
              Thanks
              Binu

    I got this issue resolved by setting
              Context.SECURITY_PRINCIPAL, "" , before the RMI ejb call
              Binu

  • Java.lang.SecurityException: [Security:090398]Invalid Subject: admin

    I have a class that is used to check the status of all managed server in a domain. I use this class to check on the status of multiple domains.
    I have a for loop over all the domains and then invoke the method below, one for each domain (I instantiate the class anew for each domain)
    The 1st domain connects and returns the status properly. However on subsequent iterations thru the look I get the following SecuriyException below. I have tried a number of things such as setting MBeanHome to null etc but this error repeats anytime I connect to N+1 domains.
    Is there a fix for this.
    Note: I am using WLS 8.1 SP3 thru 5. And I know the username & pwd is correct cause I can connect using to the admin console using the same username & password and am part of the Administrators group.
    Exception on the client on N+1 connect attemp:
    java.lang.SecurityException: [Security:090398]Invalid Subject: admin
    at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.j
    ava:108)
    at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:137)
    at weblogic.management.internal.AdminMBeanHomeImpl_815_WLStub.getDomainN
    ame(Unknown Source)
    Exception on the server:
    ####<Mar 28, 2006 2:59:51 PM CST> <Warning> <RMI> <htx6056> <AdminServer> <Execu
    teThread: '2' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <BEA-080003>
    <RuntimeException thrown by rmi server: weblogic.rmi.internal.BasicServerRef@10
    2 - hostID: '-4547912678907759832S:htx6056.cce.hp.com:[10250,10250,10251,10251,1
    0250,10251,-1,0,0]:arc_prd1:AdminServer', oid: '258', implementation: 'weblogic.
    management.internal.AdminMBeanHomeImpl@1e22632'
    java.lang.SecurityException: [Security:090398]Invalid Subject: admin.
    java.lang.SecurityException: [Security:090398]Invalid Subject: admin
    The code:
    public void checkWebLogicServerState( String user, String pass, String url ) throws Exception {
              MBeanHome home = Helper.getAdminMBeanHome( user, pass, url );
              Set beans = home.getMBeansByType( "Server", home.getDomainName( ));
              for( Iterator iter = beans.iterator( ); iter.hasNext( );){
                   WebLogicMBean bean = (WebLogicMBean)iter.next( );
                   WebLogicObjectName objName = bean.getObjectName( );
                   String serverName = objName.getName( );
                   String location = objName.getLocation( );
                   ServerRuntimeMBean serverRuntimeMBean = null;
                   try {
                        serverRuntimeMBean = (ServerRuntimeMBean)home.getMBean( serverName, "ServerRuntime", home.getDomainName( ), serverName);
                        String state = serverRuntimeMBean.getState( );
                        System.out.println( "\t[" + serverName + "] IS " + state + "." );
                   } catch( Exception ex ) {
                        System.out.println( "\t[" + serverName + "] IS NOT RUNNING." );
         }

    I worked around the problem by removing the usage of the weblogic.management.Helper and using standard JNDI lookups instead.
    Clearly there is a bug in the Helper class that stores securtiy information in a static variable since it cannot be re used within the same JVM/Classloader without sharing the security information.
    Used instead:
                   Environment env = new Environment();
                   env.setProviderUrl( url );
                   env.setSecurityPrincipal( user );
                   env.setSecurityCredentials( pass );
                   Context ctx = env.getInitialContext( );
                   home = (MBeanHome)ctx.lookup( MBeanHome.ADMIN_JNDI_NAME );

  • Java.lang.SecurityException: Security: Invalid Subject: principals

    I am getting the following exception intermittently:
    java.lang.SecurityException: Security: Invalid Subject: principals=[XXX, Administrators]
    What i am doing is, i have two weblogic servers both running Weblogic 10.0 and running on different domains, a war is deployed on one server (server A) which sends a message to queue on another server (Server B), now everything works but if i restart B then A throws the above Security Exception while looking up the queue on Server B?? Any ideas why, i haven't configured any security credentials.
    If i restart A after restarting B then everything works again but restarting all the servers each time one gets restarted is cumbersome,so does someone knows answer to the question above?
    Edited by: user4828945 on Feb 11, 2009 5:41 PM

    If you dont require authentication, then enable the global trust between the domains.
    When this feature is enabled, identity is passed between WebLogic Server domains over an RMI connection without requiring authentication in the second domain. When inter-domain trust is enabled, transactions can commit across domains. A trust relationship is established when the Domain Credential for one domain matches the Domain Credential for another domain.
    By default, the Domain Credential is randomly generated and therefore, no two domains will have the same Domain Credential. If you want two WebLogic Server domains to interoperate, you need to replace the generated credential with a credential you select, and set the same credential in each of the domains.
    Link :[http://e-docs.bea.com/wls/docs100/ConsoleHelp/taskhelp/security/EnableGlobalTrustBetweenDomains.html]

  • Java.lang.SecurityException: [Security:090398]

    Hi All,
    I am using Jdeveloper 11.1.1.3.
    I am running my application and it runs fine. But after a couple of clicks, I get the following exception. Tried googling and oracle-ing the exception but can't really understand what it is. If someone can provide a solution that would be AWESOME but even if someone can explain what the error is, that would be really really helpful.
    Oh and the WebLogic Server Version: 10.3.3.0 on server and client side.
    Here's the error...
    java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[jdoe11, EFormDefault]
    javax.el.ELException: java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[jdoe11, EFormDefault]
         at com.sun.el.parser.AstValue.invoke(AstValue.java:161)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at oracle.adf.controller.internal.util.ELInterfaceImpl.invokeMethod(ELInterfaceImpl.java:168)
         at oracle.adfinternal.controller.activity.MethodCallActivityLogic.execute(MethodCallActivityLogic.java:161)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.executeActivity(ControlFlowEngine.java:989)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:878)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:777)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:551)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:147)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:109)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:78)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[jdoe11, EFormDefault]
         at weblogic.security.service.SecurityServiceManager.seal(SecurityServiceManager.java:835)
         at weblogic.security.service.IdentityUtility.authenticatedSubjectToIdentity(IdentityUtility.java:30)
         at weblogic.security.service.RoleManager.getRoles(RoleManager.java:183)
         at weblogic.security.service.AuthorizationManager.isAccessAllowed(AuthorizationManager.java:375)
         at weblogic.rmi.provider.WorkContextAccessController.checkAccess(WorkContextAccessController.java:62)
         at weblogic.workarea.spi.WorkContextAccessController.isAccessAllowed(WorkContextAccessController.java:38)
         at weblogic.workarea.WorkContextLocalMap$WorkContextKeys.next(WorkContextLocalMap.java:356)
         at weblogic.wsee.jaxws.workcontext.WorkContextTube.hasContext(WorkContextTube.java:67)
         at weblogic.wsee.jaxws.workcontext.WorkContextClientTube.processRequest(WorkContextClientTube.java:38)
         at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:604)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:563)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:548)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:445)
         at com.sun.xml.ws.client.Stub.process(Stub.java:259)
         at com.sun.xml.ws.client.sei.SEIStub.doProcess(SEIStub.java:152)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:115)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:95)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:135)
         at $Proxy157.retrieveForm(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.jaxws.spi.ClientInstance$ClientInstanceInvocationHandler.invoke(ClientInstance.java:363)
         at $Proxy158.retrieveForm(Unknown Source)
         at gov.atf.eforms.FormBase.retrieveForm(FormBase.java:206)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         ... 62 more
    Edited by: HKG on Feb 25, 2011 8:01 AM

    Hi,
    difficult to say. From the error message it seems that there is something happening with the authenticated JAAS user. Does the problem reproduce in other applications (e.g. a test case ?)
    Frank

Maybe you are looking for

  • New iPad is not on the authorised devices list

    Every thing seems to be working as it should. I can download from the store etc. but, my new iPad Air is not shown on the authorised devices list in my account. Is there something I need to do to get it recognised? Cheers.

  • Content Search Web Part Has No Results

    Hello, I have been working on a site for a few weeks now and have been trying to make a simple Image Slider. I have found many tutorials and all are helpful -- except I get stuck at the same part every time. I am trying to use a Content Search Web Pa

  • Why i can't register to an appstore without a bankcard?

    so i bought my iphone 5s but when i want to register on the appstore i need a bankcard but i just click nex because im 16 years old and I DONT NEED bankcard but without a bankcard i can't register an appstore or the itunes

  • HP iPAQ rw6828 and smtp authentication

    Hi there I'm trying to get an ipaq rw6828 to send mail through my xserve's smtp server - but I can't get it working. I have tested the settings through apple mail and it's working fine - but with the same settings in my ipaq it won't send mail. It ch

  • Can I download Windows 7 on my HP 500.251 EO computer

    Can I download Window 7 on my HP 500-251 EO Desktop computer. I already have Windows 8 on it but need Windows 7 for my work.