Problem installing lotus notes portlets

hi! got the following message when trying to test out at http://myhost/servlets/lotusAppProv
Error!
javax.servlet.ServletException: Failed to parse provider.xml: Error
in expression: '*|/'.13
Any ideas?
thx

Hi,
Please check if your middle tier(http server) is started when you are accessing the Provider's test page. Also check if you are able to see the provider test pages of other providers successfully,which are configured on the same mid tier, like the sample provider that comes jpdk. You may test this by visiting http://server:port/servlets/sample.
regards,
Geeta
Portal version : 3.0.9.8.3
RDBMS : 8.1.7.0
Lotus portlet -->January 2002 v1.
PDK-->the one wich come with the patchset 3 of Portal.
I4ve installed the JPDK successfully and I could install the external application servlets and this is running.
I change the provider.xml to change the phisical path.
Another change I did recently is to change the header of the provider.xml.
change ISO-...... to UTF-..... and the result was that when I run trouugth the url
http://server:port/servlets/lotusAppProv
No page found apper.
And when I want to add the portlet provider the following stack of errors happend.
{PRIVATE}Error:
An error occurred when attempting to call the providers register
function. (WWC-43134)
An unexpected error occurred: ORA-29532: Java call
terminated by uncaught Java exception:
java.io.InterruptedIOException: recv() timed out
Resource temporarily unavailable (WWC-43000)
An unexpected error occurred: java.io.InterruptedIOException:
recv() timed out
Resource temporarily unavailable
at
java.net.SocketInputStream.socketRead(SocketInputStream.jav
a)
at java.net.SocketInputStream.read(SocketInputStream.java)
at
HTTPClient.ExtBufferedInputStream.fill(ExtBufferedInputStream
.java)
at
HTTPClient.ExtBufferedInputStream.read(ExtBufferedInputStre
am.java)
at
HTTPClient.StreamDemultiplexor.read(StreamDemultiplexor.jav
a)
at HTTPClient.RespInputStream.read(RespInputStream.java)
at HTTPClient.RespInputStream.read(RespInputStream.java)
at HTTPClient.Response.readResponseHeaders(Response.java)
at HTTPClient.Response.getHeaders(Response.java)
at HTTPClient.Response.getStatusCode(Response.java)
at
HTTPClient.RetryModule.responsePhase1Handler(RetryModule
.java)
at
HTTPClient.HTTPResponse.handleResponse(HTTPResponse.j
ava)
at
HTTPClient.HTTPResponse.getInputStream(HTTPResponse.ja
va)
at
oracle.webdb.provider.web.HttpProviderDispatcher.dispatch(Ht
tpProviderDispatcher.java:817)
at
oracle.webdb.provider.web.HttpProviderDispatcher.registerPro
vider(HttpProviderDispatcher.java:261)
(WWC-43000)
Thanks in advanced
Matmas
Tx.
Matmas

Similar Messages

  • Problem with Lotus Notes portlet

    Hi all, i have another problem with the latest Lotus Notes portlet (version 9.0.4.0.0_05062003). I have installed and configured the portlet and the domino server to be used with the Basic Authentication. I followed all the steps in the installation document and everything seems OK. However when i include these portlets in a page, some links (not all) doesn't work, in example: the new contact link. Any of these links opens a new browser window. This window displays that i have successfully configured Lotus Notes External Application, but i can't do anything to perform the action, as to add the new contact. Does anybody have the same problem?, it's a bug? or i have committed an error?
    Finally, if i configure the portlet and the domino server to be used with session based Authentication i have the same problem that Remy Vanderplaetsen has posted.
    Any help will be very appreciated.
    Thanks a lot!

    I guess this problem is again with the same portal issue. You need to apply the patch as mentioned in the FAQ.html document for LotusNotes. Please refer this document on how to get and apply the portal patches so that it could work.

  • Lotus Notes Portlets in Arabic

    I am encountring a problem with Lotus Notes Portlets, I want them to dispaly in arabic.
    Note: they are running very good in English
    I used the propertyResourceBundle way, and it indeed retreives the strings from the correct file -LotusBundle_ar.properties in my case , but as long as the strings are in English. If I changed the translated strings to arabic strings, it returns me a rubbish in the Portlet headers (e.g. From , Subject , Date Received , ToDo , ..). I tried to set the charSet in the getWriter() method and in PortletRenderRequest.setCharacterEncoding() to UTF-8 and WINDOWS-1256 charsets, in the InboxRenderer class and in the LotusProvider class but nothing worked it always returned me rubbish words, I also set the NLS_LANG of the ias machine which is a windows NT server machine to ARABIC_UNITED ARAB EMIRATES.AR8MSWIN1256, the charSet of the Portal db is not unicode but the NLS_LANG env. variable of the db machine is set to ARABIC_UNITED ARAB EMIRATES.UTF8 , but still nothing worked.
    Notes: Arabic is installed on my portal (ver 3.0.9.8) and using the SetLanguage portlet i can switch between english and arabic in a seamless way, also the Database plsql Services Portlet sample is running well and it switches between Eng and Ar also -I have seeded the arabic strings to make it dispaly arabic.
    The Notes Arabic cient is installed, and the Notes web access also runs now in arabic (it shows me the Inbox, Calendar, Contacts , ToDo documents all in arabic).
    So where is the problem with web portlets, where exactly to set the charSet, I still have a doubt about the portal db charSet which is as I mentioned not unicode, it is American, but how the portal itself is running in arabic and the plsql portlets also while using this American charSet? Pls Oracle people do not let us lost that way. I'll try to use the ListResourceBundle way as maybe the encoding used when saving the .properties file is not correct, and then give u a feed back.
    Pls all colleagues if any one can help, and give some guiding points, he will be greatly appreciated.
    Amr
    null

    Thanks Christopher for your reply ..
    The Good news is that the problem is now solved when using the ListResourseBundle way, I think that my doubt was correct; the encoding used when saving the .properties files is some how Latin (e.g. US-ASCII for example), so that when retreiving the translated strings and writting them on the reponse object using WINDOWS-1256 charSet, some characters get lost, and hence I got the rubbish strings. The problem now is that you cannot provide more than one resourseBundle for one portlet,I need to provide Bilingual interface, so I have two resourseBundle classes for each portlet (e.g. InboxBundle_ar.class , InboxBundle_en.class). I Couldn't provide more than one resourse tage for each portlet in provider.xml, otherwise it gives an ERROR OCCURED! message in the rendered portlet body. So how to resolve this ?
    The second problem, wchich is bigger, is that the dynamic strings returned from Lotus server are showing as rubbish strings (e.g the Subject itself of the message, Subject of an appointment,the Last name of a user in a Contacts list,..)althoug these strings are showing well in Arabic from the Lotus web access for the same logged in user. I think that the methods doc.getItemValueString(), doc.getColumnValues().get() are returning strings assuming Latin charSet, I tried to play the following code for the rendered message subject :
    byte[] bytes = doc.getItemValueString("Subject").getBytes("US-ASCII");
    String subj = new String(bytes,"WINDOWS-1256");
    out.println("<td><FONT SIZE=2><a href=\""+readMsgURL+"\" target=\"_new\">"+subj+"</a></FONT></td>");
    But unfortunately it didn't work, even when using UTF-8 and UTF-16 in the getBytes statment and when initializing the subj string. note: the out object is assuming the WINDOWS-1256 charset, I forced it to this charset by writting the following code in the renderShow method in the InboxRenderer class :
    pr.setCharacterEncoding("WINDOWS-1256");
    PrintWriter out = pr.getWriter("text/html","WINDOWS-1256");
    where pr is the portletRenderRequest.
    So what to do ??? If you can help me Christopher or pass the topic to any one of the people who wrote the Lotus Notes Portlets, to tell me how to overcome these two problems.
    Note: It is an urgent requirement to arabize these Lotus Notes Portlets.
    Thanks Christopher,
    Thanks all
    Amr

  • Lotus Notes Portlet

    I have been having similar problems as forum messages # 520072 &
    524480 (ref. below). my only difference is that in the apache
    error log I get the following:
    java.net.MalformedURLException: unknown protocol: https
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.io.IOException.<init>(Compiled Code)
    at java.net.MalformedURLException.<init>(Compiled Code)
    at java.net.URL.<init>(Compiled Code)
    at java.net.URL.<init>(Compiled Code)
    at
    sun.net.www.protocol.http.HttpURLConnection.followRedirect
    (Compiled Code)
    at
    sun.net.www.protocol.http.HttpURLConnection.getInputStream
    (Compiled Code)
    at java.net.URL.openStream(Compiled Code)
    at lotus.domino.NotesFactory.getIOR(Compiled Code)
    at lotus.domino.NotesFactory.createSession(Compiled Code)
    at
    oracle.lotus.application.ApplicationLogin.authenticateUser
    (Compiled Code)
    at oracle.lotus.application.ApplicationLogin.performLogin
    (Compiled Code)
    at oracle.lotus.application.LotusProvider.process
    (Compiled Code)
    at oracle.lotus.application.ExternalServlet.doGet
    (Compiled Code)
    at oracle.lotus.application.ExternalServlet.doPost
    (Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at org.apache.jserv.JServConnection.processRequest
    (Compiled Code)
    at org.apache.jserv.JServConnection.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)
    Our Lotus notes web sever is running HTTPS (on a Sun Box) and
    the portal (v3.0.9x) is running on Sun Solaris 8. And like the
    others, I have followed the Oracle doc on creating a Lotus
    Portlet to the letter. But, I'm at a lost since I can not find
    a resolve for the error or what it really means. I've searched
    MetaLink and Technet and even put in a TAR (which Oracle said
    they do not support their own demo portlets - thanks a lot :^
    ( ) Any insight to this problem would be great.
    thanks,
    kurt
    reference msgs:
    **part of msg #524480
    I am trying to install these portlets from the PDK and am having
    problems. Looked through all other threads relating to these
    portlets and have not found a the answer to my problem.
    I have followed instructions to the letter and can access
    mailbox in browser by using http://
    [lotus_host]/mail/mailbox.nsf.
    Having set up the External Application as instructed, when I
    attempt to logon to the application, I am presented with a page
    headed Lotus with the five input fields from the previous form,
    Username, Password, MailFilename, MailServer, Hostname. When I
    complete these fields nothing seems to happen.
    part of msg #520072
    Using the downloaded Java PDK framework and the Lotus Notes zip
    file, I have successfully configured and tested the 'sample'web
    provider.
    I then configured the apache configuration files
    jserv.properties and zone.properties for Lotus Notes (as
    described in the Lotus Notes Portlets help file.
    All went well until I got to Registering the Provider with
    Oracle
    9iAS Portal :
    I got as far as the Input form for the Lotus Notes Inbox (i.e.
    clicking on the hyperlink for the external application).
    This form asks for Username, Password,Mailfilename, Mailserver
    and Hostname.
    The form is headed 'LOTUS', the only other item on the Form
    being the 'Submit' button.
    When I submit the form the entries are cleared (returning an
    empty input form as before) but nothing happens.

    If you check out the thread from my question (524480), we found
    that we had to enable the IIOP task on the domino server as we
    were not running it, this cured the problem I think you are
    encountering.
    This has not solved all our problems as I only see Notes data in
    the Inbox Portlet Preview mode, this problem is refered by other
    contributors as the collapsing Portlet problem (496625) and I do
    not know whether there is a solution to this problem yet.
    Hope this helps.

  • Cannot perform authentication in Lotus notes portlets

    Hello again,
    I have managed to setup an external application for Lotus Notes portlet for
    9.0.2.0.1 AS. By clicking the login button I can access my Lotus Domino mail!
    However, when I registered the Lotus Notes Provider (its test page runs fine),
    associated its authentication model with my ext. app, and then tried to access the
    portlets I keep getting messages about "user authentication failed".
    Actually my log file reads:
    11/29/02 1:17 PM webapp1: oracle.webdb.provider.v2.adapter.SOAPServlet: init
    11/29/02 1:17 PM webapp1: NumberFormatException while initializing Logger. Defaulting LogLevel to 4
    11/29/02 1:17 PM webapp1: ServletLogger - Logging level: 4
    11/29/02 1:17 PM webapp1: [id=(null), instance=(null)] CONFIGURATION: Invalid or null value for property - executionWarningTimeout = null - setting to default value of 20 seconds
    11/29/02 1:17 PM webapp1: [id=(null), instance=(null)] CONFIGURATION: Invalid or null value for property - executionKillTimeout = null - setting to default value of 80 seconds
    11/29/02 1:17 PM webapp1: [id=(null), instance=(null)] Unhandled exception in SOAP call
    oracle.webdb.provider.v2.utils.soap.SOAPException: Error: Failed to authenticate user with external application
         at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.initSession(Unknown Source)
         at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.initSession(Unknown Source)
         at java.lang.reflect.Method.invoke(Native Method)
         at oracle.webdb.provider.v2.utils.soap.SOAPProcessor.doMethodCall(Unknown Source)
         at oracle.webdb.provider.v2.utils.soap.SOAPProcessor.processInternal(Unknown Source)
         at oracle.webdb.provider.v2.utils.soap.SOAPProcessor.process(Unknown Source)
         at oracle.webdb.provider.v2.adapter.SOAPServlet.doSOAPCall(Unknown Source)
         at oracle.webdb.provider.v2.adapter.SOAPServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    Is there any issue with the fact that I installed the latest PDK (November 02)? Its test
    page also appears without problems.
    Thanking you in advance,
    Serafeim.

    This may be happening because the configured Lotus Notes External Application does not have the Lotus Domino Username, Password and MailFilename entries. Please click on the "Update Login Information" link and supply these values. You should be able to see the Lotus Notes portlets now.
    Thanks,
    Geeta

  • Fail to create External Application for Lotus Notes portlet (diiop_ior.txt)

    I've downloaded the PDK-January today and I'm trying the Lotus Notes Portlet. I have been following the document located in the PDK directory pdk\pdk\solutions\lotusnotes\installation.html.
    I encountered problem when I trying the section Publishing the Lotus Notes Portlets - Creating the External Application -> at the last 2 steps.
    At first I think it's my fault until I keep finding other posts and monitoring the console log for my standalone OC4J server.
    java.io.FileNotFoundException: http://dominalWebMailip:80/diiop_ior.txt
    java.io.InputStream sun.net.www.protocol.http.HttpURLConnection.getInput
    Stream()
    HttpURLConnection.java:560
    java.io.InputStream java.net.URL.openStream()
    URL.java:798
    java.lang.String lotus.domino.NotesFactory.getIOR(java.lang.String)
    NotesFactory.java:314
    lotus.domino.Session lotus.domino.NotesFactory.createSession(java.lang.S
    tring, java.lang.String, java.lang.String)
    NotesFactory.java:65
    boolean oracle.portal.integration.lotusnotes.application.ApplicationLogi
    n.authenticateUser(java.lang.String, java.lang.String, java.lang.String, java.la
    ng.String, java.lang.String)
    void oracle.p[i]Long postings are being truncated to ~1 kB at this time.

    (Continued)
    void oracle.security.jazn.oc4j.JAZNFilter.doFilter(javax.servlet.Servlet
    Request, javax.servlet.ServletResponse, javax.servlet.FilterChain)
    JAZNFilter.java:283
    void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.serv
    let.ServletRequest, javax.servlet.ServletResponse)
    ServletRequestDispatcher.java:560
    void com.evermind.server.http.ServletRequestDispatcher.forwardInternal(j
    avax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
    ServletRequestDispatcher.java:306
    boolean com.evermind.server.http.HttpRequestHandler.processRequest(com.e
    vermind.server.ApplicationServerThread, com.evermind.server.http.EvermindHttpSer
    vletRequest, com.evermind.server.http.EvermindHttpServletResponse, java.io.Input
    Stream, java.io.OutputStream, boolean)
    HttpRequestHandler.java:767
    void com.evermind.server.http.HttpRequestHandler.run(java.lang.Thread)
    Thanks for any help and replies!

  • Lotus Notes Portlet .. Error: "LotusNotesProvider is currently unavailable"

    Hi all,
    I am trying to integrate Lotus Notes portlets available from Oracle with Oracle Portal 10g 10.1.2.0.2. I am able to register and publish the Lotus Notes portlets but i am getting the following error:
    "LOTUSNOTESPROVIDER is not currently available for maintenance reasons."
    I checked the FAQ and there is an error reported for this.I tried following their steps but it was not useful. My application.log file reads as following:
    06/06/12 20:22:35 lotusnotes: [instance=(null), id=78254009913,7] ERROR: Unhandled exception in SOAP call
    java.lang.IllegalArgumentException: ExternalPrincipal is null.
    at oracle.portal.integration.lotusnotes.v2.LotusAuthenticationContext.<i
    nit>(Unknown Source)
    at oracle.portal.integration.lotusnotes.v2.definition.LotusProviderInsta
    nce.initSession(Unknown Source)
    at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.initSession(Unknown Source)
    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 oracle.webdb.provider.v2.utils.soap.SOAPProcessor.doMethodCall(Unknown Source)
    at oracle.webdb.provider.v2.utils.soap.SOAPProcessor.handleRequest(Unknown Source)
    at oracle.webdb.provider.v2.adapter.SOAPServlet.doSOAPCall(Unknown Source)
    at oracle.webdb.provider.v2.adapter.SOAPServlet.service(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    a:824)
    I would appreciate if someone can help me on this. Kindly guide me on the steps that i need to take.
    Thanks,
    Amit

    Thanks Harsha... I am able to publish the portlet and access my emails also :))..i am this close to success but just have these two problems..
    1) When i click on "New Message" in myInbox portlet- I get the following error message " Application Exception - Could not find design note:. The URL on the web browser shows as following :
    "http://<domino server name:port>/mail/<username>.nsf/Memo/?OpenForm&docurl=" .
    I asked the Notes Admin and they said that it is something to do with the URL and the parameters it is passing. I have configured the portlets exactly as specified by Oracle Installation guide. Same goes with "New Appointment", "New Contact","New ToDo". I am able to read and access my old emails, calendar ,contacts and todo. The problem is only with the "New xxxxxx" links only.
    2) The portlets are displayed exactly as shown by Oracle. That is fine with me but when i click on any of my old emails then i get a different template in a new window. We have a customized company template that we would like to use and is closest to iNote6. How can i use my company's template while looking at mails,calendar,to-do,contact in a new window?
    I would appreciate if you can help me on the above issues... :)
    Thanks,
    Amit

  • Can i receive email from my work lotus notes account with out installing lotus notes

    Hi
    Can i receive my work email to my mac with out installing lotus notes on it

    A new development: I've tried sending emails from the alias several times over the past 24 hours, but in general I've deleted them if they haven't sent within about half an hour.
    However, one of the messages I left sitting in the outbox did send successfully in the end, but this took about an hour.
    So: perhaps my problem is not in fact that I am completely unable to send mail from my alias, but that I can only do so intermittently and extremely slowly, and by ignoring the "cannot send" message.
    Any help appreciated.

  • Mountain Lion Notes App missing (IT installed Lotus Notes over the top)

    My IT department installed Lotus Notes and it installed over the top of the Mountain Lion Notes application and thus deleted it. I renamed the Lotus Notes application (originally just called Notes). How do I get the original OSX notes application back?

    Ok, found the solution, download mountain lion from the app store once more, then use Pacifist to extract the notes appllication again.

  • PC Sync problem N70 Lotus Notes 7

    Hi to all,
    I cannot sync my N70 and Lotus Notes 7. I start sync and it connect but the window of PC Sync disappear and on the phone is shown Synchronising but after a while I get a message that it is timed out.
    Here are the details.
    Please help!
    Thanks...
    Operating system:
    Microsoft Windows XP
    Build 2600
    Service Pack 2
    Language: English
    Language for non-Unicode programs: English
    Locale: Hrvatski
    Input language: Hrvatski
    Nokia PC Suite:
    Version 6.82.22.0
    Language: English
    Connectivity Cable Drivers:
    Not installed
    PC Connectivity Solution:
    Version 6.43.9.0
    Bluetooth stacks:
    WIDCOMM Bluetooth stack
    Version 5.0.1
    Build 3200
    Microsoft Bluetooth stack
    Version 5.1.2600
    Build 2180

    Hi Darryl,
    I think that your only option here is to use PC Suite 6.80.22 which does support Lotus Notes 7 and connect your phone using a Bluetooth connection which is supported by this version of PC Suite.
    It's a very old phone so I doubt later versions of PC Suite are going to provide support for the DLR-3P cable if the current versions don't support it anymore.
    PC Suite 6.80.22 should at least allow you to backup and synchronise your phone if you use the Bluetooth connection.

  • Mailto: problem in Lotus notes!!

    I have written the following code on the onPress event of a
    button.
    Code:
    var recipient:String;
    var subject:String;
    recipient = "[email protected]";
    subject = "Help mail";
    getURL ("mailto:" +recipient+ "&subject=" + subject)
    The code is working fine for MS Outlook, but not for Lotus
    notes.
    To: [email protected]&subject=Help mail
    is getting generated instead of
    To: [email protected]
    Subject: Help mail
    Works fine for Outlook. Can anyone help?

    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

  • Installer Crash - While installing Lotus Notes 8.5.2

    I'm attempting to install lotusnotes852_macen.dmg and the Installer crashes every time I try. I've deleted all Lotus files, rebooted, and the Installer continues to crash. Below is the beginning of the crash log. I'd greatly appreciate any suggestions...Thanks!
    Process: Installer [528]
    Path: /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer
    Identifier: com.apple.installer
    Version: 4.0 (430.1)
    Build Info: Installer-4300100~2
    Code Type: X86 (Native)
    Parent Process: ??? [1]
    Date/Time: 2010-09-01 19:03:43.405 -0700
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 1319018 sec
    Crashes Since Last Report: 37
    Per-App Interval Since Last Report: 8748 sec
    Per-App Crashes Since Last Report: 32
    Anonymous UUID: 2BD548A3-A548-4B74-BDCB-5BEE3E551178
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 4
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<AppController 0x396ec0> valueForUndefinedKey:]: this class is not key value coding-compliant for the key children.'
    * Call stack at first throw:
    0 CoreFoundation 0x908fbbba __raiseError + 410
    1 libobjc.A.dylib 0x912c7509 objcexceptionthrow + 56
    2 CoreFoundation 0x909469f1 -[NSException raise] + 17
    3 Foundation 0x920d7594 -[NSObject(NSKeyValueCoding) valueForUndefinedKey:] + 279
    4 Foundation 0x91ff870b _NSGetUsingKeyValueGetter + 68
    5 Foundation 0x91ff7c7a -[NSObject(NSKeyValueCoding) valueForKey:] + 413
    6 Foundation 0x91ffb5a4 -[NSObject(NSKeyValueCoding) valueForKeyPath:] + 204
    7 AppKit 0x97f83bca -[NSBinder _valueForKeyPath:ofObject:mode:raisesForNotApplicableKeys:] + 841
    8 AppKit 0x97f837f5 -[NSBinder valueForBinding:resolveMarkersToPlaceholders:] + 188
    9 AppKit 0x98141e82 -[NSArrayDetailBinder _refreshDetailContentInBackground:] + 430
    10 AppKit 0x97f829ad -[NSBinder _performConnectionEstablishedRefresh] + 85
    11 AppKit 0x97f750b8 -[NSObject(NSKeyValueBindingCreation) bind:toObject:withKeyPath:options:] + 721
    12 AppKit 0x98021003 -[NSNibBindingConnector establishConnection] + 156
    13 AppKit 0x97f503f3 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1249
    14 AppKit 0x97f4e508 loadNib + 257
    15 AppKit 0x97f4db5b +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 831
    16 AppKit 0x97f4d811 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    17 InstallerPlugins 0x00039b07 -[InstallerSection(Private) _loadMainNib] + 701
    18 Installer 0x0001efd9 0x0 + 126937
    19 Foundation 0x91fed8d4 -[NSThread main] + 45
    20 Foundation 0x91fed884 _NSThread__main_ + 1499
    21 libSystem.B.dylib 0x91a1d81d pthreadstart + 345
    22 libSystem.B.dylib 0x91a1d6a2 thread_start + 34
    )

    Hi Barry,
    Actually, Lotus Notes is still used by a lot of companies. By the way, it looks like IBM finally recognized 8.5.2 is a bad installer package and pulled it from their partner site.
    On a side note...as a new mac owner I've realized that OSX is pretty much Linux based. Among other things, I've been involved in building custom Linux systems for the past 10 years.
    I think I'll try to help out here too as I learn more about OSX internals.
    Glenn

  • Problems with Lotus Notes and AcroPro9.1 collaboration - tracker, email,etc

    Hello all -
    I have been trying to resolve this for a few days, and it's gotten worse, not better. I've searched forums and blogs - no luck so far.
    I am in a corporate Lotus Notes environment, Win XP sp2, AcrobatPro 9.1, reader or pro 9.1 deployed at users in question. With Lotus Notes 8.x open and running, cannot get the collaboration features to work. I get "Lotus notes is not responding. Please make sure it is not offline and try again" when Notes is up and running. Other issues are the good old duplicate email addresses in the to: area, email address and a lot of other text that should actually be in the body of the email appearing in the to: area, etc.
    I am trying to push for more automation using Acrobat in my environments, and this is rapidly becoming a serious show-stopper.
    Adobe Team, ideas please?
    Thx.

    Over a year later... Did you ever resolve this issue? I'm having the same problem since our upgrade to
    Acrobat 9.
    Please let me know if you have a solution!

  • CKEditor copy-paste problem from Lotus Notes

    I use CKEditor in my web applications. When I want to copy a content from Lotus Notes which contains images CKEditor only accepts the image in my copy content and it is in inverted version. But when I repeat same operation in Google Chrome it accepts the text from content and this is acceptable for me. I am sending screen-shots of my issue. The content is the mail that you sent me about confirmation of my Firefox Help question. The copy content is the same for both screen-shots.
    How can I handle this in Firefox?
    Firefox version : 36.0
    Operating System : Windows 7
    Installed plugins :
    * Adobe PDF Plug-In For Firefox and Netscape 11.0.10
    * Creative Cloud Desktop Plugin.v_2_0_0_0
    * AlternaTIFF v2.0.6
    * Box Edit
    * Google Update
    * ImageCapture Suite Plugin Trial
    * Intel web components for IntelĀ® Identity Protection Technology
    * Intel web components updater - Installs and updates the Intel web components
    * NPRuntime Script Plug-in Library for Java(TM) Deploy
    * Next Generation Java Plug-in 11.31.2 for Mozilla browsers
    * Document scanning browser plugin
    * NVIDIA 3D Vision Streaming plugin for Mozilla browsers
    * NVIDIA 3D Vision plugin for Mozilla browsers
    * Notes embedded control plugin for Mozilla
    * NPWLPG
    * Shockwave Flash 17.0 r0
    * 5.1.30514.0
    * Unity Player 4.6.3f1

    Unfortunately I do not know much about this tool, however I did find a few options with a little research:
    It looks like there is an option to paste as plain text with the editor:
    *Source:[http://ckeditor.com/forums/CKEditor/Paste-code-without-formating-HTML]
    As well as an advanced filter:
    *[http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter]

  • Problem using the Lotus Notes Portlet with Domino DIIOP

    hi! the DIIOP service always gives a memory error when the session hits 60. I've read that in R5.0.10, the ORB_LISTEN_QLEN can be set.
    but I can't find that line in the notes.ini?!
    kindly advise.
    thx

    eek eek!!
    I tried.... turns out, that was the download I was originally working with, and just to be sure, I redeployed the application from that download. I get the same problems. In a nutshell:
    1) "My Inbox" portlet has no way to view the most RECENT email
    2) When I click a link in the "Calendar" or "My Inbox", I get Error 401 - "You are not authorized to perform the operation"
    3) The inbox, calendar, and contacts portlets seem to function upon first page view. Refreshing the page causes "Your session with this application has expired.."
    4) The "My ToDo" portlet doesn't work at all. I get a stack dump in the vain of:
    "java.lang.NullPointerException at oracle.portal.integration.lotusnotes.application.LotusProvider.showToDo(Unknown Source) at oracle.portal.integration.lotusnotes.application.LotusProvider.showPortlet(Unknown Source) at oracle.portal.integration.lotusnotes.application.LotusProvider.process(Unknown Source) at oracle.portal.integration.lotusnotes.render.ToDoShowRenderer.getURLStream(Unknown Source) at"
    Feels like I'm fightin' a losing battle... anyone?
    -sean-

Maybe you are looking for