GWC error: java.io.InvalidClassException. lotus.domino.NotesException :

Hello,
Getting this error on Groupware Connector :
java.io.InvalidClassException: lotus.domino.NotesException; local class incompatible
Can anyone help me with this error.
Regards,
Pratima

Hello,
Getting this error on Groupware Connector :
java.io.InvalidClassException: lotus.domino.NotesException; local class incompatible
Can anyone help me with this error.
Regards,
Pratima

Similar Messages

  • FATAL ERROR : Java Mail In Lotus Domino

    Hi,
    I try to implement my javamail in lotus domino.
    But I found a fatal Error !!
    Both Domino and java have the class named "session".
    So when i try to implement my mail in domino, it can't recognize which "session" it should refer to ..
    So can anyone tell me is there a way to settle this situation??
    Or it's a bug??
    Regards
    Dino

    I got the solution ..
    Just defined the variable with its full class path...
    Eg ..
    lotus.domino.Session DominoSession;
    //for Domino Session
    javax.mail.Session MailSession;
    //for mail session
    anyaway Thank You cknelsen ..
    Regards
    Dino

  • Exception thrown while using JCo in Java agents  in Lotus Domino applns.

    I am trying to use JCo in Java agents in a lotus domino application.  Here is my code:(This Java agent calls a Remote enabled function module in SAP which gives the sum of two given numbers)
    import lotus.domino.*;
    import java.util.*;
    import java.io.*;
    import com.sap.mw.jco.*;
    public class JavaAgent extends AgentBase
    private static JCO.Client jClient;
    public JCO.Client getJCOClient(String poolName) throws IOException, JCO.Exception
           System.out.println("Inside getJCOClient method");          
           System.out.println("Pool Name : "+ poolName);  
              boolean poolExists = false;     
          JCO.PoolManager poolManager  = JCO.PoolManager.singleton();
           String poolNames[] = poolManager.getPoolNames();
          // To check whether the given pool name already exists     
         if(poolNames != null)
                for(int poolIter = 0;poolIter<poolNames.length;poolIter++)
                 if(poolNames[poolIter].equals(poolName))
                        System.out.println("POOL ID =====>> "+poolName);
                        System.out.println("POOL NAMES["+ poolIter "] ========>>"poolNames[poolIter]);
                        poolExists = true;
                        break;
         String s = String.valueOf( poolExists );
          System.out.println("pool Exists :" + s );     
          if(poolExists == false)
               try
                   int maxConnections = 50;
                   String JCOClient = "111";
                   String user = "apabap4";
                   String password = "sap123";
                   String language = "en";
                   String ashost = "172.25.10.68";
                   String sysnr = "00";
                   //To create an instance of a client pool to the remote SAP system
                   System.out.println("Before addClientPool");
                   System.out.println("Pool Name : " + poolName);
                   JCO.addClientPool(poolName,maxConnections,JCOClient,user,password,language,ashost,sysnr);
              //     JCO.createClient(JCOClient, user,password,language, "172.25.10.68");
                   System.out.println("New Connection Pool Created");
               catch(JCO.Exception jcoe)
                    throw new JCO.Exception(jcoe.getGroup(),jcoe.getKey(),"Error in client pool creation "+jcoe.toString());
         try
                  //getClient() method returns a client connection from the specified spool     
                   jClient = JCO.getClient(poolName);
         catch(JCO.Exception jcoe1)
                   throw new JCO.Exception(jcoe1.getGroup(),jcoe1.getKey(),"Error in getting JCO client "+jcoe1.toString());
              return jClient;
         // End of method getJCOClient()     
         public void releaseJCOClient() throws JCO.Exception
          try
                   JCO.releaseClient(jClient);
         catch(JCO.Exception jcoe2)
                   throw new JCO.Exception(jcoe2.getGroup(),jcoe2.getKey(),"Error in releasing client "+jcoe2.toString());
    public void NotesMain()
              try {
                   Session session = getSession();
                   AgentContext agentContext = session.getAgentContext();
                  Document doc = agentContext.getDocumentContext();
       JavaAgent jcoObj = new JavaAgent();
       JCO.Client jClient = null;
       String poolId = new String("EG_POOL");
       IFunctionTemplate   ifun;//For function object
       JCO.Function func;          
       JCO.ParameterList importParams,exportParams,tableParams;
       try{
             jClient = jcoObj.getJCOClient(poolId);
           System.out.println("After Getting Connection");
           System.out.println("Attributes:" + jClient.getAttributes());
            //Create a repository object
            JCO.Repository mRepository = new JCO.Repository("myJCO_REPOSITORY", jClient);
            //Creating a function object
            ifun = mRepository.getFunctionTemplate("ZSUM");// The Function Name
           func = ifun.getFunction();
            System.out.println("Function name " + func.getName());
            //To get the import parameters in the function module
            importParams = func.getImportParameterList();
            System.out.println("Import parameters"+ importParams);
            importParams.appendValue("OPERAND1",importParams.TYPE_INT,4,"25");
           importParams.appendValue("OPERAND2",importParams.TYPE_INT,4,"25");
            jClient.execute(func);//Executing the function 
            //To get the export parameters in the function module
            exportParams = func.getExportParameterList();
               System.out.println("Export parameters" + exportParams);
            int sumVl = exportParams.getInt("SUM");
            Integer sumValue = new Integer(sumVl);
            System.out.println("Sum Value" + sumValue);
             doc.replaceItemValue("txtSum", sumValue.toString());
            //releaseJCOClient();
      catch(IOException ioe)
          ioe.printStackTrace();
      catch(JCO.Exception jcoe1)
          jcoe1.printStackTrace();
              } catch(Exception e) {
                   e.printStackTrace();
    While executing this agent I am getting the following exception.
    08/25/2004 06:27:45 PM  HTTP JVM: java.lang.ExceptionInInitializerError: JCO.classInitialize(): Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC'  Native Library C:\Lotus\Domino\sapjcorfc.dll already loaded in another classloader
    08/25/2004 06:27:45 PM  HTTP JVM:  at com.sap.mw.jco.JCO.<clinit>(Unknown Source)
    08/25/2004 06:27:45 PM  HTTP JVM:  at JCoCallTrans.getJCOClient(JCoCallTrans.java:42)
    08/25/2004 06:27:45 PM  HTTP JVM:  at JCoCallTrans.NotesMain(JCoCallTrans.java:88)
    08/25/2004 06:27:45 PM  HTTP JVM:  at lotus.domino.AgentBase.runNotes(Unknown Source)
    08/25/2004 06:27:45 PM  HTTP JVM:  at lotus.domino.NotesThread.run(NotesThread.java:208)
    08/25/2004 06:27:45 PM  HTTP JVM: Error cleaning up agent threads
    Also I have placed the jco.jar in lib of jvm in Domino directory i.e.,
    Lotus\Domino\jvm\lib and
    sapjcorfc.dll and librfc32.dll in system32 of WINNT folder.
    Kindly help me to rectify this problem
    Arokiaraj.S

    I had approximate the same problem, and I've fixed it. In my jar file the javaHelpSearch Folder was named with a leading lower case "j". But in my helpset.hs it was with an upper Case "J"
    <name>Search</name>
        <label>Search</label>
        <type>javax.help.SearchView</type>
        <data engine="com.sun.java.help.search.DefaultSearchEngine">JavaHelpSearch</data>
       </view>When the helpset is called from a folder: windows ignore it, but when the helpset is called from into a jar you must type it correct!

  • Not able to connect to Lotus Domino server using java/corba

    Hi
    I am new to Lotus Domino server and Java.
    I have INstalled Lotus Domino server5 on 1 machine and was successful in installing the Lotus client on another machine.
    Throught the lotus client i am able to connect to the server and send and receive the mails.
    Now I want to connect to the domino server using the Lotus Domino Tolkit for Java/Corba.
    In this Toolkit they have given the sample code program ..
    if I run the code I am getting the error
    java.io.FileNotFoundException: http://<IPADDRESS>/diiop_ior.txtjava.io.FileNotFoundException: http://<IPADDRESS>/diiop_ior.txt
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLCon
    nection.java:691)
    at java.net.URL.openStream(URL.java:942)
    at lotus.domino.NotesFactory.getIOR(NotesFactory.java:314)
    at lotus.domino.NotesFactory.createSession(NotesFactory.java:66)
    at IntroCorbaApp.run(IntroCorbaApp.java:65)
    at java.lang.Thread.run(Thread.java:539)
    lotus.domino.NotesException: Could not get IOR from HTTP Server
    lotus.domino.NotesException
    at lotus.domino.NotesFactory.getIOR(NotesFactory.java:344)
    at lotus.domino.NotesFactory.createSession(NotesFactory.java:66)
    at IntroCorbaApp.run(IntroCorbaApp.java:65)
    at java.lang.Thread.run(Thread.java:539)
    I also tried to find this file in the Domino server directory.
    The file exists in drive:\LotusServer\Domino\Data\Domino\HTML directory..
    I am not getting what exactly is the Problem
    Plz any one help me in this regard..
    thanks in advance

    You should be able to access the diiop_ior.txt file from browser without authentication,only then it will work. This file should not
    be protected.

  • Applet/Servlet --java.io.InvalidClassException

    I'm trying to get an Applet to send data to a servlet and vice versa but I come upon this error:
    java.io.InvalidClassException: javax.swing.AbstractButton; Local class not compatible:
    stream classdesc serialVersionUID=-937921345538462020
    local class serialVersionUID=7577615732708390153I know the client version is 1.4.1 and the server is 1.3. However, It is not fair to ask every client to make sure they have 1.3, or to have to upgrade the server to 1.4.1.
    Isn't there a way to make them compatible? I heard about the serialVer program that comes with JAVA but I don't know how to use it to solve my problem.
    Thanks

    1. You should not try to send serialized Swing objects between different Java versions. Almost every of them has the following notice in their JavaDoc:
    Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing.
    In 1.4 you may use XML-based persistence (see XMLEncoder).
    2. SerialVer is a good program, but even if you mark two classes as compatible (by assigning an explicit serialVersionUID), they should indeed be compatible. Look for specs on serialization available within the JDK Documentation bundle.
    3. Core JDK classes (java.util, java.lang), as far as I remember, are compatible and can be read / written by different JDKs.
    4. If you would pass your own classes through serialization from 1.3 to 1.4 or back, you probably should provide some explicit serialVersionUID for them. The reason is that 1.4 in some cases may calculate a different value than 1.3, for the same class. Look around for a list of changes between that versions.

  • Java.io.InvalidClassException: com.sun.msv.grammar.trex.TREXGrammar

    Hi,
    I am running JAXB 1.0 (JWSDP 1.1) with Weblogic 6.1 Below is the code that is causing the exception. Inspite of the error JAXB reads the XML in fine and everything proceeds normally. Any help would be greatly appreciated.
    Thanks in advance,
    Abhijit
    JAXBContext jc = JAXBContext.newInstance("my.package");
    // create an Unmarshaller
    Unmarshaller u = jc.createUnmarshaller();
    // enable validation
    u.setValidating( true );
    // unmarshal an instance document into a tree of Java content
    ProductsType prods = (ProductsType)u.unmarshal(new FileInputStream( "products.xml" ) );
    The last line above causes the following error
    java.io.InvalidClassException: com.sun.msv.grammar.trex.TREXGrammar; Local class
    not compatible: stream classdesc serialVersionUID=7316616993473479596 local cla
    ss serialVersionUID=1
    at java.io.ObjectStreamClass.validateLocalClass(ObjectStreamClass.java:5
    18)
    at java.io.ObjectStreamClass.setClass(ObjectStreamClass.java:562)
    at java.io.ObjectInputStream.inputClassDescriptor(ObjectInputStream.java
    :931)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:361)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:231)
    at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1181)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:381)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:231)
    at com.sun.xml.bind.GrammarInfo.getGrammar(GrammarInfo.java:63)
    at com.sun.xml.bind.GrammarInfoFacade.getGrammar(GrammarInfoFacade.java:
    129)
    at com.sun.xml.bind.DefaultJAXBContextImpl.getGrammar(DefaultJAXBContext
    Impl.java:76)
    at com.sun.xml.bind.unmarshaller.UnmarshallerImpl.createUnmarshallerHand
    ler(UnmarshallerImpl.java:98)
    at com.sun.xml.bind.unmarshaller.UnmarshallerImpl.unmarshal(Unmarshaller
    Impl.java:112)
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnm
    arshallerImpl.java:139)
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnm
    arshallerImpl.java:186)
    at com.manu.tp.product.ProductInputSessionBean.bindXmlDocument(ProductIn
    putSessionBean.java:98)
    at com.manu.tp.product.ProductInputSessionBean.processProducts(ProductIn
    putSessionBean.java:31)
    at com.manu.tp.product.ProductInputSessionBean_j5odob_EOImpl.processProd
    ucts(ProductInputSessionBean_j5odob_EOImpl.java:1393)
    at com.manu.tp.product.ProductInputSessionBean_j5odob_EOImpl_WLSkel.invo
    ke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerR
    ef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.jav
    a:274)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest
    .java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    --------------- linked to ------------------
    javax.xml.bind.JAXBException: unable to extract the schema information
    - with linked exception:
    [java.io.InvalidClassException: com.sun.msv.grammar.trex.TREXGrammar; Local class not compatible: stream classdesc serialVersionUID=7316616993473479596 local cl
    ass serialVersionUID=1]
    at com.sun.xml.bind.GrammarInfo.getGrammar(GrammarInfo.java:70)
    at com.sun.xml.bind.GrammarInfoFacade.getGrammar(GrammarInfoFacade.java:
    129)
    at com.sun.xml.bind.DefaultJAXBContextImpl.getGrammar(DefaultJAXBContext
    Impl.java:76)
    at com.sun.xml.bind.unmarshaller.UnmarshallerImpl.createUnmarshallerHand
    ler(UnmarshallerImpl.java:98)
    at com.sun.xml.bind.unmarshaller.UnmarshallerImpl.unmarshal(Unmarshaller
    Impl.java:112)
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnm
    arshallerImpl.java:139)
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnm
    arshallerImpl.java:186)
    at com.manu.tp.product.ProductInputSessionBean.bindXmlDocument(ProductIn
    putSessionBean.java:98)
    at com.manu.tp.product.ProductInputSessionBean.processProducts(ProductIn
    putSessionBean.java:31)
    at com.manu.tp.product.ProductInputSessionBean_j5odob_EOImpl.processProd
    ucts(ProductInputSessionBean_j5odob_EOImpl.java:1393)
    at com.manu.tp.product.ProductInputSessionBean_j5odob_EOImpl_WLSkel.invo
    ke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerR
    ef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.jav
    a:274)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest
    .java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    java.io.InvalidClassException: com.sun.msv.grammar.trex.TREXGrammar; >Local class not compatible: stream classdesc
    serialVersionUID=7316616993473479596 local class serialVersionUID=1This is the problem. Basically this tells that the class on the receiving end (the local class) and the one that was serialized to the stream are different versions. Every class is assigned a serialVersionUID when it's compiled, and if two classes that are otherwise the same have different serialVersionUIDs, they are considered to be different versions and the above exception is raised.
    You should check that the JAR files on both VMs are exactly the same versions.
    What's worrying is the UID of the local class, 1. This doesn't look like something that was automatically generated by the compiler but more like that somebody explicitly defined a serialVersionUID field when trying to avoid class incompatibility issues and initialized it to the value of 1. This is indeed extremely bad programming practice and should not be used.
    .P.

  • Error thrown while executing JCo from Lotus domino

    I am trying to use JCo in Java agents in a lotus domino application. Here is my code:(This Java agent calls a Remote enabled function module in SAP which gives the sum of two given numbers)
    import lotus.domino.*;
    import java.util.*;
    import java.io.*;
    import com.sap.mw.jco.*;
    public class JavaAgent extends AgentBase
    private static JCO.Client jClient;
    public JCO.Client getJCOClient(String poolName) throws IOException, JCO.Exception
    System.out.println("Inside getJCOClient method");
    System.out.println("Pool Name : "+ poolName);
    boolean poolExists = false;
    JCO.PoolManager poolManager = JCO.PoolManager.singleton();
    String poolNames[] = poolManager.getPoolNames();
    // To check whether the given pool name already exists
    if(poolNames != null)
    for(int poolIter = 0;poolIter<poolNames.length;poolIter++)
    if(poolNames[poolIter].equals(poolName))
    System.out.println("POOL ID =====>> "+poolName);
    System.out.println("POOL NAMES["+ poolIter "] ========>>"poolNames[poolIter]);
    poolExists = true;
    break;
    String s = String.valueOf( poolExists );
    System.out.println("pool Exists :" + s );
    if(poolExists == false)
    try
    int maxConnections = 50;
    String JCOClient = "111";
    String user = "apabap4";
    String password = "sap123";
    String language = "en";
    String ashost = "172.25.10.68";
    String sysnr = "00";
    //To create an instance of a client pool to the remote SAP system
    System.out.println("Before addClientPool");
    System.out.println("Pool Name : " + poolName);
    JCO.addClientPool(poolName,maxConnections,JCOClient,user,password,language,ashost,sysnr);
    // JCO.createClient(JCOClient, user,password,language, "172.25.10.68");
    System.out.println("New Connection Pool Created");
    catch(JCO.Exception jcoe)
    throw new JCO.Exception(jcoe.getGroup(),jcoe.getKey(),"Error in client pool creation "+jcoe.toString());
    try
    //getClient() method returns a client connection from the specified spool
    jClient = JCO.getClient(poolName);
    catch(JCO.Exception jcoe1)
    throw new JCO.Exception(jcoe1.getGroup(),jcoe1.getKey(),"Error in getting JCO client "+jcoe1.toString());
    return jClient;
    // End of method getJCOClient()
    public void releaseJCOClient() throws JCO.Exception
    try
    JCO.releaseClient(jClient);
    catch(JCO.Exception jcoe2)
    throw new JCO.Exception(jcoe2.getGroup(),jcoe2.getKey(),"Error in releasing client "+jcoe2.toString());
    public void NotesMain()
    try {
    Session session = getSession();
    AgentContext agentContext = session.getAgentContext();
    Document doc = agentContext.getDocumentContext();
    JavaAgent jcoObj = new JavaAgent();
    JCO.Client jClient = null;
    String poolId = new String("EG_POOL");
    IFunctionTemplate ifun;//For function object
    JCO.Function func;
    JCO.ParameterList importParams,exportParams,tableParams;
    try{
    jClient = jcoObj.getJCOClient(poolId);
    System.out.println("After Getting Connection");
    System.out.println("Attributes:" + jClient.getAttributes());
    //Create a repository object
    JCO.Repository mRepository = new JCO.Repository("myJCO_REPOSITORY", jClient);
    //Creating a function object
    ifun = mRepository.getFunctionTemplate("ZSUM");// The Function Name
    func = ifun.getFunction();
    System.out.println("Function name " + func.getName());
    //To get the import parameters in the function module
    importParams = func.getImportParameterList();
    System.out.println("Import parameters"+ importParams);
    importParams.appendValue("OPERAND1",importParams.TYPE_INT,4,"25");
    importParams.appendValue("OPERAND2",importParams.TYPE_INT,4,"25");
    jClient.execute(func);//Executing the function
    //To get the export parameters in the function module
    exportParams = func.getExportParameterList();
    System.out.println("Export parameters" + exportParams);
    int sumVl = exportParams.getInt("SUM");
    Integer sumValue = new Integer(sumVl);
    System.out.println("Sum Value" + sumValue);
    doc.replaceItemValue("txtSum", sumValue.toString());
    //releaseJCOClient();
    catch(IOException ioe)
    ioe.printStackTrace();
    catch(JCO.Exception jcoe1)
    jcoe1.printStackTrace();
    } catch(Exception e) {
    e.printStackTrace();
    While executing this agent I am getting the following exception.
    08/25/2004 06:27:45 PM HTTP JVM: java.lang.ExceptionInInitializerError: JCO.classInitialize(): Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC' Native Library C:\Lotus\Domino\sapjcorfc.dll already loaded in another classloader
    08/25/2004 06:27:45 PM HTTP JVM: at com.sap.mw.jco.JCO.<clinit>(Unknown Source)
    08/25/2004 06:27:45 PM HTTP JVM: at JCoCallTrans.getJCOClient(JCoCallTrans.java:42)
    08/25/2004 06:27:45 PM HTTP JVM: at JCoCallTrans.NotesMain(JCoCallTrans.java:88)
    08/25/2004 06:27:45 PM HTTP JVM: at lotus.domino.AgentBase.runNotes(Unknown Source)
    08/25/2004 06:27:45 PM HTTP JVM: at lotus.domino.NotesThread.run(NotesThread.java:208)
    08/25/2004 06:27:45 PM HTTP JVM: Error cleaning up agent threads
    Also I have placed the jco.jar in lib of jvm in Domino directory i.e.,
    Lotus\Domino\jvm\lib and
    sapjcorfc.dll and librfc32.dll in system32 of WINNT folder.
    Kindly help me to rectify this problem
    Arokiaraj.S

    Hi,
    It is clearly an issue in your map. You can test your map out of Orchestration to make sure it is working.
    "Exception has been thrown by the target of an invocation" is a very generic exception. you
    need the inner exception to see the actual error. You can also try to test the map in the MapTester tool. It also shows also the inner exception. It's designed for BizTalk 2010 but with the .exe file you maybe also can test BizTalk 2006 maps,.
    http://code.msdn.microsoft.com/Execute-a-BizTalk-map-from-26166441
    If this answers your question please mark as answer. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Lotus Domino - java.io.EOFException

    I have configured a Domino resource adapter. When I try to "Test Configuration", everything is fine, but when I create a user and set a couple of attributes I receive an java.io.EOFException. From my experience as a JAVA programmer, I know this error has something to do with end of file or end of stream has been reached unexpectedly during input, but I do not see any strange values during user creation.
    Could anyone point me in the correct direction, so I can solve the problem?
    If you need more information, plz let me know?

    Nobody has ever had this exception?
    Maybe I need to give some details about the configuration:
    - Sun IdM version 7.1
    - Sun Gateway version 7.1 ( and working, because eveything works fine up to the creation of a user. Based on the logging of the gateway )
    - Lotus Domino Server version 8.0
    - Lotus Notes Client version 6.5.5
    When I try to create the following account:
    Xena Warrior/Teun on Domino User Registry
    password:      ********
    lastname:      Warrior
    division:      Ede
    MailFile:      mail\XWarrior
    shortName:      XWarrior
    idFile:      D:\Notes\IDs\XWarrior.id
    MailServer: IDMTEST/Teun
    firstname:      Xena
    MailDomain: Teun
    MailTemplate: C:\Lotus\Domino\data\mail8.ntf
    CertifierOrgHierarchy: /Teun
    When I look at the Sun Gateway server, I see a Lotus Notes Exception handler window. This window is collecting information about the exception, and then closes. I do not know what kind of information it was gathering and where it is stored!?
    Sun Gateway trace file, user creation:
    06/17/2008 10.11.34.145000 [4208] (../../../../src/wps/agent/logging/WSTrace.cpp,150): trace active, level: 4, file: C:\Program Files\lotus\Notes_Gateway.log, maxSize: 10000 KB
    06/17/2008 10.11.34.145000 [4208] (../../../../src/wps/agent/logging/WSTrace.cpp,108): In WSTrace::init()
    06/17/2008 10.11.34.145000 [4208] (../../../../src/wps/agent/logging/WSTrace.cpp,109): Gateway version: 'Sun Java System Identity Manager 7.1'
    06/17/2008 10.11.34.145000 [4208] (../../../../src/wps/agent/logging/WSTrace.cpp,110): OS version: 'Windows Server 2003 Family Service Pack 2 (Build 3790)'
    06/17/2008 10.11.34.145000 [4208] (../../../../src/wps/agent/logging/WSTrace.cpp,182): Setting trace file to 'C:\Program Files\lotus\Notes_Gateway.log'
    06/17/2008 10.11.34.161000 [4208] (../../../../src/wps/agent/logging/WSTrace.cpp,150): trace active, level: 4, file: C:\Program Files\lotus\Notes_Gateway.log, maxSize: 10000 KB
    06/17/2008 10.11.34.161000 [4208] (../../../../src/wps/agent/logging/WSTrace.cpp,205): Trace file set to 'C:\Program Files\lotus\Notes_Gateway.log'
    06/17/2008 10.11.34.161000 [4208] (../../../../src/wps/agent/logging/WSTrace.cpp,253): Trace level set to '4'
    06/17/2008 10.11.34.161000 [4208] (../../../../src/wps/agent/connect/main.cpp,247): Enter: doDominoInitialization
    06/17/2008 10.11.34.161000 [4208] (../../../../src/wps/agent/connect/main.cpp,271): NotesIniFileDir: D:\2Install\IDM_gateway\Notes_gateway\notes.ini
    06/17/2008 10.11.34.161000 [4208] (../../../../src/wps/agent/connect/main.cpp,279): NotesInstallDir: C:\Program Files\lotus\notes\
    06/17/2008 10.11.34.161000 [4208] (../../../../src/wps/agent/connect/main.cpp,291): Domino Enabled
    06/17/2008 10.11.34.161000 [4208] (../../../../src/wps/agent/connect/main.cpp,303): Updated PATH: C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\lotus\notes\;
    06/17/2008 10.11.34.301000 [4208] (../../../../src/wps/agent/connect/main.cpp,327): Exit: doDominoInitialization
    06/17/2008 10.11.34.301000 [4208] (../../../../src/wps/agent/connect/ntsvc.cpp,95): Service::svc
    06/17/2008 10.11.34.364000 [4208] (../../../../src/wps/agent/connect/server.cpp,269): starting up server daemon PORT 9279
    06/17/2008 10.12.25.162000 [4208] (../../../../src/wps/agent/connect/RAEncryptor.cpp,128): Error reading encrpytion key from registry. Using default.
    06/17/2008 10.12.25.162000 [4208] (../../../../src/wps/agent/connect/RASecureConnection.cpp,64): RASecureConnection: new connection handler
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/client_handler.cpp,344): got 60 bytes
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,264): ReceivePrivate: count: 42, 56 wrapped up rawlength 58
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,273): Rightbefore decrypt:
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/RAEncryptor.cpp,69): RAEncryptor::Decrypt3DES: input length (48) moded to 6
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,114): SendPrivate: count: 0 pad: 4
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,422): Enter: MakeChallengeResponse
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,474): MakeChallengeResponse(in,out):
    (54,1D) (00,DD)
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,476):  (EB,59) (8B,DF)
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/RAEncryptor.cpp,128): Error reading encrpytion key from registry. Using default.
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,497): MakeChallengeResponse Key:
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,507): Exit: MakeChallengeResponse
    06/17/2008 10.12.25.178000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,114): SendPrivate: count: 16 pad: 4
    06/17/2008 10.12.25.193000 [4200] (../../../../src/wps/agent/connect/client_handler.cpp,344): got 36 bytes
    06/17/2008 10.12.25.209000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,264): ReceivePrivate: count: 16, 32 wrapped up rawlength 32
    06/17/2008 10.12.25.209000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,273): Rightbefore decrypt:
    06/17/2008 10.12.25.209000 [4200] (../../../../src/wps/agent/connect/RAEncryptor.cpp,69): RAEncryptor::Decrypt3DES: input length (24) moded to 3
    06/17/2008 10.12.25.209000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,114): SendPrivate: count: 0 pad: 4
    06/17/2008 10.12.25.209000 [4200] (../../../../src/wps/agent/connect/RAEncryptor.cpp,128): Error reading encrpytion key from registry. Using default.
    06/17/2008 10.12.25.209000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,571): Session key :
    06/17/2008 10.12.25.224000 [4200] (../../../../src/wps/agent/connect/client_handler.cpp,344): got 13732 bytes
    06/17/2008 10.12.25.224000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,264): ReceivePrivate: count: 13714, 13728 wrapped up rawlength 13730
    06/17/2008 10.12.25.224000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,273): Rightbefore decrypt:
    06/17/2008 10.12.25.224000 [4200] (../../../../src/wps/agent/connect/RAEncryptor.cpp,69): RAEncryptor::Decrypt3DES: input length (13720) moded to 1715
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/connect/RASecureConnection.cpp,114): SendPrivate: count: 0 pad: 4
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,567): Enter: handleRequest
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,587): Received buffer:
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <?xml version='1.0' encoding='UTF-16'?>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Request encrypted='true'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <cmd>get info</cmd>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Resource name='Domino User Registry' class='com.waveset.adapter.DominoResourceAdapter'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attributes>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Certifier Log Database' type='string' value='certlog.nsf'/>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Continue on errors' type='string' value='FALSE'/>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Host' type='string' value='dxlvsede18.delixl.local'/>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Input Form' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Log File Path' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Log Level' type='string' value='2'/>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='MailServer' type='string' value='IDMTEST/Teun'/>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Maximum Age Length' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Maximum Age Unit' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Maximum Archives' type='string' value='3'/>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Maximum Log File Size' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Object Class' type='string' value='People'/>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Policy' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Poll Every' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Polling Start Date' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Polling Start Time' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Post-Poll Workflow' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Pre-Poll Workflow' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Proxy Administrator' type='string' value='Configurator'/>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='RoamCleanPer' type='int'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='RoamCleanSetting' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='RoamRplSrvrs' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='RoamSrvr' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Scheduling Interval' type='string'>
    06/17/2008 10.12.25.240000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='TCP Port' type='string' value='9279'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='User Provides Password On Change' type='string' value='1'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='When reset, ignore past changes' type='string' value='1'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='activeSyncConfigMode' type='string' value='basic'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='activeSyncPostProcessForm' type='string'>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='addShortName' type='string' value='FALSE'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='adminAcct' type='string' value='C:\Program Files\lotus\notes\data\ttimmer.id'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='adminDatabase' type='string' value='admin4.nsf'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='assignSourceOnCreate' type='boolean' value='true'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='blockCount' type='string' value='100'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='certifierIDFile' type='string' value='C:\Program Files\lotus\notes\data\certteun.id'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='confirmationRule' type='string' value='CONFIRMATION_RULE_NONE'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='connectionLimit' type='string' value='10'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='correlationRule' type='string' value='CORRELATION_RULE_NONE'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='createDesktopClient' type='string' value='TRUE'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='createIDfile' type='string' value='TRUE'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='createMailDB' type='string' value='TRUE'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='createUnmatched' type='string' value='true'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='credentials' type='encrypted' value='lGgBc4losWA='/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='defaultPasswordExp' type='string' value='720'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='deleteMailFileOption' type='string' value='2'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='deleteRule' type='string'>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='idType' type='string' value='1'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='isNorthAmerican' type='string' value='FALSE'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='mailSystem' type='string' value='0'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='maxThreads' type='string' value='10'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='minPWLength' type='string' value='6'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='namesDatabase' type='string' value='names.nsf'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='parameterizedInputForm' type='string'>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='password' type='encrypted' value='lGgBc4losWA='/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='populateGlobal' type='string' value='false'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='processRule' type='string'>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='registrationServerMachine' type='string' value='IDMTEST/Teun'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='removeDenyGroupsDuringDelete' type='string' value='false'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='resolveProcessRule' type='string'>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='setInternetPass' type='string' value='TRUE'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='storeIDInAddrBook' type='string' value='TRUE'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='storeIdInFile' type='string' value='TRUE'/>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='updateAddrBook' type='string'>
    06/17/2008 10.12.25.256000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='useInputForm' type='boolean' value='true'/>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attributes>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Resource>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):     <obj>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attributes>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='AltFullName' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='AltFullNameLanguage' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='AlternateOrgUnit' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='CertifierOrgHierarchy' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='CheckPassword' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='CompanyName' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Department' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='DisplayName' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='HTTPPassword' type='encrypted'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='InternetAddress' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Location' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='MailAddress' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='MailDomain' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='MailFile' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='MailServer' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='MailTemplate' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Manager' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='PasswordChangeInterval' type='int'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='PasswordGracePeriod' type='int'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Policy' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='Recertify' type='boolean'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='SametimeServer' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='ShortName' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='WS_USER_PASSWORD' type='encrypted'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='certifierIDFile' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='credentials' type='encrypted'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='defaultPasswordExp' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='deleteMailFileOption' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='firstname' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='idFile' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='lastModified' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='lastname' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='objectGUID' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='orgUnit' type='string'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Attribute name='password' type='encrypted'>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   </Attribute>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attributes>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):     </obj>
    06/17/2008 10.12.25.271000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Request>
    06/17/2008 10.12.25.287000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,636):   command='get info'
    06/17/2008 10.12.25.287000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,467): Enter: ProcessCommand
    06/17/2008 10.12.25.287000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,76): Enter: sendBuffer
    06/17/2008 10.12.25.287000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,90): Sending buffer:
    06/17/2008 10.12.25.287000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <?xml version='1.0' encoding='UTF-16'?>
    06/17/2008 10.12.25.287000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Response>
    06/17/2008 10.12.25.287000 [4200] (../../../../src/wps/agent/object/RequestHandler.cpp,68):   <Result status='ok'/>
    06/17/2008 10.12.25.287000 [4200] (../../../                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

  • Can i connect to lotus domino database in my java environment

    Hi javaites,
    I want to know if i can connect to domino database from my java environment. i need to pick e-mail address of staffs from lotus notes database. if possible how can i go about it.
    thanks

    Yes, you can connect to a database on a Lotus Domino server. The classpath must include Notes.jar (local) or NCSO.jar (remote) - and the DIIOP (Domino IIOP) task on the Domino server must be running.
    The following article might help you:
    http://www-128.ibm.com/developerworks/lotus/library/ls-Java_access_pt1/index.html

  • SpryData - errors found in Lotus Domino Designer

    Hi,
    I'm using Spry for website development on a Lotus Domino
    server (AS400). My usual method to import javascript is to open in
    DreamWeaver, copy to clipboard, then paste into a new javascript
    file in Domino Designer.
    All has gone well, but when I try to cut/paste SpryData.js
    into Designer (and save it on the Domino server), Domino returns an
    "invalid flag after regular expression" error on this line:
    var s = matches
    .replace(/<script[^>]*>[\s\r\n]*(<\!--)?|(-->)?[\s\r\n]*<\/script>/img,
    (and several other similar lines)
    I've tried SpryData 1.4 and 1.6 (includes, minified, and
    packed), and all return this same error in Domino Designer.
    Any thoughts? I've imported Accordion, HTMLpanel, xpath,
    tabbed panels, collapsible panels, URLUtils, and DOMUtils by the
    same method, all without error.
    Thanks in advance,
    Mike

    Hi Mike,
    It sounds as if Domino Designer is interpreting the JS. The
    flags I believe it is talking about in your sample above are the
    "i", "m", and "g" flags specified at the end of the regular
    expression:
    i: case incensitive
    m: multi-line
    g: global search (match all occurrences)
    My guess is that it doesn't support the "m" flag. Try
    removing it then doing your import, and then putting it back?
    --== Kin ==--

  • Unity 7.0 & Lotus Domino 8.5.3 "Error Encrypting notes password"

    Hi Guys,
    Hope I can seek a little help here. I am trying to setup a Unity 7.0 in a lab to use Lotus Domino 8.5.3 as the message store. I've installed ES41 so that it support domino 8.5.3.
    I already have the UnityInstall, UnityAdmin & UnitySvc accounts configured and ran the permission wizard successfully.
    But when come to the message store configuration wizard, i'm hitting the bump of "error encrypting notes password" and second error of "could not set the config password"
    I've found a similiar thread for this but the solution doesn't work for me. (https://supportforums.cisco.com/message/1213310#1213310)
    things I've done so far:
    reinstall notes, manually create the notes 6.0 5.0 registry key as per bug id CSCsb76049, change the password as per CSCsx19170,
    also checked the whoami /priv did have backup & restore listed.
    Any help on this is much appreciated.
    Thanks
    Regards,
    Alex
    https://supportforums.cisco.com/message/1213310#1213

    Update on this, I've also done the procedures of "Patch Cisco Unity for IBM Lotus Notes 8.x Support" &
    "Add the Domino 8.5.x MailFileTmplt Registry Key on the Cisco Unity Server" according to
    http://www.cisco.com/en/US/docs/voice_ip_comm/unity/7x/release/notes/702curelnotes.html#wp593368 but without any luck.
    Any kind soul?
    Rgrds,
    Alex

  • Calendar with Lotus Domino - Error: virtual path incorrect

    Hi all,
    I configured integration of lotus domino for calendar functionalities. But if I want to create an calendar entry I get error that given virtual path is incorrect. What can I do know?
    Kind regards
    Susa

    virtual path for Lotus Notes: servlet

  • Error with Lotus Domino Adapter.

    Hello,
    We have ugraded to the last version of Oracle Waveset 8.1.1.7.
    We are using a Lotus Domino Adapter to create / update / delete Lotus account.
    But now, since the last update, when we create or update a Lotus Domino account we have the following error : "The object type must be specified" in the task summary page.
    Looking in the logs of the gateway, we have the followings lines :
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,6946): Enter: getResourceObjectTypeView+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,7045): getResAttrValueWstring("Object Class","People")="$Users"+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,6956): getResourceObjectTypeView("resourceObjectType")="$Users"+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,6922): Enter: mapOldSchemaTypes+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,6932): mapOldSchemaTypes("$Users")="$Users"+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,6934): Exit: mapOldSchemaTypes+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,6962): Exit: getResourceObjectTypeView+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,7228): identity to note: cn=JOHN DOE/OU=TEST/O=COMPANY+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,3274): Enter: lookupNoteId+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,3278): objectTypeEnum=8, wIdentity='h'+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,7045): getResAttrValueWstring("namesDatabase","names.nsf")="names.nsf"+
    +(../../../../src/wps/agent/object/Extension.cpp,34): Enter: getRequiredResAttrValue+
    +(../../../../src/wps/agent/object/Extension.cpp,44): Exit: getRequiredResAttrValue+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,7066): getRequiredResAttrValueWstring("registrationServerMachine",result) got "IDM01/COMPANY" from resource+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,1580): Enter: getDbHandle+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,1582): Opening db handle for server = IDM01/COMPANY, db = names.nsf+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,1627): Exit: getDbHandle+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,3373): Exit: lookupNoteId+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,7258): Note ID is: 0x0+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,7279): Exit: getNoteHandle+
    +(../../../../src/wps/agent/domino/DominoExtension.cpp,3549): problem getting handle to the note.+
    +(../../../../src/wps/agent/object/RequestHandler.cpp,75): Enter: sendBuffer+
    +(../../../../src/wps/agent/object/RequestHandler.cpp,89): Sending buffer:+
    +(../../../../src/wps/agent/object/RequestHandler.cpp,67): <?xml version='1.0' encoding='UTF-16'?>+
    +(../../../../src/wps/agent/object/RequestHandler.cpp,67): <Response>+
    +(../../../../src/wps/agent/object/RequestHandler.cpp,67): <Result status='error'>+
    +(../../../../src/wps/agent/object/RequestHandler.cpp,67): <ResultItem type='message' status='error'>+
    +(../../../../src/wps/agent/object/RequestHandler.cpp,67): <Message id='com.waveset.adapter.RAMessages:DE_MUST_PROVIDE_OBJECT_TYPE'>+
    +(../../../../src/wps/agent/object/RequestHandler.cpp,67): </Message>+
    +(../../../../src/wps/agent/object/RequestHandler.cpp,67): </ResultItem>+
    +(../../../../src/wps/agent/object/RequestHandler.cpp,67): </Result>+
    +(../../../../src/wps/agent/object/RequestHandler.cpp,67): </Response>+
    Do you have any idea to resolve my problem ?
    Thanks in advance

    Hi,
    please refer:
    for configuration of JDBC adpt-
    http://help.sap.com/saphelp_nw04/helpdata/en/64/ce4e886334ec4ea7c2712e11cc567c/frameset.htm
    for XML document formats(this is much imp.)-
    http://help.sap.com/saphelp_nw04/helpdata/en/64/ce4e886334ec4ea7c2712e11cc567c/frameset.htm
    Ranjit

  • Won't open lotus domino email for my company email. Gives error message everytime

    Message: uncaught exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIDOMHTMLDocument.createElementNS]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: https://netmail.sherwin.com/iNotes/Forms8.nsf/iNotes/Proxy/?OpenDocument&Form=s_JSViewList&l=en&gz&CR&MX&TS=20100809T051750,43Z&charset=ISO-8859-1 :: CyB :: line 6" data: no]
    URL: https://netmail.sherwin.com/mail/swrep7922.nsf/iNotes/Mail/?OpenDocument&KIC&UNH=6pl5lblh0fscea5ldtbic7j8els&ui=inotes&F8
    Call Stack:
    Sorry, not yet implemented
    Date: Fri Mar 25 2011 09:35:42 GMT-0700 (Pacific Daylight Time)
    UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
    Canonical UserName: CN=7922 Rep/O=Sherwin-Williams
    h_PageUnid: 52482A2D50E6CB5E852568D4007AFDFD
    This is the error it shows every time.Domino web access is the program that runs company email

    look here for a possible workaround: http://support.mozilla.com/de/questions/778689

  • Sender mail adapter - connecting to Lotus Domino

    Hi all,
    I'm currently trying to configure a communication channel to pick up from a Lotus Domino mail server using POP3 (I'd be willing to do IMAP4 as well).  The Lotus team has told me that the POP and IMAP services have been activated but I'm not having any luck connecting to the server.  The error message I get each time is exception caught during processing mail message; java.net.ConnectException: A remote host refused an attempted connect operation.
    Any ideas?  The configuration I'm using is:
    URL: pop://mymailserver.com/mailin/xi_dev_users.nsf
    Authentication Method: Plain
    User: mmorris (my user has been given access to this mail file)
    The rest of the config is default.
    I've also tried specifying the port (110) even though that is the default - no luck.

    Hi Mike,
    pinging successfully does not guarantee you're gonna be able to exchange messages.
    Try to connect through telnet through the port you mentioned.
    Another possibility: did they set SSL on the POP3 communication?
    If yes, you need "pops://" as the protocol in the URL (default port 995).
    Best regards,
    Henrique.

Maybe you are looking for

  • I've found 'Blackberry Device Manager' running in the background of my Mac? But its been deleted? How do I get rid?

    I've just upgraded my MacBook Pro to a new Retina model, and while looking at the activity monitor I've noticed I still have an app running in the background that I thought had been deleted? Its the 'Blackberry Device Manager'? (See photo) I've tried

  • Reg Row Selection in a Table UI Element

    Hi All, Can anyone help me in writing code to select a row from a table. I need to read the data from a row selected in a table and print it in the next page of my application. I request anyone to send me some coding line on how to select a row from

  • Extending and MovieClip?

    This is really aggravating me. I come from a OOP background so Java and others are natural to me but ActionScript 2 is really really unintuitive even thought it tries really hard to be a object oriented language. So sorry if some of my question comes

  • Création d'exécutable sous labview

    Bonjour à tous, Je suis actuellemet en stage lors duquel j'ai participé à l'amélioration d'un programme labview. Maintenant que le software est capable de tourner correctement j'aimerai faire un exécutable. Or quand je créer l'exécutable le software

  • Itunes 11 : installation failed

    i can download itunes and the drive or whatever from apple.com website, but once i click to install it, itunes installs until the very last step where it says "installation failed please try again". I have tried many many times and re set my laptop a