Weblogic deployer doesn't work under 9.2, driving me nutso! =P

I've tried everything trying to get the deploy/undeployer to work (tried http, t3 etc.)
Example ant task:
     <target name="undeploy">
          <path id="xdoclet.lib.path">
          <fileset dir="${weblogic.lib.dir}">
          <include name="*.jar"/>
          </fileset>
          </path>
          <java classname="weblogic.Deployer" fork="true" maxmemory="256m" failonerror="true" classpathref="xdoclet.lib.path">
     <arg line="-adminurl http://localhost:7001"/>
     <arg line="-username weblogic"/>
     <arg line="-password express1"/>
     <arg line="-name t1scp3"/>               
               <arg value="-undeploy"/>
               <arg value="-debug"/>
          </java>
     </target>
I've also tried using the ant task that comes with weblogic, but I always get this error! (I can ping the server using the ping class)
Any ideas? (Stack trace below)
Buildfile: C:\workspace\t1scp3\build.xml
undeploy:
[java] weblogic.Deployer invoked with options: -adminurl http://localhost:7001 -username weblogic -name t1scp3 -undeploy -debug
[java] [WebLogicDeploymentManagerImpl.<init>():103] : Constructing DeploymentManager for J2EE version V1_4 deployments
[java] [WebLogicDeploymentManagerImpl.getNewConnection():146] : Connecting to admin server at localhost:7001, as user weblogic
[java] [ServerConnectionImpl.getEnvironment():288] : setting environment
[java] [ServerConnectionImpl.getEnvironment():291] : getting context using http://localhost:7001
[java] [ServerConnectionImpl.getMBeanServer():239] : Connecting to MBeanServer at service:jmx:http://localhost:7001/jndi/weblogic.management.mbeanservers.domainruntime
[java] java.io.IOException
[java] at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:135)
[java] at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:79)
[java] at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:326)
[java] at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:247)
[java] at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.getMBeanServer(ServerConnectionImpl.java:240)
[java] at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.getMBeanServerForType(ServerConnectionImpl.java:191)
[java] at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.init(ServerConnectionImpl.java:147)
[java] at weblogic.deploy.api.spi.deploy.WebLogicDeploymentManagerImpl.getNewConnection(WebLogicDeploymentManagerImpl.java:148)
[java] at weblogic.deploy.api.spi.deploy.WebLogicDeploymentManagerImpl.<init>(WebLogicDeploymentManagerImpl.java:118)
[java] at weblogic.deploy.api.spi.factories.internal.DeploymentFactoryImpl.getDeploymentManager(DeploymentFactoryImpl.java:84)
[java] at weblogic.deploy.api.tools.SessionHelper.getDeploymentManager(SessionHelper.java:432)
[java] at weblogic.deploy.api.tools.deployer.Jsr88Operation.connect(Jsr88Operation.java:302)
[java] at weblogic.deploy.api.tools.deployer.Deployer.perform(Deployer.java:137)
[java] at weblogic.deploy.api.tools.deployer.Deployer.runBody(Deployer.java:88)
[java] at weblogic.utils.compiler.Tool.run(Tool.java:158)
[java] at weblogic.utils.compiler.Tool.run(Tool.java:115)
[java] at weblogic.Deployer.run(Deployer.java:70)
[java] at weblogic.Deployer.main(Deployer.java:54)
[java] Caused by: javax.naming.CommunicationException [Root exception is java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:
     [java] java.io.EOFException]
[java] at weblogic.jrmp.Context.lookup(Context.java:189)
[java] at weblogic.jrmp.Context.lookup(Context.java:195)
[java] at javax.naming.InitialContext.lookup(InitialContext.java:351)
[java] at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:126)
[java] ... 17 more
[java] Caused by: java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:
[java] java.io.EOFException
[java] at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:273)
[java] at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
[java] at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
[java] at weblogic.jrmp.BaseRemoteRef.invoke(BaseRemoteRef.java:221)
[java] at weblogic.jrmp.RegistryImpl_Stub.lookup(Unknown Source)
[java] at weblogic.jrmp.Context.lookup(Context.java:185)
[java] ... 20 more
[java] Caused by: java.io.EOFException
[java] at java.io.DataInputStream.readByte(DataInputStream.java:243)
[java] at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:215)
[java] ... 25 more
[java] [ServerConnectionImpl.close():334] : Closing DM connection
[java] [ServerConnectionImpl.close():354] : Unregistered all listeners
[java] weblogic.deploy.api.tools.deployer.DeployerException: Unable to connect to 'http://localhost:7001': null. Ensure the url represents a running admin server and that the credentials are correct. If using http protocol, tunneling must be enabled on the admin server.
[java] at weblogic.deploy.api.tools.deployer.Jsr88Operation.connect(Jsr88Operation.java:314)
[java] at weblogic.deploy.api.tools.deployer.Deployer.perform(Deployer.java:137)
[java] at weblogic.deploy.api.tools.deployer.Deployer.runBody(Deployer.java:88)
[java] at weblogic.utils.compiler.Tool.run(Tool.java:158)
[java] at weblogic.utils.compiler.Tool.run(Tool.java:115)
[java] at weblogic.Deployer.run(Deployer.java:70)
[java] at weblogic.Deployer.main(Deployer.java:54)
[java] Caused by: javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException: [J2EE Deployment SPI:260010]Unable to connect to 'http://localhost:7001' as user, 'weblogic'. Error received: null
[java] at weblogic.deploy.api.spi.deploy.WebLogicDeploymentManagerImpl.<init>(WebLogicDeploymentManagerImpl.java:121)
[java] at weblogic.deploy.api.spi.factories.internal.DeploymentFactoryImpl.getDeploymentManager(DeploymentFactoryImpl.java:84)
[java] at weblogic.deploy.api.tools.SessionHelper.getDeploymentManager(SessionHelper.java:432)
[java] at weblogic.deploy.api.tools.deployer.Jsr88Operation.connect(Jsr88Operation.java:302)
[java] ... 6 more
[java] Caused by: weblogic.deploy.api.spi.exceptions.ServerConnectionException: [J2EE Deployment SPI:260010]Unable to connect to 'http://localhost:7001' as user, 'weblogic'. Error received: null
[java] at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.getMBeanServer(ServerConnectionImpl.java:251)
[java] at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.getMBeanServerForType(ServerConnectionImpl.java:191)
[java] at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.init(ServerConnectionImpl.java:147)
[java] at weblogic.deploy.api.spi.deploy.WebLogicDeploymentManagerImpl.getNewConnection(WebLogicDeploymentManagerImpl.java:148)
[java] at weblogic.deploy.api.spi.deploy.WebLogicDeploymentManagerImpl.<init>(WebLogicDeploymentManagerImpl.java:118)
[java] ... 9 more
[java] Caused by: java.io.IOException
[java] at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:135)
[java] at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:79)
[java] at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:326)
[java] at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:247)
[java] at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.getMBeanServer(ServerConnectionImpl.java:240)
[java] ... 13 more
[java] Caused by: javax.naming.CommunicationException [Root exception is java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:
     [java] java.io.EOFException]
[java] at weblogic.jrmp.Context.lookup(Context.java:189)
[java] at weblogic.jrmp.Context.lookup(Context.java:195)
[java] at javax.naming.InitialContext.lookup(InitialContext.java:351)
[java] at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:126)
[java] ... 17 more
[java] Caused by: java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:
[java] java.io.EOFException
[java] at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:273)
[java] at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
[java] at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
[java] at weblogic.jrmp.BaseRemoteRef.invoke(BaseRemoteRef.java:221)
[java] at weblogic.jrmp.RegistryImpl_Stub.lookup(Unknown Source)
[java] at weblogic.jrmp.Context.lookup(Context.java:185)
[java] ... 20 more
[java] Caused by: java.io.EOFException
[java] at java.io.DataInputStream.readByte(DataInputStream.java:243)
[java] at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:215)
[java] ... 25 more
BUILD FAILED
C:\workspace\t1scp3\build.xml:229: Java returned: 1
Total time: 10 seconds

<p>Can you add the following to your WLS startup options (or enable the relevant debug subsystems using the WLS9.2 console):</p>
<ul>
<li>weblogic.debug.DebugConnection</li>
<li>weblogic.debug.DebugRouting</li>
<li>weblogic.debug.DebugMessaging</li>
<li>weblogic.debug.isLogRemoteExceptionsEnabled</li>
</ul>
<p>and post the your server log here as well.</p>
<p>Also where did you get the task classes from?</p>
<p>
Hussein Badakhchani
London Middleware
</p>
Edited by hoos at 01/07/2007 3:41 AM

Similar Messages

  • Parsing in Weblogic/jsp doesn't work; application-mode (command-line) works

    Hello-
    Parsing my XML file in Weblogic/jsp doesn't work, whereas it works
    in application-mode... (albeit on two different machines)
    Here are the parameters:
    server1:
    weblogic 6.0
    win2k server
    jre1.3
    my personal machine:
    ***no weblogic***
    win2k server
    jre1.3
    When I run my code as an application (command-line style) on my machine,
    parsing in my xml file works fine, and I can do a root.toString() and it
    dumps out the entire xml file, as desired.
    However, running my code inside weblogic (on server1) in JSP, parsing in
    my file and doing a root.toString() results in the following: [dmui: null]
    (where dmui is my root)
    (even though i'm running it on two different machines, i'm positive its the
    same code (the servers share a mapped drive)...
    So, I think its probably because I'm using a different parser, as
    specified by weblogic? There are no exceptions being thrown. Here's my
    (abbreviated) code, which is called either command line style or in a JSP:
    // Imports
    import org.w3c.dom.*;
    import org.w3c.dom.Document;
    import javax.xml.parsers.*;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    DocumentBuilderFactory docBuilderFactory =
    DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
    mDocument = docBuilder.parse (inFile);
    myRoot.toString()
    -END
    Doing a System.getProperty("javax.xml.parsers.DocumentBuilderFactory")
    results in:
    server1 (weblogic/jsp):
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl"
    my machine (application-mode):
    null
    Does anyone have any ideas about how to get this work? Do I try to set it
    up so that they both use the same parser? Do I change the Weblogic parser?
    If so, to what? And how?
    Am I even close?
    Any help would be appreciated..
    Thanks, Clint
    "[email protected]" <[email protected]> wrote in message
    news:[email protected]...
    No problem, glad you got it worked out :)
    ~Ryan U.
    Jennifer wrote in message <[email protected]>...
    I completely missed setting the property(:-o), foolish mistake. That wasit. Thanks.
    "j.upton" <[email protected]> wrote:
    Jennifer,
    Personally I would get rid of import com.sun.xml.parser.* and use xerces
    which comes with WLS 6.0 now, unless like I said earlier you have a need
    to
    use the sun parser :) Try something like this with your code --I've put
    things to watch for as comments in the code.
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.w3c.dom.*;
    import java.io.FileInputStream;
    public class BasicDOM {
    public BasicDOM (String xmlFile) {
    try{
    FileInputStream inStream;
    Document document;
    /*You must specify a parser for jaxp. You can in a simple view
    think
    of this as being analogous to a driver used by JDBC or JNDI. If you are
    using this in the context of a servlet or JSP and have set an XML
    registry
    with the console this happens automatically. You can also invoke it in
    the
    context of an application on the command line using the -D switch. */
    System.setProperty("javax.xml.parsers.DocumentBuilderFactory",
    >>>
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
    // create a document factory
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    // specify validating or non-validating parser
    dbf.setValidating(true);
    // obtain a factory
    DocumentBuilder db = dbf.newDocumentBuilder();
    // create a document from the factory
    inStream = new FileInputStream(xmlFile);
    document = db.parse(inStream);
    }//try
    catch (Exception e)
    System.out.println("Unexpected exception reading document!"
    +e);
    System.exit (0);
    }//catch
    }//BasicDom
    // Main Method
    public static void main (String[] args) {
    if (args.length < 1)
    System.exit(1); file://or you can be more verbose
    new BasicDOM(args[0]);
    }//class
    =============================================
    That will give you a basic DOM you can manipulate and parse it fromthere.
    BTW this code
    compiled and ran on WLS 6.0 under Windows 2000.
    Let me know if this helped or you still are having trouble.
    ~Ryan U.
    "Jennifer" <[email protected]> wrote in message
    news:[email protected]...
    Actually I included com.sun.xml.parser.* as one last febble attempt toget
    it working.
    And as for source code, I included the code. If I just put that oneline
    of code
    in, including the imports, it fails giving me an error listed above inthe
    subject
    line. Here is the code again:
    package examples.xml.http;
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    import org.w3c.dom.*;
    import java.util.*;
    import java.net.*;
    import org.xml.sax.*;
    import java.io.*;
    public class BasicDOM {
    static Document document;
    public BasicDOM (String xmlFile) {
    try {
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    } catch (FactoryConfigurationError e){
    System.err.println(e.getException());
    e.printStackTrace();
    // Main Method
    public static void main (String[] args) {
    BasicDOM basicDOM = new BasicDOM (args[0]);

    Hi, Rob
    Does it work in WL9.2?
    It seems I do it exactly as the explained at http://edocs.bea.com/wls/docs81/programming/classloading.html - and it fails :o(.
    I try to run my app.ear with WL9.2 There are 2 components in it: webapp and mdb. The webapp/WEB-INF contains weblogic.xml:
    <weblogic-web-app>
    <container-descriptor>     
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    </weblogic-web-app>
    Mdb is expected to run in the same mode, i.e. to prefer the webapp/WEB-INF/*.jar over the parent Weblogic classloader. To do so I add the weblogic-application.xml to the app.ear!/META-INF:
    <weblogic-application>
    <classloader-structure>
    <module-ref>
    <!-- reminder: this webapp contains
    prefer-web-inf-classes -->
    <module-uri>webapp</module-uri>
    </module-ref>
    <classloader-structure>
    <module-ref>
    <module-uri>mdb.jar</module-uri>
    </module-ref>
    </classloader-structure>
    </classloader-structure>
    </weblogic-application>
    Now, when classloader-structure specified, both webabb and mdb prefer the weblogic root loader as if prefer-web-inf-classes not defined at all.

  • My App store doesn´t work under my user. Everything is ok if I start with a guest user. I have a Yosemite MacBook Pro. How can I solve this? Because I'm unable to open the App Store, Mail, Contacts and so on. Please can you help me.

    My App store doesn´t work under my user. Everything is ok if I start with a guest user. I have a Yosemite MacBook Pro. How can I solve this? Because I'm unable to open the App Store, Mail, Contacts and so on. Please can you help me.

    Here it is. Hope that helps. Thank You.
    28/01/15 21:57:12,043 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    28/01/15 21:57:12,043 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d251b0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,044 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d25ec0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,046 App Store[1494]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.appstore/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,051 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c407a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,051 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c41440 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,053 CalendarAgent[1495]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.CalendarAgent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,056 com.apple.xpc.launchd[1]: (com.apple.ReportCrash[1497]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    28/01/15 21:57:12,427 com.apple.xpc.launchd[1]: (com.apple.appstore.18776[1494]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,472 ReportCrash[1497]: Saved crash report for App Store[1494] version 2.0 (376.6.2) to /Users/HV/Library/Logs/DiagnosticReports/App Store_2015-01-28-215712_MacBook-Pro-de-HV.crash
    28/01/15 21:57:12,485 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/App%20Store_2015-01-27-212748_M acBook-Pro-de-HV.crash
    28/01/15 21:57:12,505 AddressBookSourceSync[1498]: Could not get real path for Address Book lock folder: open() for F_GETPATH failed.
    28/01/15 21:57:12,506 AddressBookSourceSync[1498]: *** Assertion failure in -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:], /SourceCache/AddressBook/AddressBook-1563/Framework/AddressBookUI/ABProcessShar edLock.m:57
    28/01/15 21:57:12,507 AddressBookSourceSync[1498]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: lockFilePath != nil'
    *** First throw call stack:
      0   CoreFoundation                      0x00007fff8951a66c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8a6fb76e objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8951a44a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x00007fff8decc3a9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   AddressBook                         0x00007fff8b9a1c0d -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:] + 144
      5   AddressBook                         0x00007fff8ba97f79 +[ABProcessSharedLock recursiveSharedLockWithLockFilePath:] + 97
      6   AddressBook                         0x00007fff8b9a15a2 +[ABAddressBook initializeFileLock] + 84
      7   AddressBook                         0x00007fff8b99e443 -[ABAddressBook nts_InitDefaultContactManager] + 153
      8   AddressBook                         0x00007fff8b99e35b +[ABAddressBook nts_SharedAddressBook] + 72
      9   AddressBook                         0x00007fff8b99e273 +[ABAddressBook nts_CreateSharedAddressBook] + 48
      10  AddressBook                         0x00007fff8b99e0df +[ABAddressBook sharedAddressBook] + 67
      11  AddressBook                         0x00007fff8b99d3a1 +[ABAddressBook addressBookWithDatabaseDirectory:options:] + 54
      12  AddressBook                         0x00007fff8ba87370 -[PHXSource addressBook] + 146
      13  CardDAVPlugin                       0x00000001096cbfd0 -[PHXCardDAVSource addressBook] + 47
      14  AddressBookSourceSync               0x00000001075ca28e AddressBookSourceSync + 8846
      15  AddressBook                         0x00007fff8b9a4d2e __55-[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:]_block_invoke + 16
      16  CoreFoundation                      0x00007fff8943b385 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 133
      17  CoreFoundation                      0x00007fff8943aa89 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 313
      18  AddressBook                         0x00007fff8b9a4d04 -[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:] + 168
      19  AddressBook                         0x00007fff8b9a4c46 -[NSArray(ABArrayAdditions) _abMap:] + 91
      20  AddressBookSourceSync               0x00000001075ca05e AddressBookSourceSync + 8286
      21  AddressBookSourceSync               0x00000001075ca4fb AddressBookSourceSync + 9467
      22  libdyld.dylib                       0x00007fff933045c9 start + 1
      23  ???                                 0x0000000000000001 0x0 + 1
    28/01/15 21:57:12,606 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f369d0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,607 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f375a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,609 LaterAgent[1500]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.lateragent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,619 Problem Reporter[1499]: Failed to connect (_imageWell) outlet from (ProblemReportWindowController) to (NSImageView): missing setter or instance variable
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent[1495]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    28/01/15 21:57:12,713 ReportCrash[1497]: Saved crash report for CalendarAgent[1495] version 8.0 (316) to /Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215712_MacBoo k-Pro-de-HV.crash
    28/01/15 21:57:12,746 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215343 _MacBook-Pro-de-HV.crash
    28/01/15 21:57:12,043 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    28/01/15 21:57:12,043 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d251b0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,044 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d25ec0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,046 App Store[1494]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.appstore/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,051 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c407a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,051 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c41440 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,053 CalendarAgent[1495]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.CalendarAgent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,056 com.apple.xpc.launchd[1]: (com.apple.ReportCrash[1497]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    28/01/15 21:57:12,427 com.apple.xpc.launchd[1]: (com.apple.appstore.18776[1494]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,472 ReportCrash[1497]: Saved crash report for App Store[1494] version 2.0 (376.6.2) to /Users/HV/Library/Logs/DiagnosticReports/App Store_2015-01-28-215712_MacBook-Pro-de-HV.crash
    28/01/15 21:57:12,485 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/App%20Store_2015-01-27-212748_M acBook-Pro-de-HV.crash
    28/01/15 21:57:12,505 AddressBookSourceSync[1498]: Could not get real path for Address Book lock folder: open() for F_GETPATH failed.
    28/01/15 21:57:12,506 AddressBookSourceSync[1498]: *** Assertion failure in -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:], /SourceCache/AddressBook/AddressBook-1563/Framework/AddressBookUI/ABProcessShar edLock.m:57
    28/01/15 21:57:12,507 AddressBookSourceSync[1498]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: lockFilePath != nil'
    *** First throw call stack:
      0   CoreFoundation                      0x00007fff8951a66c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8a6fb76e objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8951a44a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x00007fff8decc3a9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   AddressBook                         0x00007fff8b9a1c0d -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:] + 144
      5   AddressBook                         0x00007fff8ba97f79 +[ABProcessSharedLock recursiveSharedLockWithLockFilePath:] + 97
      6   AddressBook                         0x00007fff8b9a15a2 +[ABAddressBook initializeFileLock] + 84
      7   AddressBook                         0x00007fff8b99e443 -[ABAddressBook nts_InitDefaultContactManager] + 153
      8   AddressBook                         0x00007fff8b99e35b +[ABAddressBook nts_SharedAddressBook] + 72
      9   AddressBook                         0x00007fff8b99e273 +[ABAddressBook nts_CreateSharedAddressBook] + 48
      10  AddressBook                         0x00007fff8b99e0df +[ABAddressBook sharedAddressBook] + 67
      11  AddressBook                         0x00007fff8b99d3a1 +[ABAddressBook addressBookWithDatabaseDirectory:options:] + 54
      12  AddressBook                         0x00007fff8ba87370 -[PHXSource addressBook] + 146
      13  CardDAVPlugin                       0x00000001096cbfd0 -[PHXCardDAVSource addressBook] + 47
      14  AddressBookSourceSync               0x00000001075ca28e AddressBookSourceSync + 8846
      15  AddressBook                         0x00007fff8b9a4d2e __55-[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:]_block_invoke + 16
      16  CoreFoundation                      0x00007fff8943b385 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 133
      17  CoreFoundation                      0x00007fff8943aa89 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 313
      18  AddressBook                         0x00007fff8b9a4d04 -[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:] + 168
      19  AddressBook                         0x00007fff8b9a4c46 -[NSArray(ABArrayAdditions) _abMap:] + 91
      20  AddressBookSourceSync               0x00000001075ca05e AddressBookSourceSync + 8286
      21  AddressBookSourceSync               0x00000001075ca4fb AddressBookSourceSync + 9467
      22  libdyld.dylib                       0x00007fff933045c9 start + 1
      23  ???                                 0x0000000000000001 0x0 + 1
    28/01/15 21:57:12,606 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f369d0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,607 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f375a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,609 LaterAgent[1500]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.lateragent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,619 Problem Reporter[1499]: Failed to connect (_imageWell) outlet from (ProblemReportWindowController) to (NSImageView): missing setter or instance variable
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent[1495]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    28/01/15 21:57:12,713 ReportCrash[1497]: Saved crash report for CalendarAgent[1495] version 8.0 (316) to /Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215712_MacBoo k-Pro-de-HV.crash
    28/01/15 21:57:12,746 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215343 _MacBook-Pro-de-HV.crash
    28/01/15 21:57:12,043 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    28/01/15 21:57:12,043 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d251b0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,044 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d25ec0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,046 App Store[1494]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.appstore/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,051 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c407a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,051 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c41440 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,053 CalendarAgent[1495]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.CalendarAgent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,056 com.apple.xpc.launchd[1]: (com.apple.ReportCrash[1497]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    28/01/15 21:57:12,427 com.apple.xpc.launchd[1]: (com.apple.appstore.18776[1494]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,472 ReportCrash[1497]: Saved crash report for App Store[1494] version 2.0 (376.6.2) to /Users/HV/Library/Logs/DiagnosticReports/App Store_2015-01-28-215712_MacBook-Pro-de-HV.crash
    28/01/15 21:57:12,485 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/App%20Store_2015-01-27-212748_M acBook-Pro-de-HV.crash
    28/01/15 21:57:12,505 AddressBookSourceSync[1498]: Could not get real path for Address Book lock folder: open() for F_GETPATH failed.
    28/01/15 21:57:12,506 AddressBookSourceSync[1498]: *** Assertion failure in -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:], /SourceCache/AddressBook/AddressBook-1563/Framework/AddressBookUI/ABProcessShar edLock.m:57
    28/01/15 21:57:12,507 AddressBookSourceSync[1498]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: lockFilePath != nil'
    *** First throw call stack:
      0   CoreFoundation                      0x00007fff8951a66c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8a6fb76e objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8951a44a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x00007fff8decc3a9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   AddressBook                         0x00007fff8b9a1c0d -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:] + 144
      5   AddressBook                         0x00007fff8ba97f79 +[ABProcessSharedLock recursiveSharedLockWithLockFilePath:] + 97
      6   AddressBook                         0x00007fff8b9a15a2 +[ABAddressBook initializeFileLock] + 84
      7   AddressBook                         0x00007fff8b99e443 -[ABAddressBook nts_InitDefaultContactManager] + 153
      8   AddressBook                         0x00007fff8b99e35b +[ABAddressBook nts_SharedAddressBook] + 72
      9   AddressBook                         0x00007fff8b99e273 +[ABAddressBook nts_CreateSharedAddressBook] + 48
      10  AddressBook                         0x00007fff8b99e0df +[ABAddressBook sharedAddressBook] + 67
      11  AddressBook                         0x00007fff8b99d3a1 +[ABAddressBook addressBookWithDatabaseDirectory:options:] + 54
      12  AddressBook                         0x00007fff8ba87370 -[PHXSource addressBook] + 146
      13  CardDAVPlugin                       0x00000001096cbfd0 -[PHXCardDAVSource addressBook] + 47
      14  AddressBookSourceSync               0x00000001075ca28e AddressBookSourceSync + 8846
      15  AddressBook                         0x00007fff8b9a4d2e __55-[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:]_block_invoke + 16
      16  CoreFoundation                      0x00007fff8943b385 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 133
      17  CoreFoundation                      0x00007fff8943aa89 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 313
      18  AddressBook                         0x00007fff8b9a4d04 -[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:] + 168
      19  AddressBook                         0x00007fff8b9a4c46 -[NSArray(ABArrayAdditions) _abMap:] + 91
      20  AddressBookSourceSync               0x00000001075ca05e AddressBookSourceSync + 8286
      21  AddressBookSourceSync               0x00000001075ca4fb AddressBookSourceSync + 9467
      22  libdyld.dylib                       0x00007fff933045c9 start + 1
      23  ???                                 0x0000000000000001 0x0 + 1
    28/01/15 21:57:12,606 secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f369d0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,607 secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f375a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    28/01/15 21:57:12,609 LaterAgent[1500]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.lateragent/ modes[1]=0700: Permission denied
    28/01/15 21:57:12,619 Problem Reporter[1499]: Failed to connect (_imageWell) outlet from (ProblemReportWindowController) to (NSImageView): missing setter or instance variable
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent[1495]) Service exited due to signal: Illegal instruction: 4
    28/01/15 21:57:12,682 com.apple.xpc.launchd[1]: (com.apple.CalendarAgent) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    28/01/15 21:57:12,713 ReportCrash[1497]: Saved crash report for CalendarAgent[1495] version 8.0 (316) to /Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215712_MacBoo k-Pro-de-HV.crash
    28/01/15 21:57:12,746 ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215343 _MacBook-Pro-de-HV.crash
    Jan 28 21:57:12 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.imfoundation.IMRemoteURLConnectionAgent): The _DirtyJetsamMemoryLimit key is not available on this platform.
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d251b0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718d25ec0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV App Store[1494]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.appstore/ modes[1]=0700: Permission denied
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c407a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c41440 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV CalendarAgent[1495]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.CalendarAgent/ modes[1]=0700: Permission denied
    Jan 28 21:57:12 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.ReportCrash[1497]): Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    Jan 28 21:57:12 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.appstore.18776[1494]): Service exited due to signal: Illegal instruction: 4
    Jan 28 21:57:12 MBP-de-HV.lan ReportCrash[1497]: Saved crash report for App Store[1494] version 2.0 (376.6.2) to /Users/HV/Library/Logs/DiagnosticReports/App Store_2015-01-28-215712_MacBook-Pro-de-HV.crash
    Jan 28 21:57:12 MBP-de-HV.lan ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/App%20Store_2015-01-27-212748_M acBook-Pro-de-HV.crash
    Jan 28 21:57:12 MBP-de-HV.lan AddressBookSourceSync[1498]: Could not get real path for Address Book lock folder: open() for F_GETPATH failed.
    Jan 28 21:57:12 MBP-de-HV.lan AddressBookSourceSync[1498]: *** Assertion failure in -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:], /SourceCache/AddressBook/AddressBook-1563/Framework/AddressBookUI/ABProcessShar edLock.m:57
    Jan 28 21:57:12 MBP-de-HV.lan AddressBookSourceSync[1498]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: lockFilePath != nil'
      *** First throw call stack:
      0   CoreFoundation                      0x00007fff8951a66c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8a6fb76e objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8951a44a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x00007fff8decc3a9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   AddressBook                         0x00007fff8b9a1c0d -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:] + 144
      5   AddressBook                         0x00007fff8ba97f79 +[ABProcessSharedLock recursiveSharedLockWithLockFilePath:] + 97
      6   AddressBook                         0x00007fff8b9a15a2 +[ABAddressBook initializeFileLock] + 84
      7   AddressBook                         0x00007fff8b99e443 -[ABAddressBook nts_InitDefaultContactManager] + 153
      8   AddressBook                         0x00007fff8b99e35b +[ABAddressBook nts_SharedAddressBook] + 72
      9   AddressBook                         0x00007fff8b99e273 +[ABAddressBook nts_CreateSharedAddressBook] + 48
      10  AddressBook                         0x00007fff8b99e0df +[ABAddressBook sharedAddressBook] + 67
      11  AddressBook                         0x00007fff8b99d3a1 +[ABAddressBook addressBookWithDatabaseDirectory:options:] + 54
      12  AddressBook                         0x00007fff8ba87370 -[PHXSource addressBook] + 146
      13  CardDAVPlugin                       0x00000001096cbfd0 -[PHXCardDAVSource addressBook] + 47
      14  AddressBookSourceSync               0x00000001075ca28e AddressBookSourceSync + 8846
      15  AddressBook                         0x00007fff8b9a4d2e __55-[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:]_block_invoke + 16
      16  CoreFoundation                      0x00007fff8943b385 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 133
      17  CoreFoundation                      0x00007fff8943aa89 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 313
      18  AddressBook                         0x00007fff8b9a4d04 -[NSArray(ABArrayAdditions) abArrayWithResultsOfBlock:] + 168
      19  AddressBook                         0x00007fff8b9a4c46 -[NSArray(ABArrayAdditions) _abMap:] + 91
      20  AddressBookSourceSync               0x00000001075ca05e AddressBookSourceSync + 8286
      21  AddressBookSourceSync               0x00000001075ca4fb AddressBookSourceSync + 9467
      22  libdyld.dylib                       0x00007fff933045c9 start + 1
      23  ???                                 0x0000000000000001 0x0 + 1
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f369d0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV.lan secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718f375a0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:12 MBP-de-HV LaterAgent[1500]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.lateragent/ modes[1]=0700: Permission denied
    Jan 28 21:57:12 MBP-de-HV.lan Problem Reporter[1499]: Failed to connect (_imageWell) outlet from (ProblemReportWindowController) to (NSImageView): missing setter or instance variable
    Jan 28 21:57:12 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.CalendarAgent[1495]): Service exited due to signal: Illegal instruction: 4
    Jan 28 21:57:12 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.CalendarAgent): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    Jan 28 21:57:12 MBP-de-HV.lan ReportCrash[1497]: Saved crash report for CalendarAgent[1495] version 8.0 (316) to /Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215712_MacBoo k-Pro-de-HV.crash
    Jan 28 21:57:12 MBP-de-HV.lan ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/CalendarAgent_2015-01-28-215343 _MacBook-Pro-de-HV.crash
    Jan 28 21:57:13 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.lateragent[1500]): Service exited due to signal: Illegal instruction: 4
    Jan 28 21:57:13 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.lateragent): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    Jan 28 21:57:13 MBP-de-HV.lan ReportCrash[1497]: Saved crash report for LaterAgent[1500] version ??? to /Users/HV/Library/Logs/DiagnosticReports/LaterAgent_2015-01-28-215713_MacBook-P ro-de-HV.crash
    Jan 28 21:57:13 MBP-de-HV.lan ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/LaterAgent_2015-01-28-215345_Ma cBook-Pro-de-HV.crash
    Jan 28 21:57:13 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.AddressBook.SourceSync[1498]): Service exited due to signal: Abort trap: 6
    Jan 28 21:57:13 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.AddressBook.SourceSync): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    Jan 28 21:57:13 MBP-de-HV.lan ReportCrash[1497]: Saved crash report for AddressBookSourceSync[1498] version 9.0 (1563) to /Users/HV/Library/Logs/DiagnosticReports/AddressBookSourceSync_2015-01-28-21571 3_MacBook-Pro-de-HV.crash
    Jan 28 21:57:13 MBP-de-HV.lan ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/AddressBookSourceSync_2015-01-2 8-215344_MacBook-Pro-de-HV.crash
    Jan 28 21:57:14 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.imfoundation.IMRemoteURLConnectionAgent): The _DirtyJetsamMemoryLimit key is not available on this platform.
    Jan 28 21:57:14 MBP-de-HV.lan secinitd[257]: unable to get AddressBook lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c34510 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.AddressBookLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:14 MBP-de-HV.lan secinitd[257]: unable to get Calendars lock folder path: Error Domain=NSPOSIXErrorDomain Code=13 "open() for F_GETPATH failed." UserInfo=0x7fd718c350c0 {NSFilePath=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/.CalendarLocks, NSLocalizedDescription=open() for F_GETPATH failed.}
    Jan 28 21:57:14 MBP-de-HV soagent[1507]: libcoreservices: _dirhelper: 523: mkdir: path=/var/folders/c8/njtxl9js6ns7351s5m_n6sn80000gn/T/com.apple.soagent/ modes[1]=0700: Permission denied
    Jan 28 21:57:14 --- last message repeated 1 time ---
    Jan 28 21:57:14 MBP-de-HV.lan soagent[1507]: Could not get real path for Address Book lock folder: open() for F_GETPATH failed.
    Jan 28 21:57:14 MBP-de-HV.lan soagent[1507]: *** Assertion failure in -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:], /SourceCache/AddressBook/AddressBook-1563/Framework/AddressBookUI/ABProcessShar edLock.m:57
    Jan 28 21:57:14 MBP-de-HV.lan soagent[1507]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: lockFilePath != nil'
      *** First throw call stack:
      0   CoreFoundation                      0x00007fff8951a66c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8a6fb76e objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8951a44a +[NSException raise:format:arguments:] + 106
      3   Foundation                          0x00007fff8decc3a9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
      4   AddressBook                         0x00007fff8b9a1c0d -[ABProcessSharedLock initWithLockFilePath:localLock:fileServices:] + 144
      5   AddressBook                         0x00007fff8ba97f79 +[ABProcessSharedLock recursiveSharedLockWithLockFilePath:] + 97
      6   AddressBook                         0x00007fff8b9a15a2 +[ABAddressBook initializeFileLock] + 84
      7   AddressBook                         0x00007fff8b99e443 -[ABAddressBook nts_InitDefaultContactManager] + 153
      8   AddressBook                         0x00007fff8b99e35b +[ABAddressBook nts_SharedAddressBook] + 72
      9   AddressBook                         0x00007fff8b99e273 +[ABAddressBook nts_CreateSharedAddressBook] + 48
      10  AddressBook                         0x00007fff8b99e0df +[ABAddressBook sharedAddressBook] + 67
      11  IMCore                              0x00007fff9509b80b IMTranscriptChatItemEqual + 176400
      12  libdispatch.dylib                   0x00007fff93103c13 _dispatch_client_callout + 8
      13  libdispatch.dylib                   0x00007fff93103b26 dispatch_once_f + 117
      14  IMCore                              0x00007fff950524eb OBJC_METACLASS_$_IMSPIMessage + 455538043
      15  IMCore                              0x00007fff95087650 IMTranscriptChatItemEqual + 94037
      16  libdispatch.dylib                   0x00007fff93103c13 _dispatch_client_callout + 8
      17  libdispatch.dylib                   0x00007fff93103b26 dispatch_once_f + 117
      18  IMCore                              0x00007fff95086964 IMTranscriptChatItemEqual + 90729
      19  IMCore                              0x00007fff9508827b IMTranscriptChatItemEqual + 97152
      20  IMCore                              0x00007fff95052f76 OBJC_METACLASS_$_IMSPIMessage + 455540742
      21  IMCore                              0x00007fff9508a88f IMTranscriptChatItemEqual + 106900
      22  CoreFoundation                      0x00007fff894648a6 ___forwarding___ + 518
      23  CoreFoundation                      0x00007fff89464618 _CF_forwarding_prep_0 + 120
      24  IMCore                              0x00007fff95088146 IMTranscriptChatItemEqual + 96843
      25  IMCore                              0x00007fff9508843e IMTranscriptChatItemEqual + 97603
      26  IMCore                              0x00007fff950885fc IMTranscriptChatItemEqual + 98049
      27  IMCore                              0x00007fff9508887d IMTranscriptChatItemEqual + 98690
      28  MessagesHelperKit                   0x0000000101661dae MessagesHelperKit + 7598
      29  libdispatch.dylib                   0x00007fff93103c13 _dispatch_client_callout + 8
      30  libdispatch.dylib                   0x00007fff93103b26 dispatch_once_f + 117
      31  libobjc.A.dylib                     0x00007fff8a6f41b5 _class_initialize + 649
      32  libobjc.A.dylib                     0x00007fff8a6f3f7f _class_initialize + 83
      33  libobjc.A.dylib                     0x00007fff8a704777 lookUpImpOrForward + 322
      34  libobjc.A.dylib                     0x00007fff8a6ee1ac objc_msgSend + 236
      35  Foundation                          0x00007fff8de18669 -[NSBundle loadAndReturnError:] + 693
      36  MessagesHelperKit                   0x0000000101664045 MessagesHelperKit + 16453
      37  libdispatch.dylib                   0x00007fff93108323 _dispatch_call_block_and_release + 12
      38  libdispatch.dylib                   0x00007fff93103c13 _dispatch_client_callout + 8
      39  libdispatch.dylib                   0x00007fff9310fcbf _dispatch_main_queue_callback_4CF + 861
      40  CoreFoundation                      0x00007fff8946dc79 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
      41  CoreFoundation                      0x00007fff8942a30f __CFRunLoopRun + 2159
      42  CoreFoundation                      0x00007fff89429858 CFRunLoopRunSpecific + 296
      43  Foundation                          0x00007fff8de43849 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
      44  Foundation                          0x00007fff8df3f24f -[NSRunLoop(NSRunLoop) run] + 74
      45  soagent                             0x0000000101656be5 soagent + 3045
      46  libdyld.dylib                       0x00007fff933045c9 start + 1
    Jan 28 21:57:14 MBP-de-HV com.apple.xpc.launchd[1] (com.amazon.music[1506]): Service exited with abnormal code: 1
    Jan 28 21:57:14 MBP-de-HV com.apple.xpc.launchd[1] (com.amazon.music): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    Jan 28 21:57:14 MBP-de-HV.lan com.apple.dock.extra[288]: SOHelperCenter main connection interrupted
    Jan 28 21:57:14 MBP-de-HV com.apple.xpc.launchd[1] (com.apple.soagent[1507]): Service exited due to signal: Abort trap: 6
    Jan 28 21:57:14 MBP-de-HV.lan ReportCrash[1497]: Saved crash report for soagent[1507] version ??? to /Users/HV/Library/Logs/DiagnosticReports/soagent_2015-01-28-215714_MacBook-Pro- de-HV.crash
    Jan 28 21:57:14 MBP-de-HV.lan ReportCrash[1497]: Removing excessive log: file:///Users/HV/Library/Logs/DiagnosticReports/soagent_2015-01-28-215346_MacBo ok-Pro-de-HV.crash

  • Canon LBP 2900 doesn't work under Snow Leopard 10.6.3

    Canon LBP 2900 doesn't work under 10.6.3.
    It worked under 10.5.6, 10.5.7 and 10.5.8.
    The installation process is described here http://discussions.apple.com/message.jspa?messageID=10723997#10723997
    I did the same under SL but no result.
    Any suggestion?

    The procedure of using the CAPT folder from a previous version of OS X was not always successful with 10.5, let alone 10.6. For those like you that did find it worked, there were many others that found the workaround did not work for them.
    Version 3.05 of CAPT lists the following Canon printers as supported models.
    LBP9100Cdn
    LBP7200C series
    LBP5300
    LBP5100
    LBP5050 series
    LBP3500
    LBP3310
    LBP3300
    LBP3250
    LBP3150
    LBP3108
    LBP3100
    LBP3050
    LBP3018
    LBP3010
    LBP3000
    You may have more success with trying to get this driver to work with your LPB2900. At least this version has been written for 10.6.
    If this new driver does not work with the LPB2900 then another solution would be to have an old Windows XP computer connected to the LBP2900 and then use the following procedure to print to it from the Mac.
    http://iharder.sourceforge.net/current/macosx/winmacprinter/

  • The ADF Mobile preview pane doesn't work under Windows 8.

    The ADF Mobile preview pane doesn't work under Windows 8 64bit even I use Jdeveloper version 11.1.2.4.0,but I use windows 7 64bit or windows xp works fine.
    How to fix it, please.
    Thanks !

    Hi,
    I installed JDeveloper 11.1.2.4 on my Windows 8 machine and then the ADF Mobile extension. I can open the previewer for ADF Mobile. So there is no problem with this on Windows 8. I used the generic installation, which is that I installed the JDK and then run the Java -jar command for the JDeveloper install.
    Frank

  • Italian keyboard doesn't work under the gui

    I have an italian keyboard on a x86 Solaris 10 installation.
    All the patch available using Sun Update applied but the keyboard doesn't work, it still works only as a USA keyboard.
    Forcing it as a Italian layout at startup (pressing esc and using the boot utility) make the keyboard work in the consolle with the correct layout but under the gui, after the dtlogin startup, the key doesn't work correctly. Every key is "shifted" of one position, so inserting "root" result in "eiir"
    Even applyng the 118966-08 patch as suggested doesn't work.
    Obiouvsly I used the gnome panel to set the correct keyboard under gnome but with no result
    Both the two type of italian keyboards don't work, the standard one and the 104 "ibm" italian layout.
    All this keyboards work fine on the same PC with both WindowsXP and Linux Ubuntu.
    Any suggestion to fix this ?

    The solution was to reconfigure the X-Server: In a console-window I called kdmconfig and corrected the keyboard settings: it was a US-Keyboard. Nobody knows ... At installation time I configured a german keyboard.
    A remaining problem is that my mouse and keyboard are connected via USB and they are frozzen after boot. First when I physicaly detach both and reconnect them they start working in an ordinary manner. I saw a forum entry which talked about BIOS-settings.

  • JDeveloper and Weblogic Server - DOESN't WORK

    Hi All,
    Yesterday, I was working fine with JDeveloper 11.1.1.6 until I tried to do a deployment (like normally I do) and Weblogic wouldn't start. It was giving me an error, something like 'premature end of file' and security stuff. However, my colleagues told me to rename the folder defaultDomain under C:\Users\Alejandro\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92. So I did. It didn't help.
    I restarted the computer, reinstalled JDeveloper in a new middleware nothing. I created a new Windows user and repeated the process. Nothing.
    My log when creating the domain is
    Log File: C:\Users\Alejandro\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\o.j2ee.adrs\CreateDefaultDomain.log
    Label: JDEVADF_11.1.1.6.0_GENERIC_111205.1733.6192.1
    Product Home: C:\OracleClean\Middleware\jdeveloper\jdev\
    Domain: C:\Users\Alejandro\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain
    "C:\OracleClean\Middleware\oracle_common\common\bin\wlst.cmd" "C:\Users\Alejandro\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\o.j2ee.adrs\CreateDefaultDomain.py"
    Process started
    wlst >
    wlst > >CLASSPATH=C:\ORACLE~2\MIDDLE~1\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\ORACLE~2\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\ORACLE~2\MIDDLE~1\JDK160~1\lib\tools.jar;>C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\ORACLE~2\MIDDLE~1\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\server\lib\web>services.jar;C:\ORACLE~2\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\ORACLE~2\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;C:\ORACLE~2\MIDDLE~1\ORACLE~1/modules/oracle.jrf_11.1.1/jrf->wlstman.jar;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\lib\ADF->SH~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\lib\ADFSCR~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\lib\mdswlst.jar;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\AUDITW~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~>1\common\wlst\RESOUR~1\IGFWLS~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\jps-wlst.jar;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\jrf->wlst.jar;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\OAMAP_~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\OAMAUT~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\ossoiap.jar;C:\ORACLE~2\MIDD>LE~1\ORACLE~1\common\wlst\RESOUR~1\OSSOIA~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\OVDWLS~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\SSLCON~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\comm>on\wlst\RESOUR~1\wsm-wlst.jar
    wlst >
    wlst > >PATH=C:\ORACLE~2\MIDDLE~1\patch_wls1035\profiles\default\native;C:\ORACLE~2\MIDDLE~1\patch_jdev1111\profiles\default\native;C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\server\native\win\32;C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\server\bin;C:\ORACLE~2\>MIDDLE~1\modules\ORGAPA~1.1\bin;C:\ORACLE~2\MIDDLE~1\JDK160~1\jre\bin;C:\ORACLE~2\MIDDLE~1\JDK160~1\bin;;C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    wlst >
    wlst > Your environment has been set.
    wlst >
    wlst > >CLASSPATH=C:\ORACLE~2\MIDDLE~1\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\ORACLE~2\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\ORACLE~2\MIDDLE~1\JDK160~1\lib\tools.jar;>C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\ORACLE~2\MIDDLE~1\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\server\lib\web>services.jar;C:\ORACLE~2\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\ORACLE~2\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;C:\ORACLE~2\MIDDLE~1\ORACLE~1/modules/oracle.jrf_11.1.1/jrf->wlstman.jar;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\lib\ADF->SH~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\lib\ADFSCR~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\lib\mdswlst.jar;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\AUDITW~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~>1\common\wlst\RESOUR~1\IGFWLS~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\jps-wlst.jar;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\jrf->wlst.jar;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\OAMAP_~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\OAMAUT~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\ossoiap.jar;C:\ORACLE~2\MIDD>LE~1\ORACLE~1\common\wlst\RESOUR~1\OSSOIA~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\OVDWLS~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\common\wlst\RESOUR~1\SSLCON~1.JAR;C:\ORACLE~2\MIDDLE~1\ORACLE~1\comm>on\wlst\RESOUR~1\wsm-wlst.jar;C:\ORACLE~2\MIDDLE~1\utils\config\10.3\config->launch.jar;C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbynet.jar;C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\ORACLE~2\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbytools.jar;;
    wlst >
    wlst > Initializing WebLogic Scripting Tool (WLST) ...
    wlst > I am currently moving to a next computer to see because I cant keep spending time by solving this. Any help? Or should I just reinstall windows? I cant use linux because I need to work under VPN connection and I didn't managed to set it up.

    Really don't know much about your problem but whenever i have weired problem like these..... (it has happened twice in last one year) I just renamed that sytem 11.1.1.6.38.61.92 folder
    next time i start Jdev, it creates this folder and everything started working fine.... the main problem here is that.... you have to setup your connections, version control and other weblogic specific items again...... from my experience, that has been worked out well.....
    -R

  • Photoshop CS4 Photomerge doesn't work under windows 8.1

    Hello!
    I have Photoshop CS4. Whereas it worked very well under Windows XP SP 3, I have a problem using it under Windows 8.1.
    Photomerge doesn't work. As soon as I click on it, It shuts down Photoshop.
    I have a trial version of Photoshop CS 5 and photomerge works well in this version.
    I tried to solve the problem through Windows but it didn't work.
    Please help.
    Thank you.

    Hi @inetdude 
    Since there is no full feature software and driver for 8 or 8.1, I am not sure what else to suggest other than for you to reach out to Microsoft. The driver you are using is an in-OS driver, perhaps they can help you.
    Microsoft Community
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • MSI - P7N Diamond ESATA doesn't work under XP

    I have 2 P7N Diamond motherboards and am running XP Pro/sp2.
    I have never been able to get the esata ports to work. I have spent the last 4 months RMAing boards back and forth to MSI. I have tried at least 4 motherboards, 3 esata external drives, and 3 cables (all 6 feet).
    Sometimes on the upper port (lower port doesn't work at all), the drives get detected in bios as gibberish. Other times it is listed correctly in post, but then I get a "9th slave hard disk error". I press F1 to resume, enter the bios, and the drive shows up. The drive never gets detected in windows, however.
    In bios I have the Extra IDE/RAID Controller enabled and RAID mode is set to IDE.
    In XP I have the JMP36X IDE Controller installed.
    During all this time, MSI Tech Support has insisted that I am doing everything right. I called them last night and they mentioned doing an rma yet again, but when I called back today and talked to someone else, he told me that esata only works under vista in AHCI mode. He said that it won’t work under XP in IDE or AHCI mode.
    Hope someone can help me!!

    Thanks for the reply.
    Quote from: NovJoe on 19-July-09, 17:51:41
    Have you tried to install the RAID controller driver using F6 option by using the XP installation disc?
    I did that when I installed XP. 
    Someone provided this link to set up AHCI mode. Plan to try that in the next day or two.
    http://http://expertester.wordpress.com/2008/07/27/how-to-enable-ahci-windows-xp/

  • Video Doesn't Work Under 2.0

    Videos that worked under the oriignal OS now fail to play with the update to 2.0 When I try to play the movie, all I get is one of two messages:
    An error has occurred
    or
    Free up resources by closing applications.
    Plase tell me how to fix this. Playbook without movies is pretty ordinary.

    I had this. I have a 16GB playbook which means it starts with less than 12GB when first set up with OS2 (problem no. 1).  I then added a 3.5GB wmv video which played. Then added a few more videos much smaller and the big one will not play. I can only assume 7GB free disk is not enough workspace to play it, or it's another bug. Try freeing off space by deleting all but the one video and report back.

  • Direct links to the KM doesn't work under Kerberos (SPNego)

    Hello,
    We are running NW04 SP16 and successfully implemented Kerberos
    authentication using the SPNego module.
    The problem we are facing is this: If we put a URL to a certain KM file
    at the browser, like this:
    http://<host>:50000/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/....
    The user is being prompted for User name and password and even after
    entering the correct ones it doesn't work. If the same user is opening
    this link from inside the portal (from an iView for example) the link
    is working. When we used NTLM this option used to work.
    I have implemented SAP Note 993579 yet it didn't solve the problem.
    I also tried changing the Authentication Schema property of the com.sap.km.document template iView to "default" yet this as well didn't help.
    Any suggestions?
    Regards,
    Roy

    Hey Detlev,
    Yes I am referring to the same oject.
    The thing is that Brad says that the changing of the authentication schema needs to be done together with the note. I first tried the note and in order to track changes I reverted the note and tried the authentication schema change separately. I didn't try to implement both of them together. I will try it and let you know...
    Regards,
    Roy

  • Samson Softpre applet doesn't work under Leopard

    I am a podcaster. I bought the Samson C01U microphone last year as I was told at that time it was the best in the entry-level for someone that was considering podcasting. There's an applet that is offered by Samson that allows Input Level Meter, Volume control, High-pass filter and Phase Switch. Every recording sounded great when I combine this applet with GarageBand.
    Recently, I switched to Leopard and the applet doesn't work anywore. Worse, recording audio with that mic gives me radically inferior quality. When I asked Samson about that matter, the support tech guy told me that there was no intention on porting this software on the new operating system, with the following: "The Soft Pre applet is merely a volume control. There is no difference in sound with or without the Soft Pre. All Samson USB mics were designed to be fully operational without the Soft Pre applet."
    I've googled the matter several times with no one else noticing the matter but myself. Christoph Drösser on a previous discussion told me that he had no such problem, but the difference between his setup and mine is that he upgraded to Leopard while mine was a fresh install. Anyone else in a similar situation?
    Message was edited by: Laurent LaSalle

    Hi,
    I had the same problem. I use an external monitor. It seems that the Applet simply disappeared after using my monitor.
    I opened Samson SoftPre, turned on my external monitor! Eureka. Here is my Applet. I moved it in the middle of my desktop to make sure it would not hide again. Once, you get it back make sure to either close the Applet before quitting the external monitor.

  • Weblogic sample doesn't work properly ( failed to serialize ) ?

    Dear all,
    I am running the sample dom.zip which doesn't run properly from http://dev2dev.bea.com/direct/webservice/index.html.
    Server
    =======================================================
    package examples.dom;
    import org.w3c.dom.Document;
    import org.w3c.dom.Node;
    public final class EchoDom {
    public Document echoDom(Document doc) {
    System.out.println("The dom on the server is[");
    weblogic.xml.babel.stream.DOMInputStream.printNode((Node) doc);
    System.out.println("]");
    return doc;
    Client
    =======================================================
    package examples.dom;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.jar.JarFile;
    import java.util.zip.ZipEntry;
    import javax.xml.rpc.Call;
    import javax.xml.rpc.ParameterMode;
    import javax.xml.rpc.Service;
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.handler.HandlerInfo;
    import javax.xml.rpc.handler.HandlerRegistry;
    import javax.xml.soap.SOAPConstants;
    import weblogic.xml.stream.XMLInputStream;
    import weblogic.xml.stream.XMLInputStreamFactory;
    import weblogic.xml.schema.binding.TypeMapping;
    import weblogic.xml.schema.binding.TypeMappingFactory;
    import weblogic.utils.Debug;
    import weblogic.apache.xerces.parsers.DOMParser;
    import java.util.ArrayList;
    import org.w3c.dom.Node;
    import org.w3c.dom.Document;
    import org.w3c.dom.Comment;
    import org.w3c.dom.NodeList;
    import org.w3c.dom.ProcessingInstruction;
    import org.w3c.dom.NamedNodeMap;
    import org.xml.sax.InputSource;
    * @author Copyright (c) 2002 by BEA Systems. All Rights Reserved.
    public final class Client {
    public static Document getDocument(String filename)
    throws Exception
    DOMParser parser = new DOMParser();
    parser.setFeature( "http://apache.org/xml/features/dom/defer-node-expansion",
    false );
    parser.setFeature( "http://xml.org/sax/features/validation",
    false);
    parser.setFeature( "http://xml.org/sax/features/namespaces",
    true);
    parser.setFeature( "http://apache.org/xml/features/validation/schema",
    true);
    parser.parse(weblogic.xml.babel.baseparser.SAXElementFactory.createInputSource(filename));
    Document doc =parser.getDocument();
    return doc;
    public static void main( String[] args ) throws Exception{
    Dom d = new Dom_Impl("http://localhost:7001/dom/EchoDomService?WSDL");
    DomPort port = d.getdomPort();
    Document request = getDocument(args[0]);
    weblogic.xml.babel.stream.DOMInputStream.printNode((Node) request);
    try {
    Document newDoc = port.echoDom(request);
    weblogic.xml.babel.stream.DOMInputStream.printNode((Node) newDoc);
    } catch (javax.xml.rpc.JAXRPCException e) {
    System.out.println(e.getLinkedCause());
    e.getLinkedCause().printStackTrace();
    Run-time Exception
    =========================================================
    C:\JDEV903\jdk\bin\javaw.exe -ojvm -classpath C:\MyStudy\java\WS3\classes;D:\bea\weblogic700\server\lib\webserviceclient+ssl.jar;D:\bea\weblogic700\server\lib\weblogic.jar;C:\JDEV903\jdev\lib\jdev-rt.jar;C:\JDEV903\soap\lib\soap.jar;C:\JDEV903\lib\xmlparserv2.jar;C:\JDEV903\jlib\javax-ssl-1_2.jar;C:\JDEV903\jlib\jssl-1_2.jar;C:\JDEV903\j2ee\home\lib\activation.jar;C:\JDEV903\j2ee\home\lib\mail.jar;C:\JDEV903\j2ee\home\lib\http_client.jar;C:\JDEV903\lib\xmlparserv2.jar;C:\JDEV903\lib\xmlcomp.jar;C:\MyStudy\java\1\dom\client.jar
    -Dweblogic.webservice.verbose=true wl.client.wsServletClient
    java.rmi.RemoteException: web service invoke failed; nested exception is:
    javax.xml.soap.SOAPException: failed to serialize xml:weblogic.xml.schema.binding.SerializationException:
    type mapping lookup failure on class=class weblogic.apache.xerces.dom.DeferredDocumentImpl
    TypeMapping=TYPEMAPPING SIZE=0
    javax.xml.soap.SOAPException: failed to serialize xml:weblogic.xml.schema.binding.SerializationException:
    type mapping lookup failure on class=class weblogic.apache.xerces.dom.DeferredDocumentImpl
    TypeMapping=TYPEMAPPING SIZE=0
         void weblogic.webservice.core.DefaultPart.toXML(javax.xml.soap.SOAPElement, java.lang.Object,
    weblogic.xml.schema.binding.SerializationContext, boolean, javax.xml.rpc.encoding.TypeMapping)
              DefaultPart.java:260
         void weblogic.webservice.core.DefaultMessage.toXML(javax.xml.soap.SOAPMessage,
    java.lang.Object[])
              DefaultMessage.java:455
         java.lang.Object weblogic.webservice.core.DefaultOperation.invoke(java.util.Map,
    java.lang.Object[], java.io.PrintStream)
              DefaultOperation.java:403
         java.lang.Object weblogic.webservice.core.DefaultOperation.invoke(java.util.Map,
    java.lang.Object[])
              DefaultOperation.java:359
         java.lang.Object weblogic.webservice.core.rpc.StubImpl._invoke(java.lang.String,
    java.util.Map)
              StubImpl.java:225
         java.lang.Object examples.dom.EchoDomServicePort_Stub.echoDom(java.lang.Object)
              EchoDomServicePort_Stub.java:33
         void wl.client.wsServletClient.main(java.lang.String[])
              wsServletClient.java:78
    Process exited with exit code 0.
    Please help.
    mindterm

    Hello,
    I just save the dom example a spin and it worked OK for me. RU using the latest service pack? Does the dom.ear build correctly and deploy on the server without errors? Can U see the webservice test page from http://localhost:7001/dom/EchoDomService ?
    Thanks,
    Bruce
    mindterm wrote:
    Dear all,
    I am running the sample dom.zip which doesn't run properly from http://dev2dev.bea.com/direct/webservice/index.html.
    Server
    =======================================================
    package examples.dom;
    import org.w3c.dom.Document;
    import org.w3c.dom.Node;
    public final class EchoDom {
    public Document echoDom(Document doc) {
    System.out.println("The dom on the server is[");
    weblogic.xml.babel.stream.DOMInputStream.printNode((Node) doc);
    System.out.println("]");
    return doc;
    Client
    =======================================================
    package examples.dom;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.jar.JarFile;
    import java.util.zip.ZipEntry;
    import javax.xml.rpc.Call;
    import javax.xml.rpc.ParameterMode;
    import javax.xml.rpc.Service;
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.handler.HandlerInfo;
    import javax.xml.rpc.handler.HandlerRegistry;
    import javax.xml.soap.SOAPConstants;
    import weblogic.xml.stream.XMLInputStream;
    import weblogic.xml.stream.XMLInputStreamFactory;
    import weblogic.xml.schema.binding.TypeMapping;
    import weblogic.xml.schema.binding.TypeMappingFactory;
    import weblogic.utils.Debug;
    import weblogic.apache.xerces.parsers.DOMParser;
    import java.util.ArrayList;
    import org.w3c.dom.Node;
    import org.w3c.dom.Document;
    import org.w3c.dom.Comment;
    import org.w3c.dom.NodeList;
    import org.w3c.dom.ProcessingInstruction;
    import org.w3c.dom.NamedNodeMap;
    import org.xml.sax.InputSource;
    * @author Copyright (c) 2002 by BEA Systems. All Rights Reserved.
    public final class Client {
    public static Document getDocument(String filename)
    throws Exception
    DOMParser parser = new DOMParser();
    parser.setFeature( "http://apache.org/xml/features/dom/defer-node-expansion",
    false );
    parser.setFeature( "http://xml.org/sax/features/validation",
    false);
    parser.setFeature( "http://xml.org/sax/features/namespaces",
    true);
    parser.setFeature( "http://apache.org/xml/features/validation/schema",
    true);
    parser.parse(weblogic.xml.babel.baseparser.SAXElementFactory.createInputSource(filename));
    Document doc =parser.getDocument();
    return doc;
    public static void main( String[] args ) throws Exception{
    Dom d = new Dom_Impl("http://localhost:7001/dom/EchoDomService?WSDL");
    DomPort port = d.getdomPort();
    Document request = getDocument(args[0]);
    weblogic.xml.babel.stream.DOMInputStream.printNode((Node) request);
    try {
    Document newDoc = port.echoDom(request);
    weblogic.xml.babel.stream.DOMInputStream.printNode((Node) newDoc);
    } catch (javax.xml.rpc.JAXRPCException e) {
    System.out.println(e.getLinkedCause());
    e.getLinkedCause().printStackTrace();
    Run-time Exception
    =========================================================
    C:\JDEV903\jdk\bin\javaw.exe -ojvm -classpath C:\MyStudy\java\WS3\classes;D:\bea\weblogic700\server\lib\webserviceclient+ssl.jar;D:\bea\weblogic700\server\lib\weblogic.jar;C:\JDEV903\jdev\lib\jdev-rt.jar;C:\JDEV903\soap\lib\soap.jar;C:\JDEV903\lib\xmlparserv2.jar;C:\JDEV903\jlib\javax-ssl-1_2.jar;C:\JDEV903\jlib\jssl-1_2.jar;C:\JDEV903\j2ee\home\lib\activation.jar;C:\JDEV903\j2ee\home\lib\mail.jar;C:\JDEV903\j2ee\home\lib\http_client.jar;C:\JDEV903\lib\xmlparserv2.jar;C:\JDEV903\lib\xmlcomp.jar;C:\MyStudy\java\1\dom\client.jar
    -Dweblogic.webservice.verbose=true wl.client.wsServletClient
    java.rmi.RemoteException: web service invoke failed; nested exception is:
    javax.xml.soap.SOAPException: failed to serialize xml:weblogic.xml.schema.binding.SerializationException:
    type mapping lookup failure on class=class weblogic.apache.xerces.dom.DeferredDocumentImpl
    TypeMapping=TYPEMAPPING SIZE=0
    javax.xml.soap.SOAPException: failed to serialize xml:weblogic.xml.schema.binding.SerializationException:
    type mapping lookup failure on class=class weblogic.apache.xerces.dom.DeferredDocumentImpl
    TypeMapping=TYPEMAPPING SIZE=0
    void weblogic.webservice.core.DefaultPart.toXML(javax.xml.soap.SOAPElement, java.lang.Object,
    weblogic.xml.schema.binding.SerializationContext, boolean, javax.xml.rpc.encoding.TypeMapping)
    DefaultPart.java:260
    void weblogic.webservice.core.DefaultMessage.toXML(javax.xml.soap.SOAPMessage,
    java.lang.Object[])
    DefaultMessage.java:455
    java.lang.Object weblogic.webservice.core.DefaultOperation.invoke(java.util.Map,
    java.lang.Object[], java.io.PrintStream)
    DefaultOperation.java:403
    java.lang.Object weblogic.webservice.core.DefaultOperation.invoke(java.util.Map,
    java.lang.Object[])
    DefaultOperation.java:359
    java.lang.Object weblogic.webservice.core.rpc.StubImpl._invoke(java.lang.String,
    java.util.Map)
    StubImpl.java:225
    java.lang.Object examples.dom.EchoDomServicePort_Stub.echoDom(java.lang.Object)
    EchoDomServicePort_Stub.java:33
    void wl.client.wsServletClient.main(java.lang.String[])
    wsServletClient.java:78
    Process exited with exit code 0.
    Please help.
    mindterm

  • Double Display on Imac doesn't work under windows, there's a solution?

    Hi, I'm a mac user who needs windows for certain applications, so I've installed it with bootcamp on my Intel based Imac 20''.
    It's very useful for me having 2 monitors to work also in windows, but there's a problem: when I boot under windows the imac transmits the signal (I can go over the main monitor with the mouse) but the 2nd monitor doesn't receive the signal and remains black!
    Everything is tested and works properly on macos, so there's a possible solution?
    Thanks
    Davide

    Just an idea for you. There is an entire Apple Discussion forum dedicated to Boot Camp and Windows XP.
    Whereas, not everyone here with an Intel iMac has installed, tried to install or has experience with BC & XP, everyone there has or at least has an interest. You may attract help more quickly there.
    The Forum is at the bottom of the main Apple Discussions page under Windows Compatible Technology.
    Here is a link;
    Forum: Boot Camp Public Beta

  • Fax modem doesn't work under Lion

    Under Snow Leopard I was using without any problem an Apple Modem to snd the occasional fax.
    Whilst the Print function in Lion stll allows to "Fax a PDF" the modem is not been recognized anymore.
    I am getting the error message:
         Unsupported
          You cannot use an Apple USB MOdem with this computer
    Any ideas ?

    I bought the Zoom 3095 modem as I need to use fax for legal correspondence. Also, if I have to make hotel booking confirmations, I think it is more secure sending my credit card details on a fax rather than an email. An email can end up in a hotel PC, which may or may not have a proper firewall, instrusion protection, keylogger protection etc etc.
    Fax works OK but on the main program I fax from, Word 2011, in Lion you cannot no longer use Fax PDF, where you now get an error message. You have to set the fax modem as your print device and then enter the fax number in the third pull down menu under "Fax Information".
    Finally, although the Zoom modem faxes and you get the information on the icon on the screen header rail, you no longer hear dial tone and fax sending like you did with the Apple modem. I contacted Zoom and got this back - not very good!
    Unfortunately, the Zoom 3095 doesn't have an on-board speaker, and we do not provide drivers (with sound support) for Mac OS X. The 3985 uses OS X's native USB CDC/ACM class driver. So you will not hear the dialing sounds, etc, when using the 3095 on a Mac. We have no plans at this to time release sound files for Mac.
    All in all, a pretty poor effort from Apple. I bought a replacement just 15 months ago, after an earlier Apple Fax modem failed. 15 months is not a very long time to cut off software/driver support. I think the least Apple could do is offer us refunds for our non-functioning modems. OK it is not a lot of money to replace but a principle is at stake.
    Wilson

Maybe you are looking for

  • Error while executing ODI scenario from command prompt

    Hi all, I am trying to execute a scenario of a package( that I have created in designer) in OS command prompt in Windows in the following way- C:\ODIHOME\oracledi\bin>Startscen DIM_TECHNOLOGY_PACKAGE 001 Global LEVEL5 However I am getting the followi

  • Windows 7 and CMSS

    I've installed Windows 7 Build 7000 (i know, its still beta) and creative drivers works good in compatibility mode. But theres a problem, i cannot hear 5. audio if i listen?a mp3 file with CMSS on. Audio is in stereo mode. Im using latest driver but

  • Changing file name dynamically in INFOSPOKE

    Hi All, I am using infospoke to export data to third party. But here file name is constant. I want to change the file name using prefix with time stamp before filename. For example if data is getting extracted today and file name is suppose ABC then

  • ADF Faces tooltip text for datatable's columns impossible?

    Hi, How can I show tooltip text for column in datatable? ShortDesc property for column is ignored. thanks, Branislav

  • Failure to istall Lightroom5 from CC

    When I try to install I get about 84% in and it fails - error code loks like this: