Domino LDAP Lotus Notes Server

I have been successful in connecting to a Domino LDAP through Weblogic. The problem
I am having is when I go to /tools there are only three groups that show up: admin,
administrators, and administrator. None of my other groups in the LDAP show up,
which make personalization hard to do. When I set up my LDAP connection in the
console I am connecting to the admin group. Can weblogic show more than one group
in LDAP? Has anyone been successful at connecting to Domino? Below my configuration
data:
domino.group.dn=cn=admin
domino.membership.filter=(&(member=%M)(objectclass=dominoGroup))
domino.user.filter=(&(cn=%u)(objectclass=dominoPerson))
server.alias=domino
domino.server.principal=cn=user,o=ATT
domino.group.iscontext=false
domino.server.host=server.mydomain.com:389
domino.server.credential=bea4321
domino.user.dn=
domino.group.filter=(&(cn=%g)(objectclass=dominoGroup))

Hi John,
Please note that the LDAP realm (both V1 and V2) that comes with WLS 6.x only support
these LDAP servers:
Netscape Directory Server
Microsoft Site Server
Novell Directory Server
OpenLDAP Directory Server
Regards,
Joseph Nguyen
BEA WebLogic Support
John wrote:
I have been successful in connecting to a Domino LDAP through Weblogic. The problem
I am having is when I go to /tools there are only three groups that show up: admin,
administrators, and administrator. None of my other groups in the LDAP show up,
which make personalization hard to do. When I set up my LDAP connection in the
console I am connecting to the admin group. Can weblogic show more than one group
in LDAP? Has anyone been successful at connecting to Domino? Below my configuration
data:
domino.group.dn=cn=admin
domino.membership.filter=(&(member=%M)(objectclass=dominoGroup))
domino.user.filter=(&(cn=%u)(objectclass=dominoPerson))
server.alias=domino
domino.server.principal=cn=user,o=ATT
domino.group.iscontext=false
domino.server.host=server.mydomain.com:389
domino.server.credential=bea4321
domino.user.dn=
domino.group.filter=(&(cn=%g)(objectclass=dominoGroup))--
Joseph Nguyen
Developer Relations Engineer
BEA Systems, Inc.

Similar Messages

  • Configuring LDAP to Notes server

    Has anyone tried configuring LDAP on weblogic to work with Lotus Notes server?

    I have heard anecdotal evidence that this does not work. It is not
    supported.
    The platform support page for WebLogic Server is located at:
    http://www.weblogic.com/platforms/index.html
    This page has the latest and greatest information on the platforms that
    WebLogic is certified and supported on.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems
    Learning WebLogic? http://learnweblogic.com
    "Anand" <[email protected]> wrote in message
    news:3a71b2d8$[email protected]..
    >
    Has anyone tried configuring LDAP on weblogic to work with Lotus Notesserver?

  • Problem connecting to lotus notes server.

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

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

  • Domino ldap and weblogic server 6.1

    Hi,
    I am trying to use domino ldap for authentication in weblogic server 6.1
    I configured a custom ldap realm.
    But the users were not listed from domino ldap and authentication also failed.
    Can anybody help me?
    Thanx in advance.
    - prabha.

    at the moment it is possible for me to work, though. i worked around the
    problem and i set web.xml as a read only file. i still can't use wizards to
    create servlets and i can't edit web.xml with jbuilder.

  • Can't connect to Lotus Notes server

    Hi,
    I have the following simple message code:
    import java.io.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class SendMail {
    public static void send(String smtpHost,
    String from, String to,
    String subject, String content)
    throws AddressException, MessagingException {
    // Create a mail session
    java.util.Properties props = System.getProperties();
    props.put("mail.smtp.host", smtpHost);
    //props.put("mail.smtp.port", ""+smtpPort);
    Session session = Session.getDefaultInstance(props, null);
    // Construct the message
    Message msg = new MimeMessage(session);
    msg.setFrom(new InternetAddress(from));
    msg.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
    InternetAddress.parse(to, false);
    msg.setSubject(subject);
    msg.setText(content);
    // Send the message
    Transport.send(msg);
    public static void main(String[] args) throws Exception {
    // Send a test message
    send("********","****@******", "****@******",
    blabla", "blabla");
    I get the following reply, although I am able to connect to the server via TELNET
    Exception in thread "main" javax.mail.MessagingException: Could not connect to S
    MTP host: ***************, port: 25, response: 554
    at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1215)
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:32
    2)
    at javax.mail.Service.connect(Service.java:236)
    at javax.mail.Service.connect(Service.java:137)
    at javax.mail.Service.connect(Service.java:86)
    at javax.mail.Transport.send0(Transport.java:150)
    at javax.mail.Transport.send(Transport.java:80)
    at SendMail.send(SendMail.java:29)
    at SendMail.main(SendMail.java:34)
    Press any key to continue...
    What else do I need to configure to get this working ? Or what is the problem ?
    Thanks,
    Coenos

    Hi,
    In my company there is a centralized server for lotus mail.We can't go and directly hit the server because of high security.So that we can't specify the server name in our coding (i.e)
    Properties props=new Properties();
    props.put("mail.smtp.host","mail.mycompany.com");
    If we use the above mentioned code,it is throwing the err:SMTP Server not found.
    There is one solution for this problem.We can get a local users session.Then we have to use that session to sent mails to other users.I just got this idea theoratically.But i don't know the code.
    If you came to know about the code,Please email me at
    [email protected]
    Thank You

  • Apple Mail forever fetching To Do from Lotus Notes IMAP server

    The subject says it all. I have three lines in my Mail activity:
    [To Do - <mailbox>] Updating cache directory
    Received 6 of 6 headers...
    [<mailbox>] Synchronizing with server
    Getting unread counts
    [<mailbox>] Communicating with server
    [Apple Mail To Do] Fetching
    What I normally do just click the stop signs to cancel and then all is fine. I can continue to check mail and it will run normally until the next time it happens.
    I know IMAP is a bit funky. This is a Lotus Notes server. My IMAP Path Prefix is blank. Everything works with this account. This is not a big deal, but it is slightly annoying.
    Any ideas on how to fix it?

    Apple Mail > Preferences > Composing > Create notes and to dos in "On my Mac"
    Then, delete all the old, completed to do items that may be connected to the IMAP account. Delete the to do folder on the IMAP account. Delete any associated Calendar in iCal. It seems to be gone now.

  • How to integrate Lotus Notes and upload Help Docs into SAP Portal

    Hi Experts,
    I got 2 questions with regards to content in portal...
    1) I got nearly 30 to 40 help documents (PDF & WORD) which users may refer when accssing CRM & BW system in portal.
    Currently they are stored in the Local Drive....i am trying to find a way to upload them portal...so the users can always have the docs the require
    and
    2) Can any one please update me in detail ...on how to integrate Lotus Notes into portal and configure Single Sign on  currently my Portal and Lotus Notes user id's are different
    Thanks in advance

    Hi Geethika,
    1. IF documents are on your local computer, Netweaver Portal has a KMC Addon (Knowledge Management and Collaboration). Within KM it is possible to run a Document Management Scenario. You can Create Folders within KM, give Access Rights to Users, Create an Iview to browse KM Folder then add that Iview to a Page or Role so users can access it.
    For this, please chech the online documentation via http://help.sap.com/saphelp_nw04s/helpdata/en/20/b46d42ea0b3654e10000000a155106/content.htm
    2. For Lotus Notes Integration, your Lotus Notes Server must be running on Windows Platform.
    For the rest configuration please check the following:
    Single Sign-On from SAP Enterprise Portal to Lotus Domino
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/94c4e390-0201-0010-09a3-d09e11b80671
    I've the latest version of SAP Ticket Verifier, if you couldn't find it, I can send it to you.
    regards

  • LOTUS NOTES

    Hi All, ok can some one please tell me how to set up Lotus Notes to receive and send mail? Thanks.

    Hi,
    if you raise questions pls define your problem exactly.
    What Lotus Notes / Server version, which platform ?
    Client setup to an ISP or mail accounts on a Domino server ?
    Here is my 8.5 client setup (ISP) :
    Go to your address book -> Advanced -> New and create for each provider an incomming account and at least one sending account.
    Go to Locations and choose (I guess) Online and setup at least Basics and Mail.
    I assume you know how to configure Lotus Notes network setup.

  • Lotus Notes Connector: Resource is provisioned but the Create User task...

    Hi,
    I am getting some problems with the Lotus Notes Connector. The resource is provisioned but the Create User task is rejected. In the Lotus Notes server log, there is no problem and the account was created successfully.
    Below is the response OIM has set to the task:
    Respuesta: ERROR_UNID_SET
    Descripción de Respuesta: User created successfully. Error while updating user unique attribute in the process form.
    Notas:
    As you can see below, there was no error when the adapter was executed:
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvisionsetPropertyEntered method
    INFO [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::loadAttributeMapping: START
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision: :loadAttributeMapping : Attribute Mapping file : C:\oracle\oim9101\xellerate/XLIntegrations/LotusNotes/config/attributemapping_prov.properties
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvisiongetParsedPropertiesEntered method
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvisiongetParsedProperties---- END
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : CreateMailDb true
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : ShortName
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : SecurityType 1
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : MailSystem 0
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : Storeaddbook true
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : SynchInternetPwd true
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : InternetAddress
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : CertifierIDFile C:\Lotus\Domino\Data\cert.id
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : Registrationlog
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : MailOwnerAccess 0
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : MinPwdlen 8
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : Addbook true
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : RegistrationServer win2k3base/oimdev
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : OrgUnit during create -- oimdev
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : OrgUnit oimdev
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : MailQuotaWarning 40
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : Received null values for ExpirationDate:
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::getDefaultDate : Setting Default date
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : IdType 173
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : MailTemplateName
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : MailQuotaLimit 50
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : LastName : Gerente
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : IdFilePath : C:\Lotus\Domino\id
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : MailServer : win2k3base/oimdev
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : FirstName : Teste
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : Comment :
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : MiddleName :
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : Location :
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : MailDBPath : mail\
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : ForwardDomain : oimdev
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvisioncheckUserExistsEntered method
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::getUserName: Org Unit: oimdev
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::getUserName: Final UserName --- CN=Teste Gerente/OU=oimdev/oimdev
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvisioncheckUserExistsExiting method
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::getUserName: Org Unit: oimdev
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::getUserName: Final UserName --- CN=Teste Gerente/OU=oimdev/oimdev
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : User Name: CN=Teste Gerente/OU=oimdev/oimdev
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : Full Name: CN=Teste Gerente/O=oimdev
    INFO [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::createUser : User Created Successfully
    INFO [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::triggerAdminP : Invoking trigger AdminP
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::triggerAdminP : MailServer : win2k3base/oimdev
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::loadAdminpProperties : AdminP properties file : C:\oracle\oim9101\xellerate/XLIntegrations/LotusNotes/config/adminP.properties
    DEBUG [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' ADAPTER.LOTUSNOTES - LotusNotesProvision::triggerAdminP : AdminPCommand : tell adminp process all
    I've retried the Create User task and got the Lotus Console messages below. There is no error:
    10/20/2009 02:02:56 AM Admin Process: Checking for all requests to perform
    10/20/2009 02:03:30 AM DIIOP Server: 192.168.200.6 connected
    10/20/2009 02:03:36 AM Opened session for win2k3base/oimdev (Release 6.5.6)
    10/20/2009 02:03:36 AM Closed session for win2k3base/oimdev Databases accessed: 2 Documents read: 0 Documents written: 0
    10/20/2009 02:03:37 AM Certifying Teste Gerente/oimdev
    10/20/2009 02:03:48 AM Opened session for win2k3base/oimdev (Release 6.5.6)
    tell adminp process all >C:\DOCUME~1\ADMINI~1.WIN\LOCALS~1\Temp\rem22706.con
    10/20/2009 02:03:49 AM Admin Process: Checking for all requests to perform
    10/20/2009 02:03:49 AM Remote console command issued by win2k3base/oimdev: tell adminp process all
    10/20/2009 02:03:49 AM Closed session for win2k3base/oimdev Databases accessed: 0 Documents read: 0 Documents written: 0
    10/20/2009 02:03:49 AM DIIOP Server: 192.168.200.6 disconnected
    Any suggestion?
    Edited by: Renato.Guimaraes on 19/10/2009 21:04

    Sunny,
    I figured out the problem... Wrong configurations. See what I did:
    a) Reviewed the explanation below about the paramater certifierOU of Lotus Notes ITRes, so I set it to empty.
    certifierOU Specifies the OU of the certifier to be used when creating user accounts If you use a certifier on the target system, then you must specify the certifier OU value. If
    you do not have a certifier on the target system, then leave this parameter field empty.
    If there are multiple certifiers on the target system, then you must create one IT resource (of the Lotus Notes IT resource type) for each certifier. Refer to Oracle Identity Manager
    Design Console Guide for information about creating IT resources. If you specify a value for the certifierOU parameter, then the user OU value that you specify on the process form is ignored during the creation of a DN for a new user account.
    If you do not specify a value for the certifierOU parameter, then the user OU value that you specify on the process form is used in the DN. This feature ensures that only one OU value
    is included in the DN.
    If you specify a value for the certifierOU IT resource parameter, then user records for which the certifier OU value in the DN does not match the certifierOU parameter value are not
    reconciled. This is because the user DN is used to match records in the target system and Oracle Identity Manager, and a difference in the certifier OU value would lead to a
    mismatch in DN values. The following example illustrates this type of scenario:
    Suppose a user account on Lotus Notes has the following DN:
    CN=John Doe/OU=testcertou/O=test/C=US
    If testcertou has not been assigned as the value of the certifierOU parameter for any of the IT resources created on this Oracle Identity Manager installation, then the records of this
    user cannot be reconciled into Oracle Identity Manager.
    Sample value: NY
    b) The MailServer paramater was win2k3base/oimdev and I've changed it to CN=win2k3base/O=oimdev.
    c) As the certifierOU is clear now, so I have to inform the Orgnation Unit field in the process form.
    Thanks.
    Edited by: Renato.Guimaraes on 24/10/2009 23:19
    Edited by: Renato.Guimaraes on 24/10/2009 23:27

  • Send email to lotus notes

    Dear All,
    First of all I don't know if this is the correct forum but I have not seen a specific forum for oracle 8 so I posted the message in this forum.
    I have stored into a table Lotus Notes address and messages.
    I want to schedule a job on Oracle Server that send messages to a Lotus Notes Server.
    Lotus Notes version is 4.6.x and Oracle database is 8.0.5 EE.
    Any suggestion are welcome.
    Bye

    Hi,
    If you want to be able to send email to the distribution list in Lotus Notes from SharePoint, you
    can set the SMTP service address of Lotus Notes server in Central Administration->System Settings->Configure Outgoing email settings->Outbound SMTP Server.
    And you need to set the Lotus Notes to accept anonymous email.
    Here are some similar threads for you to take a look:
    https://social.technet.microsoft.com/Forums/office/en-US/4f40f6de-7c1e-4543-9e48-2058a95ce468/email-setting-configuration-for-domino-server-85?forum=sharepointgeneralprevious
    https://social.technet.microsoft.com/Forums/en-US/04bf7b7a-8797-4e46-b3ca-bddbe5d6d9ba/sharepoint-foundation-lotus-notes-connector-for-outgoing-smtp-mails-?forum=sharepointgeneralprevious
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Lotus Notes access from PL/SQL

    Hi,
    I am using Oracle 9i on RedHat Linux AS, and would like to connect to Lotus Notes Domino server version 6.5 running on Microsoft Windows 2000.
    I have checked out the jdbc-odbc-bridges from both Easysoft and Sun, but would like to avoid installing 3rd party software on the Lotus notes server.
    Anyone have expriences with Lotus' interfaces java/corba, c or c++ ?? Or can link to information!
    As far as I know, Oracle have not released a db-link for Lotus notes so I can access the notes databases directly from PL/SQL.
    Best regards,
    Finn Normann Pedersen
    Visanti A/S

    Yes it is,
    You could use a java stored procedure
    http://www.oracle.com/technology/sample_code/tech/java/jsp/samples/wsclient/Readme.html
    Regards
    Peter

  • Lotus notes data in SAP BW

    Hi Gurus,
    We are facing with a typical scenario here. I want to have my Lotus Notes data in SAP BW system. Lotus notes uses NSF file system to store data. I am not clear how can we get this into SAP BW. I tried searching the same in different forums but none of the thread come close to solving the issue.
    There are connectors available. However, I am not able to find documentations on the same. I know how to transfer SAP BW data in Lotus notes but not the reverse. I tried searching for LotusSQL Drivers but found no documents on this as well.
    I want to know what source system can we use here. Is'nt there any other way without using a file system as Source system to accomplish this. I want the entire process to be automated. I don't want to use a middleware (like ORACLE database) in between Lotus notes server and SAP BW.
    Can anyone please respond to the same.
    Thanks in advance.
    Regards,
    Sreekul Nair

    Thank you for the prompt response Shanthi. However, I don't want to use File System as my source system. I want to do it via a use of a Lotus notes connector or Lotus Enterprise integrator. I want that the data as and when pushed from Lotus notes  should appear in BW system.
    How to achieve this. Plz help.
    rgds,
    Sree

  • Using Java Mail with lotus notes

    we are using lotus notes as default mail client and lotus notes server , there is no pop3 or smtp server as far as the intranet mailing goes,
    i am developing an application in which i have a form which the users will fill in if they forget their logging in passwords, as soon as they submit the form they will get an autogenerated email which will send them their passwords. considering the above scenario can i use java mail api for this

    No. If you aren't running the pop3 or smtp services then the Java mail API won't help you at all, unless there is a SMTP server somewhere that you can use to deliver mail to your Notes server. If you use Notes for external emails there must be a server somewhere!!??
    You can use the Notes Java API to create and send a document if you have the DIIOP service running on the Notes server.
    SH

  • Sync Lotus Notes for Mac to iCal?

    Hey,
    I'm a Mac User in a mostly PC-based office. Everyone here uses Lotus Notes for Email & Calendar. For a long time I've been able to get away with using Mac Mail and iCal but all email invitations I receive are usually off by a couple of hours due to some Lotus/iCal bug. Also, our assistant can't access my calendar as it's not on the Lotus Notes server.
    I'm considering switching my calendar to Lotus Notes (which is installed on my Mac but dormant) but I'm wondering if there's a way I can get it to replicate or sync onto iCal so it will still appear on my iPhone?
    Any suggestions? I found a programme called LipSync but it doesn't seem to work anymore.

    Thanks, KiltedTim, but did you even read my post.  I highly doubt IBM would offer the notes client FREE with Mavericks, then offer a FREE patch for that FREE software so that those who upgrade to Yosemite can use it, but then not provide it for those trying to do a clean install. 
    I'm not suggesting that someone provide a free copy of something that is charged for or do anything illegal.  IBM has always, and claims to still provide the Notes client at no charge.  I had the thought that I am just not accessing it in the right place.  If there is a link to purchase it, or a means to sign up, etc, that is what I'm looking for. 

  • Set up Workflow with Lotus Notes

    Does anybody know a procedure or a guide to configure the Sap Workflow with Lotus Notes?
    I would like to do a scenario looks like follow:
      - a user create a purchase order on Sap;
      - the workflow system sends a email to an approver (to Lotus Notes);
      - the approver reads the email and can approve or reject. This step is done inside Lotus Notes.
    Thanks in advance for any help.
    Renato.

    Hi ,
    You can achieve it in following simplest
    1. Create a simple BSP page for approval and Rejection.
    Send the link of this page in the mail to the lotus notes server . Lotus notes user will open the mail and he will click on the link to get the BSP page .
    Handle the process that should happen after the user makes an action in the "OnInputProcessing" event of the BSP page.
    Pls reward if useful.
    Regards,
    Laxman Nayak.

Maybe you are looking for

  • Can you hook up to ethernet

    Can you hook up ethernet to express; have access to multiple computers, pick the one you want, drill down to that itunes library and play the associated songs and playlists?  Also, is there a way to play internet radio; lastly can you control this vi

  • Why do my app store keep saying disable

    when i try to update my apps from the app store it say disable what do i do?

  • Problem with characters from SerialPort

    Hii!! My problem is: How to convert the characters of SerialPort ?? For example, I receive from SerialPort: sESB="U����U����U����+�&#154;&#131;�"DDDDDDDDDDDDDDDDDDZ#�&#142;fffffffffffffffffffffffffffffffffff�" my programa for convert is: public Stri

  • I can find update for my iphoto 8.1.2

    My computer crash i hade to re-install ilife but since its version 8.1.2 there is not update to get to version 9.0 to continue the updates and use my present library any one can help?

  • Nhi guru's cross apps what is basic type,idoc type , message type

    nhi guru's cross apps what is basic type,idoc type , message type  plz help me i am larning how to work on idocs using ale explain me like realtime environment