New to JCE

Hi,
I am new to JCE. I have a RSA certificate. I dont know how can I use that to dncrypt the data that I send and decrypt the data that I receive. I need some code help please.

Certificates are not used to decrypt. A Certificate is a wrapper for a Public Key.. Public Key's are used for encryption. You need the associated private key for decryption...
Now those are reversed for Signatures...
To use pub/priv key encryption you will be dealing with the Cipher object. You do this, in your case, with the RSA algorithm. So using Cipher you need to get an Cipher object implementing RSA algorithm with an appropriate mode and padding.. Now RSA does not really support modes so in reality it is just an algorithm and a padding...
Typically it would look like...
Cipher c = Cipher.getInstance("RSA//PKCS1Padding");
But the exact transformation string specifying algorithm/mode/padding that your provider uses is specific to the provider. Note: the SunJCE does not supply an RSA algorithm implementation for Cipher. You will need to download a third party provider and install it properly.. Something like BouncyCastle as an example...
nce you have done that and you have figured out what transformation string to use in the above getInstance() call, you then need to init it.
For encryption you use the PublicKey which in your case is the Certificate.
c.init(Cipher.ENCRYPT_MODE, cert);
For decryption you need to use the private key.. Private and public keys are typically stored in a keystore.
KeyStore ks = KeyStore.getInstance("JCEKS");
You will need to load the keystore...
ks.load(new FileInputStream(keystorefile), passwd.toCharArray());
Then you will need to locate your keys.
Key privKey = ks.getKey(myAlias, keyPasswd.toCharArray());
Likewise, you will need to get your certificate.
Once you have both your Cert and Key loaded you can do your crypto magic.. But it sounds like you have a bunch to learn so.. Well this will give you a start...

Similar Messages

  • JCE - java.lang.NoClassDefFoundError

    Hi,
    I am new to JCE and I have installed the JCE 1.2.1 with JDK1.3.1_03. I have modified my security and policy files as per the install and also copied over the jar files to jre/lib/ext. I can compile my code fine but when i run it i get the following error:
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/crypto/provider/SunJCE
    Can anyone please help me with this. Thanks in advance....

    I heard that someone else worked around this problem by just adding the JCE files to the classpath instead of installing it in the jre/lib/ext directory.

  • Problem Decrypting a text file using OpenPGP

    I am new in java cryptography. We have a file from vendor which needs to be decrypted. I am using the code below which gives me error after the bolded comment line. Below the code are the error messages that I get.
    Can anyone give me any assistance in telling me what is the problem.
    Thank you,
    Ed
    package cryptix.openpgp.examples;
    import cryptix.message.EncryptedMessage;
    import cryptix.message.KeyBundleMessage;
    import cryptix.message.LiteralMessage;
    import cryptix.message.Message;
    import cryptix.message.MessageException;
    import cryptix.message.MessageFactory;
    import cryptix.message.NotEncryptedToParameterException;
    import cryptix.openpgp.PGPSignedMessage;
    import cryptix.pki.KeyBundle;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.security.NoSuchAlgorithmException;
    import java.security.UnrecoverableKeyException;
    import java.util.Collection;
    public class Decrypt {
    public static void main(String[] args) {
    java.security.Security.addProvider(
    new cryptix.jce.provider.CryptixCrypto() );
    java.security.Security.addProvider(
    new cryptix.openpgp.provider.CryptixOpenPGP() );
    KeyBundle bundle = null;
    MessageFactory mf = null;
    try {
    FileInputStream in = new FileInputStream("secretkey.asc");
    mf = MessageFactory.getInstance("OpenPGP");
    Collection msgs = mf.generateMessages(in);
    KeyBundleMessage kbm = (KeyBundleMessage)msgs.iterator().next();
    bundle = kbm.getKeyBundle();
    in.close();
    } catch (IOException ioe) {
    System.err.println("IOException... You did remember to run the "+
    "GenerateAndWriteKey example first, right?");
    ioe.printStackTrace();
    System.exit(-1);
    } catch (NoSuchAlgorithmException nsae) {
    System.err.println("Cannot find the OpenPGP MessageFactory. "+
    "This usually means that the Cryptix OpenPGP provider is not "+
    "installed correctly.");
    nsae.printStackTrace();
    System.exit(-1);
    } catch (MessageException me) {
    System.err.println("Reading keybundle failed.");
    me.printStackTrace();
    System.exit(-1);
    EncryptedMessage em = null;
    try {
    FileInputStream in = new FileInputStream("C:\\Java\\enc_dec\\pgptestin.pgp");
    Collection msgs = mf.generateMessages(in);
    em = (EncryptedMessage)msgs.iterator().next();
    in.close();
    } catch (IOException ioe) {
    System.err.println("IOException... You did remember to run the "+
    "Encrypt example first, right?");
    ioe.printStackTrace();
    System.exit(-1);
    } catch (MessageException me) {
    System.err.println("Reading message failed.");
    me.printStackTrace();
    System.exit(-1);
    try {
         // System.out.println(em);
          // if fails after the below statement
    Message msg = em.decrypt(bundle,"password".toCharArray());
    PGPSignedMessage pmsg = (PGPSignedMessage)msg;
    LiteralMessage lmsg = (LiteralMessage)pmsg.getContents();
    FileOutputStream out = new FileOutputStream("C:\\Java\\enc_dec\\pgptestout.txt");
    out.write(lmsg.getTextData().getBytes());
    out.close();
    } catch (NotEncryptedToParameterException netpe) {
    System.err.println("Not encrypted to this key.");
    netpe.printStackTrace();
    System.exit(-1);
    } catch (UnrecoverableKeyException uke) {
    System.err.println("Invalid passphrase.");
    uke.printStackTrace();
    System.exit(-1);
    } catch (MessageException me) {
    System.err.println("Decrypting message failed.");
    me.printStackTrace();
    System.exit(-1);
    } catch (IOException ioe) {
              System.err.println("Writing the decrypted message failed.");
              ioe.printStackTrace();
              System.exit(-1);
    Here are the error messages:
    Exception in thread "main" java.lang.RuntimeException: NYI
         at cryptix.jce.provider.elgamal.ElGamalCipher.engineGetParameters(ElGamalCipher.java:120)
         at javax.crypto.Cipher.a(DashoA12275)
         at javax.crypto.Cipher.init(DashoA12275)
         at javax.crypto.Cipher.init(DashoA12275)
         at cryptix.openpgp.algorithm.PGPElGamal.decrypt(PGPElGamal.java:612)
         at cryptix.openpgp.packet.PGPPublicKeyEncryptedSessionKeyPacket.decrypt(PGPPublicKeyEncryptedSessionKeyPacket.java:189)
         at cryptix.openpgp.provider.PGPEncryptedMessageImpl.decrypt(PGPEncryptedMessageImpl.java:186)
         at cryptix.openpgp.provider.PGPEncryptedMessageImpl.decrypt(PGPEncryptedMessageImpl.java:315)
         at cryptix.openpgp.examples.Decrypt.main(Decrypt.java:118)
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    Message was edited by:
    eidasharif
    null

    You have to download and install something called "Unlimited strength jurisdiction policy files 5.0", is the solution por the NYI (Not Yet implemented) problem. It worked in my case (you can download the file from Sun, and read the readme to know how to install it)

  • Provider problem by building a secure transmission to a Smart Card

    Hi
    I have this problem:
    I must accomplish a secure transmission with a smart card,
    So the transmission is RSA coded.
    A RSA key is generated, without any problems I think because the modulus is printed out.
    And because he write the key to the card.
    But when the transmission with the card begin the program breaks with the error message it could not find any RSA Provider
    I use :
    - Java 1.4.1
    - bcprov-jdk14-117.jar
    - jce unrestricted policy files
    - cryptix-jce-20030102-snap
    - FlexiFullProvider-1.1.3.signed.jar
    - OCF1.2
    The Programm code with causes the Error :
    Line 78
    public boolean enableSecureMessaging(CardFilePath path, byte keyNumber)
    throws NoSuchAlgorithmException,
    InvalidKeyException,
    CardServiceException,
    CardTerminalException {
    KeyPairGenerator rsaKeyPairGenerator;
    KeyPair rsaKeyPair;
    RSAPubKey     rsaPublicKey;
    RSAPrivCrtKey rsaPrivateKey;
    RSAPrivateKeySpec rsaPrivateKeySpec;
    DESedeKeySpec desKeySpec;
    IV iv;
    byte[] modulus;
    byte[] exponent;
    byte[] privateExponent;
    byte[] modulusRecord;
    byte[] exponentRecord;
    byte[] sessionKey;
    CredentialBag credentialBag;
    TCOS2CredentialStore credentialStore;
    ReceiveRSACommunicationCredential rsaCommunicationCredential;
    DESedeCommunicationCredential desCommunicationCredential;
    PassThruCommunicationCredential passThruCommunicationCredential;
    // - RSA KeyPairGenerator initialisieren und ein Schl�sselpaar mit
    // 512 Bit erstellen
    rsaKeyPairGenerator = KeyPairGenerator.getInstance("RSA");
    rsaKeyPairGenerator.initialize(0x200);
    rsaKeyPair = rsaKeyPairGenerator.generateKeyPair();
    //::B::
    Provider[] providern =java.security.Security.getProviders();
         for (int i = 0; i<providern.length;i++)
              System.out.println(providern.getName());
         System.out.println(providern[i].getInfo());
              System.out.println("----------*******----------");
    //::E::
    // - Public und Private Key aus dem Schl�sselpaar extrahieren
    System.out.println(rsaKeyPair);
    rsaPublicKey = (RSAPubKey)rsaKeyPair.getPublic();
    System.out.println(rsaPublicKey.toString());
    rsaPrivateKey = (RSAPrivCrtKey)rsaKeyPair.getPrivate();
    modulus = rsaPublicKey.getModulus().toByteArray();
    exponent = rsaPublicKey.getPublicExponent().toByteArray();
    privateExponent = rsaPrivateKey.getPrivateExponent().toByteArray();
    // - Komponenten des Public Key f�r die recordbasierte Speicherung in ein
    // Bytearray schreiben
    modulusRecord = new byte[0x43];
    exponentRecord = new byte[0x06];
    modulusRecord[0x00] = (byte)0x01;
    modulusRecord[0x01] = (byte)0x41;
    exponentRecord[0x00] = (byte)0x02;
    exponentRecord[0x01] = (byte)0x04;
    System.arraycopy(modulus, 0x00, modulusRecord, 0x43-modulus.length, modulus.length);
    System.arraycopy(exponent, 0x00, exponentRecord, 0x06-exponent.length, exponent.length);
    // - Komponenten des Public Key auf die Karte schreiben
    // Dieser Public Key wird anschlie�end benutzt, um den SessionKey f�r die
    // �bertragung zu verschl�sseln
    fscs.writeRecord(path, 0x01, modulusRecord);
    fscs.writeRecord(path, 0x02, exponentRecord);
    // - Private Key in einer KeySpec speichern
    rsaPrivateKeySpec = new RSAPrivateKeySpec(rsaPrivateKey.getModulus(),
    rsaPrivateKey.getPrivateExponent());
    // - Credential f�r die KommuniKation mit der Karte erstellen
    // Verschl�sselt wird die RAPDU von der Karte zum PC mit dem zuvor in der
    // Karte abgelegten Public Key
    credentialBag = new CredentialBag();
    credentialStore = new TCOS2CredentialStore();
    rsaCommunicationCredential = new ReceiveRSACommunicationCredential();
    System.out.println("Hier bricht die Sau ab!! [Martin, hat nat�rlich recht]");
    //THIS LINE CAUSES THE ERROR AS YOU SEE
    rsaCommunicationCredential.initCipher(rsaPrivateKeySpec, keyNumber, null); System.out.println("Das Schwein i weiter unten!! [Amir]");
    credentialStore.storeCredential(0x00, rsaCommunicationCredential);
    credentialBag.addCredentialStore(credentialStore);
    Debug Message::
    Bitte Karte einlegen
    [INFO     ] de.telesec.opencard.tcos20.service.TCOS2CardServiceFactory.getCardType
    --- message TCOS 2.0 Release 3 smart card detected
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2CardServiceFactory
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.initialize
    --- message
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.initialize
    --- message
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.initialize
    --- message
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.initialize
    --- message
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.initialize
    --- message
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    FlexiCore
    SunJSSE
    Sun JSSE provider(implements RSA Signatures, PKCS12, SunX509 key/trust factories, SSLv3, TLSv1)
    SunJCE
    SunJCE Provider (implements DES, Triple DES, Blowfish, PBE, Diffie-Hellman, HMAC-MD5, HMAC-SHA1)
    SunRsaSign
    SUN's provider for RSA signatures
    SUN
    SUN (DSA key/parameter generation; DSA signing; SHA-1, MD5 digests; SecureRandom; X.509 certificates; JKS keystore; PKIX CertPathValidator; PKIX CertPathBuilder; LDAP, Collection CertStores)
    SunJGSS
    Sun (Kerberos v5)
    CryptixCrypto
    Cryptix JCE Strong Crypto Provider
    BC
    BouncyCastle Security Provider v1.17
    java.security.KeyPair@80fa6f
    modulus n: 0x4fa8e0ef3fba114c9a4fa74848007f611e01dc4b9ecde00dce08bcf86643a7385a82b4fb8206c6bf28ed82ce69e1541947c7a91e4528e10dc5c06c1142e10a91
    exponent e: 0x10001
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.tcosSelect
    --- message mode: 8 response mode: 0 data: DF 01 45 C1
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.buildAndSendCommandAPDU
    --- message cla ins p1 p2 data le
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.buildAndSendCommandAPDU
    --- message cred: null
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [INFO     ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.sendCommandAPDU
    --- message Command: APDU_Buffer = 00A4080004DF0145C100 (hex) | lc = 4 | le = 0
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [INFO     ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.sendCommandAPDU
    --- message Response: opencard.core.terminal.ResponseAPDU@1b9ce4b
    0000: 6F 2F 83 02 45 C1 81 02 00 50 82 03 05 41 43 85 o/..E....P...AC.
    0010: 06 01 C4 06 10 00 00 86 18 B2 00 00 00 FF FF DC ................
    0020: 00 00 00 FF FF 2A 00 00 00 FF FF EE 00 00 00 FF .....*..........
    0030: FF 90 00 ...
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.isofs.fileinfo.TCOS2CardFileInfo.TCOS2CardFileInfo
    --- message Data: 0000: 6F 2F 83 02 45 C1 81 02 00 50 82 03 05 41 43 85 o/..E....P...AC.
    0010: 06 01 C4 06 10 00 00 86 18 B2 00 00 00 FF FF DC ................
    0020: 00 00 00 FF FF 2A 00 00 00 FF FF EE 00 00 00 FF .....*..........
    0030: FF .
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.isofs.fileinfo.TCOS2CardFileInfo
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.tcosUpdateRecord
    --- message SFI: -1 Mode: 4 Record Number: 1 Data: 0000: 01 41 00 4F A8 E0 EF 3F BA 11 4C 9A 4F A7 48 48 .A.O...?..L.O.HH
    0010: 00 7F 61 1E 01 DC 4B 9E CD E0 0D CE 08 BC F8 66 ..a...K........f
    0020: 43 A7 38 5A 82 B4 FB 82 06 C6 BF 28 ED 82 CE 69 C.8Z.......(...i
    0030: E1 54 19 47 C7 A9 1E 45 28 E1 0D C5 C0 6C 11 42 .T.G...E(....l.B
    0040: E1 0A 91 ...
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.buildAndSendCommandAPDU
    --- message cla ins p1 p2 data
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.buildAndSendCommandAPDU
    --- message cred: null
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [INFO     ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.sendCommandAPDU
    --- message Command: APDU_Buffer = 00DC0104430141004FA8E0EF3FBA114C9A4FA74848007F611E01DC4B9ECDE00DCE08BCF86643A7385A82B4FB8206C6BF28ED82CE69E1541947C7A91E4528E10DC5C06C1142E10A91 (hex) | lc = 67 | le = -1
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [INFO     ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.sendCommandAPDU
    --- message Response: opencard.core.terminal.ResponseAPDU@1292d26
    0000: 90 00 ..
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.tcosUpdateRecord
    --- message SFI: -1 Mode: 4 Record Number: 2 Data: 0000: 02 04 00 01 00 01 ......
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.buildAndSendCommandAPDU
    --- message cla ins p1 p2 data
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [DEBUG    ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.buildAndSendCommandAPDU
    --- message cred: null
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [INFO     ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.sendCommandAPDU
    --- message Command: APDU_Buffer = 00DC020406020400010001 (hex) | lc = 6 | le = -1
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    [INFO     ] de.telesec.opencard.tcos20.service.TCOS2BaseCardService.sendCommandAPDU
    --- message Response: opencard.core.terminal.ResponseAPDU@5329c5
    0000: 90 00 ..
    --- thread Thread[main,5,main]
    --- source class de.telesec.opencard.tcos20.service.TCOS2BaseCardService
    Hier bricht die Sau ab!! [Martin, hat nat�rlich recht]
    java.lang.RuntimeException: Cannot find any provider supporting RSA
         at de.telesec.opencard.tcos20.security.credential.ReceiveRSACommunicationCredential.initCipher(ReceiveRSACommunicationCredential.java:132)
         at sample.enableSecureMessaging(sample.java:160)
         at sample.start(sample.java:522)
         at sample.main(sample.java:564)
    Process sample finished
    I hope you can help me !

    Ok i have solved the Problem by myself, the solution is to do :
    -rsaKeyPairGenerator = KeyPairGenerator.getInstance("RSA");
    but the cipher musst be
    - cipher = Cipher.getInstance("RSA/ECB/PKCS#1");
    in the Java-Security all Providers have to disable be adding a # bevor each line
    only this line has to put in
    - security.provider.1=sun.security.provider.Sun
    and last you have to load the Flexi Core and the cryptix Providers dynamicly
    -Security.addProvider(new de.flexiprovider.core.FlexiCoreProvider());
    -Security.addProvider(new cryptix.jce.provider.CryptixCrypto());

  • PersistenceManager Patterns for Multithreaded Applications

    Hi,
    I'm looking for a good way, how to use Kodo JDO in a multithread application
    (actually Tomcat ;). The most easy thing is perhaps, to use only one
    persistence
    manager for the entire application, i.e. for all threads. Another solution
    might be,
    to create a PersistenceManager for each HTTP request. I don't like the
    solution,
    to have one PeristenceManager per session, because I expect thousands
    concurrent
    users. What I'm concerned with is the number of data base connections in
    this
    case.
    So my question to you is, what pattern do you use in your web applications?
    When do you create and close the PersistenceManagers to free resources?
    Has anybody alreay tried different patterns and compared the performance?
    Is there something like a best practice?
    Michael

    The other nice thing about the filter is that it should be easy to
    selectivly store and retrieve the PM in a user's session if they have a
    longer running transaction that spans multiple requests.
    So far, I've simply been passing the PM to each service method, although I
    don't particularliy like that approach. I haven't had time to try anything
    different yet and it isn't TOO bad, although I have a few ideas:
    1. The hashtable method you mentioned. I see there is a "Registry" pattern
    in the "Patterns of Enterprise Application Architecture" book I'm currently
    reading, but haven't gotten to it yet. I think it is close to what you
    mentioned.
    2. Retrieve the PM through JNDI. I don't know, however, if I can set up a
    PM in JNDI the way that the CurrentTransaction JNDI lookup works with
    container managed transactions.
    "Michael" <[email protected]> wrote in message
    news:[email protected]...
    I've never used a servlet filter before but I must say that is the most
    elegant approach I've seen, thanks for sharing that. How do you pass thePM
    to the service layer? Do you store it in a hashtable with the current
    thread as a key or do you pass it in to each service method?
    Thanks,
    Michael
    "Nathan Voxland" <[email protected]> wrote in message
    news:[email protected]...
    We've created the PersistenceManager in a filter and attached it to the
    request object. That way, the persistence manager can be accessed fromthe
    Struts Action, JSP Page, and anything else we do, plus we don't have to
    worry about closing it because it is closed by the filter after
    everything
    is done (Even if an exception is thrown)
    Here is the code:
    public void doFilter(final ServletRequest request, final ServletResponse
    response, FilterChain chain) throws IOException, ServletException {
    PersistenceManager pm = getPersistenceManager();
    request.setAttribute(JDO_PERSISTENCE_MANAGER, pm);
    try {
    chain.doFilter(request, response);
    } finally {
    if (pm.currentTransaction().isActive()) {
    pm.currentTransaction().rollback();
    pm.close();
    "Michael" <[email protected]> wrote in message
    news:[email protected]...
    I currently doing exactly this: getting a persistence manager at the
    beginning of a jsp page and close it at the end of the jsp page.
    When you use <jsp:include ...>, you must be careful not to close the
    persistence manager to early. I do it like this:
    This sounds like a good approach, especially the hashtable with the
    thread
    as the key. The only issue I see is if you create the PM in the JSPpage,
    often an Action is executed before the JSP is called. This is why I
    was
    thinking of creating the PM in the struts request processor, it'salways
    called for every request.

  • KeyStore Usage

    Hi All,
    I have created a keystore file using the keytool utility
    The command used by me for that purpose was
    D:\Study>keytool -genkey -alias TEST -keypass test123 -storepass test123 -keystore teststore.jks
    What is your first and last name?
    [Unknown]: TEST
    What is the name of your organizational unit?
    [Unknown]: TEST
    What is the name of your organization?
    [Unknown]: TEST
    What is the name of your City or Locality?
    [Unknown]: TEST
    What is the name of your State or Province?
    [Unknown]: TEST
    What is the two-letter country code for this unit?
    [Unknown]: TS
    Is <CN=TEST, OU=TEST, O=TEST, L=TEST, ST=TEST, C=TS> correct?
    [no]: YES
    But when I am trying to load the keystore using my program I am getting an
    exception...
    Code piece I have used is below.
    import java.security.KeyStore;
    import java.io.FileInputStream;
    import java.security.Key;
    public class Crypt{
         public static void main(String args[])throws Exception{
              KeyStore keyStore = KeyStore.getInstance("JCEKS");
              FileInputStream fis = new FileInputStream("teststore.jks");
              keyStore.load(fis,"test123".toCharArray());
              Key key = keyStore.getKey("TEST","test123".toCharArray());
              System.out.println(key);
    }The exception I am getting is
    Exception in thread "main" java.io.StreamCorruptedException: invalid stream header
    at java.io.ObjectInputStream.readStreamHeader(Unknown Source)
    at java.io.ObjectInputStream.<init>(Unknown Source)
    at com.sun.crypto.provider.JceKeyStore.engineLoad(DashoA6275)
    at java.security.KeyStore.load(Unknown Source)
    at Crypt.main(Crypt.java:15)
    Is this due to some issues while creating the keystore.
    I am able to load an already loaded keystore using this program
    by just chaning the password details.
    Thanks

    Good question. I have no idea. Maybe sabre150 does?To see what is available on any system I use the follow simple application. Under each provider in the tree there is a a sub-tree that shows the keystores.
    Note - please don't look too closely at the code quality. I wrote this some while ago as an aid and have not yet got round to turning it into releasable code!
    import java.security.*;
    import java.util.Enumeration;
    import javax.swing.*;
    import javax.swing.tree.*;
    import java.awt.*;
    import java.util.*;
    public class ListAlgorithms extends JFrame
        private void getNodes(DefaultMutableTreeNode providerNode, Provider provider, Set<Provider.Service> used, String title, String target)
            DefaultMutableTreeNode node = new DefaultMutableTreeNode(title);
            for (Provider.Service service : provider.getServices())
                if (!used.contains(service) && target.equalsIgnoreCase(service.getType()))
                    used.add(service);
                    DefaultMutableTreeNode algNode = new DefaultMutableTreeNode(service.getAlgorithm());
                    node.add(algNode);
                    algNode.add(new DefaultMutableTreeNode("class : " + service.getClassName()));
            if (node.getChildCount() != 0)
                providerNode.add(node);
        private ListAlgorithms()
            super("JCE Algorithms");
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            DefaultMutableTreeNode root = new DefaultMutableTreeNode("Providers");
            DefaultTreeModel treeModel = new DefaultTreeModel(root);
            for (Provider provider : java.security.Security.getProviders())
                DefaultMutableTreeNode providerNode = new DefaultMutableTreeNode(provider);
                root.add(providerNode);
                Set<Provider.Service> used = new HashSet<Provider.Service>();
                getNodes(providerNode, provider, used, "Cipher", "cipher");
                getNodes(providerNode, provider, used, "Key Agreement", "keyagreement");
                getNodes(providerNode, provider, used, "Key Generator", "keygenerator");
                getNodes(providerNode, provider, used, "Key Pair Generator", "keypairgenerator");
                getNodes(providerNode, provider, used, "Key Factory", "keyfactory");
                getNodes(providerNode, provider, used, "Secret Key Factory", "secretkeyfactory");
                getNodes(providerNode, provider, used, "Mac", "mac");
                getNodes(providerNode, provider, used, "Message Digest", "messagedigest");
                getNodes(providerNode, provider, used, "Signature", "signature");
                getNodes(providerNode, provider, used, "Algorithm Paramater", "algorithmparameters");
                getNodes(providerNode, provider, used, "Algorithm Paramater Generator", "algorithmparametergenerator");
                getNodes(providerNode, provider, used, "Key Store", "keystore");
                getNodes(providerNode, provider, used, "Secure Random", "securerandom");
                getNodes(providerNode, provider, used, "Certificate Factory", "certificatefactory");
                getNodes(providerNode, provider, used, "Certificate Store", "certstore");
                getNodes(providerNode, provider, used, "Key Manager Factory", "KeyManagerFactory");
                getNodes(providerNode, provider, used, "Trust Manager Factory", "TrustManagerFactory");
                getNodes(providerNode, provider, used, "SSL Context", "SSLContext");
                getNodes(providerNode, provider, used, "Sasl Server Factory", "SaslServerFactory");
                getNodes(providerNode, provider, used, "Sasl Client Factory", "SaslClientFactory");
                    DefaultMutableTreeNode node = new DefaultMutableTreeNode("Other");
                    for (Provider.Service service : provider.getServices())
                        if (!used.contains(service))
                            DefaultMutableTreeNode serviceNode = new DefaultMutableTreeNode(service.getType() + " : " + service.getAlgorithm());
                            node.add(serviceNode);
                            serviceNode.add(new DefaultMutableTreeNode("class : " + service.getClassName()));
                    if (node.getChildCount() != 0)
                        providerNode.add(node);
            JTree tree = new JTree(treeModel);
            tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
            tree.setEditable(false);
            JScrollPane pane = new JScrollPane(tree);
            pane.setPreferredSize(new Dimension(200, 200));
            getContentPane().add(pane);
            pack();
        public static void main(String[] args)
            Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
            Security.addProvider(new cryptix.jce.provider.CryptixCrypto());
            System.out.println("Providers -");
            for (Provider provider : java.security.Security.getProviders())
                System.out.println("    " + provider.getName());
                for (Enumeration en = provider.propertyNames(); en.hasMoreElements();)
                    String alg = (String)en.nextElement();
                    if (alg.matches("(?i)cipher.*?pbe.*?aes.*"))
                        //if (alg.matches("(?i)Cipher.*rc2.*"))
                        System.out.println(alg);
            new ListAlgorithms().setVisible(true);
    }

  • KeyPairGenerator not available

    Hi,
    I am new to JCE. I have a public key to decrypt an encrypted file. I am using the following code
    to decrypt the file. I am getting the following exception at runtime.
    java.security.NoSuchAlgorithmException: PGP KeyPairGenerator not available
    I do not know where to specify the "public key" I have got. So that the encrypted file can be decrypted.
    Can someon throw some light one this please?
    Thanks
    Mathew
    KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("PGP");
    keyPairGenerator.initialize(1024);
    KeyPair keyPair = keyPairGenerator.genKeyPair();
    Cipher cipher = Cipher.getInstance("PGP");
    cipher.init(Cipher. DECRYPT_MODE, keyPair.getPublic());
    //encrypted file that needs to be decrypted
    FileInputStream fis1 = new FileInputStream("C:\\cert\\sample.txt");
    InputStreamReader inputStream = new InputStreamReader(fis1);
    messageReader = new BufferedReader(inputStream);
    response = new StringBuffer();
    String line;
    while((line = messageReader.readLine()) != null)
         byte[] raw = decoder.decodeBuffer(line);
         byte[] decryptedBytes = cipher.doFinal(raw);
         String output = new String(decryptedBytes, "UTF8");
         System.out.println("\nstring = " + output + "\n");
    }

    PGP is not available in the SunJCE provider. As far as I am aware, only BouncyCastle provide PGP stuff. The distributiion has several good examples of how to use it.
    I have never used it in anger.

  • How to create "static" key / simple text exchange

    Hi
    I am completely new to JCE and have a relatively simple licencing scenario.
    A program licenced to a client should send information when it's called to a file on a remote-server via ftp. This text-information must be encrypted to that the client is unable to read it.
    On the remote-machine that I host myself the encoded information must be decoded by another Java-program.
    My first question is, how do I generate a "static" key, that I use in both programs?
    Is it really necessary to use Diffie-Hellman Key Exchange to solve this?
    Could you advise me a code example that solves this problem?
    Thanks.
    Marc

    Thanks again for your input.
    You suggest to use RSA. In the solution that I have figured out I use DES and generate a SecretKey. Would using RSA instead of DES bring me some significiant benefit?
    Regards
    Marc
    From the customer's point of view, what you say
    you're sending isn't important - because it's
    encrypted, you might be sending ANYthing!
    Would you be able to identify the hard-coded code(a
    byte-array) from the Java byte-code?Yes. If pressed, and if there was enough at stake, I
    could probably figure out how to beat the licensing
    even if you wrote the whole app in C++ or native
    assembler (although it would be more difficult).
    People have been doing this kind of thing forever -
    bytes aren't nearly as opaque as folk would like to
    believe.
    If you happen to have a better solution for licence
    validation pls let me know.Licensing is hard. No matter what you do, there
    will be a way to get around it. The best you
    can do is make breaking your scheme hard enough that
    the average user would rather pay for your license
    than go through the hassle. How much work is enough
    on your part depends on too many things I don't know
    (e.g., how much are you charging, what class of
    customer are you targetting, what's the risk to the
    customer if they're caught violating your license,
    etc.).
    If your customer is willing to put up code that "calls
    home" every time it's run, which sends an encrypted
    packet each time it does so, and which will (I
    assume?) refuse to work if it doesn't get a proper
    answer from home - then go ahead and use RSA to
    encrypt your data.
    But please don't fool yourself into thinking that you
    can absolutely guarantee that no-one will be able to
    break your license system. Lots of smart people with
    lots of money behind them have been trying for almost
    as long as software has been sold - and to date,
    they've failed. MS spends a huge amount on building
    better license schemes every year, and so far all
    they're really managed to do is irritate their
    legitimate customers...
    Good luck,
    Grant

  • Secret and random key

    Which algorithms use a secret key and a random key?
    Which of these are implemented (or at last con be implemented) in J2SE and J2ME?

    Which algorithms use a secret key and a random key?Secret key - symetric algorithms such as DES, AES and Twofish.
    Random key - asymetric algorithms such as RSA are normally used in conjunction with a symetric encryption algorithm using a random session Secret key.
    Which of these are implemented (or at last con be
    implemented) in J2SE and J2ME?On J2SE run
    import java.security.*;
    import java.util.Enumeration;
    public class ListAlgorithms
        public static void main(String[] args)
            // Add any provider you wish to list
            Security.addProvider(new com.sun.crypto.provider.SunJCE());
            //Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
            //Security.addProvider(new cryptix.jce.provider.CryptixCrypto());
            System.out.println("Providers -");
            Provider[] providers = java.security.Security.getProviders();
            for (int index = 0; index < providers.length; index++)
                System.out.println("    " + providers[index].getName());
                Enumeration en = providers[index].propertyNames();
                while (en.hasMoreElements())
                    String alg = (String)en.nextElement();
                     if (alg.matches("(?i)Cipher\\..*"))
                        System.out.println("        Alg = " + alg);
    }I know nothing about J2ME.

  • AccessControlException while adding new JCE

    Hi folks,
    I get an AccessConrolException while adding a new JCE when the application is run via web start, although all-permissions has been defined.
    JVM is 1.5.0_04-b05 on Windows and Linux
    Do I have to specify something extra, or is it not possible to add a JCE?
    I guess webstart creates the right security policy file, or do I have to provide it?
    Thanks,
    Thomas

    Hi folks,
    I get an AccessConrolException while adding a new JCE when the application is run via web start, although all-permissions has been defined.
    JVM is 1.5.0_04-b05 on Windows and Linux
    Do I have to specify something extra, or is it not possible to add a JCE?
    I guess webstart creates the right security policy file, or do I have to provide it?
    Thanks,
    Thomas

  • I just installed JCE on my new CF10 and now can't login to administrator, what am I doing wrong?

    I have CF 10,284568 installed on SUSe 12.2 with Java 1.7.0_15  64bit.  When I swap out the two JCE files, restart Coldfusion, I can no longer login to the Administrator.  To be more specific, it appears session management isn't working.  If I login using a bad username/password pair I get an error, if I login with the correct pair I get returned to the login screen without any error.  Additionally, none of my datasources work (MySQL ).  If I swap out the original (local policy and  US export policy jars) and restart everything works fine.
    What am I doing wrong?  Do I need to run something in the CF bin or reinstall to get this to work?

    I tried to repro the Issue :
    Here are my findings ,
    Case 1 )
    CF with Java 1.7.0_25
    On top of it Install UnlimitedJCEPolicy JDK7
    Restart Server
    Everything works fine
    Case 2 )
    CF with Java 1.6.0_29
    On top of it Install UnlimitedJCEPolicy 6
    Restart Server
    Everything works fine
    Case 3 )
    CF with Java 1.6.0_29
    On top of it Install UnlimitedJCEPolicy JDK7 ( Basically wrong version of Policy Files )
    Unable to open administrator !! And DB’s won’t work as mentioned above
    Case 4 )
    CF with Java 1.7.0_25
    On top of it Install UnlimitedJCEPolicy 6 ( Basically wrong version of Policy Files )
    Unable to open administrator !! And DB’s won’t work as mentioned above
    Can you please check if you are applying the right version of Policy Files ? Or Am I missing something here ? Can you also try with the latest Java and latest CF Update ?
    Regards ,
    YASHAS RATTEHALLI
    ADOBE CF Engineering Team

  • Internal source cannot clean on a new install will not let me remove from disc even when formatting

    PLEASE HELP
    INSIDE MACHINE KILLING ALL OF 10 YEARS WORK@@@@
    Apr 24 06:10:37 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Apr 24 06:10:50 localhost bootlog[40]: BOOT_TIME: 1398345037 0
    Apr 24 06:10:50 localhost fseventsd[33]: could not open <</.fseventsd/fseventsd-uuid>> (No such file or directory)
    Apr 24 06:10:50 localhost fseventsd[33]: log dir: /.fseventsd getting new uuid: 9E314C08-3647-4A45-ABB0-BF73A979E483
    Apr 24 06:10:52 localhost blued[41]: Apple Bluetooth daemon started
    Apr 24 06:10:52 localhost com.apple.launchd[1] (com.apple.bsd.dirhelper): Throttling respawn: Will start in 7 seconds
    Apr 24 06:10:52 localhost blued[41]: [setSystemPreference] syncs returns false
    Apr 24 06:10:53: --- last message repeated 2 times ---
    Apr 24 06:10:53 localhost com.apple.launchd[1] (com.apple.smb.sharepoints[24]): Exited with exit code: 71
    Apr 24 06:10:54 localhost configd[13]: updateConfiguration(): no preferences.
    Apr 24 06:10:54 localhost configd[13]: BUG in libdispatch: 10A432 - 1656 - 0xa203
    Apr 24 06:10:55 localhost com.apple.launchd[1] (com.apple.bsd.dirhelper): Throttling respawn: Will start in 5 seconds
    Apr 24 06:11:00 localhost mDNSResponder[28]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Apr 24 06:11:04 localhost blued[41]: [_setUserPreference] syncs returns false
    Apr 24 06:11:04 localhost com.apple.usbmuxd[20]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    Apr 24 06:11:04 localhost blued[41]: [_setUserPreference] syncs returns false
    Apr 24 06:11:06 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[29]: Login Window Application Started
    Apr 24 06:11:07 localhost com.apple.kextd[10]: /System/Library/Extensions/IOSerialFamily.kext/Contents/PlugIns/InternalModemSu pport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    Apr 24 06:11:07: --- last message repeated 1 time ---
    Apr 24 06:11:07 localhost configd[13]: network configuration changed.
    Apr 24 06:11:08: --- last message repeated 1 time ---
    Apr 24 06:11:08 localhost com.apple.service_helper[90]: launchctl: Error unloading: com.apple.backupd-auto
    Apr 24 06:11:09 localhost com.apple.service_helper[90]: launchctl: Error unloading: com.apple.backupd-wake
    Apr 24 06:11:09 localhost com.apple.service_helper[90]: launchctl: Error unloading: com.apple.backupd-attach
    Apr 24 06:11:09 localhost mds[27]: (Normal) DiskStore: Creating index for /
    Apr 24 06:11:10 localhost com.apple.fontd[82]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    Apr 24 06:11:19: --- last message repeated 1 time ---
    Apr 24 06:11:19 localhost configd[13]: New network configuration saved
    Apr 24 06:11:20 localhost configd[13]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Apr 24 06:11:20 localhost configd[13]: DHCP en1: INIT transmit failed
    Apr 24 06:11:20 localhost configd[13]: network configuration changed.
    Apr 24 06:11:22 localhost mDNSResponder[28]: User updated Computer Name from “MacBook-000000000000” to “MacBook-00264A159BA6”
    Apr 24 06:11:22 localhost mDNSResponder[28]: User updated Local Hostname from “MacBook-000000000000” to “MacBook-00264A159BA6”
    Apr 24 06:11:22 localhost loginwindow[29]: USER_PROCESS: 29 console
    Apr 24 06:11:26 localhost /System/Library/CoreServices/Setup Assistant.app/Contents/MacOS/Setup Assistant[110]: ava warning: config record  spsCnt = 2, ppsCnt = 2
    Apr 24 06:12:26 localhost com.apple.kextcache[117]: InternalModemSupport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    Apr 24 06:12:36: --- last message repeated 1 time ---
    Apr 24 06:12:36 localhost com.apple.kextcache[117]: Created prelinked kernel /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache_i386.D51389B2.
    Apr 24 06:13:28 localhost com.apple.coreservicesd[60]: ThrottleProcessIO: throttling disk i/o
    Apr 24 06:14:04 localhost Setup Assistant[110]: *** WARNING: Method selectRow:byExtendingSelection: in class NSTableView is deprecated. It will be removed in a future release and should no longer be used.
    Apr 24 06:14:54 localhost kextd[10]: updated kernel boot caches
    Apr 24 06:17:26 localhost mDNSResponder[28]: User updated Computer Name from “MacBook-00264A159BA6” to “oh my’s MacBook”
    Apr 24 06:17:26 oh-mys-MacBook configd[13]: setting hostname to "oh-mys-MacBook.local"
    Apr 24 06:17:27 oh-mys-MacBook mDNSResponder[28]: User updated Local Hostname from “MacBook-00264A159BA6” to “oh-mys-MacBook”
    Apr 24 06:17:28 oh-mys-MacBook com.apple.coreservicesd[60]: ThrottleProcessIO: throttling disk i/o
    Apr 24 06:17:59 oh-mys-MacBook ohmy[156]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    Apr 24 06:17:59 oh-mys-MacBook ohmy[159]: sntp options: a=2 v=1 e=0.100 E=5.000 P=2147483647.000
    Apr 24 06:17:59 oh-mys-MacBook ohmy[159]:     d=15 c=5 x=0 op=1 l=/var/run/sntp.pid f= time.apple.com
    Apr 24 06:17:59 oh-mys-MacBook ohmy[159]: sntp: getaddrinfo(hostname, ntp)  failed with nodename nor servname provided, or not known
    Apr 24 06:49:06 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Apr 24 06:49:11 localhost DirectoryService[14]: Improper shutdown detected
    Apr 24 06:49:15 localhost bootlog[38]: BOOT_TIME: 1398347344 0
    Apr 24 06:49:15 localhost fseventsd[32]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (2180 11 2305)
    Apr 24 06:49:15 localhost fseventsd[32]: log dir: /.fseventsd getting new uuid: 026BE8B3-818E-4CBD-B146-6F4937679938
    Apr 24 06:49:17 localhost blued[39]: Apple Bluetooth daemon started
    Apr 24 06:49:19 localhost mDNSResponder[27]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Apr 24 06:49:21 localhost configd[13]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Apr 24 06:49:21 localhost configd[13]: DHCP en1: INIT transmit failed
    Apr 24 06:49:21 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[28]: Login Window Application Started
    Apr 24 06:49:21 localhost configd[13]: network configuration changed.
    Apr 24 06:49:21 oh-mys-MacBook configd[13]: setting hostname to "oh-mys-MacBook.local"
    Apr 24 06:49:23 oh-mys-MacBook com.apple.usbmuxd[20]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    Apr 24 06:49:32 oh-mys-MacBook loginwindow[28]: Login Window Started Security Agent
    Apr 24 06:49:33 oh-mys-MacBook loginwindow[28]: Login Window - Returned from Security Agent
    Apr 24 06:49:33 oh-mys-MacBook loginwindow[28]: USER_PROCESS: 28 console
    Apr 24 06:49:33 oh-mys-MacBook com.apple.launchd.peruser.501[79] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Apr 24 06:49:34 oh-mys-MacBook migCacheCleanup[86]: Flushing Cache Locations...
    Apr 24 06:49:34 oh-mys-MacBook com.apple.loginwindow[28]: 2014-04-24 06:49:34.069 migCacheCleanup[86:903] Flushing Cache Locations...
    Apr 24 06:49:36 oh-mys-MacBook [0x0-0x6006].SoftwareUpdateCheck[94]: SoftwareUpdateCheck: network unreachable
    Apr 24 06:49:36 oh-mys-MacBook com.apple.launchd[1] (com.apple.suhelperd[99]): Exited with exit code: 2
    Apr 24 06:49:36 oh-mys-MacBook com.apple.launchd.peruser.501[79] ([0x0-0x6006].SoftwareUpdateCheck[94]): Exited with exit code: 3
    Apr 24 06:49:36 oh-mys-MacBook KernelEventAgent[29]: tid 00000000 received event(s) VQ_LOWDISK (4)
    Apr 24 06:50:32 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Apr 24 06:50:37 localhost DirectoryService[15]: Improper shutdown detected
    Apr 24 06:50:40 localhost bootlog[37]: BOOT_TIME: 1398347416 0
    Apr 24 06:50:43 localhost blued[38]: Apple Bluetooth daemon started
    Apr 24 06:50:44 localhost mDNSResponder[26]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Apr 24 06:50:46 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[27]: Login Window Application Started
    Apr 24 06:50:46 localhost configd[13]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Apr 24 06:50:46 localhost configd[13]: DHCP en1: INIT transmit failed
    Apr 24 06:50:47 localhost configd[13]: network configuration changed.
    Apr 24 06:50:47 oh-mys-MacBook configd[13]: setting hostname to "oh-mys-MacBook.local"
    Apr 24 06:50:49 oh-mys-MacBook com.apple.usbmuxd[20]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    Apr 24 06:50:57 oh-mys-MacBook loginwindow[27]: Login Window Started Security Agent
    Apr 24 06:50:57 oh-mys-MacBook loginwindow[27]: Login Window - Returned from Security Agent
    Apr 24 06:50:57 oh-mys-MacBook loginwindow[27]: USER_PROCESS: 27 console
    Apr 24 06:50:57 oh-mys-MacBook com.apple.launchd.peruser.501[75] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Apr 24 06:51:00 oh-mys-MacBook KernelEventAgent[28]: tid 00000000 received event(s) VQ_LOWDISK (4)
    Apr 24 06:51:02 oh-mys-MacBook com.apple.fontd[88]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    Apr 24 06:51:05 oh-mys-MacBook com.apple.launchd.peruser.501[75] (com.apple.Kerberos.renew.plist[103]): Exited with exit code: 1
    Apr 24 06:51:08 oh-mys-MacBook com.apple.fontd[88]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    Apr 24 06:51:14 oh-mys-MacBook iCalExternalSync[114]: Client state being vacuumed
    Apr 24 06:51:14 oh-mys-MacBook DockSyncClient[117]: Client state being vacuumed
    Apr 24 06:51:18 oh-mys-MacBook root[120]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    Apr 24 06:51:18 oh-mys-MacBook root[123]: sntp options: a=2 v=1 e=0.100 E=5.000 P=2147483647.000
    Apr 24 06:51:18 oh-mys-MacBook root[123]:     d=15 c=5 x=0 op=1 l=/var/run/sntp.pid f= time.apple.com
    Apr 24 06:51:18 oh-mys-MacBook root[123]: sntp: getaddrinfo(hostname, ntp)  failed with nodename nor servname provided, or not known
    Apr 24 06:53:14 oh-mys-MacBook SyncServer[115]: Datamanager Vacuuming all the truth segments.
    Apr 24 07:00:57 oh-mys-MacBook System Preferences[132]: Could not connect the action resetLocationWarningsSheetOk: to target of class AppleSecurity_Pref
    Apr 24 07:00:57 oh-mys-MacBook System Preferences[132]: Could not connect the action resetLocationWarningsSheetCancel: to target of class AppleSecurity_Pref
    Apr 24 07:01:04 oh-mys-MacBook /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer[109]: No valid tickets, timing out
    Apr 24 07:01:14 oh-mys-MacBook SecurityAgent[185]: system.preferences.security|2014-04-24 07:01:14 -0700
    Apr 24 07:08:29 oh-mys-MacBook WindowServer[55]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:08:29 oh-mys-MacBook com.apple.WindowServer[55]: Thu Apr 24 07:08:29 oh-mys-MacBook.local WindowServer[55] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:09:10 oh-mys-MacBook [0x0-0xd00d].com.apple.systempreferences[132]: objc[132]: Class ANPImageButtonCell is implemented in both /System/Library/PreferencePanes/Bluetooth.prefPane/Contents/MacOS/Bluetooth and /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network. One of the two will be used. Which one is undefined.
    Apr 24 07:09:10 oh-mys-MacBook [0x0-0xd00d].com.apple.systempreferences[132]: objc[132]: Class ANPImagePopUpButtonCell is implemented in both /System/Library/PreferencePanes/Bluetooth.prefPane/Contents/MacOS/Bluetooth and /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network. One of the two will be used. Which one is undefined.
    Apr 24 07:09:10 oh-mys-MacBook [0x0-0xd00d].com.apple.systempreferences[132]: objc[132]: Class ANPButtonBarView is implemented in both /System/Library/PreferencePanes/Bluetooth.prefPane/Contents/MacOS/Bluetooth and /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network. One of the two will be used. Which one is undefined.
    Apr 24 07:11:31 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:11:31 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceCopyCurrentSSID called with NULL interface
    Apr 24 07:11:31 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:13:10: --- last message repeated 2 times ---
    Apr 24 07:13:10 oh-mys-MacBook ntpd_initres[124]: ntpd exiting on signal 15
    Apr 24 07:13:10 oh-mys-MacBook _spotlight[269]: sntp options: a=2 v=1 e=0.100 E=5.000 P=2147483647.000
    Apr 24 07:13:10 oh-mys-MacBook _spotlight[269]:     d=15 c=5 x=0 op=1 l=/var/run/sntp.pid f= time.apple.com
    Apr 24 07:13:10 oh-mys-MacBook _spotlight[269]: sntp: getaddrinfo(hostname, ntp)  failed with nodename nor servname provided, or not known
    Apr 24 07:15:06 oh-mys-MacBook System Preferences[132]: .scriptSuite warning for result type of command 'timedLoad' in suite 'SystemPreferences': the type NSNumber ('long') doesn't match the result Apple event code ('doub').
    Apr 24 07:15:07 oh-mys-MacBook DockSyncClient[286]: Client state being vacuumed
    Apr 24 07:16:16 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:16:16: --- last message repeated 1 time ---
    Apr 24 07:16:16 oh-mys-MacBook SCHelper[251]: no command
    Apr 24 07:16:37: --- last message repeated 1 time ---
    Apr 24 07:16:37 oh-mys-MacBook System Preferences[291]: .scriptSuite warning for result type of command 'timedLoad' in suite 'SystemPreferences': the type NSNumber ('long') doesn't match the result Apple event code ('doub').
    Apr 24 07:18:17 oh-mys-MacBook SecurityAgent[315]: system.preferences|2014-04-24 07:18:17 -0700
    Apr 24 07:18:29 oh-mys-MacBook System Preferences[291]: Could not connect the action resetLocationWarningsSheetOk: to target of class AppleSecurity_Pref
    Apr 24 07:18:29 oh-mys-MacBook System Preferences[291]: Could not connect the action resetLocationWarningsSheetCancel: to target of class AppleSecurity_Pref
    Apr 24 07:18:30 oh-mys-MacBook Apple80211 framework[291]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:18:39 oh-mys-MacBook SecurityAgent[315]: system.preferences.security|2014-04-24 07:18:39 -0700
    Apr 24 07:19:10 oh-mys-MacBook com.apple.launchd.peruser.501[75] ([0x0-0x17017].com.apple.Console[235]): Exited: Killed
    Apr 24 07:19:10 oh-mys-MacBook SecurityAgent[315]: NSDocumentController's invocation of -[NSFileManager URLForDirectory:inDomain:appropriateForURL:create:error:] returned nil for NSAutosavedInformationDirectory. Here's the error:\nError Domain=NSCocoaErrorDomain Code=513 UserInfo=0x100154000 "You don’t have permission to save the file “Library” in the folder “empty”." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=13 "The operation couldn’t be completed. Permission denied")
    Apr 24 07:19:10 oh-mys-MacBook loginwindow[27]: DEAD_PROCESS: 27 console
    Apr 24 07:19:10 oh-mys-MacBook loginwindow[27]: Suspending per user launchd for this logout
    Apr 24 07:19:11 oh-mys-MacBook hdiejectd[327]: running
    Apr 24 07:19:21 oh-mys-MacBook hdiejectd[327]: quitCheck: calling exit(0)
    Apr 24 07:19:24 oh-mys-MacBook hdiejectd[337]: running
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: CGSShutdownServerConnections: Detaching application from window server
    Apr 24 07:19:26 oh-mys-MacBook com.apple.loginwindow[27]: Thu Apr 24 07:19:26 oh-mys-MacBook.local loginwindow[27] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Apr 24 07:19:26 oh-mys-MacBook com.apple.loginwindow[27]: Thu Apr 24 07:19:26 oh-mys-MacBook.local loginwindow[27] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:26 oh-mys-MacBook com.apple.loginwindow[27]: Thu Apr 24 07:19:26 oh-mys-MacBook.local loginwindow[27] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: ERROR | -[LoginApp suspendPerUserLaunchd:] |     Could not resume, 501's launchd!
    Apr 24 07:19:26 oh-mys-MacBook com.apple.launchd[1] (com.apple.loginwindow[27]): Job exited before resuming per-user launchd for UID 501. Will forcibly resume.
    Apr 24 07:19:26 oh-mys-MacBook /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[346]: Login Window Application Started
    Apr 24 07:19:27 oh-mys-MacBook loginwindow[346]: Login Window Started Security Agent
    Apr 24 07:19:27 oh-mys-MacBook WindowServer[347]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:27 oh-mys-MacBook com.apple.WindowServer[347]: Thu Apr 24 07:19:27 oh-mys-MacBook.local WindowServer[347] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:36 oh-mys-MacBook hdiejectd[337]: quitCheck: calling exit(0)
    Apr 24 07:19:48 oh-mys-MacBook SecurityAgent[352]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Apr 24 07:19:49 oh-mys-MacBook hdiejectd[367]: running
    Apr 24 07:19:49 oh-mys-MacBook fseventsd[31]: could not open <</Users/ohmy/.fseventsd/fseventsd-uuid>> (No such file or directory)
    Apr 24 07:19:49 oh-mys-MacBook fseventsd[31]: log dir: /Users/ohmy/.fseventsd getting new uuid: B97E12A0-A675-42D9-9642-01170B5D9905
    Apr 24 07:19:49 oh-mys-MacBook mds[25]: (Normal) DiskStore: Creating index for /Users/ohmy
    Apr 24 07:19:51 oh-mys-MacBook loginwindow[346]: Login Window - Returned from Security Agent
    Apr 24 07:19:51 oh-mys-MacBook loginwindow[346]: USER_PROCESS: 346 console
    Apr 24 07:19:51 oh-mys-MacBook com.apple.launchd.peruser.501[374] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Apr 24 07:19:54 oh-mys-MacBook com.apple.launchd.peruser.501[374] (com.apple.Kerberos.renew.plist[393]): Exited with exit code: 1
    Apr 24 07:19:56 oh-mys-MacBook KernelEventAgent[28]: tid 00000000 received event(s) VQ_LOWDISK (4)
    Apr 24 07:21:56 oh-mys-MacBook com.apple.backupd[410]: Starting standard backup
    Apr 24 07:22:01 oh-mys-MacBook com.apple.backupd[410]: Backup failed with error: 17
    Apr 24 07:22:18 oh-mys-MacBook AirPort Utility[444]: Could not connect the action importOK: to target of class AAUDocument
    Apr 24 07:22:18 oh-mys-MacBook AirPort Utility[444]: Could not connect the action importCancel: to target of class AAUDocument
    Apr 24 07:27:42 oh-mys-MacBook SecurityAgent[470]: system.preferences|2014-04-24 07:27:42 -0700
    Apr 24 07:29:53 oh-mys-MacBook /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer[399]: No valid tickets, timing out
    Apr 24 07:38:42 oh-mys-MacBook Apple80211 framework[465]: SecKeychainSearchCopyNext() returned error: -25300
    Apr 24 07:38:42 oh-mys-MacBook Apple80211 framework[465]: _ACNetworkCopyKeychainItem() expected password for "HOME-48E2" not found: -25300 (The specified item could not be found in the keychain.)
    Apr 24 07:39:24 oh-mys-MacBook configd[13]: network configuration changed.
    Apr 24 07:43:12 oh-mys-MacBook configd[13]: network configuration changed.
    May  2 16:13:11 oh-mys-MacBook ntpd[265]: time reset +721725.592455 s
    May  2 16:13:21 oh-mys-MacBook SoftwareUpdateCheck[635]: Checking for updates
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:13:56 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: scan found 5 products:\n041-0259\n041-4627\n091-9423\nzzz041-5105\nzzzz041-6245
    May  2 16:13:56 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "iTunes"
    May  2 16:14:32 oh-mys-MacBook SoftwareUpdateCheck[635]: Auto-download of "iTunes" SUCCESSFUL.
    May  2 16:14:32 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: downloading "iTunes, 10.6.3"
    May  2 16:14:32 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "iLife Support"
    May  2 16:14:33 oh-mys-MacBook SoftwareUpdateCheck[635]: Auto-download of "iLife Support" SUCCESSFUL.
    May  2 16:14:33 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: downloading "iLife Support, 9.0.4"
    May  2 16:14:33 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "Remote Desktop Client Update"
    May  2 16:14:35 oh-mys-MacBook SoftwareUpdateCheck[635]: Auto-download of "Remote Desktop Client Update" SUCCESSFUL.
    May  2 16:14:35 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: downloading "Remote Desktop Client Update, 3.5.4"
    May  2 16:14:35 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "Mac OS X Update Combined"
    May  2 16:15:46 oh-mys-MacBook System Preferences[465]: Could not connect the action resetLocationWarningsSheetOk: to target of class AppleSecurity_Pref
    May  2 16:15:46 oh-mys-MacBook System Preferences[465]: Could not connect the action resetLocationWarningsSheetCancel: to target of class AppleSecurity_Pref
    May  2 16:15:55 oh-mys-MacBook SCHelper[475]: no command
    May  2 16:16:51: --- last message repeated 4 times ---
    May  2 16:17:58 oh-mys-MacBook SoftwareUpdateCheck[635]: Background check cancelled by user-initiated update.
    May  2 16:17:58 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x3f03f].SoftwareUpdateCheck[635]): Exited with exit code: 102
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:18:35 oh-mys-MacBook Software Update[660]: SWU: scan found 5 products:\n041-0259\n041-4627\n091-9423\nzzz041-5105\nzzzz041-6245
    May  2 16:18:36 oh-mys-MacBook PubSubAgent[664]: SQL Error: SQLITE_CANTOPEN[14.0]: Database file not found
    May  2 16:19:01 oh-mys-MacBook SecurityAgent[666]: system.privilege.admin|2014-05-02 16:19:01 -0700
    May  2 16:19:03 oh-mys-MacBook installd[667]: Starting
    May  2 16:19:03 oh-mys-MacBook installd[667]: uid=0, euid=0
    May  2 16:19:06 oh-mys-MacBook Software Update[660]: SWU: downloading "AirPort Utility, 5.6.1"
    May  2 16:19:39 oh-mys-MacBook Software Update[660]: SWU: downloading "Mac OS X Update Combined, 10.6.8 v1.1"
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x2f02f].com.apple.ActivityMonitor[424]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x2c02c].com.apple.Console[405]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x35035].com.apple.Preview[453]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x42042].com.apple.SoftwareUpdate[660]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook suhelperd[636]: Releasing session lock <SUSessionLock uid=501, pid=660, priority=0 from dead client
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd[1] (com.apple.suhelperd[636]): Exited with exit code: 2
    May  2 16:19:50 oh-mys-MacBook SecurityAgent[666]: NSDocumentController's invocation of -[NSFileManager URLForDirectory:inDomain:appropriateForURL:create:error:] returned nil for NSAutosavedInformationDirectory. Here's the error:\nError Domain=NSCocoaErrorDomain Code=513 UserInfo=0x100105080 "You don’t have permission to save the file “Library” in the folder “empty”." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=13 "The operation couldn’t be completed. Permission denied")
    May  2 16:19:51 oh-mys-MacBook loginwindow[346]: DEAD_PROCESS: 346 console
    May  2 16:19:53 oh-mys-MacBook installd[667]: Exiting.
    May  2 16:19:57 oh-mys-MacBook com.apple.fontd[677]: Iterator create failed for file
    May  2 16:19:57 oh-mys-MacBook com.apple.fontd[677]: FODBError: FODBReviveFileTokens returned Zero.
    May  2 16:20:02 oh-mys-MacBook com.apple.fontd[677]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    May  2 16:20:04: --- last message repeated 1 time ---
    May  2 16:20:04 oh-mys-MacBook diskimages-helper[680]: Reclaimed 4.5 MB out of 297.0 GB possible.
    May  2 16:20:06 oh-mys-MacBook /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[682]: Login Window Application Started
    May  2 16:20:06 oh-mys-MacBook hdiejectd[367]: quitCheck: calling exit(0)
    May  2 16:20:07 oh-mys-MacBook loginwindow[682]: USER_PROCESS: 682 console
    May  2 16:20:08 oh-mys-MacBook com.apple.WindowServer[683]: Fri May  2 16:20:08 oh-mys-MacBook.local WindowServer[683] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:20:08 oh-mys-MacBook WindowServer[683]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:20:08 oh-mys-MacBook configd[13]: network configuration changed.
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Looking for products to install
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Performing preflight
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Preparing session
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Starting session
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:20:10: --- last message repeated 1 time ---
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    May  2 16:20:10: --- last message repeated 1 time ---
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:20:11: --- last message repeated 1 time ---
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:20:35 oh-mys-MacBook com.apple.usbmuxd[20]: stopping.
    May  2 16:20:36 oh-mys-MacBook com.apple.usbmuxd[699]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    May  2 16:20:48 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.AirPortUtility"
    May  2 16:20:49 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:20:50 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.RemoteDesktopClient"
    May  2 16:20:52 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:20:57 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:21:04 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:21:15 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:21:25 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:21:39 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:21:44 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:21:50 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:21:53 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:21:56 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:21:57 oh-mys-MacBook ntpd[265]: sendto(17.151.16.14) (fd=24): No route to host
    May  2 16:22:05 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:22:29 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:22:46 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:23:28 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:23:29 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:23:33 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:23:34 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:23:35 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:23:36 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.CoreFP"
    May  2 16:23:38 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.CoreFP1"
    May  2 16:23:51 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iTunesX"
    May  2 16:23:52 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iTunesAccess"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iTunesLibrary"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.CoreFP"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.CoreFP1"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iTunesX"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iTunesAccess"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iTunesLibrary"
    May  2 16:23:58 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:23:58 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:23:58 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook sudo[797]: root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.S3zXbR/Scripts/com.apple.pkg.AppleMobileDevic eSupport.9yc6lT ; USER=root ; COMMAND=/bin/launchctl unload //System/Library/LaunchDaemons/com.apple.usbmuxd.plist
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.CoreFP"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.CoreFP1"
    May  2 16:24:05 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iTunesX"
    May  2 16:24:05 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iTunesAccess"
    May  2 16:24:05 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iTunesLibrary"
    May  2 16:26:45 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:26:45 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:26:45 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:27:00 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:27:40 oh-mys-MacBook com.apple.kextd[10]: Failed to load /System/Library/Extensions/AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:27:40 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:29:03 oh-mys-MacBook Software Update[689]: REQ: moving files into place with shove
    May  2 16:29:08 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:29:08 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:29:08 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:29:17 oh-mys-MacBook com.apple.kextcache[882]: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    May  2 16:29:19 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:29:20 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:29:20 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:29:20 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:29:30 oh-mys-MacBook com.apple.kextcache[881]: Source directory has changed since starting; not saving cache file /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache_i386.D51389B2.
    May  2 16:29:33 oh-mys-MacBook com.apple.kextcache[882]: Source directory has changed since starting; not saving cache file //System/Library/Caches/com.apple.kext.caches/Startup/Extensions.mkext.
    May  2 16:29:34 oh-mys-MacBook com.apple.kextcache[880]: Child process /usr/sbin/kextcache[882] exited with status 4.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: async child pid 881 exited with status 4
    May  2 16:29:45 oh-mys-MacBook com.apple.kextcache[884]: / locked; waiting for lock.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: Failed to load /System/Library/Extensions/AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: kextcache error while updating / (error count: 1)
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: async child pid 880 exited with status 70
    May  2 16:29:51 oh-mys-MacBook kextd[10]: updated kernel boot caches
    May  2 16:29:51 oh-mys-MacBook com.apple.kextd[10]: kextcache succeeded with '/'.
    May  2 16:29:51 oh-mys-MacBook com.apple.kextcache[884]: Lock acquired; proceeding.
    May  2 16:29:51 oh-mys-MacBook com.apple.kextcache[884]: /: no supported helper partitions to update.
    May  2 16:29:51 oh-mys-MacBook kextd[10]: updated kernel boot caches
    May  2 16:29:55 oh-mys-MacBook defaults[918]: \nThe domain/default pair of (/Users//Library/Preferences/.GlobalPreferences, AppleLocale) does not exist
    May  2 16:29:55 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:29:56 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:30:05 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:30:18 oh-mys-MacBook MRTAgent[1357]: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    May  2 16:30:18 oh-mys-MacBook com.apple.mrt.uiagent[1357]: Fri May  2 16:30:18 oh-mys-MacBook.local MRTAgent[1357] <Warning>: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    May  2 16:30:18 oh-mys-MacBook MRTAgent[1357]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:30:18 oh-mys-MacBook com.apple.mrt.uiagent[1357]: Fri May  2 16:30:18 oh-mys-MacBook.local MRTAgent[1357] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:30:18 oh-mys-MacBook /System/Library/CoreServices/MRTAgent.app/Contents/MacOS/MRTAgent[1357]: _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    May  2 16:30:18 oh-mys-MacBook com.apple.mrt.uiagent[1357]: _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:30:26 oh-mys-MacBook com.apple.kextd[10]: Failed to load AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:30:26 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:31:51 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:31:51 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:32:02 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:32:17 oh-mys-MacBook com.apple.kextd[10]: Failed to load AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:32:17 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:32:20 oh-mys-MacBook sudo[1434]: root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.S3zXbR/Scripts/com.apple.pkg.AppleMobileDevic eSupport.9yc6lT ; USER=root ; COMMAND=/bin/launchctl load //System/Library/LaunchDaemons/com.apple.usbmuxd.plist
    May  2 16:32:21 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:32:21 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.CoreFP"
    May  2 16:32:21 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.CoreFP1"
    May  2 16:32:21 oh-mys-MacBook com.apple.usbmuxd[1435]: usbmuxd-268.5 on Apr  5 2012 at 15:33:48, running 64 bit
    May  2 16:32:22 oh-mys-MacBook com.apple.kextcache[1428]: / locked; waiting for lock.
    May  2 16:32:27 oh-mys-MacBook com.apple.kextcache[1416]: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iTunesX"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iTunesAccess"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iTunesLibrary"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.a

    and this keeps happening
    Repairing permissions for “Untitled 1”
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle", should be drwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b".
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib".
    ACL found but not expected on "private/var/root/Library".
    Repaired "private/var/root/Library".
    ACL found but not expected on "private/var/root/Library/Preferences".
    Repaired "private/var/root/Library/Preferences".
    Permissions repair complete
    Verifying volume “Untitled 1”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Stopped by user
    Checking extents overflow file.
    Checking catalog file.
    Repairing permissions for “Untitled 1”
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle", should be drwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b".
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib".
    ACL found but not expected on "private/var/root/Library".
    Repaired "private/var/root/Library".
    ACL found but not expected on "private/var/root/Library/Preferences".
    Repaired "private/var/root/Library/Preferences".
    Permissions repair complete
    Repairing permissions for “Untitled 1”
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/V

  • Problems creating a new project

    I just installed Creator 2.1 on a Fedora Core 4 workstation. It installed with no problems, but when I go to create a new project the wizard hangs after pressing finish. The only thing that is created is WebApplication1/nbproject/project.xml. The following is what was placed in the log.
    Log Session: Thursday, May 4, 2006 2:58:18 PM UTC
    System Info: Product Version = Java Studio Creator 2 Update 1 (Build 060417)
    Operating System = Linux version 2.6.16-1.2096_FC4 running on i386
    Java; VM; Vendor = 1.5.0_06; Java HotSpot(TM) Client VM 1.5.0_06-b05; Sun Microsystems Inc.
    Java Home = /opt/sun/Creator2_1/java/jre
    System Locale; Encod. = en_US (rave); UTF-8
    Home Dir; Current Dir = /home/raykl; /home/raykl
    IDE Install; User Dir = /opt/sun/Creator2_1/platform5; /home/raykl/.Creator/2_1
    CLASSPATH = /opt/sun/Creator2_1/platform5/lib/boot.jar:/opt/sun/Creator2_1/platform5/lib/locale/boot_es.jar:/opt/sun/Creator2_1/platform5/lib/locale/boot_fr.jar:/opt/sun/Creator2_1/platform5/lib/locale/boot_ja.jar:/opt/sun/Creator2_1/platform5/lib/locale/boot_ko.jar:/opt/sun/Creator2_1/platform5/lib/locale/boot_zh_CN.jar:/opt/sun/Creator2_1/java/lib/dt.jar:/opt/sun/Creator2_1/java/lib/tools.jar
    Boot & ext classpath = /opt/sun/Creator2_1/patches/6311051.jar:/opt/sun/Creator2_1/java/jre/lib/rt.jar:/opt/sun/Creator2_1/java/jre/lib/i18n.jar:/opt/sun/Creator2_1/java/jre/lib/sunrsasign.jar:/opt/sun/Creator2_1/java/jre/lib/jsse.jar:/opt/sun/Creator2_1/java/jre/lib/jce.jar:/opt/sun/Creator2_1/java/jre/lib/charsets.jar:/opt/sun/Creator2_1/java/jre/classes:/opt/sun/Creator2_1/java/jre/lib/ext/localedata.jar:/opt/sun/Creator2_1/java/jre/lib/ext/sunjce_provider.jar:/opt/sun/Creator2_1/java/jre/lib/ext/dnsns.jar:/opt/sun/Creator2_1/java/jre/lib/ext/sunpkcs11.jar
    Dynamic classpath = /opt/sun/Creator2_1/platform5/core/core.jar:/opt/sun/Creator2_1/platform5/core/openide.jar:/opt/sun/Creator2_1/platform5/core/org-netbeans-swing-plaf.jar:/opt/sun/Creator2_1/platform5/core/openide-loaders.jar:/opt/sun/Creator2_1/platform5/core/updater.jar:/opt/sun/Creator2_1/platform5/core/locale/updater_rave.jar:/opt/sun/Creator2_1/platform5/core/locale/org-netbeans-swing-plaf_es.jar:/opt/sun/Creator2_1/platform5/core/locale/openide-loaders_es.jar:/opt/sun/Creator2_1/platform5/core/locale/updater_zh_CN.jar:/opt/sun/Creator2_1/platform5/core/locale/updater_es.jar:/opt/sun/Creator2_1/platform5/core/locale/core_fr.jar:/opt/sun/Creator2_1/platform5/core/locale/org-netbeans-swing-plaf_zh_CN.jar:/opt/sun/Creator2_1/platform5/core/locale/updater_ko.jar:/opt/sun/Creator2_1/platform5/core/locale/openide_fr.jar:/opt/sun/Creator2_1/platform5/core/locale/org-netbeans-swing-plaf_ja.jar:/opt/sun/Creator2_1/platform5/core/locale/core_zh_CN.jar:/opt/sun/Creator2_1/platform5/core/locale/org-netbeans-swing-plaf_fr.jar:/opt/sun/Creator2_1/platform5/core/locale/updater_rave_ko.jar:/opt/sun/Creator2_1/platform5/core/locale/core_es.jar:/opt/sun/Creator2_1/platform5/core/locale/openide_ja.jar:/opt/sun/Creator2_1/platform5/core/locale/openide_ko.jar:/opt/sun/Creator2_1/platform5/core/locale/openide-loaders_zh_CN.jar:/opt/sun/Creator2_1/platform5/core/locale/org-netbeans-swing-plaf_ko.jar:/opt/sun/Creator2_1/platform5/core/locale/openide-loaders_ja.jar:/opt/sun/Creator2_1/platform5/core/locale/updater_rave_fr.jar:/opt/sun/Creator2_1/platform5/core/locale/updater_rave_es.jar:/opt/sun/Creator2_1/platform5/core/locale/updater_rave_ja.jar:/opt/sun/Creator2_1/platform5/core/locale/openide_es.jar:/opt/sun/Creator2_1/platform5/core/locale/openide_zh_CN.jar:/opt/sun/Creator2_1/platform5/core/locale/updater_ja.jar:/opt/sun/Creator2_1/platform5/core/locale/core_ko.jar:/opt/sun/Creator2_1/platform5/core/locale/openide-loaders_fr.jar:/opt/sun/Creator2_1/platform5/core/locale/updater_fr.jar:/opt/sun/Creator2_1/platform5/core/locale/openide-loaders_ko.jar:/opt/sun/Creator2_1/platform5/core/locale/core_ja.jar:/opt/sun/Creator2_1/platform5/core/locale/updater_rave_zh_CN.jar:/opt/sun/Creator2_1/rave2.0/core/smresource.jar:/opt/sun/Creator2_1/rave2.0/core/rowset.jar:/opt/sun/Creator2_1/rave2.0/core/smdb2.jar:/opt/sun/Creator2_1/rave2.0/core/derbyclient.jar:/opt/sun/Creator2_1/rave2.0/core/naming.jar:/opt/sun/Creator2_1/rave2.0/core/smoracle.jar:/opt/sun/Creator2_1/rave2.0/core/com-sun-rave-extension-ide-launcher-upgrade.jar:/opt/sun/Creator2_1/rave2.0/core/smspy.jar:/opt/sun/Creator2_1/rave2.0/core/sqlx.jar:/opt/sun/Creator2_1/rave2.0/core/jgraph.jar:/opt/sun/Creator2_1/rave2.0/core/sminformix.jar:/opt/sun/Creator2_1/rave2.0/core/smbase.jar:/opt/sun/Creator2_1/rave2.0/core/smsybase.jar:/opt/sun/Creator2_1/rave2.0/core/smsqlserver.jar:/opt/sun/Creator2_1/rave2.0/core/sql.jar:/opt/sun/Creator2_1/rave2.0/core/smutil.jar:/opt/sun/Creator2_1/rave2.0/core/locale/naming_zh_CN.jar:/opt/sun/Creator2_1/rave2.0/core/locale/naming_es.jar:/opt/sun/Creator2_1/rave2.0/core/locale/com-sun-rave-extension-ide-launcher-upgrade_fr.jar:/opt/sun/Creator2_1/rave2.0/core/locale/openide_rave_fr.jar:/opt/sun/Creator2_1/rave2.0/core/locale/core_rave_es.jar:/opt/sun/Creator2_1/rave2.0/core/locale/core_rave.jar:/opt/sun/Creator2_1/rave2.0/core/locale/openide_rave_es.jar:/opt/sun/Creator2_1/rave2.0/core/locale/sqlx_zh_CN.jar:/opt/sun/Creator2_1/rave2.0/core/locale/core_rave_zh_CN.jar:/opt/sun/Creator2_1/rave2.0/core/locale/openide_rave_zh_CN.jar:/opt/sun/Creator2_1/rave2.0/core/locale/com-sun-rave-extension-ide-launcher-upgrade_ja.jar:/opt/sun/Creator2_1/rave2.0/core/locale/sql_fr.jar:/opt/sun/Creator2_1/rave2.0/core/locale/naming_ja.jar:/opt/sun/Creator2_1/rave2.0/core/locale/sqlx_ja.jar:/opt/sun/Creator2_1/rave2.0/core/locale/sqlx_fr.jar:/opt/sun/Creator2_1/rave2.0/core/locale/core_rave_fr.jar:/opt/sun/Creator2_1/rave2.0/core/locale/openide_rave.jar:/opt/sun/Creator2_1/rave2.0/core/locale/sqlx_ko.jar:/opt/sun/Creator2_1/rave2.0/core/locale/openide_rave_ko.jar:/opt/sun/Creator2_1/rave2.0/core/locale/naming_ko.jar:/opt/sun/Creator2_1/rave2.0/core/locale/openide-loaders_rave.jar:/opt/sun/Creator2_1/rave2.0/core/locale/sqlx_es.jar:/opt/sun/Creator2_1/rave2.0/core/locale/openide_rave_ja.jar:/opt/sun/Creator2_1/rave2.0/core/locale/sql_ko.jar:/opt/sun/Creator2_1/rave2.0/core/locale/com-sun-rave-extension-ide-launcher-upgrade_ko.jar:/opt/sun/Creator2_1/rave2.0/core/locale/com-sun-rave-extension-ide-launcher-upgrade_zh_CN.jar:/opt/sun/Creator2_1/rave2.0/core/locale/naming_fr.jar:/opt/sun/Creator2_1/rave2.0/core/locale/core_rave_ja.jar:/opt/sun/Creator2_1/rave2.0/core/locale/sql_zh_CN.jar:/opt/sun/Creator2_1/rave2.0/core/locale/sql_es.jar:/opt/sun/Creator2_1/rave2.0/core/locale/com-sun-rave-extension-ide-launcher-upgrade_es.jar:/opt/sun/Creator2_1/rave2.0/core/locale/core_rave_ko.jar:/opt/sun/Creator2_1/rave2.0/core/locale/sql_ja.jar:/opt/sun/Creator2_1/nb4.1/core/org-netbeans-upgrader.jar:/opt/sun/Creator2_1/nb4.1/core/locale/org-netbeans-upgrader_ko.jar:/opt/sun/Creator2_1/nb4.1/core/locale/org-netbeans-upgrader_ja.jar:/opt/sun/Creator2_1/nb4.1/core/locale/org-netbeans-upgrader_es.jar:/opt/sun/Creator2_1/nb4.1/core/locale/org-netbeans-upgrader_zh_CN.jar:/opt/sun/Creator2_1/nb4.1/core/locale/org-netbeans-upgrader_fr.jar:/opt/sun/Creator2_1/ide5/core/org-netbeans-modules-utilities-cli.jar
    [org.netbeans.core.modules #4] Warning: module com.sun.rave.libs.jsf does not declare OpenIDE-Module-Public-Packages in its manifest, so all packages are considered public by default: http://www.netbeans.org/download/dev/javadoc/OpenAPIs/org/openide/doc-files/upgrade.html#3.4-public-packages
    Error getting db Port from file: /opt/sun/Creator2_1/rave2.0/config/com-sun-rave-install.properties (Permission denied)
    java.io.FileNotFoundException: /opt/sun/Creator2_1/rave2.0/config/com-sun-rave-install.properties (Permission denied)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at com.sun.rave.dataconnectivity.utils.DbPortUtilities.getPropFromFile(DbPortUtilities.java:43)
    at com.sun.rave.dataconnectivity.DataconnectivityModuleInstaller.setBundledDBPort(DataconnectivityModuleInstaller.java:194)
    at com.sun.rave.dataconnectivity.DataconnectivityModuleInstaller.restored(DataconnectivityModuleInstaller.java:61)
    at org.netbeans.core.modules.NbInstaller.loadCode(NbInstaller.java:322)
    at org.netbeans.core.modules.NbInstaller.load(NbInstaller.java:240)
    at org.netbeans.core.modules.ModuleManager.enable(ModuleManager.java:869)
    at org.netbeans.core.modules.ModuleList.installNew(ModuleList.java:382)
    at org.netbeans.core.modules.ModuleList.trigger(ModuleList.java:316)
    at org.netbeans.core.modules.ModuleSystem.restore(ModuleSystem.java:253)
    at org.netbeans.core.NonGui.run(NonGui.java:355)
    at org.netbeans.core.Main.run(Main.java:185)
    at org.netbeans.core.NbTopManager.getNbTopManager(NbTopManager.java:241)
    at org.netbeans.core.NbTopManager.get(NbTopManager.java:190)
    at org.netbeans.core.Main.start(Main.java:311)
    at org.netbeans.core.TopThreadGroup.run(TopThreadGroup.java:90)
    at java.lang.Thread.run(Thread.java:595)
    You are trying to access file: jndi.properties from the default package.
    Please see http://www.netbeans.org/download/dev/javadoc/OpenAPIs/org/openide/doc-files/classpath.html#default_package
    Turning on modules:
    org.openide/1 [5.9.1.1 060417]
    org.netbeans.modules.queries/1 [1.4.1 060417]
    org.netbeans.modules.projectapi/1 [1.3.1 060417]
    org.openide.loaders [5.2.1.1 060417]
    org.netbeans.spi.viewmodel/2 [1.4.1 060417]
    org.netbeans.api.debugger/1 [1.3.1 060417]
    org.netbeans.api.debugger.jpda/1 [1.3.1 060417]
    org.netbeans.modules.j2eeapis/1 [1.3.1 060417]
    org.netbeans.bootstrap/1 [1.0.1 060417]
    org.netbeans.swing.plaf [1.2.1 060417]
    org.netbeans.core/1 [1.27.1 060417]
    org.netbeans.modules.settings/1 [1.7.1 060417]
    org.netbeans.api.xml/1 [1.8 3.999.4 060417]
    org.netbeans.modules.schema2beans/1 [1.11.1 060417]
    org.openide.io [1.6.1 060417]
    org.openide.execution [1.5.1 060417]
    org.netbeans.api.java/1 [1.7.1 060417]
    org.netbeans.modules.project.libraries/1 [1.10.1 060417]
    org.openide.src [1.5.1 060417]
    org.netbeans.libs.j2eeeditor/1 [1.4.1 060417]
    org.netbeans.modules.j2eeserver/3 [1.6.1 060417]
    org.netbeans.libs.xerces/1 [1.5.1 2.6.2]
    org.netbeans.modules.j2ee.dd/1 [1.3.1 1.0 060417]
    com.sun.rave.portlet.container/1 [1.0 1.0]
    com.sun.rave.portlet.container.pluto/1 [1.0 1.0]
    javax.jmi.reflect/1 [1.4.1 060417]
    org.netbeans.jmi.javamodel/1 [1.13.1 060417]
    javax.jmi.model/1 [1.4.1 060417]
    org.netbeans.api.mdr/1 [1.1.1 060417]
    org.netbeans.modules.jmiutils/1 [1.1.1 release41 060417]
    org.netbeans.modules.mdr/1 [1.1.1 release41 060417]
    org.netbeans.core.output2/1 [1.3.1 060417]
    org.netbeans.core.execution/1 [1.6.1 060417]
    org.apache.tools.ant.module/3 [3.17.1 060417]
    org.openidex.util/3 [3.6.1 060417]
    org.netbeans.modules.java.platform/1 [1.3.1 060417]
    org.netbeans.swing.tabcontrol [1.3.1 060417]
    org.netbeans.core.windows/2 [2.4.1 060417]
    org.netbeans.core.ui/1 [1.6.1 060417]
    org.netbeans.modules.xml.core/2 [1.7 3.999.4 060417]
    org.netbeans.modules.xml.catalog/2 [1.6 3.999.4 060417]
    org.netbeans.modules.masterfs/1 [1.4.1.1 060417]
    org.netbeans.modules.projectuiapi/1 [1.5.4.0.0 4.0.0 060417]
    org.netbeans.modules.projectui [1.3.4.0.0.1 060417]
    org.netbeans.modules.project.ant/1 [1.6.1 060417]
    org.netbeans.modules.classfile/1 [1.14.1 060417]
    org.netbeans.modules.javacore/1 [1.5.1 060417]
    org.netbeans.modules.java/1 [1.20.1.1 1.0.0 060417]
    org.netbeans.modules.java.project/1 [1.3.1 060417]
    org.netbeans.modules.javahelp/1 [2.5.1 060417]
    org.netbeans.modules.refactoring/1 [1.1.1 1.0 060417]
    org.netbeans.modules.servletapi24/1 [2.3.1 2.3.1 060417]
    org.netbeans.modules.autoupdate/1 [2.12.1.2 060417]
    com.sun.rave.extension.autoupdate/1 [1.2.1.1.0 060417]
    com.sun.rave.api.portlet.dd/1 [1.0 1.0]
    com.sun.rave.api.jsf.project/1 [1.2 060417]
    org.netbeans.libs.commons_logging/1 [1.0.1 1.0.4 060417]
    com.sun.rave.designer.markup/1 [1.0 060417]
    com.sun.rave.extension.openide/1 [1.0 060417]
    com.sun.rave.designtime/1 [1.0.0 060417]
    com.sun.rave.jsfsupport/1 [1.0.5 060417]
    org.netbeans.modules.editor.util/1 [1.4.1 060417]
    org.netbeans.modules.editor.fold/1 [1.2.1 060417]
    org.netbeans.modules.editor.lib/1 [1.3.1 0.1 060417]
    com.sun.rave.api.insync/1 [1.0 060417]
    org.netbeans.core.multiview/1 [1.5.1 060417]
    com.sun.rave.api.designer/1 [1.0 060417]
    org.apache.batik/1 [1.5 1.5]
    org.netbeans.modules.editor.plain.lib/1 [1.0.1 060417]
    org.netbeans.modules.editor/3 [1.19.1 060417]
    org.netbeans.modules.html.editor.lib/1 [1.0.1 060417]
    com.sun.rave.css/1 [1.0 060417]
    com.sun.rave.insync/1 [1.0.7 060417]
    com.sun.rave.dataprovider.runtime/1 [1.0 060417]
    com.sun.rave.jsfmetadata/1 [1.0.5 060417]
    com.sun.rave.toolbox/1 [1.0.5 060417]
    org.netbeans.modules.ant.freeform [1.5.1 060417]
    com.sun.rave.branding.projects.projectui/1 [1.0 060417]
    org.netbeans.tasklistapi/1 [1.16.6 6 060417]
    org.netbeans.modules.tasklist.core/2 [1.33.615 15 060417]
    org.netbeans.modules.suggestions_framework/2 [1.11.6158 8 060417]
    org.netbeans.modules.tasklist.docscan/2 [1.19.61584 4 060417]
    com.sun.rave.extension.tasklist.docscan/1 [1.0 060417]
    com.sun.rave.extension.ide.launcher.upgrade [4.1 060417]
    com.sun.rave.extension.core/1 [1.0 060417]
    com.sun.rave.corepackage/1 [1.1 060417]
    com.sun.rave.extension.java.platform/1 [1.0 060417]
    com.sun.rave.extension.core.javahelp/1 [1.0 060417]
    com.sun.rave.ravehelp/1 [1.0.3.1 060417]
    com.sun.rave.propertyeditors/1 [1.0.0 060417]
    org.netbeans.modules.ant.grammar/1 [1.10 060417]
    org.netbeans.spi.debugger.ui/1 [2.5.1 060417]
    com.sun.rave.extension.debuggercore/1 [1.0 060417]
    org.netbeans.modules.xml.text/2 [1.7 3.999.4 060417]
    org.netbeans.modules.javadoc/1 [1.14.1 060417]
    org.netbeans.modules.beans/1 [1.14.1 060417]
    com.sun.rave.branding.beans/1 [1.0 060417]
    org.netbeans.modules.image/1 [1.14.1.1 060417]
    org.netbeans.modules.utilities/1 [1.18.1 060417]
    com.sun.rave.branding.utilities/1 [1.0 060417]
    com.sun.rave.branding.openidex/1 [1.0 060417]
    org.netbeans.modules.vcscore/1 [1.14.1 promotionE 060417]
    org.netbeans.modules.vcscore.javacorebridge/1 [1.0.1 060417]
    org.netbeans.modules.properties/1 [1.14.1.1 060417]
    org.netbeans.modules.properties.syntax/1 [1.14.1 060417]
    org.netbeans.modules.debugger.jpda/2 [1.13.1.0.0.1 060417]
    org.netbeans.modules.debugger.jpda.ui/1 [1.2.1.0.0.1 060417]
    org.netbeans.modules.navigator/2 [4.1.1 promoe 060417]
    org.netbeans.core.ide/1 [1.6.1 060417]
    org.netbeans.modules.javanavigation/1 [4.1.1 060417]
    com.sun.rave.servernav/1 [1.1 060417]
    com.sun.rave.dataconnectivity/1 [1.0.4.1 060417]
    org.netbeans.modules.java.j2seplatform/1 [1.2.1 1.2.0 060417]
    org.netbeans.modules.servletapi/1 [1.6.1 060417]
    org.netbeans.modules.httpserver/2 [2.1.1 release41 060417]
    org.netbeans.upgrader [4.2.1 060417]
    org.netbeans.modules.java.freeform [1.0.1 060417]
    com.sun.rave.extension.java.freeform/1 [1.0 060417]
    org.netbeans.api.web.webmodule [1.2.1 060417]
    org.netbeans.modules.j2ee.api.ejbmodule [1.0.1 060417]
    org.netbeans.lib.cvsclient/1 [1.11.1 060417]
    com.sun.rave.branding.openide/1 [1.0 060417]
    org.netbeans.modules.clazz/1 [1.16.1 060417]
    com.sun.rave.extension.projects.projectui/1 [1.0 060417]
    org.netbeans.modules.web.jspparser/2 [2.2.1 060417]
    org.netbeans.modules.ant.browsetask [1.8.1 060417]
    org.netbeans.modules.j2ee.dd.webservice [1.0.1 060417]
    org.netbeans.modules.websvc.websvcapi [1.0.1 060417]
    org.netbeans.modules.junit/2 [2.14.1 060417]
    org.netbeans.modules.j2ee.common/1 [1.0.1 1.0.1 060417]
    org.netbeans.modules.servletapi23/1 [1.7.1 060417]
    org.netbeans.modules.xml.multiview/1 [1.0 1.0-release41 060417]
    org.netbeans.modules.editor.plain/1 [1.0.1 060417]
    org.netbeans.modules.html.editor/1 [1.0.1 060417]
    org.netbeans.modules.java.editor.lib/1 [1.0.1 060417]
    org.netbeans.modules.java.editor/1 [1.0.1 060417]
    org.netbeans.modules.html/1 [1.15.1 060417]
    org.netbeans.modules.web.core.syntax/1 [1.17.1.1 060417]
    org.netbeans.modules.web.core/1 [1.20.1 release41 060417]
    org.netbeans.modules.web.project [1.4.3 1.1.1.1 060417]
    org.netbeans.modules.web.jstl11/1 [2.3.1 2.3.1 060417]
    com.sun.rave.project.jsfportlet/1 [1.0 1.0]
    com.sun.rave.welcome/1 [1.0.1 060417]
    com.sun.rave.extension.web.project/1 [1.0 060417]
    org.netbeans.modules.web.freeform [1.0.2 060417]
    com.sun.rave.extension.core.execution/1 [1.0 060417]
    com.sun.rave.branding.core.windows/1 [1.0.1 060417]
    com.sun.rave.branding.xml.text/1 [1.0 060417]
    com.sun.rave.branding.autoupdate/1 [1.0 060417]
    com.sun.rave.extension.core.windows/1 [1.0 060417]
    com.sun.rave.branding.java/1 [1.0 060417]
    com.sun.rave.branding.vcscore/1 [1.0 060417]
    org.netbeans.modules.j2ee.sun.dd/1 [1.2 1.0]
    org.netbeans.modules.j2ee.sun.ide/1 [2.1.1.1 060417]
    org.netbeans.modules.debugger.jpda.ant [1.4.1 060417]
    org.netbeans.modules.java.j2seproject [1.2.2 1.2.0 060417]
    com.sun.rave.extension.vcscore/1 [1.0 060417]
    com.sun.rave.ejbsupport/1 [1.0 060417]
    com.sun.rave.jwsdpsupport/1 [1.1 060417]
    com.sun.rave.websvc/1 [1.0.6 060417]
    com.sun.rave.extension.core.output2/1 [1.0 060417]
    com.sun.rave.extension.web.freeform/1 [1.0 060417]
    org.netbeans.modules.web.monitor/1 [1.12.1 060417]
    org.netbeans.modules.diff/1 [1.10.1 promotionE 060417]
    org.netbeans.modules.vcs.advanced/1 [1.12.1 060417]
    com.sun.rave.extension.vcsgeneric/1 [1.0 060417]
    com.sun.rave.extension.objectbrowser.navigator/1 [1.0 060417]
    com.sun.rave.branding.core/1 [1.0.1 060417]
    com.sun.rave.branding.web.jspsyntax/1 [1.0 060417]
    com.sun.rave.extension.xml.catalog/1 [1.0 060417]
    com.sun.rave.extension.properties/1 [1.0 060417]
    com.sun.rave.extension.java.j2seproject/1 [1.0 060417]
    com.sun.rave.libs.jsf/1 [1.0.5 060417]
    com.sun.rave.extension.xml.core/1 [1.0 060417]
    com.sun.rave.project.migration/1 [1.0 1.0]
    com.sun.rave.navigation/1 [1.0.5 060417]
    com.sun.rave.project.navigationloader/1 [1.0 060417]
    org.netbeans.modules.vcs.profiles.cvsprofiles/1 [1.6.1 060417]
    com.sun.rave.ejb/1 [1.0.1 060417]
    org.netbeans.modules.vcs.profiles.vss/1 [1.6.1 060417]
    com.sun.rave.extension.editor/1 [1.0 060417]
    com.sun.rave.extension.core.ide/1 [1.0 060417]
    com.sun.rave.jsfcl/1 [1.1.1 060417]
    com.sun.rave.extension.core.multiview/1 [1.0 060417]
    com.sun.rave.extension.core.ui/1 [1.0 060417]
    com.sun.rave.modules.jsf.examples.postrelease/1 [1.0 060424]
    com.sun.rave.extension.debuggerjpda.ui/1 [1.0 060417]
    com.sun.rave.modules.jsf.examples.bundled/1 [1.0.1 060417]
    com.sun.rave.extension.javadoc/1 [1.0 060417]
    com.sun.rave.branding.web.project/1 [1.0 060417]
    com.sun.rave.extension.utilities/1 [1.0 060417]
    com.sun.rave.portlet.container.ant/1 [1.0 1.0]
    com.sun.rave.branding.tasklist.docscan/1 [1.0 060417]
    com.sun.rave.project.jsfloader/1 [1.1 060417]
    com.sun.rave.branding.image/1 [1.0 060417]
    com.sun.rave.extension.api.xml/1 [1.0 060417]
    com.sun.rave.branding.editor/1 [1.0 060417]
    com.sun.rave.extension.web.core/1 [1.0 060417]
    com.sun.rave.extension.xml.text/1 [1.0 060417]
    org.netbeans.modules.utilities.project/1 [1.2.1 060417]
    com.sun.rave.extension.utilities.project/1 [1.0 060417]
    com.sun.rave.extension.java/1 [1.0 060417]
    com.sun.rave.extension.java.editor/1 [1.0 060417]
    org.netbeans.modules.j2ee.ant [1.3.1 060417]
    org.netbeans.modules.j2ee.sun.ws61/1 [1.0 060417]
    com.sun.rave.extension.beans/1 [1.0 060417]
    com.sun.rave.designer/1 [1.0.6 060417]
    com.sun.rave.webui.samples.calendar/1 [0.1 060412_5]
    org.netbeans.modules.extbrowser/1 [1.6.1 060417]
    com.sun.rave.branding.extbrowser/1 [1.0 060417]
    com.sun.rave.branding.xml.core/1 [1.0 060417]
    com.sun.rave.webui.samples.ajax/1 [0.2 060410]
    com.sun.rave.branding.html/1 [1.0 060417]
    com.sun.rave.branding.xml.catalog/1 [1.0 060417]
    com.sun.rave.extension.html/1 [1.0 060417]
    com.sun.rave.extension.monitor/1 [1.0 060417]
    com.sun.rave.errorhandler.server/1 [0.2 060417]
    com.sun.rave.extension.refactoring/1 [1.0 060417]
    com.sun.rave.branding.openide.loaders/1 [1.0 060417]
    java.io.FileNotFoundException: /opt/sun/Creator2_1/rave2.0/config/com-sun-rave-install.properties (Permission denied)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at com.sun.rave.errorhandler.DebugServerThread.run(DebugServerThread.java:55)
    java.io.FileNotFoundException: /opt/sun/Creator2_1/rave2.0/config/com-sun-rave-install.properties (Permission denied)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at org.netbeans.modules.j2ee.sun.ide.j2ee.PluginProperties.getRaveInstallProperties(PluginProperties.java:736)
    at org.netbeans.modules.j2ee.sun.ide.j2ee.PluginProperties.getRaveInstallProperty(PluginProperties.java:720)
    at org.netbeans.modules.j2ee.sun.ide.j2ee.PluginProperties.getRaveRoot(PluginProperties.java:716)
    at org.netbeans.modules.j2ee.sun.ide.j2ee.PluginProperties.makeAbsolute(PluginProperties.java:674)
    at org.netbeans.modules.j2ee.sun.ide.j2ee.PluginProperties.loadPluginProperties(PluginProperties.java:174)
    at org.netbeans.modules.j2ee.sun.ide.j2ee.PluginProperties.<init>(PluginProperties.java:109)
    at org.netbeans.modules.j2ee.sun.ide.j2ee.PluginProperties.getDefault(PluginProperties.java:91)
    at org.netbeans.modules.j2ee.sun.ide.Installer.getPluginLoader81(Installer.java:525)
    at org.netbeans.modules.j2ee.sun.ide.Installer.initFacade(Installer.java:272)
    at org.netbeans.modules.j2ee.sun.ide.Installer.create(Installer.java:84)
    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:585)
    at org.netbeans.core.projects.cache.BinaryFS$AttrImpl.methodValue(BinaryFS.java:484)
    at org.netbeans.core.projects.cache.BinaryFS$AttrImpl.getValue(BinaryFS.java:396)
    at org.netbeans.core.projects.cache.BinaryFS$BFSBase.getAttribute(BinaryFS.java:312)
    at org.openide.filesystems.MultiFileObject.getAttribute(MultiFileObject.java:721)
    at org.openide.filesystems.MultiFileObject.getAttribute(MultiFileObject.java:689)
    at org.openide.filesystems.MultiFileObject.getAttribute(MultiFileObject.java:717)
    at org.openide.filesystems.MultiFileObject.getAttribute(MultiFileObject.java:689)
    at org.openide.filesystems.MultiFileObject.getAttribute(MultiFileObject.java:618)
    at org.openide.loaders.InstanceDataObject$Ser.instanceCreate(InstanceDataObject.java:1175)
    at org.openide.loaders.InstanceDataObject.instanceCreate(InstanceDataObject.java:692)
    at org.netbeans.modules.j2ee.deployment.impl.Server.<init>(Server.java:92)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.addPlugin(ServerRegistry.java:154)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.init(ServerRegistry.java:88)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.instancesMap(ServerRegistry.java:145)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.getServerInstances(ServerRegistry.java:279)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.getDefaultInstance(ServerRegistry.java:591)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.getDefaultInstance(ServerRegistry.java:573)
    at org.netbeans.modules.j2ee.deployment.impl.ui.RaveDefaultInstanceProvider.getDefaultInstanceNode(RaveDefaultInstanceProvider.java:20)
    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:585)
    at org.netbeans.core.projects.cache.BinaryFS$AttrImpl.methodValue(BinaryFS.java:484)
    at org.netbeans.core.projects.cache.BinaryFS$AttrImpl.getValue(BinaryFS.java:396)
    at org.netbeans.core.projects.cache.BinaryFS$BFSBase.getAttribute(BinaryFS.java:312)
    at org.openide.filesystems.MultiFileObject.getAttribute(MultiFileObject.java:721)
    at org.openide.filesystems.MultiFileObject.getAttribute(MultiFileObject.java:689)
    at org.openide.filesystems.MultiFileObject.getAttribute(MultiFileObject.java:717)
    at org.openide.filesystems.MultiFileObject.getAttribute(MultiFileObject.java:689)
    at org.openide.filesystems.MultiFileObject.getAttribute(MultiFileObject.java:618)
    at org.openide.loaders.InstanceDataObject$Ser.instanceCreate(InstanceDataObject.java:1175)
    at org.openide.loaders.InstanceDataObject.instanceCreate(InstanceDataObject.java:692)
    at org.openide.loaders.FolderInstance.instanceForCookie(FolderInstance.java:515)
    at org.openide.loaders.FolderInstance$HoldInstance.instanceCreate(FolderInstance.java:998)
    at com.sun.rave.servernav.ServerNavigator$ServerNavigatorFolder.createInstance(ServerNavigator.java:182)
    at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:736)
    at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:68)
    at org.openide.loaders.FolderInstance$2.run(FolderInstance.java:622)
    at org.openide.util.Task.run(Task.java:189)
    at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:330)
    at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:721)
    [org.netbeans.modules.j2ee.sun] PluginProperties: See http://www.netbeans.org/issues/show_bug.cgi?id=55741 !
    Warning: use of system property netbeans.home in org.netbeans.modules.j2ee.sun.ide.j2ee.PluginProperties has been obsoleted in favor of InstalledFileLocator
    INFORMATIONAL *********** Exception occurred ************ at 2:58 PM on May 4, 2006
    javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException: The Application Server installation directory is not correctly set up. (Use the properties sheet of the "Java System Application Server 8" node to enter a correct value.)
    at org.netbeans.modules.j2ee.sun.ide.Installer$FacadeDeploymentFactory.getDisconnectedDeploymentManager(Installer.java:233)
    [catch] at org.netbeans.modules.j2ee.deployment.impl.Server.getDeploymentManager(Server.java:135)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.addInstanceImpl(ServerRegistry.java:387)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.addInstance(ServerRegistry.java:416)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.init(ServerRegistry.java:135)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.instancesMap(ServerRegistry.java:145)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.getServerInstances(ServerRegistry.java:279)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.getDefaultInstance(ServerRegistry.java:591)
    at org.netbeans.modules.j2ee.deployment.impl.ServerRegistry.getDefaultInstance(ServerRegistry.java:573)
    at org.netbeans.modules.j2ee.deployment.impl.ui.RaveDefaultInstanceProvider.getDefaultInstanceNode(RaveDefaultInstanceProvider.java:20)
    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:585)
    at org.netbeans.core.projects.cache.BinaryFS$AttrImpl.methodValue(BinaryFS.java:484)
    at org.netbeans.core.projects.cache.BinaryFS$AttrImpl.getValue(BinaryFS.java:396)
    at org.netbeans.core.projects.cache.BinaryFS$BFSBase.getAttribute(BinaryFS.java:312)
    at org.openide.filesystems.MultiFileObject.getAttribute(MultiFileObject.java:721)
    at org.openide.filesystems.MultiFileObjec

    OK, I have figured it out. When I initally installed Creator I did not pay attention to what the dialogs said. I just pushed the "Finish" button when it came up. After re-installing as root and my user I realized thet the last dialog said "Application Server could not be installed correctly. The following RPM packages need to be installed: compat-libstdc++, compat-libstdc++-devel"
    I had compat-libstdc++-33-3.2.3-47installed.
    I installed compat-libstdc++-296-2.96-132.
    Afterwards I installed Creator under "root" without an error, and I was able to create a new project.
    I hope this help some others. I saw several posts concerning Fedora.
    KLR

  • Can't drop components on new page after upgrading to Update 5

    Please need some help.
    Today I upgraded to Update5. I created a new page in an elder project, created with the prev version.
    When trying to drop a component on the Designer a got following error-message: You cannot drop components on plan HTML documents, only on web forms.
    Dropping a component on a prev created page went well.
    I created a new project, created a new page and dropping a component was OK.
    Then I examined the source in the misbehaving project. The newer template code differs from the elder. But the newer template codes matches in both projects.
    Following the code and my log.
    thx in advance, gerald
    This is the newer template code:
    <?xml version="1.0"?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:f="http://java.sun.com/jsf/core">
    <jsp:directive.page />
    <jsp:text>
    <![CDATA[
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    ]]>
    </jsp:text>
    <f:view>
    <html>
    <head>
    <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    <title>__TITLE__</title>
    <link href="resources/stylesheet.css" rel="stylesheet" type="text/css"/>
    </head>
    <body style="-rave-layout: grid">
    </body>
    </html>
    </f:view>     
    </jsp:root>
    This ist my log:
    Log Session: Donnerstag, 23. Dezember 2004 14:06 Uhr CET
    System Info: Product Version = Java Studio Creator (Build 041221_4)
    Operating System = Windows 2000 version 5.0 running on x86
    Java; VM; Vendor = 1.4.2_06; Java HotSpot(TM) Client VM 1.4.2_06-b03; Sun Microsystems Inc.
    Java Home = C:\Sun\Creator\java\jre
    System Locale; Encod. = de_AT; Cp1252
    Home Dir; Current Dir = C:\Dokumente und Einstellungen\Werany; C:\Sun\Creator\bin
    IDE Install; User Dir = C:\Sun\Creator; C:\Dokumente und Einstellungen\Werany\.Creator\1_0
    CLASSPATH = C:\Sun\Creator\lib\ext\boot.jar;C:\Sun\Creator\lib\ext\ejb20.jar;C:\Sun\Creator\lib\ext\jgraph.jar;C:\Sun\Creator\lib\ext\naming.jar;C:\Sun\Creator\lib\ext\pbclient.jar;C:\Sun\Creator\lib\ext\pbtools.jar;C:\Sun\Creator\lib\ext\rowset.jar;C:\Sun\Creator\lib\ext\smbase.jar;C:\Sun\Creator\lib\ext\smdb2.jar;C:\Sun\Creator\lib\ext\sminformix.jar;C:\Sun\Creator\lib\ext\smoracle.jar;C:\Sun\Creator\lib\ext\smresource.jar;C:\Sun\Creator\lib\ext\smspy.jar;C:\Sun\Creator\lib\ext\smsqlserver.jar;C:\Sun\Creator\lib\ext\smsybase.jar;C:\Sun\Creator\lib\ext\smutil.jar;C:\Sun\Creator\lib\ext\sql.jar;C:\Sun\Creator\lib\ext\sqlx.jar;C:\Sun\Creator\lib\ext\locale\boot_ja.jar;C:\Sun\Creator\lib\ext\locale\boot_zh_CN.jar;C:\Sun\Creator\lib\ext\locale\naming_ja.jar;C:\Sun\Creator\lib\ext\locale\naming_zh_CN.jar;C:\Sun\Creator\lib\ext\locale\sqlx_ja.jar;C:\Sun\Creator\lib\ext\locale\sqlx_zh_CN.jar;C:\Sun\Creator\lib\ext\locale\sql_ja.jar;C:\Sun\Creator\lib\ext\locale\sql_zh_CN.jar;C:\Sun\Creator\java\lib\dt.jar;C:\Sun\Creator\java\lib\tools.jar
    Boot & ext classpath = C:\Sun\Creator\java\jre\lib\rt.jar;C:\Sun\Creator\java\jre\lib\i18n.jar;C:\Sun\Creator\java\jre\lib\sunrsasign.jar;C:\Sun\Creator\java\jre\lib\jsse.jar;C:\Sun\Creator\java\jre\lib\jce.jar;C:\Sun\Creator\java\jre\lib\charsets.jar;C:\Sun\Creator\java\jre\classes;C:\Sun\Creator\java\jre\lib\ext\dnsns.jar;C:\Sun\Creator\java\jre\lib\ext\ldapsec.jar;C:\Sun\Creator\java\jre\lib\ext\localedata.jar;C:\Sun\Creator\java\jre\lib\ext\sunjce_provider.jar
    Dynamic classpath = C:\Sun\Creator\lib\core.jar;C:\Sun\Creator\lib\openfile-cli.jar;C:\Sun\Creator\lib\openide-loaders.jar;C:\Sun\Creator\lib\openide.jar;C:\Sun\Creator\lib\ravelnf.jar;C:\Sun\Creator\lib\locale\core_ja.jar;C:\Sun\Creator\lib\locale\core_zh_CN.jar;C:\Sun\Creator\lib\locale\openide-loaders_ja.jar;C:\Sun\Creator\lib\locale\openide-loaders_zh_CN.jar;C:\Sun\Creator\lib\locale\openide_ja.jar;C:\Sun\Creator\lib\locale\openide_zh_CN.jar;C:\Sun\Creator\lib\locale\ravelnf_ja.jar;C:\Sun\Creator\lib\locale\ravelnf_zh_CN.jar
    [org.netbeans.core.modules #4] Warning: the extension C:\Sun\Creator\modules\ext\sac.jar may be multiply loaded by modules: [C:\Sun\Creator\modules\css.jar, C:\Sun\Creator\modules\insync.jar]; see: http://www.netbeans.org/download/dev/javadoc/OpenAPIs/org/openide/doc-files/classpath.html#class-path
    Turning on modules:
    org.openide/1 [4.26.3 041221_4]
    org.openide.io [1.1.3 041221_4]
    org.openide.execution [1.1.2 041221_4]
    org.openide.compiler [1.2.2 041221_4]
    org.openide.loaders [4.11.3 041221_4]
    org.netbeans.core/1 [1.21.3 041221_4]
    org.netbeans.lib.terminalemulator [1.1.2 041221_4]
    org.netbeans.core.output/1 [1.1.2 041221_4]
    org.netbeans.core.compiler/1 [1.4.2 041221_4]
    org.netbeans.modules.javahelp/1 [2.1.3 041221_4]
    org.netbeans.api.java/1 [1.3.2 041221_4]
    org.netbeans.core.execution/1 [1.3.2 041221_4]
    org.netbeans.libs.xerces/1 [1.4.2 2.6.0]
    org.apache.tools.ant.module/3 [3.6.2 041221_4]
    org.openide.src [1.1.2 041221_4]
    org.openide.debugger [1.1.3 041221_4]
    org.netbeans.modules.j2eeapis/1 [1.1 041221_4]
    org.netbeans.modules.settings/1 [1.4.2 041221_4]
    org.netbeans.api.xml/1 [1.3.1.3.6.2 3.6.2 041221_4]
    org.netbeans.modules.schema2beans/1 [1.7.2 041221_4]
    org.netbeans.modules.debugger.core/3 [2.10.3 041221_4]
    org.netbeans.libs.j2eeeditor/1 [1.1.2 041221_4]
    org.netbeans.modules.j2eeserver/3 [1.1.5 041221_4]
    org.netbeans.modules.editor/1 [1.14.6 041221_4]
    org.netbeans.modules.debugger.jpda/1 [1.17.3 041221_4]
    org.netbeans.api.web.dd/1 [1.1.2 1.1 041221_4]
    com.sun.rave.project/1 [1.0.5 041221_4]
    com.sun.rave.errorhandler.server/1 [0.2 041221_4]
    com.sun.rave.layoutmgr/1 [1.2 041221_4]
    com.sun.rave.plaf/1 [1.1 041221_4]
    com.sun.rave.windowmgr/1 [1.2 041221_4]
    com.sun.rave.libs.jsf/1 [1.0.5 041221_4]
    com.sun.rave.jsfsupport/1 [1.0.5 041221_4]
    com.sun.rave.jsfmetadata/1 [1.0.5 041221_4]
    com.sun.rave.licensemgr/1 [1.3 041221_4]
    com.sun.rave.insync/1 [1.0.5 041221_4]
    com.sun.rave.toolbox/1 [1.0.4 041221_4]
    org.netbeans.modules.classfile/1 [1.9 041221_4]
    org.netbeans.modules.java/1 [1.16.4 041221_4]
    org.netbeans.modules.image/1 [1.11.2 041221_4]
    com.sun.rave.jwsdpsupport/1 [1.1 041221_4]
    com.sun.rave.sam/1 [1.0.4 041221_4]
    org.netbeans.modules.servletapi24/1 [2.0.3 2.0.3 041221_4]
    org.netbeans.modules.web.jspparser/2 [2.0.3 041221_4]
    org.netbeans.modules.diff/1 [1.7.2 041221_4]
    com.sun.rave.designer/1 [1.0.5 041221_4]
    com.sun.rave.navigation/1 [1.0.5 041221_4]
    org.netbeans.modules.xml.core/2 [1.1.1.3.6.2 3.6.2 041221_4]
    org.netbeans.modules.xml.catalog/2 [1.1.1.3.6.2 3.6.2 041221_4]
    org.openidex.util/2 [2.7.2 041221_4]
    org.netbeans.modules.autoupdate/1 [2.8.4 041221_4]
    com.sun.rave.raveupdate/1 [1.0.2 041221_4]
    com.sun.rave.servernav/1 [1.1 041221_4]
    com.sun.rave.dataconnectivity/1 [1.0.4 041221_4]
    org.netbeans.modules.schema2beansdev/1 [1.1.2 041221_4]
    com.sun.rave.preview.support/1 [1.0 041221_4]
    com.sun.enterprise.webserver.tools/2 [2.0 041221_4]
    com.sun.rave.welcome/1 [1.0.3 041221_4]
    com.sun.tools.appserver/1 [2.0.3 20041221-1453]
    com.sun.rave.ejb/1 [0.1 041221_4]
    org.netbeans.modules.xml.text/2 [1.1.1.3.6.2 3.6.2 041221_4]
    org.netbeans.modules.html/1 [1.12.5 041221_4]
    org.netbeans.modules.web.core.syntax/1 [1.13.3 041221_4]
    com.sun.rave.jspsyntaxint/1 [1.1 041221_4]
    com.sun.rave.ravehelp/1 [1.0.3 041221_4]
    org.netbeans.modules.text/1 [1.12.3 041221_4]
    org.netbeans.modules.css/2 [1.1.1.3.6.2 3.6.2 041221_4]
    org.netbeans.modules.properties/1 [1.11.3 041221_4]
    org.netbeans.modules.properties.syntax/1 [1.12 041221_4]
    com.sun.rave.j2se.windows/1 [1.0 041221_4]
    com.sun.rave.corepackage/1 [1.1 041221_4]
    org.netbeans.modules.extbrowser/1 [1.3.3 041221_4]
    org.netbeans.core.ide/1 [1.3.2 041221_4]
    com.sun.rave.websvc/1 [1.0.5 041221_4]
    org.netbeans.modules.beans/1 [1.11.3 041221_4]
    org.netbeans.modules.utilities/1 [1.15.2 041221_4]
    org.netbeans.modules.clazz/1 [1.13.2 041221_4]
    org.netbeans.core.ui/1 [1.3.3 041221_4]
    Turning off modules:
    com.sun.rave.ejb/1 [0.1 041221_4]
    com.sun.enterprise.webserver.tools/2 [2.0 041221_4]
    Node "Enterprise Java Beans (Preview Feature)" [com.sun.rave.ejb.nodes.EjbRootNode] cannot return null from getIcon(). See Node.getIcon contract.
    INFORMATIONAL *********** Exception occurred ************ at Thu Dec 23 14:11:23 CET 2004
    java.lang.NullPointerException
    at com.sun.rave.insync.SourceUnit.grabDocument(SourceUnit.java:96)
    at com.sun.rave.insync.SourceUnit.sync(SourceUnit.java:493)
    at com.sun.rave.insync.models.FacesModel.sync(FacesModel.java:731)
    at com.sun.rave.insync.models.FacesModelSet.getDesignContexts(FacesModelSet.java:318)
    at com.sun.rave.outline.OutlinePanel.updateModelViews(OutlinePanel.java:164)
    at com.sun.rave.outline.OutlinePanel.contextClosed(OutlinePanel.java:338)
    at com.sun.rave.insync.models.FacesModelSet.fireContextClosed(FacesModelSet.java:494)
    at com.sun.rave.insync.models.FacesModel.destroy(FacesModel.java:282)
    at com.sun.rave.insync.ModelSet.itemsRemoved(ModelSet.java:326)
    [catch] at com.sun.rave.project.model.ProjectFolder.fireContentRemoved(ProjectFolder.java:463)
    at com.sun.rave.project.model.ProjectFolder.removeProjectItem(ProjectFolder.java:266)
    at com.sun.rave.project.model.WebAppProject.removeJavaItem(WebAppProject.java:1143)
    at com.sun.rave.project.model.WebAppProject.removeProjectItem(WebAppProject.java:1007)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.handleDeletedEvent(ProjectFileSystem.java:371)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.fileDeleted(ProjectFileSystem.java:282)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:78)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:61)
    at org.openide.filesystems.FileObject$ED.dispatch(FileObject.java:753)
    at org.openide.filesystems.EventControl.invokeDispatchers(EventControl.java:160)
    at org.openide.filesystems.EventControl.exitAtomicAction(EventControl.java:138)
    at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:91)
    at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:439)
    at org.openide.loaders.DataObjectPool.runAtomicAction(DataObjectPool.java:203)
    at org.openide.loaders.DataObject.invokeAtomicAction(DataObject.java:759)
    at org.openide.loaders.DataObject.delete(DataObject.java:538)
    at com.sun.rave.project.model.WebAppProject.removeJSPItem(WebAppProject.java:1065)
    at com.sun.rave.project.model.WebAppProject.removeProjectItem(WebAppProject.java:1005)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.handleDeletedEvent(ProjectFileSystem.java:371)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.fileDeleted(ProjectFileSystem.java:282)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:78)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:61)
    at org.openide.filesystems.FileObject$ED.dispatch(FileObject.java:753)
    at org.openide.filesystems.EventControl.invokeDispatchers(EventControl.java:160)
    at org.openide.filesystems.EventControl.exitAtomicAction(EventControl.java:138)
    at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:91)
    at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:439)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.doDestroy(ExplorerActions.java:752)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.performAction(ExplorerActions.java:631)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.actionPerformed(ExplorerActions.java:774)
    at org.openide.util.actions.CallbackSystemAction$2.run(CallbackSystemAction.java:438)
    at org.openide.util.actions.CallableSystemAction$ActionRunnable.actionPerformed(CallableSystemAction.java:247)
    at org.netbeans.core.ModuleActions.invokeAction(ModuleActions.java:71)
    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:324)
    at org.openide.util.actions.CallableSystemAction.invokeAction(CallableSystemAction.java:179)
    at org.openide.util.actions.CallableSystemAction.access$000(CallableSystemAction.java:31)
    at org.openide.util.actions.CallableSystemAction$ActionRunnable.doRun(CallableSystemAction.java:241)
    at org.openide.util.actions.CallableSystemAction$2.run(CallableSystemAction.java:111)
    at org.openide.util.Task.run(Task.java:136)
    at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:330)
    at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:686)
    ==>
    org.openide.filesystems.FileStateInvalidException: sdfg.jsp
    at org.openide.loaders.DataObject.find(DataObject.java:444)
    at com.sun.rave.insync.Util.retrieveDocument(Util.java:99)
    at com.sun.rave.insync.SourceUnit.grabDocument(SourceUnit.java:95)
    at com.sun.rave.insync.SourceUnit.sync(SourceUnit.java:493)
    at com.sun.rave.insync.models.FacesModel.sync(FacesModel.java:731)
    at com.sun.rave.insync.models.FacesModelSet.getDesignContexts(FacesModelSet.java:318)
    at com.sun.rave.outline.OutlinePanel.updateModelViews(OutlinePanel.java:164)
    at com.sun.rave.outline.OutlinePanel.contextClosed(OutlinePanel.java:338)
    at com.sun.rave.insync.models.FacesModelSet.fireContextClosed(FacesModelSet.java:494)
    at com.sun.rave.insync.models.FacesModel.destroy(FacesModel.java:282)
    at com.sun.rave.insync.ModelSet.itemsRemoved(ModelSet.java:326)
    [catch] at com.sun.rave.project.model.ProjectFolder.fireContentRemoved(ProjectFolder.java:463)
    at com.sun.rave.project.model.ProjectFolder.removeProjectItem(ProjectFolder.java:266)
    at com.sun.rave.project.model.WebAppProject.removeJavaItem(WebAppProject.java:1143)
    at com.sun.rave.project.model.WebAppProject.removeProjectItem(WebAppProject.java:1007)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.handleDeletedEvent(ProjectFileSystem.java:371)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.fileDeleted(ProjectFileSystem.java:282)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:78)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:61)
    at org.openide.filesystems.FileObject$ED.dispatch(FileObject.java:753)
    at org.openide.filesystems.EventControl.invokeDispatchers(EventControl.java:160)
    at org.openide.filesystems.EventControl.exitAtomicAction(EventControl.java:138)
    at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:91)
    at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:439)
    at org.openide.loaders.DataObjectPool.runAtomicAction(DataObjectPool.java:203)
    at org.openide.loaders.DataObject.invokeAtomicAction(DataObject.java:759)
    at org.openide.loaders.DataObject.delete(DataObject.java:538)
    at com.sun.rave.project.model.WebAppProject.removeJSPItem(WebAppProject.java:1065)
    at com.sun.rave.project.model.WebAppProject.removeProjectItem(WebAppProject.java:1005)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.handleDeletedEvent(ProjectFileSystem.java:371)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.fileDeleted(ProjectFileSystem.java:282)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:78)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:61)
    at org.openide.filesystems.FileObject$ED.dispatch(FileObject.java:753)
    at org.openide.filesystems.EventControl.invokeDispatchers(EventControl.java:160)
    at org.openide.filesystems.EventControl.exitAtomicAction(EventControl.java:138)
    at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:91)
    at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:439)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.doDestroy(ExplorerActions.java:752)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.performAction(ExplorerActions.java:631)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.actionPerformed(ExplorerActions.java:774)
    at org.openide.util.actions.CallbackSystemAction$2.run(CallbackSystemAction.java:438)
    at org.openide.util.actions.CallableSystemAction$ActionRunnable.actionPerformed(CallableSystemAction.java:247)
    at org.netbeans.core.ModuleActions.invokeAction(ModuleActions.java:71)
    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:324)
    at org.openide.util.actions.CallableSystemAction.invokeAction(CallableSystemAction.java:179)
    at org.openide.util.actions.CallableSystemAction.access$000(CallableSystemAction.java:31)
    at org.openide.util.actions.CallableSystemAction$ActionRunnable.doRun(CallableSystemAction.java:241)
    at org.openide.util.actions.CallableSystemAction$2.run(CallableSystemAction.java:111)
    at org.openide.util.Task.run(Task.java:136)
    at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:330)
    at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:686)
    INFORMATIONAL *********** Exception occurred ************ at Thu Dec 23 14:11:31 CET 2004
    java.lang.NullPointerException
    at com.sun.rave.insync.SourceUnit.grabDocument(SourceUnit.java:96)
    at com.sun.rave.insync.SourceUnit.sync(SourceUnit.java:493)
    at com.sun.rave.insync.models.FacesModel.sync(FacesModel.java:731)
    at com.sun.rave.insync.models.FacesModelSet.getDesignContexts(FacesModelSet.java:318)
    at com.sun.rave.outline.OutlinePanel.updateModelViews(OutlinePanel.java:164)
    at com.sun.rave.outline.OutlinePanel.contextClosed(OutlinePanel.java:338)
    at com.sun.rave.insync.models.FacesModelSet.fireContextClosed(FacesModelSet.java:494)
    at com.sun.rave.insync.models.FacesModel.destroy(FacesModel.java:282)
    at com.sun.rave.insync.ModelSet.itemsRemoved(ModelSet.java:326)
    [catch] at com.sun.rave.project.model.ProjectFolder.fireContentRemoved(ProjectFolder.java:463)
    at com.sun.rave.project.model.ProjectFolder.removeProjectItem(ProjectFolder.java:266)
    at com.sun.rave.project.model.WebAppProject.removeJavaItem(WebAppProject.java:1143)
    at com.sun.rave.project.model.WebAppProject.removeProjectItem(WebAppProject.java:1007)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.handleDeletedEvent(ProjectFileSystem.java:371)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.fileDeleted(ProjectFileSystem.java:282)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:78)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:61)
    at org.openide.filesystems.FileObject$ED.dispatch(FileObject.java:753)
    at org.openide.filesystems.EventControl.invokeDispatchers(EventControl.java:160)
    at org.openide.filesystems.EventControl.exitAtomicAction(EventControl.java:138)
    at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:91)
    at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:439)
    at org.openide.loaders.DataObjectPool.runAtomicAction(DataObjectPool.java:203)
    at org.openide.loaders.DataObject.invokeAtomicAction(DataObject.java:759)
    at org.openide.loaders.DataObject.delete(DataObject.java:538)
    at com.sun.rave.project.model.WebAppProject.removeJSPItem(WebAppProject.java:1065)
    at com.sun.rave.project.model.WebAppProject.removeProjectItem(WebAppProject.java:1005)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.handleDeletedEvent(ProjectFileSystem.java:371)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.fileDeleted(ProjectFileSystem.java:282)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:78)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:61)
    at org.openide.filesystems.FileObject$ED.dispatch(FileObject.java:753)
    at org.openide.filesystems.EventControl.invokeDispatchers(EventControl.java:160)
    at org.openide.filesystems.EventControl.exitAtomicAction(EventControl.java:138)
    at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:91)
    at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:439)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.doDestroy(ExplorerActions.java:752)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.performAction(ExplorerActions.java:631)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.actionPerformed(ExplorerActions.java:774)
    at org.openide.util.actions.CallbackSystemAction$2.run(CallbackSystemAction.java:438)
    at org.openide.util.actions.CallableSystemAction$ActionRunnable.actionPerformed(CallableSystemAction.java:247)
    at org.netbeans.core.ModuleActions.invokeAction(ModuleActions.java:71)
    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:324)
    at org.openide.util.actions.CallableSystemAction.invokeAction(CallableSystemAction.java:179)
    at org.openide.util.actions.CallableSystemAction.access$000(CallableSystemAction.java:31)
    at org.openide.util.actions.CallableSystemAction$ActionRunnable.doRun(CallableSystemAction.java:241)
    at org.openide.util.actions.CallableSystemAction$2.run(CallableSystemAction.java:111)
    at org.openide.util.Task.run(Task.java:136)
    at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:330)
    at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:686)
    ==>
    org.openide.filesystems.FileStateInvalidException: lkjgh.jsp
    at org.openide.loaders.DataObject.find(DataObject.java:444)
    at com.sun.rave.insync.Util.retrieveDocument(Util.java:99)
    at com.sun.rave.insync.SourceUnit.grabDocument(SourceUnit.java:95)
    at com.sun.rave.insync.SourceUnit.sync(SourceUnit.java:493)
    at com.sun.rave.insync.models.FacesModel.sync(FacesModel.java:731)
    at com.sun.rave.insync.models.FacesModelSet.getDesignContexts(FacesModelSet.java:318)
    at com.sun.rave.outline.OutlinePanel.updateModelViews(OutlinePanel.java:164)
    at com.sun.rave.outline.OutlinePanel.contextClosed(OutlinePanel.java:338)
    at com.sun.rave.insync.models.FacesModelSet.fireContextClosed(FacesModelSet.java:494)
    at com.sun.rave.insync.models.FacesModel.destroy(FacesModel.java:282)
    at com.sun.rave.insync.ModelSet.itemsRemoved(ModelSet.java:326)
    [catch] at com.sun.rave.project.model.ProjectFolder.fireContentRemoved(ProjectFolder.java:463)
    at com.sun.rave.project.model.ProjectFolder.removeProjectItem(ProjectFolder.java:266)
    at com.sun.rave.project.model.WebAppProject.removeJavaItem(WebAppProject.java:1143)
    at com.sun.rave.project.model.WebAppProject.removeProjectItem(WebAppProject.java:1007)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.handleDeletedEvent(ProjectFileSystem.java:371)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.fileDeleted(ProjectFileSystem.java:282)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:78)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:61)
    at org.openide.filesystems.FileObject$ED.dispatch(FileObject.java:753)
    at org.openide.filesystems.EventControl.invokeDispatchers(EventControl.java:160)
    at org.openide.filesystems.EventControl.exitAtomicAction(EventControl.java:138)
    at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:91)
    at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:439)
    at org.openide.loaders.DataObjectPool.runAtomicAction(DataObjectPool.java:203)
    at org.openide.loaders.DataObject.invokeAtomicAction(DataObject.java:759)
    at org.openide.loaders.DataObject.delete(DataObject.java:538)
    at com.sun.rave.project.model.WebAppProject.removeJSPItem(WebAppProject.java:1065)
    at com.sun.rave.project.model.WebAppProject.removeProjectItem(WebAppProject.java:1005)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.handleDeletedEvent(ProjectFileSystem.java:371)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.fileDeleted(ProjectFileSystem.java:282)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:78)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:61)
    at org.openide.filesystems.FileObject$ED.dispatch(FileObject.java:753)
    at org.openide.filesystems.EventControl.invokeDispatchers(EventControl.java:160)
    at org.openide.filesystems.EventControl.exitAtomicAction(EventControl.java:138)
    at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:91)
    at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:439)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.doDestroy(ExplorerActions.java:752)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.performAction(ExplorerActions.java:631)
    at org.openide.explorer.ExplorerActions$DeleteActionPerformer.actionPerformed(ExplorerActions.java:774)
    at org.openide.util.actions.CallbackSystemAction$2.run(CallbackSystemAction.java:438)
    at org.openide.util.actions.CallableSystemAction$ActionRunnable.actionPerformed(CallableSystemAction.java:247)
    at org.netbeans.core.ModuleActions.invokeAction(ModuleActions.java:71)
    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:324)
    at org.openide.util.actions.CallableSystemAction.invokeAction(CallableSystemAction.java:179)
    at org.openide.util.actions.CallableSystemAction.access$000(CallableSystemAction.java:31)
    at org.openide.util.actions.CallableSystemAction$ActionRunnable.doRun(CallableSystemAction.java:241)
    at org.openide.util.actions.CallableSystemAction$2.run(CallableSystemAction.java:111)
    at org.openide.util.Task.run(Task.java:136)
    at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:330)
    at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:686)
    INFORMATIONAL *********** Exception occurred ************ at Thu Dec 23 14:11:39 CET 2004
    java.lang.NullPointerException
    at com.sun.rave.insync.SourceUnit.grabDocument(SourceUnit.java:96)
    at com.sun.rave.insync.SourceUnit.sync(SourceUnit.java:493)
    at com.sun.rave.insync.models.FacesModel.sync(FacesModel.java:731)
    at com.sun.rave.insync.models.FacesModelSet.getDesignContexts(FacesModelSet.java:318)
    at com.sun.rave.outline.OutlinePanel.updateModelViews(OutlinePanel.java:164)
    at com.sun.rave.outline.OutlinePanel.contextClosed(OutlinePanel.java:338)
    at com.sun.rave.insync.models.FacesModelSet.fireContextClosed(FacesModelSet.java:494)
    at com.sun.rave.insync.models.FacesModel.destroy(FacesModel.java:282)
    at com.sun.rave.insync.ModelSet.itemsRemoved(ModelSet.java:326)
    [catch] at com.sun.rave.project.model.ProjectFolder.fireContentRemoved(ProjectFolder.java:463)
    at com.sun.rave.project.model.ProjectFolder.removeProjectItem(ProjectFolder.java:266)
    at com.sun.rave.project.model.WebAppProject.removeJavaItem(WebAppProject.java:1143)
    at com.sun.rave.project.model.WebAppProject.removeProjectItem(WebAppProject.java:1007)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.handleDeletedEvent(ProjectFileSystem.java:371)
    at com.sun.rave.project.ProjectFileSystem$ProjectReference.fileDeleted(ProjectFileSystem.java:282)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:78)
    at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport

    Hello,
    It's possible there are errors in your project and
    because the previous release wasn't as strict in
    detecting errors.
    Update 5 is more strict.
    One thing you can do is make sure in your Java source
    files that all references are accounted for.
    e.g. If you have any library references (jars mounted, such
    as Web services) make sure all jars are available
    Also, if you're using getContext() method in any of your
    Java source, temporarily change this method to getFacesContext()
    Please see blog for more info
    http://blogs.sun.com/roller/page/tor/20041223#creator_patch_5_problems
    Regards,
    John
    JSC QA

  • Creative MP3 Player News Ser

    Hi Everyone,
    on February 22nd, 2005, Creative Labs is shutting down their own news server at :
    news.creativelabs.com Products.Nomad
    Due to the high demand of current users of this news server, I have created an private, but public news server, where everyone can post questions and Creative Labs MP3 Player related topics. This NEW news server is located at :
    news.jumpingcholla.com
    .....and can be accessed via any common news reader, like Outlook Express, Eudora, etc.
    Hope to see yo there.
    Greetings,

    Before this kinda wonderful thing called the World Wide Web there was Usenet, which is a different system for posting on information boards. Creative's "news server" is a Usenet based server. Much like the web board here that allows you to post questions, answer etc., but it's a completely different system from the world wide web, and arguably a lot better targeted at this type of information format.
    Basically just click on JCE's link, or the link in my signature, and your default newsreader should take you there and allow you to complete the setup.
    More on Usenet here in Wikipedia.

Maybe you are looking for

  • Wsdl parsing error soa11g cluster environment

    hi, i clicked test in console below error is coming in 11g soa cluster environment Please help me. http://soadev-internal.xxx.com/soa-infra/services/default/HighwayTableUpdateProcess/highwaytableupdatebpel_client_ep?WSDL Either the WSDL URL is invali

  • FRM-41211

    Have been getting FRM-41211 Integration error SSL failure running another product only when running a report(6i) from Forms(6i) for the first time. Subsequent runs work ok. ie once the reports background engine has started. Checked Technet but nothin

  • I want to change the name of my bluetooth device in iOS.

    Attended a meeting yesterday.  Several others in the room had the same Logitech Ultrathin BT keyboard.  So, the connect list was a mile long.  Each attempt to connect failed as others were connecting to each others keyboards......no way to tell who's

  • LMS report for down ports

    I am using LMS3.2 and I donot know how to customize a report or sys log to be sent to me as a notification or e-mail when aport or the switch is down, and how to search for a specified host using the ip or the mac address.

  • I can't enter my MacBook?

    My MacBook Pro shut down then I turned it back on and when I tried to enter my password it won't enter. It's the right password, how can I contact Apple to fix this?