Lotus Notes to Oracle

I have a client that has some data already in a Lotus Notes Database and is unhappy with that situation. What tools are available to get the data out and into an Oracle database.
Please send email to [email protected] if you can, it would be appreciated. Thanks in advance.

hello,
generate csv or xml file (better csv for the size), use external table to load the file into oracle. We are doing this way in production, in order to synchronize between My Sql front databases and Oracle BO database with millions of data daily. You may face some problem of chr, but you can use shell (for Linux / Unix etc...) to adapt your csv ... or c , python, java program/classes etc...
Edited by: Orawiss on Apr 20, 2010 8:28 PM

Similar Messages

  • Lotus notes as a front end and oracle as backend

    Dear All,
    Can i use lotus notes as a front end and oracle as backend atleast for few forms in my application.
    If Yes how to go about it.
    I have not tried it even once
    Kindly also advice if this is appropriate forum to ask this question
    Best Regards,
    Devendra Shelke

    Dear All,
    Context for asking above question :
    We use Form 6i and Report 6i, Application Server 9i and 9i DB.
    But for some forms we want the user to enter the data through Lotus Notes but get updated in 9i DB used by Form 6i.
    Best Regards,
    Devendra

  • Lotus notes (ibm) to migrate all the data to Oracle DB Database 10g R2(10.2

    Hi Experts,
    we have legacy application which is running independently with back end as Lotus Notes(IBM).Now we wanted to migrate the application to our application with data . our application is running with oracle Database 10g R2(10.2.0.2.0).
    Now I wanted to migrate all the data to Oracle DB.
    Can you suggest me the best ways to do handle the above migrations .
    thanks in advance

    Hi,
    Install all the required packages.
    You are hitting a bug. Bug 7680459: LIBXP PACKAGE IS MISSING FROM LIST OF PACKAGES REQUIRED.
    As per documentation Bug 7680459, the package libXp-1.0.0-8 is also required to invoke OUI successfully.
    So, make sure that you have installed these packages including the dependency packages required.
    Follow Doc ID 419646.1: Requirements For Installing Oracle 10gR2 On RHEL/OEL 5 (x86)
    Regards,
    Satish

  • OLE : Oracle 9i / lotus Notes

    Hello
    (Text translated of French into English )
    We arrived at the limits of our internal comptences and seek solutions for advanced:
    Have you got any solution to me... or to provide me contact which can help us with OLE Oracle/notes.
    We have a appli developed under Forms d' Oracle with bouttons
    The appli in executed on 9iAS and the accesses of the customer is done in Java of the navigator Web . (applet "oracleJinitiator")
    We have to update oracle (8 - > 9i) and since we let us not arrive at reparametrer 4 buttons whose function is to interact with Lotus That more fontionne neither on station which has the customer lotus notes 7.0.2 Fr nor with 6.5.4fr (waiter domino 7.0.2 Fr).
    We use 4 functions which are as follows
    Sending of an email with [email protected]
    Sending of email to the contact selectionné
    Creation of an appointment in lotus
    Addition interloccutor in address book lotus
    Here is the code
    Sending of an email with [email protected]
    Lotus opens then nothing
    Work=Create_Obj('Notes.NotesUIWorkspace')
    Invoke(Work,'OpenDatabase','domino',:global.ole_mail_lotus);
    doc = Invoke_Obj(Work,'ComposeDocument','', '', 'Memo');
    Set_Property(Work,'Visible',1);
    Invoke(doc,'FieldSetText','EnterSendTo','[email protected] ');
    Invoke(doc,'FieldSetText','Subject','Demande de Modif de :_ ');
    Invoke(doc,'FieldAppendText','Subject',:SOCIETE.CSOSIRET);
    Invoke(doc,'FieldAppendText','Subject','_-_ ');
    Invoke(doc,'FieldAppendText','Subject',:SOCIETE.CSOLIBEL);
    Invoke(doc,'FieldSetText','body','Responsable Local : Civilité ');
    Invoke(doc,'FieldAppendText','body','/ Nom / Prénom ');
    Invoke(doc,'FieldAppendText','body','/ Date de naissance OBLIGATOIRES');
    Invoke(doc,'FieldAppendText','body','/---/ ARE ');
    Release_obj;
    Sending of email to the contact selectionné
    Lotus opens then nothing
    Code
    Work = Create_Obj('Notes.NotesUIWorkspace');
    Invoke(Work,'OpenDatabase','domino',:global.ole_mail_lotus);
    doc = Invoke_Obj(Work,'ComposeDocument','', '', 'Memo');
    Set_Property(Work,'Visible',1);
    Invoke(doc,'FieldSetText','Body',:global.ole_corps);
    Invoke(doc,'FieldSetText','EnterSendTo',:global.ole_email);
    Invoke(doc,'FieldSetText','Subject',:global.ole_sujet);
    Release_Obj;
    Addition interloccutor in address book lotus
    error message
    Code
    Work = Create_Obj('Notes.NotesUIWorkspace');
    Invoke(Work,'OpenDatabase','','names.nsf');
    doc = Invoke_Obj(Work,'ComposeDocument','', '', 'Contact');
    Set_Property(Work,'Visible',1);
    Invoke(doc,'FieldSetText','Title',:global.ole_titre);
    Invoke(doc,'FieldSetText', 'LastName',:global.ole_nom);
    --Invoke(doc,'FieldSetText', 'LastName',:PERSONN.CITNOMPE);
    Invoke(doc,'FieldSetText', 'FirstName',:global.ole_prenom);
    Invoke(doc,'FieldSetText', 'OfficePhoneNumber',:global.ole_Bur_Tel);
    Invoke(doc,'FieldSetText', 'OfficeFaxPhoneNumber',:global.ole_Bur_Fax);
    Invoke(doc,'FieldSetText', 'MailAddress',:global.ole_email);
    Invoke(doc,'FieldSetText', 'JobTitle',:global.ole_fonction);
    Invoke(doc,'FieldSetText', 'CompanyName',:global.ole_societe);
    Invoke(doc,'FieldSetText', 'PhoneNumber',:global.ole_pers_Tel);
    Invoke(doc,'FieldSetText', 'HomeFaxPhoneNumber',:global.ole_pers_Fax);
    Invoke(doc,'FieldSetText', 'OfficeZip',:global.ole_bur_CP);
    Invoke(doc,'FieldSetText', 'OfficeStreetAddress',:global.ole_Bur_Rue);
    Invoke(doc,'FieldSetText', 'OfficeCity',:global.ole_Bur_Ville);
    Invoke(doc,'FieldSetText', 'OfficeCountry',:global.ole_Bur_Pays);
    Invoke(doc,'FieldSetText', 'Zip',:global.ole_bur_CP);
    Invoke(doc,'FieldSetText', 'StreetAddress',:global.ole_Pers_Rue);
    Invoke(doc,'FieldSetText', 'City',:global.ole_Pers_Ville);
    Invoke(doc,'FieldSetText', 'Country',:global.ole_Pers_Pays);
    Release_Obj;
    Creation of an appointment in lotus
    Lotus opens then nothing
    Code
    Work=Create_Obj('Notes.NotesUIWorkspace')
    Invoke(Work,'OpenDatabase','domino',:global.ole_mail_lotus);
    doc=Invoke_Obj(Work,'ComposeDocument','','','Appointment');
    Set_Property(Work,'Visible',1);
    Invoke(doc,'FieldSetText','StartDate',:global.ole_Date_Debut);
    Invoke(doc,'FieldSetText','StartTime',:global.ole_Heure_Debut);
    Invoke(doc,'FieldSetText','EndDate',:global.ole_Date_Fin);
    Invoke(doc,'FieldSetText','EndTime',:global.ole_Heure_Fin);
    Invoke(doc,'FieldSetText','AppointmentType','Rendez-vous');
    Invoke(doc,'InsertText','Subject',:global.ole_sujet);
    Invoke(doc,'InsertText','Subject','-');
    Invoke(doc,'InsertText','Subject',:global.ole_nom_int);
    Invoke(doc,'FieldSetText','body',:FICHE_ACTION;CTXLIBEL);
    Invoke(doc,'FieldSetText','body',:global.ole_descr);
    Invoke(doc,'FieldAppendText','body','/ TEL :');
    Invoke(doc,'FieldAppendText','body',:global.ole_tel_int);
    Invoke(doc,'FieldAppendText','body','/ EMAIL :');
    Invoke(doc,'FieldAppendText','body',:global.ole_email_int);
    Invoke(doc,'FieldAppendText','body','/ ');
    Invoke(doc,'FieldAppendText','body',:global.ole_categorie);
    Invoke(doc,'FieldAppendText','body','/ ');
    Invoke(doc,'FieldAppendText','body',:global.ole_preoc);
    -- wait('Mise à jour','Cliquez sur OK pour mettre à jour');
    -- :global.ole_Heure_Debut=Invoke_Char(doc,'FieldGetText','StartTime');
    -- :global.ole_Date_Debut=Invoke_Char(doc,'FieldGetText','StartDate');
    -- :global.ole_Date_Fin=Invoke_Char(doc,'FieldGetText','EndDate');
    -- :global.ole_Heure_Fin=Invoke_Char(doc,'FieldGetText','EndTime');
    Release_obj;
    Thank you by advance

    Check whether these will help.
    JDBC connectivity with Oracle in Domino-Part I
    JDBC connectivity with Oracle in Domino-Part II
    JDBC connectivity with Oracle in Domino-Part III

  • Integration of Oracle with Lotus Notes

    Hello,
    I have a requirement to interface from my Oracle APEX application to a third party Lotus Notes application.
    This would be a two way interface
    1) Lotus notes app to call an Oracle packaged procedure to insert into some Oracle tables
    2) Oracle APEX App via a Table Trigger to insert into a Lotus Notes table
    After the inserts it should be possible to view the data in the Oracle APEX app and in the Lotus Notes app
    I am a complete novice to Java but I understand JDBC could be a good method to solve this requirement
    For the two way interface the Oracle code would be
    1) Lotus notes app to call an Oracle packaged procedure to insert into some Oracle tables
    te_pkg.insert_project
    (I_work_request_no IN VARCHAR2
    ,I_description      IN VARCHAR2
    ,I_originator_email IN VARCHAR2
    ,I_auth_user_email IN VARCHAR2
    ,I_it_manager_email IN VARCHAR2
    ,I_raised_date IN DATE
    ,I_latest_est_days IN NUMBER
    2) Oracle APEX App via a Table Trigger to insert into a Lotus Notes table
    CREATE OR REPLACE TRIGGER TRIG_proj_AFTER
    AFTER
    UPDATE ON Project FOR EACH ROW
    BEGIN
    IF :new.status = 3 THEN -- Project Completed
    ** INSERT INTO Lotus notes temp table with :new.work_request_no, :new.status
    END IF;
    END;
    Any suggestions and code snippets, particularly for pushing the Project Status INSERT to Lotus Notes would be appreciated.
    I stress again I am a complete novice to JAVA so simple step by step instructions would help.
    Kind Regards
    Ade

    Check whether these will help.
    JDBC connectivity with Oracle in Domino-Part I
    JDBC connectivity with Oracle in Domino-Part II
    JDBC connectivity with Oracle in Domino-Part III

  • Oracle Portal with Lotus Notes Databases

    We have Web-enabled Lotus Notes Databases as part of our Intranet has any one else found a successful method for integrating these into the Oracle Portal?

    Hi Emma,
    I guess you have posted two topics for the same issue. I have replied to the other topic.
    You can access that topic with the following URL:-
    Oracle Portal with Lotus Notes Databases
    Take care,
    Manoj

  • Pim Sync issues Lotus Notes 8 to Oracle OnDemand

    Hi All,
    when i try to pim sync lotus notes contacts to oracle ondemand, the contact in lotus notes gets imported as an account in OnDemand.
    Anyone know why? or even better how to fix the problem
    thanks
    PK

    PK, in the company profile check the checkbox called "Disable PIM Sync Account Association".

  • Migrate Lotus Notes Finance Apps to Oracle Enterprise Asset Management

    Hi,
    I would like to know if Lotus Notes apps for asset management can be migrated to Oracle Enterprise Asset Management. If so are there any tools to aid the process.

    Hi,
      This forum is for migrating from non-Oracle databases to Oracle.
    It would bebetter to ask this question in an EAM forum so try here -
    Business Intelligence Applications
    Regards,
    Mike

  • Lotus Notes Database to Oracle

    I have a simple application (workspace?) in Lotus Notes. I need to move that data into an Oracle database. Can someone help please?
    I will need to keep moving this data on a weekly basis since new data gets added into this workspace.
    Any sample code, or, simple tools/utilities that I could leverage?

    Hi
    Try to use an ODBC driver to load the data from LN to Ora, or export the data from LN to csv and load it with SQLLoader to Ora.
    Ott Karesz
    http://www.trendo-kft.hu

  • Oracle - Lotus Notes Interface

    Hi,
    Is there any Oracle DB built-in for Lotus Notes Interface?
    Can we push or pull data from Oracle DB to Lotus Notes and vice versa.
    Thanks and Regards
    Kaustubh

    Kaustubh wrote:
    Hi,
    Is there any Oracle DB built-in for Lotus Notes Interface?
    Can we push or pull data from Oracle DB to Lotus Notes and vice versa.Lotus Notes deals with documents and isn't a standard form of database.
    I'm not sure if there are some ODBC drivers for it (which would of course give you heteregeneous services connectivity), but I think we use some scheduled vbscript's to extract data from Notes and then read those files as external tables into Oracle. (can't recall the details, it's usually someone else who deals in that side of things)

  • Using Notes and Oracle Client in the same application on Linux crashes

    This thread is copied from a thread of the same name under Database - General, since I cannot get any replies there.
    Could someone from Oracle PLEASE comment on this.
    Our application on Linux loads the Notes client libraries and then the Oracle client libraries. The application will crashes when connectimg to an Oracle server. This is because the T_* symbols in libnnz11.so get fixed up into libnotes.so rather than locally into libnnz11.so where the functions are defined.
    #10 0xb4779ea6 in T_malloc () from /opt/ibm/lotus/notes/libnotes.so
    #11 0xae7ca050 in CMP_reallocNoCopy ()
    from /opt/oracle/product/10.2/db_1/lib/libnnz11.so
    #12 0xae7ccf7b in CMP_OctetStringToCMPInt ()
    from /opt/oracle/product/10.2/db_1/lib/libnnz11.so
    #13 0xae7c91fd in A_X931RandomInit ()
    from /opt/oracle/product/10.2/db_1/lib/libnnz11.so
    #14 0xaec09e0d in ztcriv ()
    from /opt/oracle/product/10.2/db_1/lib/libclntsh.so.10.1
    #15 0xaec09cef in ztcrbp ()
    from /opt/oracle/product/10.2/db_1/lib/libclntsh.so.10.1
    #16 0xaec09ca4 in ztcr2seed ()
    from /opt/oracle/product/10.2/db_1/lib/libclntsh.so.10.1
    #17 0xaec09c54 in ztcrseed3 ()
    from /opt/oracle/product/10.2/db_1/lib/libclntsh.so.10.1
    #18 0xaeb40683 in ztcsh ()
    from /opt/oracle/product/10.2/db_1/lib/libclntsh.so.10.1
    #19 0xaea631c4 in kpusattr ()
    from /opt/oracle/product/10.2/db_1/lib/libclntsh.so.10.1
    #20 0xaea7847e in OCIAttrSet ()
    from /opt/oracle/product/10.2/db_1/lib/libclntsh.so.10.1
    #21 0xb081cb9f in COCIObject::Connect ()
    from /opt/criticalpath/common/bin/libor9i.so
    We have circumvented the problem for the time being by making sure that we load the Oracle libraries before Notes, but we cannot go with that as a long term solution.
    In my opinion the Oracle library is wrongly linked since all the T_* functions are defined in libnnz11.so. When we load Oracle first, the loader debug trace shows the correct fixups. When we load Notes first, the loader trace shows the incorrect fixups. We are using dlopen(libor9i.so, RTLD_LOCAL) for Oracle and dlopen(libnotes.so, RTLD_LOCAL) for Notes. libor9i.so has a dependency on libclntsh.so.10.1.
    An opinion would really be appreciated.
    Thanks,
    John Unsworth

    Thanks again.
    We don't have an Oracle support contract because we do not use Oracle ourselves. We supply an application that synchronises data between multiple data servers and server types, of which Oracle is one and Notes is another, as well as LDAP servers and many other types.
    Producing a full resolved binary is therefore not an option since the types of data server are configured when the apploication is installed, and then the client software for each server is loaded as required.
    The end user of the application supplies the client libraries and has a support contract for the servers, in particular Oracle and Notes in this case. So the other option is for the end user to raise a ticket using his support contract, but he is reluctant to do that since he considers that this is our problem as we supply the application that is having the problem. So we are in a dead water area. We do not want to take out a support contract just to get what is an Oracle product problem resolved. I imagine that this problem is something that has not been encountered before, because our use of the client library in conjunction with other client libraries is probably unusual.
    So that is why I am hoping, without any success so far, that someone from Oracle will pick this up.

  • OIM 11.1.1.5.4, Lotus Notes 8.5.1 update AlternativeName/Language error

    Hello experts!
    We have faced issue with OIM and Lotus Notes integration.
    Here is configuration:
    OIM host:
    OS: Windows Server 2008 R2
    Weblogic: 10.3.5.0
    SOA: 11.1.1.5.0
    OIM: 11.1.1.5.4
    Lotus Notes host:
    OS: SUSE Linux 2.6.16.60-0.21-default
    Lotus Notes: 8.5.1
    For integration, we used OIM Lotus Notes/Domino connector version 9.0.4.12.0 because:
    1. In OIM Lotus Notes/Domino connector version 9.0.4.14.0 documentation described bug 11693279, that provisioning fails if you update the Alternate Full Name, Alternate Full Name Language.
    2. In OIM Lotus Notes/Domino connector version 11.1.1.5.0 documentation there is nothing about provisioning or updating user's the Alternate Full Name, Alternate Full Name Language fields.
    So, we have configured Lotus connector according to documentation, but when we trying to update the Alternate Full Name, Alternate Full Name Language fields of provisioned user's account, update Alternate Full Name or Alternate Full Name Language task failed with the following error:
    [2012-10-19T14:51:17.716+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::init
    [2012-10-19T14:51:17.716+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision::init : Host xx.xx.x.xx
    [2012-10-19T14:51:17.717+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision::init : Port 60148
    [2012-10-19T14:51:17.718+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision::init : Admin xxx_xxx
    [2012-10-19T14:51:17.719+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision::init : Before session
    [2012-10-19T14:51:17.723+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LNotesConnectionUtil::getSession
    [2012-10-19T14:51:17.723+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LNotesConnectionUtil::getSession : ***Non-Secure Mode
    [2012-10-19T14:51:22.401+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision::connect : After session
    [2012-10-19T14:51:22.402+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision::connect : Platform = UNIX
    [2012-10-19T14:51:22.403+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision::connect : User name = CN=xxx_xxx/O=xxxxx
    [2012-10-19T14:51:22.404+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision::connect : Successfully Connected to Lotus Server
    [2012-10-19T14:51:22.407+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser START.
    [2012-10-19T14:51:22.407+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision::updateUser: regServer...CN=xxxxx/O=xxxxx
    [2012-10-19T14:51:22.408+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision::updateUser: certPath.../home/notes/notesdata/oim/xxxxx.id
    [2012-10-19T14:51:22.409+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision::updateUser: uniqueId...G=OIM/I=TEST/S=USERV3/CN=OIM TEST USERV3/O=xxxxx
    [2012-10-19T14:51:22.409+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::loadAttributeMapping: START
    [2012-10-19T14:51:22.409+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision: :loadAttributeMapping : Attribute Mapping file : C:\Oracle\Middleware\Oracle_IDM1\server/XLIntegrations/LotusNotes/config/attributemapping_prov.properties
    [2012-10-19T14:51:22.531+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser Target attributes are as follows:
    [2012-10-19T14:51:22.531+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser Full Name: CN=OIM TEST USERV3/O=xxxxx
    [2012-10-19T14:51:22.531+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser First Name: OIM
    [2012-10-19T14:51:22.532+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser: Last Name: USERV3
    [2012-10-19T14:51:22.532+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser: Middle Initial: TEST
    [2012-10-19T14:51:22.532+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser: OrgUnit:
    [2012-10-19T14:51:22.532+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser: Alternate Name: CN=N‚?µN?N‚????N‹?? ?????»N??·?????°N‚?µ?»N?/O=xxxxxx
    [2012-10-19T14:51:22.532+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser: Alternate Language: ru
    [2012-10-19T14:51:22.557+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision:: altNameAttr - AlternateName
    [2012-10-19T14:51:22.558+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision:: altLangAttr - AlternateNameLanguage
    [2012-10-19T14:51:22.559+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LotusNotesProvision:: altOrgUnitAttr - nodata
    [2012-10-19T14:51:22.560+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LNotesConnectionUtil::getUserName: START
    [2012-10-19T14:51:22.560+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LNotesConnectionUtil::getUserName: Org Unit:
    [2012-10-19T14:51:22.561+06:00] [oim_server1] [TRACE] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [SRC_CLASS: com.thortech.util.logging.Logger] [APP: oim#11.1.1.3.0] [SRC_METHOD: debug] LNotesConnectionUtil::getUserName: Final UserName --- CN=OIM TEST USERV3/O=xxxxx
    [2012-10-19T14:51:22.562+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser::Cannonical Name : CN=OIM TEST USERV3/O=xxxxx
    [2012-10-19T14:51:22.562+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser: attribute to be changed: AlternateName
    [2012-10-19T14:51:22.697+06:00] [oim_server1] [ERROR] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::updateUser : NotesException: Notes error: NotesException: Notes error: An improperly formed name was encountered
    [2012-10-19T14:51:22.699+06:00] [oim_server1] [NOTIFICATION] [] [ADAPTER.LOTUSNOTES] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: a2948378c259882a:f142697:13a4a5c015f:-8000-000000000001203b,0] [APP: oim#11.1.1.3.0] LotusNotesProvision::disConnect
    We can't figure out why we get "Notes error: An improperly formed name was encountered" error, so experts, please adwise!
    P.S. As said before, in OIM Lotus Notes/Domino connector version 9.0.4.14.0 documentation described bug 11693279, which is matching exactly to our problem, could it be that documentation for previous connector version (9.04.12.0) lacks information about this bug?
    Edited by: user13483880 on 22.10.2012 5:26

    Experts, does anyone had similiar problem?

  • Could not get IOR from Domino Server while provisioning Lotus Notes

    Hi all,
    There are two servers that have OIM installed, development server and test server. From development server, we can
    provision to Lotus Notes just fine. But for test server everytime when
    provision to Lotus Notes. There will be an exception
    NotesException: Could not get IOR from Domino Server: http://10.3.100.61:63148/diiop_ior.txt
    From test server
    I can access the URL http://10.3.100.61:63148/diiop_ior.txt using Internet Explorer
    I can telnet to 10.3.100.61 63148
    I can use connector testing program and it work fine
    All configuration and jar files are the same as development server
    There is no firewall or antivirus running in both systems.
    Both server is virtual server using VMWare.
    OS: Windows2003R2 Enterprise
    DB: Oracle 10gR2 10.2.0.2
    AS: Oracle AS 10g 10.1.3.3.0
    OIM 9.1.0
    Lotus Notes Connector 9.0.4.2
    Thank you.
    Satit
    The error is as below
    =================================================
    INFO,11 Nov 2008 11:24:26,109,[ADAPTER.LOTUSNOTES],LotusNotesProvision::init
    INFO,11 Nov 2008 11:24:26,109,[ADAPTER.LOTUSNOTES],LotusNotesProvision::init
    DEBUG,11 Nov 2008 11:24:26,109,[ADAPTER.LOTUSNOTES],LotusNotesProvision::init : Host 10.3.100.61
    DEBUG,11 Nov 2008 11:24:26,109,[ADAPTER.LOTUSNOTES],LotusNotesProvision::init : Port 63148
    DEBUG,11 Nov 2008 11:24:26,109,[ADAPTER.LOTUSNOTES],LotusNotesProvision::init : Admin Pongtape Ungkawanish/Telecom./Central Support/Fin./KK_Bangkok/TH
    DEBUG,11 Nov 2008 11:24:26,109,[ADAPTER.LOTUSNOTES],LotusNotesProvision::init : Certifier OU
    DEBUG,11 Nov 2008 11:24:26,109,[ADAPTER.LOTUSNOTES],LotusNotesProvision::init : Before session
    08/11/11 11:24:26 Running setTimeoutParameters
    08/11/11 11:24:26 Running Connect
    INFO,11 Nov 2008 11:24:26,109,[ADAPTER.LOTUSNOTES],LNotesConnectionUtil::getSession
    INFO,11 Nov 2008 11:24:26,109,[ADAPTER.LOTUSNOTES],LNotesConnectionUtil::getSession : ***Non-Secure Mode
    ERROR,11 Nov 2008 11:24:26,109,[ADAPTER.LOTUSNOTES],LNotesConnectionUtil::getSession : ***Connection refused to Lotus Notes......
    NotesException: Could not get IOR from Domino Server: http://10.3.100.61:63148/diiop_ior.txt
         at lotus.domino.NotesFactory.requestIORPlain(Unknown Source)
         at lotus.domino.NotesFactory.requestIORUsingArgs(Unknown Source)
         at lotus.domino.NotesFactory.getIOR(Unknown Source)
         at lotus.domino.NotesFactory.createSessionUP(Unknown Source)
         at lotus.domino.NotesFactory.createSession(Unknown Source)
         at com.thortech.xl.Integration.HostAccess.LNotesConnectionUtil.getSession(Unknown Source)
         at com.thortech.xl.Integration.HostAccess.LotusNotesProvision.connect(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:585)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpLNCREATEUSER.CONNECT(adpLNCREATEUSER.java:449)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpLNCREATEUSER.implementation(adpLNCREATEUSER.java:160)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcProvisioningOperationsBean.retryTasks(Unknown Source)
         at com.thortech.xl.ejb.beans.tcProvisioningOperationsSession.retryTasks(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:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.SecurityRoleInterceptor.invoke(SecurityRoleInterceptor.java:47)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
         at tcProvisioningOperations_RemoteProxy_6ocop18.retryTasks(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:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.NullPointerException
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:781)
         at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:669)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:913)
         ... 45 more
    INFO,11 Nov 2008 11:24:26,109,[ADAPTER.LOTUSNOTES],Unable to connect to the target. Attempting to reconnect after delay of 2000ms.......
    INFO,11 Nov 2008 11:24:28,110,[ADAPTER.LOTUSNOTES],LNotesConnectionUtil::getSession
    INFO,11 Nov 2008 11:24:28,110,[ADAPTER.LOTUSNOTES],LNotesConnectionUtil::getSession : ***Non-Secure Mode
    ERROR,11 Nov 2008 11:24:28,110,[ADAPTER.LOTUSNOTES],LNotesConnectionUtil::getSession : ***Connection refused to Lotus Notes......
    NotesException: Could not get IOR from Domino Server: http://10.3.100.61:63148/diiop_ior.txt
         at lotus.domino.NotesFactory.requestIORPlain(Unknown Source)
         at lotus.domino.NotesFactory.requestIORUsingArgs(Unknown Source)
         at lotus.domino.NotesFactory.getIOR(Unknown Source)
         at lotus.domino.NotesFactory.createSessionUP(Unknown Source)
         at lotus.domino.NotesFactory.createSession(Unknown Source)
         at com.thortech.xl.Integration.HostAccess.LNotesConnectionUtil.getSession(Unknown Source)
         at com.thortech.xl.Integration.HostAccess.LNotesConnectionUtil.getSession(Unknown Source)
         at com.thortech.xl.Integration.HostAccess.LotusNotesProvision.connect(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:585)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpLNCREATEUSER.CONNECT(adpLNCREATEUSER.java:449)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpLNCREATEUSER.implementation(adpLNCREATEUSER.java:160)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcProvisioningOperationsBean.retryTasks(Unknown Source)
         at com.thortech.xl.ejb.beans.tcProvisioningOperationsSession.retryTasks(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:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.SecurityRoleInterceptor.invoke(SecurityRoleInterceptor.java:47)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
         at tcProvisioningOperations_RemoteProxy_6ocop18.retryTasks(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:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.NullPointerException
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:781)
         at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:669)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:913)
         ... 46 more

    check if DIIOP service is turned on at the Lotus Domino side...
    Oleg.

  • How to Extract Data From Lotus Notes in BI 7.0

    Hi,
    I need to <b>Extract Data From Lotus Notes</b>.
    Is it possible to create source system For Lotus Notes (Like we creating For R/3,Oracle,Flat Files etc) then we can Extract the Data ! or
    I need to Download the Data in .csv File then Extract the Data !
    really appreciate your comments and surely you can get points too...
    Thanks in advance
    prasanna

    Hi,
    What type of data do you want to extract from lotusnotes. .?
    regards,
    Mohan

  • Lotus Notes password change not working

    Hi,
    I'm integrating Lotus Notus and currently we are able to create users in the Domino server, so we have many doubts:
    Lotus Notes Id Files are created in the Domino server, but this Id Files needs to be copied in the users own laptops or desktop pc's. What is the best way we can give the user the Id File?
    For password changes: I have test password change from OIM self-service, I mean, I create a user, then I provision the user account to Lotus and finally I login with the user account to OIM user self-service interface and try to change password, connector log says everything is ok and the user Id file is correctly modified but, in Domino's server, Lotus internet/http password is not modified, so it is correct? I expect the http/internet password to be changed too. For test purposes I have to copy the new Id file from the Domino server and paste it in the client pc where Lotus Notes client is installed, I put the new password and I'm able to login, but http/internet password is not changed.
    So I don't know if this is a limitation from the connector or if I miss something in order to be able to perform password changes, I have read many times connector documentation but this is not clear for me. I also have read oracle waveset Domino connector documentations but seems to work in a different way OIM do.
    Please help me
    Regards.

    Hi SaikatDas,
    Thank you for posting in MSDN forum.
    Since this forum is to discuss: Visual Studio WPF/SL Designer, Visual Studio Guidance Automation
    Toolkit, Developer Documentation and Help System, and Visual Studio Editor.
    Based on your issue, it is related to the IIS, so I’m afraid that it is not the correct forum for this issue. therefore, I suggest you can post this issue directly to the IIS forum:http://forums.iis.net/
    , maybe you will get better support.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for