Can i connect to lotus domino database in my java environment

Hi javaites,
I want to know if i can connect to domino database from my java environment. i need to pick e-mail address of staffs from lotus notes database. if possible how can i go about it.
thanks

Yes, you can connect to a database on a Lotus Domino server. The classpath must include Notes.jar (local) or NCSO.jar (remote) - and the DIIOP (Domino IIOP) task on the Domino server must be running.
The following article might help you:
http://www-128.ibm.com/developerworks/lotus/library/ls-Java_access_pt1/index.html

Similar Messages

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

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

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

  • SharePoint Server 2010 can't connect to the Configuration Database

    Hi Techys,
    I have  a SharePoint Server 2010  Farm, and I have Installed SharePoint SP1 package,
    Then I,m trying to run the SharePoint configuration wizard, That time i have the below error.
    "Can't connect to the Configuration Database"
    I have checked all the services belongs to the sql server and SharePoint server.
    here i found, SharePoint Timer service is automatically Stopped while browsing the Central admin url.
    Please help me to resolve the above issue.
    Many Thanks,
    Madhu

    What you mean error in Config wizard, could you please share the complete error log?
    For Timer Services, check under which account it is running and check event log why its stoped?
    for CA error there are couple of possible reason for this:
    Make sure SQL related instances / services are running fine.
    Make sure your farm admin account have permission on config DB.
    Make sure Config Database Exist.
    Make sure you can connect to SQL server from your APP /WFE.
    If everything is running fine, then you may need to reconfigure the sharepiont products and technologies configuration wizard. The issues might be because of the update that might have installed some additional components for installation.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Not able to connect to Lotus Domino server using java/corba

    Hi
    I am new to Lotus Domino server and Java.
    I have INstalled Lotus Domino server5 on 1 machine and was successful in installing the Lotus client on another machine.
    Throught the lotus client i am able to connect to the server and send and receive the mails.
    Now I want to connect to the domino server using the Lotus Domino Tolkit for Java/Corba.
    In this Toolkit they have given the sample code program ..
    if I run the code I am getting the error
    java.io.FileNotFoundException: http://<IPADDRESS>/diiop_ior.txtjava.io.FileNotFoundException: http://<IPADDRESS>/diiop_ior.txt
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLCon
    nection.java:691)
    at java.net.URL.openStream(URL.java:942)
    at lotus.domino.NotesFactory.getIOR(NotesFactory.java:314)
    at lotus.domino.NotesFactory.createSession(NotesFactory.java:66)
    at IntroCorbaApp.run(IntroCorbaApp.java:65)
    at java.lang.Thread.run(Thread.java:539)
    lotus.domino.NotesException: Could not get IOR from HTTP Server
    lotus.domino.NotesException
    at lotus.domino.NotesFactory.getIOR(NotesFactory.java:344)
    at lotus.domino.NotesFactory.createSession(NotesFactory.java:66)
    at IntroCorbaApp.run(IntroCorbaApp.java:65)
    at java.lang.Thread.run(Thread.java:539)
    I also tried to find this file in the Domino server directory.
    The file exists in drive:\LotusServer\Domino\Data\Domino\HTML directory..
    I am not getting what exactly is the Problem
    Plz any one help me in this regard..
    thanks in advance

    You should be able to access the diiop_ior.txt file from browser without authentication,only then it will work. This file should not
    be protected.

  • Urgent : Hoe to connect to a ORACLE database throught WEBDYNPRO JAVA

    HI All
    i am very new to Developer Studio,
    i want to connect to an oracle database through wedynpro java.
    i have seen some tutorials on SDN. i know something about adding external JARs and OJDBC .
    Can anyone send me the sample code to connect to a database
    <b>very urgent</b>
    Thanks in advance
    Sushma

    Hi Sushma
    Ask your system Admin for servername,portnumber of database server
    Connection conn=null;
    try {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    conn =DriverManager.getConnection ("jdbc:oracle:thin:@<servername>:<portnumber>:DB","uname", "pwd");
    Statement stmt=conn.createStatement();
    ResultSet rs=stmt.executeQuery("select * from <tablename>"); // select statment
    while(rs.next())
    IXXElement nodeConnection=wdContext.createXXElement(); //creating a node to store the data from oracle
    nodeConnection.setYY(rs.getInt("YY")); // setting the values into input fields
    nodeConnection.setAA(rs.getInt("AA"));
    nodeConnection.setBB(rs.getInt("BB"));
    wdContext.nodeXX().addElement(nodeConnection); // adding the node
    catch(Exception ex)
    finally
    try
    conn.close(); // closing the connection
    catch(Exception e)
    welcome to SDN and All the best from SDN Webdynpro JAVA
    Regards
    Chaitanya.A

  • Problem connecting to lotus domino

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

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

  • Can't Connect to the Mysql Database using J2SE jdk1.5

    Can anyone tell me why this error occurs ????????????????????
    Following are the codes ;
    package dbconnect2;
    import java.sql.*;
    public class dbconn2 {
    public static final String URL =
    "jdbc:mysql://localhost:3306/test";
    public static final String USERNAME = "test";
    public static final String PASSWORD = "password";
    * @param args the command line arguments
    public static void main(String[] args) throws Exception {
    // TODO code application logic here
    Connection connection = null;
    try {
    Class.forName("com.mysql.jdbc.Driver");
    connection = DriverManager.getConnection(URL,
    USERNAME, PASSWORD);
    Statement stm = connection.createStatement();
    ResultSet rs = stm.executeQuery("select * from emp");
    while (rs.next())
    String strnaam = rs.getString("emp_name");
    System.out.println(strnaam);
    finally {
    if (connection != null)
    connection.close();
    ================================================================================
    This is the run time error ;
    init:
    deps-jar:
    compile:
    run:
    Exception in thread "main" java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at dbconnect2.dbconn2.main(dbconn2.java:39)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 2 seconds)
    please help me to sort this out
    Thanks
    Sishani

    I've solved the DW problem by changing the site folders from
    'db' to 'wwwroot' e.g. 'C:\CFusionMX\db\' is now
    'C:\CFusionMX\wwwroot\
    However I'm now back to my original problem. I've lost my
    mqysql connection in CF Adminstrator. Before I made these changes I
    could connect to my mysql databases using the following settings:
    JDBC URL: jdbc:mysql://localhost:3306/test
    Driver Name: MySQL Connector J
    using the following Java path and file:
    C:\CFusionMX\wwwroot\WEB-INF\lib\mysql-connector-java-3.0.17-ga-bin.jar
    Now these settings give me the following error:
    "Connection verification failed for data source: javaserver
    []java.sql.SQLException: SQLException occurred in JDBCPool
    while attempting to connect, please check your username, password,
    URL, and other connectivity info.
    The root cause was that: java.sql.SQLException: SQLException
    occurred in JDBCPool while attempting to connect, please check your
    username, password, URL, and other connectivity info"
    Any suggestions on this would also be welcome.
    Thanks again to everyone for their help.
    Sincerely,
    Graham A. Kerby

  • Sender mail adapter - connecting to Lotus Domino

    Hi all,
    I'm currently trying to configure a communication channel to pick up from a Lotus Domino mail server using POP3 (I'd be willing to do IMAP4 as well).  The Lotus team has told me that the POP and IMAP services have been activated but I'm not having any luck connecting to the server.  The error message I get each time is exception caught during processing mail message; java.net.ConnectException: A remote host refused an attempted connect operation.
    Any ideas?  The configuration I'm using is:
    URL: pop://mymailserver.com/mailin/xi_dev_users.nsf
    Authentication Method: Plain
    User: mmorris (my user has been given access to this mail file)
    The rest of the config is default.
    I've also tried specifying the port (110) even though that is the default - no luck.

    Hi Mike,
    pinging successfully does not guarantee you're gonna be able to exchange messages.
    Try to connect through telnet through the port you mentioned.
    Another possibility: did they set SSL on the POP3 communication?
    If yes, you need "pops://" as the protocol in the URL (default port 995).
    Best regards,
    Henrique.

  • Can we connect and access SAP database using db adapter?

    Hi,
    I need couple of details:
    1) Can we connect to SAP database using db adapter and run select query to extract data from the SAP database tables?
    2) Where can I download SAP adapter? How to install it? and how to plug that in to the JDev?
    Cheers

    1) Can we connect to SAP database using db adapter and run select query to extract data from the SAP database tables? It is possible as long as back-end DB version of SAP are supported by DB adapter. Oracle recommends SAP connectivity through Oracle Application Adapter for SAP rather than direct connection to SAP Database tables.
    2) Where can I download SAP adapter? How to install it? and how to plug that in to the JDev?http://www.oracle.com/technology/products/integration/adapters/pdf/DS_OracleASAdapter_SAP.pdf
    http://www.oracle.com/technology/software/htdocs/devlic.html?url=/technology/software/products/ias/htdocs/101202.html
    http://download.oracle.com/docs/cd/E12524_01/doc.1013/e14201/toc.htm (Installation)
    http://download.oracle.com/docs/cd/E12524_01/doc.1013/e14196/toc.htm (SAP adapter configurtation)
    Manoj

  • Can we connect Mapview to multidimensional database and retrieve data

    I have zero knowledge on MapViewer and hence I am curious to know, if we can connect MapViewer to multidimensional database(Like Essbase etc...) and retrieve data from them ???

    Currently, MapViewer needs a conection to an Oracle Database where MapViewer metadata is stored. You may be able to access external spatial data if there is a java implementation of an interface to access external native data. MapViewer provides a spatial provider implementation for shapefiles. For other data, including from external databases, you may be able to access them if a java class implements the spatial provider interface class. Mapviewer Users Guide has some notes about implementing a external spatial provider.

  • How many BW 7.3 systems can be connected to one HANA database?

    Hello Gurus,
    For Development,Test and sandbox environments customer likes to share one HANA database for multiple SAP BW systems.
    So how many BW 7.3 systems can be connected one HANA database (ofcourse on single HANA appliance)?
    Can i install multiple HANA Databases on single HANA hardware?
    Can someone help me on these questions.
    Thanks.
    Srikar

    Hello,
    i would suggest reading this blog:
    How BW-on-HANA Combines With Native HANA
    sap_user_union_001 wrote:
    Today, HANA 1.0 SP3 was released.
    I was not able to find it in downloads - are you sure it is already released?
    sap_user_union_001 wrote:
    You can connect as many systems as you want with the HANA (also 3 BWs).....The problem is, that you only have 1 system, which is able to put the data real-time into the HANA via SLT...the other systems will load their data via ETL into HANA...
    I am not aware about any such restriction. It should be possible to have as many SLT systems replicated as you like. Can you explain why only one SLT is possible?
    Tomas

  • Oracle 6i Forms can't connect to Oracle XE Database(Linux)

    What is the problem, I can't connect my Oracle 6i Forms to Oracle XE Database that installed on Linux(Fedora Core 4/Ubuntu 6.06), but no problem when I try to connect to Oracle XE Database that installed on Windows.
    Thanks,

    See this thread, seem me interesting
    Re: Trouble to start Oracle XE listener
    on forms 10g it's work:
    using Database XE and Forms 10g
    and see too:
    http://www.oracle.com/technology/software/products/database/xe/htdocs/102xelinsoft.html
    http://www.oracle.com/technology/software/products/database/xe/files/install.102/b25144/toc.htm
    http://www.oracle.com/technology/tech/linux/install/xe-on-kubuntu.html
    Regards

  • How can i connect more  than one database

    i would like to connect more than one database one my laptop
    now i have database one and sid=ddms
    and i would another such as sid=ddmf
    how can i connect two database on the same my laptop

    I am not sure what you mean by after built? Are you trying to export data from one database and import it into another? If so, export it using data pump making sure you have the correct ORACLE_SID. Also be sure both database have to same character set. Then change the ORACLE_SID to other database, and run data pump to import the data into the other database. Hope that makes any sense...

  • Can the connection to a DB2 database be encrypted?

    I'm wanting to connect to a remote DB2 database (i.e. not the database the SAP system is running on) and have the communication encrypted. Thanks to note 200164 I have deployed the DB2 CLI client and configured DBCO. I am now able to make connections to the DB2 database using exec sql statements. What I'm missing is any information on if and how the connection to the DB2 database can be encrypted. Does anyone know if this is possible?

    I'm wanting to connect to a remote DB2 database and have the communication encrypted.
    Perhaps if I'd put a colon after 'wanting' it would have been more clear? If you read it as "I'm wanting to connect to a remote DB2 database and I have the communication encrypted" then it doesn't really make sense, so I fail to see the ambiguity.
    Anyway, are you saying that the DB2 user can be set to require encryption on the DB2 database server, and that in this case no changes are required on the client side to accomplish encryption? This would be a suitable solution to my problem. I had been lead to believe that encryption must be specified on both the server and client side for it to work.

  • Apple Devices cannot connect to Lotus Domino Server

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

    You should be able to access the diiop_ior.txt file from browser without authentication,only then it will work. This file should not
    be protected.

Maybe you are looking for

  • Airplay audio does not sometimes transfer to apple tv?

    Airplay audio does not sometimes transfer to apple tv? Sometimes I have to restart my apple tv to get audio, I only get video. Do you guys have the same issue? It's anoying to restart my apple tv everytime I want to watch a movie over airplay. /Ander

  • Backend RFC change makes all MBO's stop working

    I created an MBO using a SAP RFC. I had to later change the RFC and remove one field (PRODUCT_GUID) from the return list. I then deleted and recreated the MBO with the changed RFC signature. Now, whenever I make an MBO call, I get an error saying the

  • Print Terms & Conditions in the Back page in Sapscript

    Hello Experts, I need your help. I have one sapscript. I want print Terms&Conditions in the back page. My Sapscript is a copy of MEDRUCK. I want: When NACHA = 1 --> Print Terms&Conditions on the reverse side of each page.           When NACHA = 5 -->

  • I cannot get my emil to come up.

    The "new & improved" Verizon home page is still, after an hour, retrieving my information.  I have been without full-time employment since Dec 2008.  Sometimes potential employers email me invitations to interviews.  If this problem is not fixed by t

  • Testing Report's data on OOTB Reports after first Run

    Hi Gurus, I am getting Data in the Financial Analytics Reports after doing all the required configurations, but how do i test if  the data thats coming is correct. ( I think somebody needs to create and  fire the SQL in EBS database and recreate the