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 ==--

Similar Messages

  • 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

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

  • 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

  • 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

  • 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

  • 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

  • Mail flow in exchange 2013 and lotus domino coexistence

    scenario: Exchange 2013 CU3 running Windows 2012. coexsisting with lotus domino 8.5.1
    there two cas server and two mailbox server. users migrated using quest tool. distribution groups are still lotus notes.
    in one of distrbution group which containing around 5 users, 4 users are migrated to exchange 2013 cu3 one user still in lotus notes. the above mentioned distribution group members complaining they are not reciving mail which address to distribution group.
    I used exchange shell for message tracking and I found below entries.
    in source field the entry is mailboxrule i have verified there is no mail box rule in the user front
    in eventid field the entry is receive
    in the sourcehostname its show exchange 2013 server.
    recipientstatus {unknown}
    Since the distribution group is in lotus notes I want find event which sates that the message or exchange 2013 forwarding or checking the members of DL .
    which field will give the required details currently i am finding anything.
    please suggest

    Thanks.
    In current scenario we cant create any dl in the exchange 2013 front. I want to know what this mean
    recipientstatus {unknown}.
    secondly I have followed the link below
    http://social.technet.microsoft.com/Forums/exchange/en-US/194c0bd8-9c77-4750-9f47-944451f2dd40/message-tracking-in-large-distribution-list-challenges-please-help?forum=exchangesvrgenerallegacy
    I ran the below command:
    Get-MessageTrackingLog -MessageSubject
    "messageTrack" |select eventId, sender,@{l="recipeints";e={[string]($_.recipients)}}|ft
    -Aut
    oSize -Wrap
    I am getting enventid, sender field details but recipeints field is empty.
    Please suggest.

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

  • 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

  • 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

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

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

  • Crystal Reports XI via ODBC to Lotus Domino Database - crashes client

    As soon as I attempt to connect a CR XI report via ODBC to a particular Lotus Domino database my Crystal client crashes with the below error message in the event viewer. I regularly connect to other Lotus Notes databases but this one crashes my client everytime. Anyone have any ideas?
    Event Type: Error
    Event Source: Application Error
    Event Category: None
    Event ID: 1000
    Date: 7/16/2008
    Time: 11:45:27 AM
    User: N/A
    Computer: 2WC3PC1
    Description:
    Faulting application crw32.exe, version 11.0.0.2495, faulting module crdb_p2snote.dll, version 11.0.0.1282, fault address 0x00020f1a.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 41 70 70 6c 69 63 61 74 Applicat
    0008: 69 6f 6e 20 46 61 69 6c ion Fail
    0010: 75 72 65 20 20 63 72 77 ure crw
    0018: 33 32 2e 65 78 65 20 31 32.exe 1
    0020: 31 2e 30 2e 30 2e 32 34 1.0.0.24
    0028: 39 35 20 69 6e 20 63 72 95 in cr
    0030: 64 62 5f 70 32 73 6e 6f db_p2sno
    0038: 74 65 2e 64 6c 6c 20 31 te.dll 1
    0040: 31 2e 30 2e 30 2e 31 32 1.0.0.12
    0048: 38 32 20 61 74 20 6f 66 82 at of
    0050: 66 73 65 74 20 30 30 30 fset 000
    0058: 32 30 66 31 61 0d 0a 20f1a..

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

Maybe you are looking for