Problem connecting to lotus domino

Hi,
I have set up a Lotus Domino server that gives access to the standard teamroom database over the net.
This works fine for users that have the Microsoft java version installed. When they access the database via the net, they get prompted once for their password and can use the database via the web interface.
Users that have the Sun Java Runtime Environment installed have problems logging in. They are prompted a zillion times for their userid/pasword (once for every object on the screen???)
The messagebox is entitled "Pass Needed - Networking" and prompt me for userid/password.
Any idea how I can avoid those messageboxes using teh Sun jre ?
Rgds
Peter

any one found an answer to this ? as I have the same problem with Java running on netscape or firefox

Similar Messages

  • 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.

  • Apple Devices cannot connect to Lotus Domino Server

    Hello
    There is an issue occuring on Apple Devices, indicating that "the account cannot be verified an error occurred while contacting the server traveler" which I am not able to fix the error.
    We do have mail server which is Lotus Domino 9 and Traveler 9. However, there has been errror occuring only on the Apple devices when installing the Lotus traveler. 
    We could have managed to installed the Lotus Traveler on other devices such as Blackberry etc and it works without no problem.
    However, there has been errror occuring only on the Apple devices when installing the Lotus traveler.
    All relevant things have been finishes to run according to the guidance of  installation for "Apple Device" and at the end the password has been entered on the screen of "Exchange password" then there is no connection with the server. There is a problem to connect to the server regardless of the password is correct or incorrect.
    And
    Could you please kindly help on this matter
    Thank you so much,

    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.

  • 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.

  • 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

  • Problem connecting to Lotus Directory from Java.

    I am very new to LDAP and I have a problem. I am writing java code to connect to lotus directory and I am getting an exception.
    Following is the code :
    package jndibridge;
    * @author RKSUR
    import javax.naming.*;
    import java.util.Hashtable;
    import javax.naming.directory.*;
    import javax.naming.spi.*;
    import java.util.Enumeration;
    public class Main {
    public static String INITCTX = "com.sun.jndi.ldap.LdapCtxFactory";
    public static String LDAP_HOST = "ldap://mtasmtp1-clev.cle.ms.mycompany.com:389";
    public static String LDAP_BASE_DN = "o=philps.com";
    public static String LDAP_USER_ID = "xyz";
    public static String LDAP_PASSWORD = "xyz";
    /** Creates a new instance of Main */
    public Main() {
    * @param args the command line arguments
    public static void main(String[] args) {
    // TODO code application logic here
    try{
    Hashtable env = new Hashtable();
    env.put("Context.INITIAL_CONTEXT_FACTORY",INITCTX);
    env.put("Context.PROVIDER_URL",LDAP_HOST);
    env.put(Context.PROVIDER_URL, LDAP_HOST + LDAP_BASE_DN);
    env.put(Context.SECURITY_PRINCIPAL, LDAP_USER_ID);
    env.put(Context.SECURITY_CREDENTIALS, LDAP_PASSWORD);
    DirContext ctx = new InitialDirContext(env);
    System.out.println("Dir Context=====" + ctx);
    SearchControls constraints = new SearchControls();
    constraints.setSearchScope(SearchControls.SUBTREE_SCOPE);
    System.out.println("Constarints....." + constraints.getCountLimit());
    NamingEnumeration results = ctx.search("o=philps.com","sn=keith",constraints);
    while(results != null && results.hasMore()){
    SearchResult sr = (SearchResult) results.next();
    String dn = sr.getName();
    System.out.println("Distinguished Name is " + dn);
    Attributes attr = sr.getAttributes();
    for(NamingEnumeration ne = attr.getAll();ne.hasMoreElements();){
    Attributes localAttr = (Attributes)ne.next();
    for(Enumeration vals = localAttr.getAll();vals.hasMoreElements();){
    System.out.println("\t" + vals.nextElement());
    System.out.println("\n");
    catch(Exception ex){
    ex.printStackTrace();
    System.exit(1);
    Following is the exception description:
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
    at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
    at javax.naming.directory.InitialDirContext.getURLOrDefaultInitDirCtx(InitialDirContext.java:87)
    at javax.naming.directory.InitialDirContext.search(InitialDirContext.java:248)
    at jndibridge.Main.main(Main.java:53)
    Can anyone point me where I am going wrong?

    I am very new to LDAP and I have a problem. I am writing java code to connect to lotus directory and I am getting an exception.
    Following is the code :
    package jndibridge;
    * @author RKSUR
    import javax.naming.*;
    import java.util.Hashtable;
    import javax.naming.directory.*;
    import javax.naming.spi.*;
    import java.util.Enumeration;
    public class Main {
    public static String INITCTX = "com.sun.jndi.ldap.LdapCtxFactory";
    public static String LDAP_HOST = "ldap://mtasmtp1-clev.cle.ms.mycompany.com:389";
    public static String LDAP_BASE_DN = "o=philps.com";
    public static String LDAP_USER_ID = "xyz";
    public static String LDAP_PASSWORD = "xyz";
    /** Creates a new instance of Main */
    public Main() {
    * @param args the command line arguments
    public static void main(String[] args) {
    // TODO code application logic here
    try{
    Hashtable env = new Hashtable();
    env.put("Context.INITIAL_CONTEXT_FACTORY",INITCTX);
    env.put("Context.PROVIDER_URL",LDAP_HOST);
    env.put(Context.PROVIDER_URL, LDAP_HOST + LDAP_BASE_DN);
    env.put(Context.SECURITY_PRINCIPAL, LDAP_USER_ID);
    env.put(Context.SECURITY_CREDENTIALS, LDAP_PASSWORD);
    DirContext ctx = new InitialDirContext(env);
    System.out.println("Dir Context=====" + ctx);
    SearchControls constraints = new SearchControls();
    constraints.setSearchScope(SearchControls.SUBTREE_SCOPE);
    System.out.println("Constarints....." + constraints.getCountLimit());
    NamingEnumeration results = ctx.search("o=philps.com","sn=keith",constraints);
    while(results != null && results.hasMore()){
    SearchResult sr = (SearchResult) results.next();
    String dn = sr.getName();
    System.out.println("Distinguished Name is " + dn);
    Attributes attr = sr.getAttributes();
    for(NamingEnumeration ne = attr.getAll();ne.hasMoreElements();){
    Attributes localAttr = (Attributes)ne.next();
    for(Enumeration vals = localAttr.getAll();vals.hasMoreElements();){
    System.out.println("\t" + vals.nextElement());
    System.out.println("\n");
    catch(Exception ex){
    ex.printStackTrace();
    System.exit(1);
    Following is the exception description:
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
    at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
    at javax.naming.directory.InitialDirContext.getURLOrDefaultInitDirCtx(InitialDirContext.java:87)
    at javax.naming.directory.InitialDirContext.search(InitialDirContext.java:248)
    at jndibridge.Main.main(Main.java:53)
    Can anyone point me where I am going wrong?

  • Problem connecting to lotus notes server.

    Hey Everyone
    I am using:
    Windows XP, service pack 2
    PC suite 6.85.14.1
    Bluetooth connection
    Phone Nokia E65
    I am trying to connect my laptop to the office lotus notes server. But it seems PC sync can’t locate my id file or the notes server. The fields under sync setup are simply empty.
    My Notes client didn’t have any problems connecting to the server.
    There are about 10 other people in the office all using the same setup (Nokia E65 and a the same type laptop) without problems.
    I have tried the solution in this topic but it didn’t help: /discussions/board/message?board.id=pcsuite&message.id=24092&query.id=149864#M24092.
    Any idea what the problem might be?
    Thx in advance
    \Andreas

    open regedit
    go to HKEY_CURRENT_USER\Software\Nokia\PCSync\Settings
    open => NotesIni
    instead of for exemple => C:\Application_Data\notes\
    type the entire path => C:\Application_Data\notes\Notes.ini
    it should work

  • JSR168 Mail portlet + Lotus Domino

    Hi All,
    I am looking for a JSR168 complaint Mail portlet which can talk to Lotus Domino 6.5
    I want to deploy these portlets on Weblogic Portal Server V 8.1 or above.
    Any help will be highly appreciated.
    Thanks in advance,
    Ryan Cobb.

    Hi Ryan,
    I would suggest you to have a look on SyncEx Collaboration Suite, which contains Calendar Portlet,Task Portlet,Contact Portlet and an Email Portlet with having connectivity with Lotus Domino,MS Exchange and Databases.
    More important is all portlets are JSR 168 complaint.
    You can have a look on http://www.SyncEx.com
    For any further information, please contact
    [email protected]
    [email protected]
    Thanks
    <Neeraj Sidhaye/>
    Try_Catch_Finally AT YAHOO DOT COM
    http://Extremeportal.blog.co.uk

  • Since installing the newest version of Firefox 4.0, I am unable to access my work e-mail which uses Lotus Domino Web Access. Can anyone please tell me how to correct this problem?

    Since installing the newest version of Firefox 4.0, I am unable to access my work e-mail which uses Lotus Domino Web Access. Can anyone please tell me how to correct this problem?

    Sheesh. That looks hard. I think it will fall over at this point:
    "Connect to my Exchange mailbox using HTTP" 'cos Thunderbird uses only the regular email protocols: POP, IMAP and SMTP.
    Here (at work) we have in the past have had IMAP and SMTP enabled on our Exchange server so Thunderbird could then connect just like to any other regular internet-based service.
    With the change here to outlook365/outlook 2010 I've had to switch to using DavMail which lets Thunderbird talk to the mail server using OWA.
    I haven't (seriously) tried Exquilla. Whilst I have great respect for its author and some of his other add-ons, I saw no reason to use an add-on that required payment when DavMail works for free.

  • Installing and Configuring Lotus Domino Connectivity

    Hi
    I am struggeling a littel bit regarding the integration to Lotus Domino
    First of all - I have managed the "Installing and Configuring E-Mail Connectivity"
    1. Created a system
    2. Created a E-Mail Transport
    3. Checked the E-Mailing Service
    Also Integrating Lotus Domino Using iNotes
    1. Creating an iView for iNotes
    2. Accessing iNotes Data in the Portal
    3. Ticket Verifier for Lotus Domino
    4. Implementing the Ticket Verifier
    And from there I would like to integrate the "Installing and Configuring Lotus Domino Connectivity"
    1. Installing the LDS-D Component
    2. Creating a Lotus Transport
    3. Configuring the Calendar Repository Manager
    But then I receives an error when I am trying to use the calendar functionality in the portal - eg. the Every User Role ->Home -> Work -> Overview
    <i>"The mail server credentials are incorrect or have not been specified"</i>
    Where may I resolve this error?
    Regards
    Kay-Arne

    Hi Kay-Arne / Eik Sunke,
      I am getting the same error "The mail server credentials are incorrect or have not been specified.". Does the LDS-D and iNotes configuration need to be performed before this error can be corrected?
    what I have done:
    Enabling mailing for collaboration.
    1. Activate Mailing Service by going to
    System Administration --> System Configuration --> Knowledge Management --> Content Management --> Mailing Service.
    Ensure Active check box is selected.
    2. Create System Alias by going to
    System Administration --> System Configuration --> System Landscape
    Go to content area.
    Portal Content --> Content Provided By SAP --> Collaboration and right click.
    Select New from PAR --> System.
    Choose the iview com.sap.netweaver.coll.app.gw  and hit next button. Select Java_Mail option and hit next button.  Enter appropriate System Name and ID and hit next button.  Hit finsh button and open object for editing.
    Select System Aliases from display option and add an alias for the system. Save changes.
    3. Create Mail Transport by going to
    System Administration --> System Configuration --> Knowledge Management --> Collaboration.
       Click Groupware Transports in content area.
       Select Mail Transport on next screen.
       Click New button and create new mail transport definition.
       Give SMTP server being used in organisation, Inbox for ‘Sent messages folder’, and give
       system alias created in step 2 as alias.
    setting Calendar Repository.
    1. Create System Alias by going to
    System Administration --> System Configuration --> System Landscape
    Go to content area.
    Portal Content --> Content Provided By SAP --> Collaboration and right click.
    Select New from PAR --> System.
    Choose the iview com.sap.netweaver.coll.app.gw  and hit next button. Select Lotus_Server option and hit next button.  Enter appropriate System Name and ID and hit next button.  Hit finsh button and open object for editing.
    Select System Aliases from display option and add an alias for the system. Save changes.
    2. Create Lotus Transport by going to
    System Administration --> System Configuration --> Knowledge Management --> Collaboration.
       Click Groupware Transports in content area.
       Select Lotus Transport on next screen.
       Click New button and create new Lotus transport definition.
       Give alias name of system alias created for system on step 1. Give the the domain server
       (for eg; sap.corp) as the the http server. Port is 1080, and virtual directory is ‘/servlet’.
    3. Create and activate calendary repository manager.
    System Administration --> System Configuration --> Knowledge Management --> Content Management --> Repository Managers -->Calendar Repository.
    Click New button and create new definition.
    Select name and description of choice. Select Lotus Transport created on step 2 above as default transport and for transports. Select Active check box and save.
    Am I missing anything or do Ihave to do anything differently?
    Please advise.
    Thanks and regards,
    Arun

  • Problem install CR2008 for Lotus Domino

    When I install program with lotus Domino options, no copy files that indicate.
    nextpwd.dll, lcppn201.dll. Cop crdb_p2snote.dll.
    I do that?

    Morning Victor,
    Could you please elaborate what exactly is the problem. Sorry I didn't understand your question properly.
    What exactly is happening? What error message is coming up?
    Regards
    Jehanzeb

  • Problem in Lotus Domino and Portal Integration

    Hi,
    We are trying to integrate Lotus Domino 6.5 with EP6 SP11. We have installed the LDS-D component as per the help.sap.com. On the Portal side, we configured the lotus transport and calendar repository manager. In Collaboration>Groupware Transport>lotus Transport, we have specified the following:
    System alias ,
    Server,
    port,
    virtual directory(only the folder 'Servlet' and not its entire path is specified)
    protocol.
    When we click on Collaboration and try to check the availability of another member, it gives the following error
    'The virtual path specified is incorrect'
    Kindly suggest what has been wrong from our side.
    Regards,
    Prathamesh Dalvi

    hi,
    As far as i think u have to specify the Virtual directory on the Domino HTTP server on which the LDS-D components are installed. U have to specify the path.
    pliz check out the link..
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ee/bfd32987dfb848b114c8f3ead32c5c/frameset.htm
    regards
    mujjammil

  • Integrate with BEA Portal and Lotus Domino R5.0.12

    Deal all:
    I got a problem when I integrate with BEA Portal and Lotus Domino R5.0.12.
    my environment is below:
    - Domain Server :
    Lotus Domino Server R5.0.12
    BEA Personal Messaging API 4.3
    (test successful on local host)
    - Application Server:
    BEA Weblogic 8.15
    BEA Groupware portlets 2.5
    I got connection successful message when I using "Domino Service Connection"
    but I got "CZ: VERSION CONFLICT" error message when I add a new account by
    Compoze_Groupware-Edit Account user interface.
    Have anybody met the error message before... and know how to sovle the problem..
    I appreciated any suggest or comment~~~
    detail error message is below:
    portlets.compoze.groupware.exception.ConnectionException: CZ: VERSION CONFLICT at portlets.compoze.groupware.controls.provider.SessionControlImpl.createSession(SessionControlImpl.jcs:142) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.bea.wlw.runtime.core.dispatcher.DispMethod.invoke(DispMethod.java:371) at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:433) at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:406) at com.bea.wlw.runtime.jcs.container.JcsProxy.invoke(JcsProxy.java:381) at $Proxy19.createSession(Unknown Source) at portlets.compoze.groupware.controls.provider.GroupwareProviderControlImpl.updateAccount(GroupwareProviderControlImpl.jcs:4825) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.bea.wlw.runtime.core.dispatcher.DispMethod.invoke(DispMethod.java:371) at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:433) at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:406) at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:249) at com.bea.wlw.runtime.jcs.container.JcsContainer.invoke(JcsContainer.java:85) at com.bea.wlw.runtime.core.bean.BaseContainerBean.invokeBase(BaseContainerBean.java:224) at com.bea.wlw.runtime.core.bean.SLSBContainerBean.invoke(SLSBContainerBean.java:109) at com.bea.wlwgen.StatelessContainer_ly05hg_ELOImpl.invoke(StatelessContainer_ly05hg_ELOImpl.java:207) at com.bea.wlwgen.GenericStatelessSLSBContAdpt.invokeOnBean(GenericStatelessSLSBContAdpt.java:62) at com.bea.wlw.runtime.core.bean.BaseDispatcherBean.runAsInvoke(BaseDispatcherBean.java:153) at com.bea.wlw.runtime.core.bean.BaseDispatcherBean.invoke(BaseDispatcherBean.java:54) at com.bea.wlw.runtime.core.bean.SyncDispatcherBean.invoke(SyncDispatcherBean.java:168) at com.bea.wlw.runtime.core.bean.SyncDispatcher_k1mrl8_EOImpl.invoke(SyncDispatcher_k1mrl8_EOImpl.java:46) at com.bea.wlw.runtime.core.dispatcher.Dispatcher.remoteDispatch(Dispatcher.java:161) at com.bea.wlw.runtime.core.dispatcher.ServiceHandleImpl.invoke(ServiceHandleImpl.java:436) at com.bea.wlw.runtime.core.dispatcher.WlwProxyImpl._invoke(WlwProxyImpl.java:326) at com.bea.wlw.runtime.core.dispatcher.WlwProxyImpl.invoke(WlwProxyImpl.java:315) at $Proxy11.updateAccount(Unknown Source) at portlets.compoze.content.options.accounts.editAccount.editAccountController.saveChangesAccountAction(editAccountController.jpf:534) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.bea.wlw.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:1512) at com.bea.wlw.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:1447) at com.bea.wlw.netui.pageflow.FlowController.internalExecute(FlowController.java:778) at com.bea.wlw.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:211) at com.bea.wlw.netui.pageflow.FlowController.execute(FlowController.java:608) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484) at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:1504) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274) at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:674) at com.bea.wlw.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:527) at com.bea.wlw.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:152) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507) at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1734) at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1754) at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:561) at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSupport.java:121) at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowStubImpl.java:98) at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:150) at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:109) at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiContent.java:224) at com.bea.netuix.nf.ControlLifecycle$3.visit(ControlLifecycle.java:171) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:355) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:365) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:126) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:105) at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:173) at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:137) at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:333) at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:196) at com.bea.netuix.servlets.manager.PortalServlet.doPost(PortalServlet.java:772) at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:150) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072) at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27) at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6987) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121) at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892) at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766) at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)

    Hi,
    The reason why you are seeing this exception is because there is a mismatch between the version of the WLPM API used by the portlets, with the version of the service that you have installed on you Domino server.
    To explain a little, there are two sides to the API that is used to communicate with Lotus Domino:
    1) the Java API side (used by the portlets that you have installed in the portal)
    2) the Domino Service side (installed as a DSAPI filter in the HTTP task of a Domino Server)
    Each Java API jar and Domino Service Executable are branded with a version number, which in your case does not match because the portlets came with one version of the Java API, and you have installed a non-matching version of the service on the Domino Service side (you probably extracted the executable for the service installation from the "BEA Personal Messaging API 4.3" bundle or installer).
    The solution for this is to:
    1) uninstall the Domino Service that you have plugged into the domino service
    2) extract the Domino Service installer which was included with the portlet bundle. This is located in the "Program Files\compoze\groupware_portlets_bea-2.5\8.1\service\domino" directory if you ran the portlet installer, or in the "groupware_portlets_bea81-noinstall-25\groupware_portlets_bea-2.5\8.1\service\domino" directory if you used the "no-install" zip file.
    As a tip, to quickly check whether the versions of the service and Java API’s that you are using are matching, perform the following steps:
    1) hit the domino server with the following URL and notice the "service version": http://domino_service_url:http_port/compoze.czdo. This should be something like "Service Version: 3.6.102"
    2)in your portal application (or in the portlet install bundle), open the harmony_portlets.jar file with winzip, then find the "compoze_products_information.properties" file. In this file, notice the "product.domino" version (e.g. product.domino = 3.6.102)
    3) the two versions you have inspected must match in order for the connection between the portlet and service to succeed.
    If you have verified that the "service" version and "java API" version (located in %portal_app_dir%/APP-INF/lib/harmony_portlets.jar, and you are still getting the exception, it is likely that there is a "harmony_portlets.jar" that included an old version of the Java API located somewhere in the portal server classpath. In this case, make sure that the only harmony_portlets.jar in the classpath is the one that was included with the portlet bundle that you have installed.
    Regards,
    Lev

  • IDM Gateway on Lotus Domino 6.5 dies

    Hi
    I'm trying to install Identity Manager Manager (IDM) 6.0 gateway to Lotus Domino 6.5 on a Windows 2000 SP4 server.
    The service (gateway.exe) starts fine, but when I select "Test Connection" from the IDM Resource Parameters Config - the services stops and the "connection reset\n" messages is returned to the IDM console.
    Starting the services in debug mode gives the following output:
    06/21/2006 16.26.01.306000 [3100] (../../../../src/wps/agent/logging/WSTrace.cpp,150): trace active, level: 9, file: c:/progra~1/idm-gateway/trace.log, maxSize: 10000 KB
    06/21/2006 16.26.01.306000 [3100] (../../../../src/wps/agent/logging/WSTrace.cpp,108): In WSTrace::init()
    06/21/2006 16.26.01.306000 [3100] (../../../../src/wps/agent/logging/WSTrace.cpp,109): Gateway version: 'Sun Java System Identity Manager 6.0'
    06/21/2006 16.26.01.306000 [3100] (../../../../src/wps/agent/logging/WSTrace.cpp,110): OS version: 'Windows 2000 Service Pack 4 (Build 2195)'
    06/21/2006 16.26.01.306000 [3100] (../../../../src/wps/agent/connect/main.cpp,224): Enter: doDominoInitialization
    06/21/2006 16.26.01.306000 [3100] (../../../../src/wps/agent/connect/main.cpp,262): Problem getting notesini dir
    06/21/2006 16.26.01.306000 [3100] (../../../../src/wps/agent/connect/main.cpp,304): Exit: doDominoInitialization
    06/21/2006 16.26.01.306000 [3100] (../../../../src/wps/agent/connect/ntsvc.cpp,95): Service::svc
    06/21/2006 16.26.01.322000 [3512] (../../../../src/wps/agent/util/ThreadRunner.cpp,61): Waiting for request event
    06/21/2006 16.26.01.462000 [3100] (../../../../src/wps/agent/connect/server.cpp,252): starting up server daemon PORT 9278
    06/21/2006 16.26.27.071000 [3100] (../../../../src/wps/agent/connect/RAEncryptor.cpp,126): Error reading encrpytion key from registry. Using default.
    06/21/2006 16.26.27.071000 [3100] (../../../../src/wps/agent/connect/RAEncryptor.cpp,28): RAEncrpytor Constuctor: Using key:[03 52 02 07 67 20 82 17 86 02 87 66 59 08 21 98 64 05 6a bd fe a9 34 57 ]
    06/21/2006 16.26.27.071000 [3100] (../../../../src/wps/agent/connect/RASecureConnection.cpp,60): RASecureConnection: new connection handler
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/client_handler.cpp,344): got 60 bytes
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,260): ReceivePrivate: count: 40, 56 wrapped up rawlength 56
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,269): Rightbefore decrypt:
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,34): KEY:[03 52 02 07 67 20 82 17 86 02 87 66 59 08 21 98 64 05 6a bd fe a9 34 57 ]
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RAEncryptor.cpp,67): RAEncryptor::Decrypt3DES: input length (48) moded to 6
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,110): SendPrivate: count: 0 pad: 4
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,418): Enter: MakeChallengeResponse
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,470): MakeChallengeResponse(in,out):
    (12,DC) (94,B1)
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,472): (3A,C6) (40,79)
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RAEncryptor.cpp,126): Error reading encrpytion key from registry. Using default.
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,493): MakeChallengeResponse Key:
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,34): KEY:[03 52 02 07 67 20 82 17 86 02 87 66 59 08 21 98 64 05 6a bd fe a9 34 57 ]
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,503): Exit: MakeChallengeResponse
    06/21/2006 16.26.27.071000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,110): SendPrivate: count: 16 pad: 4
    06/21/2006 16.26.27.274000 [408] (../../../../src/wps/agent/connect/client_handler.cpp,344): got 36 bytes
    06/21/2006 16.26.27.274000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,260): ReceivePrivate: count: 16, 32 wrapped up rawlength 32
    06/21/2006 16.26.27.274000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,269): Rightbefore decrypt:
    06/21/2006 16.26.27.274000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,34): KEY:[03 52 02 07 67 20 82 17 86 02 87 66 59 08 21 98 64 05 6a bd fe a9 34 57 ]
    06/21/2006 16.26.27.274000 [408] (../../../../src/wps/agent/connect/RAEncryptor.cpp,67): RAEncryptor::Decrypt3DES: input length (24) moded to 3
    06/21/2006 16.26.27.274000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,110): SendPrivate: count: 0 pad: 4
    06/21/2006 16.26.27.274000 [408] (../../../../src/wps/agent/connect/RAEncryptor.cpp,126): Error reading encrpytion key from registry. Using default.
    06/21/2006 16.26.27.274000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,567): Session key :
    06/21/2006 16.26.27.274000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,34): KEY:[12 94 3a 40 77 e7 7b 7f dc b1 c6 79 cf db 60 c9 64 05 6a bd fe a9 34 57 ]
    06/21/2006 16.26.27.290000 [408] (../../../../src/wps/agent/connect/client_handler.cpp,344): got 17100 bytes
    06/21/2006 16.26.27.290000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,260): ReceivePrivate: count: 17080, 17096 wrapped up rawlength 17096
    06/21/2006 16.26.27.290000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,269): Rightbefore decrypt:
    06/21/2006 16.26.27.290000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,34): KEY:[12 94 3a 40 77 e7 7b 7f dc b1 c6 79 cf db 60 c9 64 05 6a bd fe a9 34 57 ]
    06/21/2006 16.26.27.290000 [408] (../../../../src/wps/agent/connect/RAEncryptor.cpp,67): RAEncryptor::Decrypt3DES: input length (17088) moded to 2136
    06/21/2006 16.26.27.290000 [408] (../../../../src/wps/agent/connect/RASecureConnection.cpp,110): SendPrivate: count: 0 pad: 4
    06/21/2006 16.26.27.290000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,567): Enter: handleRequest
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,587): Received buffer:
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <?xml version='1.0' encoding='UTF-16'?>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Request encrypted='true'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <cmd>get info</cmd>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Resource name='DXBGHMA01' class='com.waveset.adapter.DominoResourceAdapter'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attributes>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Certifier Log Database' type='string' value='d:/Lotus/Domino/Data/certlog.nsf'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Continue on errors' type='string' value='FALSE'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Host' type='string' value='205.220.87.121'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Input Form' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Log File Path' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Log Level' type='string' value='2'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='MailServer' type='string' value='DXBGHMA01/DXBGH/MIDEAST/HIC'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Maximum Age Length' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Maximum Age Unit' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Maximum Archives' type='string' value='3'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Maximum Log File Size' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Object Class' type='string' value='People'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Poll Every' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Polling Start Date' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Polling Start Time' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Post-Poll Workflow' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Pre-Poll Workflow' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Proxy Administrator' type='string' value='Configurator'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Scheduling Interval' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='TCP Port' type='string' value='9278'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='User Provides Password On Change' type='string' value='1'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='When reset, ignore past changes' type='string' value='1'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='activeSyncConfigMode' type='string' value='basic'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='activeSyncPostProcessForm' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='addShortName' type='string' value='FALSE'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='adminAcct' type='string' value='d:/Lotus/domino/certs/rverrips.id'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='adminDatabase' type='string' value='admin4.nsf'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='assignSourceOnCreate' type='boolean' value='true'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='blockCount' type='string' value='100'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='certifierIDFile' type='string' value='d:/Lotus/domino/certs/dxbgh.id'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='confirmationRule' type='string' value='CONFIRMATION_RULE_NONE'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='connectionLimit' type='string' value='10'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='correlationRule' type='string' value='CORRELATION_RULE_NONE'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='createDesktopClient' type='string' value='TRUE'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='createIDfile' type='string' value='TRUE'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='createMailDB' type='string' value='TRUE'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='createUnmatched' type='string' value='true'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='credentials' type='encrypted' value='oVCjCqKfBD0Kr1DoKBC3yQ=='/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='defaultPasswordExp' type='string' value='720'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='deleteMailFileOption' type='string' value='1'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='deleteRule' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='idType' type='string' value='172'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='isNorthAmerican' type='string' value='TRUE'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='mailSystem' type='string' value='0'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='maxThreads' type='string' value='10'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='minPWLength' type='string' value='8'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='namesDatabase' type='string' value='names.nsf'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='parameterizedInputForm' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='password' type='encrypted' value='qRdHbjTofro='/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='populateGlobal' type='string' value='false'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='processRule' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='registrationServerMachine' type='string' value='DXBGHMA01/DXBGH/MIDEAST/HIC'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='resolveProcessRule' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='setInternetPass' type='string' value='FAlse'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='storeIDInAddrBook' type='string' value='FALSE'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='updateAddrBook' type='string' value='FALSE'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='useInputForm' type='boolean' value='true'/>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attributes>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Resource>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <obj>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attributes>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='AltFullName' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='AltFullNameLanguage' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='AlternateOrgUnit' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Assistant' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='CalendarDomain' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='CellPhoneNumber' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='CertifierOrgHierarchy' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='CheckPassword' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Children' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='City' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Comment' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='CompanyName' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Country' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='DenyGroups' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Department' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='DisplayName' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='EmployeeID' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='HTTPPassword' type='encrypted'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='HomeFAXPhoneNumber' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='InternetAddress' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='JobTitle' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Location' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='MailAddress' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='MailDomain' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='MailFile' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='MailServer' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='MailTemplate' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Manager' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='MiddleInitial' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='NetUserName' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='NotesGroups' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='OfficeCity' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='OfficeCountry' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='OfficeFAXPhoneNumber' type='string'>
    06/21/2006 16.26.27.306000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='OfficeNumber' type='string'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='OfficePhoneNumber' type='string'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='OfficeState' type='string'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='OfficeStreetAddress' type='string'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='OfficeZIP' type='string'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='PasswordChangeInterval' type='int'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='PasswordGracePeriod' type='int'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='PhoneNumber' type='string'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='PhoneNumber_6' type='string'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Profiles' type='string'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Recertify' type='boolean'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='SametimeServer' type='string'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='ShortName' type='string'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): <Attribute name='Spouse' type='string'>
    06/21/2006 16.26.27.321000 [408] (../../../../src/wps/agent/object/RequestHandler.cpp,68): </Attribute>
    06/21/2006 16.26.27.321000 [408] (../../../../s

    We are having exactly the same issue as noted above.
    Once the Gateway servvice has been installed and appropriate paths set in registry as advised, behaviour has been noted as follows:
    1. Given the credentials starting the service have access to Domino's core INI file, and an alternate id (eg. sun.id) file is employed for users' ID management, gateway.exe writes the path for this id file back to the core INI file (in C:\Lotus\Domino) on service start.
    This becomes rather ugly with any attempt to restart Domino (freezes, etc) and can only be gracefully removed by
    (i) Re-instating correct server ID references in notes.ini,
    (ii) killing the gateway (see commandline switches), then
    (iii) uninstalling the service and/or restarting the device.
    2. Not wanting to be beaten - tried explicitly denying access to the core ini file by the service account.... Nope - Identity Manager exits with error and service stops as described in original post.
    It seems that under Domino (as opposed to Notes Client) the Gateway service ignores registry setting "notesIniFile" - evidenced by enabling success/failure auditing for each instance of notes.ini file. Seems no attempt is being made whatsoever by gateway.exe to access the alternate "notesIniFile" location.
    Any input will be greatly appreciated...

  • 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!

Maybe you are looking for

  • Missing all images in Lightroom (deleted images showing)

    Working in Lightroom and it was extremely slow. I did a "force quit" (on my Mac) on Lightroom 2 (Guessing that wasn't the thing to do) All my current images in Lightroom are gone and and old version with photos that I've permanently deleted showed up

  • Default for black ink only

    I have a Officejet 6700 Model H711N Product CAV078 Serial [Personal Information Removed] I want to have the default for printing for the black ink only without having to choose it each time I print something.  Is that possible?

  • BillPay won't work in Tiger w/FF, works fine w/FF on PC

    I have the same problem in Safari, Firefox, Netscape, and Camino. I can log into my bank account and view the balance and transactions, but as soon as I click the BillPay tab (where it jumps to a different server/app that processes the bills -- in th

  • Saving Edited Images to iPhoto '09

    I am just beginning to learn to use Photoshop Elements 6 for the Mac. I want to edit my photos in PSE, but organize & store them in iPhoto. After I finish editing a photo in PSE, how to I return the edited photo back to iPhoto? Thank you.

  • Can´t write serial number to configure program.

    When trying to write the serial number to configure the utility pci-gpib, the window that should drop down doesn´t do that. It remains gray colored, the button to make it drop down just doesn´t work.