Cannot get Local Connection, No available resource, Wait-time expired

Hi Friends,
Please answer my queries below.
Thanks and Regards
Busincess Requirement
I have to display a particular set of rows in a dashboard or screen, and it is being refreshed every 1 minute, also user can update from that screen displayed values.
The below program extracts some data from database and passes to the front end through a collection where it is being displayed.
Code Logic Flow
1. CockpitAction calls CockpitOraDAO for database results
2. CockpitOraDAO is a singleton class.
3. After getting the CockpitOraDAO object, the action will then call the getLabAreaCockpitDetails() method.
getLabAreaCockpitDetails will
     - Get the Connetion from the OracleConnectionManager class (It is a plain class with getPooledConnection() and releaseConnection() methods).
     - Execute the query and put the result to a collection
     - close the connection
     - return result to the calling action.
This getLabAreaCockpitDetails() are called around once in every 1 minute
So, I believe everytime a call is made to action for cockpit display, it will take the existing object of the CockpitOraDAO class and make a call to database. i.e there will be only one object of CockpitOraDAO reside in application server at any particular interval of time.
My Understandings
1. Only 1 object of CockpitOraDAO will reside in application server (provided it is not user longer and garbage collected) at a particular instance.
2. Many objects of Connection will be created and destroyed.(Each time the getLabAreaCockpitDetails() method is called, we will get one connection from connection pool and in finally the Connection will be released to connection pool).
My Problems
It is showing the "Cannot get Local Connection, No available resource, Wait-time expired"
after running around 1 full day.
My doubts
1. Can anybody say why I get this error ?
2. There may be some connections are not closed. But I have checked at finally block, the status of the connection is closed after calling this method.
3. There may be some problem due to the singleton instane of CockpitOraDAO, Is it affecting performance ?
4. Is it valid that I have to make CockpitOraDAO as Singleton ?
public class CockpitOraDAO extends DAOAdaptor //implements BISample
     private static CockpitOraDAO instance=null;
     private static boolean debug = true;
     * The below method will be used to provide the singleton intance of the CockpitOraDAO object.
     public static CockpitOraDAO getInstance()
          if (instance == null)
               synchronized (CockpitOraDAO.class)
                    if (instance == null)
                         instance = new CockpitOraDAO();
          return instance;
     * The below method will be used to get the cockpit details of the lab area.
     * This will return collecton of sample details for the specific lab.
     public Collection getLabAreaCockpitDetails(Collection prevCockpitDetailList,Collection filterCriteria) throws Exception
     if(debug)
          System.out.println("Inside CockpitOraDAO::getLabAreaCockpitDetails() method");
          Connection conn = null;
          boolean sampleExists = false;
          PreparedStatement pstmt=null;
          ResultSet rs=null;
          String returnStr=null;
          StringBuffer sqlQuery = null;
          String tempComment1=null, tempComment2=null;
          LabCockpitDO labc=null;
          LabCockpitDO labc2=null;
          Collection resultList=null, manCommentList=null, labCommentList=null, labCompCommentList=null;
          ArrayList result1List=null, prevCockpitDetail1List=null,filterList = null;
          OracleConnectionManager manager = null;
          boolean flag = false;
          try
               labc2 = new LabCockpitDO();
               prevCockpitDetail1List = (ArrayList) prevCockpitDetailList;
               sqlQuery = new StringBuffer();
               sqlQuery.append("select s.sample_sample_no sample_no, s.sample_inspection_lot_no inspection_lot_no,");
               manager = new OracleConnectionManager();
               conn = manager.getPooledConnection("myDS");
               pstmt = conn.prepareStatement(sqlQuery.toString());
               if(debug)
               System.out.println("Query********"+sqlQuery.toString());
               rs = pstmt.executeQuery();
          catch(Exception e)
               //System.out.println(e);
               throw e;
          finally
                    try
                         manager.releaseConnection("myDS");
if(debug)
System.out.println("Connection Status Closed=true/ Open=false=["+conn.isClosed()+"]");
if(conn!=null || !conn.isClosed())
conn.close();
if(debug)
System.out.println("Connection Status After Closing Connection Closed=true/ Open=false=["+conn.isClosed()+"]");
                         if(rs != null)
                              rs.close();
                         if(pstmt != null)
                              pstmt.close();
                         conn = null;
                         pstmt=null;
                         rs = null;
                         sqlQuery=null;
                         returnStr=null;
                         labc=null;
                         labc2=null;
                         manCommentList=null;
                         labCommentList=null;
                         labCompCommentList=null;
                         tempComment1=null;
                         tempComment2=null;
                         resultList=null;
                         prevCockpitDetailList=null;
                         prevCockpitDetail1List=null;
                    catch(Exception e)
                         //System.out.println("Unable to Release Connection ="+e);
                         throw e;
          //if(debug)     
          //System.out.println(resultList);
          return result1List;
     }

Hi,
As you can see from other posts, this is a very common problem. Until now the cause always ends up pointing to a connection not being close.
I suggest you try to run through a full single cycle of you app, while using the CLI monitoting to check that the connections created/closed matches the expected created/closed connections. Also that the number of free connections at the end is correct.

Similar Messages

  • Cannot get a connection, pool error Timeout waiting for idle object

    my connection pool setting is
      maxActive="3" minIdle="2"                maxWait="10000"              removeAbandoed="true" logAbandoned="true"         removeAbandonedTimeout="30"         autoreconnection="true" 
    we have 7 people hitting the group of search functions ,
    about 3 minutes I get
    I got error like
    org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot get a connection, pool error Timeout waiting for idle object         at org.apache.tomcat.dbcp.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:104)         at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)         at Deferment.showResult.checStudent(showResult.java:135)         at Deferment.showResult.doPost(showResult.java:99)         at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)         at org.apache.catalina.servlets.InvokerServlet.serveRequest(InvokerServlet.java:402)         at org.apache.catalina.servlets.InvokerServlet.doPost(InvokerServlet.java:170)         at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    I just wonder
    1) Cannot get a connection, pool error Timeout waiting for idle object-> cause by connection pool leaking or other problem.
    2) Setting the maxactive to -1 ( suggestion from Google) , if I set my connection to ulimit , waht should I put on minIdle="2"
    3) How can I test my connection pool have problem or not ? is
    SHOW PROCESSLIST; tolding me someinformation? I use Mysql
    Thank you!

    I try something like ps2 = conn.prepareStatement(target);
                ps2.setString(1, UNumber); // set input parameter
                rs = ps2.executeQuery();
                sendMail = 0;//how many rows we can find.
                while (rs.next()) {
                    sendMail++;
                ps2.close();
                rs.close();
                conn.close();
      if ((count1 == 0) || (count2 == 0)) {
                    conn.rollback();
                } else {
                    conn.commit();
                    conn.setAutoCommit(true);
                ps.close();
                calstat2.close();
                conn.close();
    calstat = (CallableStatement) conn.prepareCall("{call findStudent}");
                calstat.executeQuery();
                calstat.close();
                conn.close();is that enought? what else I should do to make sure I did close all the connection, after I use it ?
    thank you

  • Error : No available resource. Wait-time expired.

    Hi,
    We have a big problem of connection pooling in SunOne.
    After out program execute a lot of sql command in a short time, SunOne 7.0 throws an Exception ---- No available resource. Wait-time expired. We modify the connection pool setting, but it doesn't work. Can someone help to solve problem.
    Our connectiong pool setting as below :
    <jdbc-connection-pool steady-pool-size="8" max-pool-size="32" max-wait-time-in-millis="60000" pool-resize-quantity="2" idle-timeout-in-seconds="300" is-isolation-level-guaranteed="false" is-connection-validation-required="true" connection-validation-method="auto-commit" fail-all-connections="false" datasource-classname="oracle.jdbc.pool.OracleDataSource" name="xxx">
    <property value="jdbc:oracle:thin:@aa:1521:aa" name="URL"/>
    <property value="xxx" name="user"/>
    <property value="xxx" name="password"/>
    </jdbc-connection-pool>
    Thanks!
    Elsa

    This issue is not resolved. I got this message this afternoon. It has nothing to do with ejb. Just for confirming this issue again, I created a very simple application, a jsp that calls a servlet. In the servlet, I have a loop that calls a getNewConnection(). and returns the connection, then I create a Statement with that connection. Then I call another method releaseResources(Statement stmt)
    Connection conn = stmt.getConnection();
    if(conn != null)
    System.out.println("connection: " + conn);
    conn.close();
    // conn = null; tried this one also, same result
    The code is OK. including try/catch blocks ans so on.
    If the number of loops greater than the connection pool size, then I get the same exception. It means the connections are not getting closed. But if I change the methode and pass Connection instead of Statement, then it workes fine.
    I have tested this in App server7 with:
    Oracle 9.2.0 client and ojdbc14.jar
    Oracle 9.2.0 client and classes12.jar
    Oracle 9.0.1 client and classes12.jar
    Oracle 8.1.6 client and classes12.zip
    all with thin or oci drivers.
    It looks like something to do with Statement.getConnection() and the version of AppServer jdk (1.4.0.2).
    I know the getConnection methode does return A connection. I can print the connection id.

  • No available resource. Wait-time expired.

    Dear All
    I am using sun ONE applications server. I am struggling with No available resource. Wait-time expired problem. MY Pool configurations are steady:20,max:100,inc:2. My code is very straight forward.
    Getting the connection, using the connection and closing the connection. I made sure that the connection opened is getting closed. But still after certain no. of requests my request is getting blocked. What might be the problem.
    Regards,
    Nagaraju.KV

    Hi,
    As you can see from other posts, this is a very common problem. Until now the cause always ends up pointing to a connection not being close.
    I suggest you try to run through a full single cycle of you app, while using the CLI monitoting to check that the connections created/closed matches the expected created/closed connections. Also that the number of free connections at the end is correct.

  • Database Error: RSR0009: Resource not available for pool. Wait-time expired

    i am occassionally receiving the following error during database connections in my servlet:
    Database Error: RSR0009: Resource not available for pool [webAdvisorTestPool]. Wait-time expired
    i understand that this is a result of a connection leak from improper closure of my Connection object, but i thought that i was properly closing my connection.
    i can get the error if i do the following steps:
    1) access my login page and enter login credentials.
    2) submit the login which then hits the Authentication servlet.
    3) Authentication servlet authenticates and takes me to home page.
    4) hit the back button to get back to the login page.
    5) repeat this process until i hit the Max Pool Size (from web server).
    6) then i get the error message
    here are some details:
    i have an Authentication servlet; here is the pertinent code from that servlet:
    try {     // retrieve the user and add the User object to the session     DAO dao = new DAO();     Person authenticUser = dao.getPerson(userID, password);     session.setAttribute("validUser", authenticUser);     redirectPage = mapping.findForward("success"); }
    i also have a DAO object that handles all of my DB transactions (and you can see from my code above that the Authentication servlet is using that object); here is the pertinant code from that servlet:
    public DAO() {     datasource = "java:comp/env/jdbc/webAdvisorTest"; } public Person getPerson(String userID, String password)     throws ObjectNotFoundException {     // JDBC variables     DataSource ds = null;     Connection conn = null;     PreparedStatement stmt = null;     ResultSet results = null;     // User variables     Person validUser = null;     try     {         // Retrieve the DataSource from JNDI         InitialContext ctx = new InitialContext();         // if this statement fails, NamingException is thrown         ds = (DataSource)ctx.lookup(datasource);         // get DB connection and perform SQL operations         conn = ds.getConnection();         // User variables         String validUserID = null;         String validFName = null;         String validLName = null;         String validEmail = null;         // get DB connection and perform SQL operations         conn = ds.getConnection();         stmt = conn.prepareStatement(PERSON_QUERY);         stmt.setString(1, userID);         stmt.setString(2, password);         results = stmt.executeQuery();         // iterate through the results         if (results.next())         {             validUserID = results.getString("id");             validFName = results.getString("first_name");             validLName = results.getString("last_name");             validUser = new Person(validUserID, validFName, validLName);         }     }     // handle SQL errors     catch(SQLException e)     {         e.printStackTrace(System.err);         throw new RuntimeException("Database Error: " + e.getMessage());     }     // handle JNDI errors     catch(NamingException e)     {         throw new RuntimeException("JNDI Error: " + e.getMessage());     }     // clean up resources     finally     {         doClosure(results, stmt, conn);     }     // if the user was not found, throw ObjectNotFoundException     if(validUser == null)     {         throw new ObjectNotFoundException();     }     return validUser; } protected void doClosure(ResultSet results, PreparedStatement stmt,     Connection conn) {     if (results != null)     {         try { results.close(); }         catch (SQLException e) { e.printStackTrace(System.err); }     }     if (stmt != null)     {         try { stmt.close(); }         catch (SQLException e) { e.printStackTrace(System.err); }     }     if (conn != null)     {         try         {             System.out.println("R18Resources.conn before close: " + conn);             conn.close();             System.out.println("R18Resources.conn after close: " + conn);             System.out.println("R18Resources.conn is closed? " +                 conn.isClosed());         }         catch (SQLException e)         {             System.out.println("R18Resource conn close error: " +                 e.getMessage());         }     } }
    as you can see, i've added some print statements in my connection closure block. based on my output log, each connection is being properly closed and i am not encountering any errors during that closing block.
    any ideas???
    Message was edited by:
    millerand

    Please try the following code in your doClosure method. Replace your code with the following code.
    public void doClosure(ResultSet pResultSet, Statement pStmt, Connection pConn) throws Exception {
    try {
                   if (pResultSet != null) {
                        pResultSet.close();
                        pResultSet = null;
              } catch (SQLException se) {
              logger.error( se );
              } finally {
                   try {
                        if (pStmt != null) {
                             pStmt.close();
                             pStmt = null;
                   } catch (SQLException se) {
                   logger.error(se);
                   } finally {
                        try {
                             if (pConn != null) {
                                  pConn.close();
                                  pConn = null;
                        } catch (SQLException se) {
                        logger.error(se);
    And let me know if you still face this issue. What is the application server you are using?

  • OATS: Error Message "Cannot get a connection from the Browser" on recording

    Hi,
    I am involved in the functional testing for Siebel 8.1 application, with the OATS 9.3 tool.
    On trying to record, an error Message *"Cannot get a connection from the Browser. Do you want to continue waiting for the browser to load?"* is displayed, even though InstallBrowserHelpers has been installed.
    I tried uninstalling the 'BrowserHelpers' and re-installing but the issue remains.
    Ur response on this will be appreciated.
    Thanks!

    Hi JB,
    I uninstalled the Plug-ins.
    To make it worse, I am unable to access Openscript now. :-(
    On trying to access Openscript, I am seeing the error "An error has occured. See the log file".
    Below is the extract from the log file.
    !SESSION 2012-05-29 14:05:32.634 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_07
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments: -os win32 -ws win32 -arch x86
    This is a continuation of log file C:\Documents and Settings\sg0210788\osworkspace\.metadata\.bak_0.log
    Created Time: 2012-05-29 14:05:34.993
    !ENTRY org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/com.ibm.icu.source.nl_ja_3.8.1.v20080530.jar [5] was not resolved.
    !SUBENTRY 2 com.ibm.icu.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host com.ibm.icu.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/javax.servlet.jsp.source.nl_ja_2.0.0.v200806031607.jar [9] was not resolved.
    !SUBENTRY 2 javax.servlet.jsp.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host javax.servlet.jsp.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/javax.servlet.source.nl_ja_2.4.0.v200806031604.jar [12] was not resolved.
    !SUBENTRY 2 javax.servlet.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host javax.servlet.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.ant.source.nl_ja_1.7.0.v200803061910.jar [209] was not resolved.
    !SUBENTRY 2 org.apache.ant.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host org.apache.ant.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.commons.el.source.nl_ja_1.0.0.v200806031608.jar [212] was not resolved.
    !SUBENTRY 2 org.apache.commons.el.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host org.apache.commons.el.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.commons.logging.source.nl_ja_1.0.4.v20080605-1930.jar [215] was not resolved.
    !SUBENTRY 2 org.apache.commons.logging.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host org.apache.commons.logging.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.jasper.source.nl_ja_5.5.17.v200806031609.jar [219] was not resolved.
    !SUBENTRY 2 org.apache.jasper.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host org.apache.jasper.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.lucene.analysis.source.nl_ja_1.9.1.v20080530-1600.jar [222] was not resolved.
    !SUBENTRY 2 org.apache.lucene.analysis.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host org.apache.lucene.analysis.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.lucene.source.nl_ja_1.9.1.v20080530-1600.jar [224] was not resolved.
    !SUBENTRY 2 org.apache.lucene.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.apache.lucene.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ant.core.source.nl_ja_3.2.0.v20080529.jar [229] was not resolved.
    !SUBENTRY 2 org.eclipse.ant.core.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ant.core.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ant.ui.source.nl_ja_3.3.0.v20080529.jar [232] was not resolved.
    !SUBENTRY 2 org.eclipse.ant.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ant.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.compare.source.nl_ja_3.4.0.I20080604.jar [235] was not resolved.
    !SUBENTRY 2 org.eclipse.compare.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.compare.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.commands.source.nl_ja_3.4.0.I20080509-2000.jar [240] was not resolved.
    !SUBENTRY 2 org.eclipse.core.commands.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.commands.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.contenttype.source.nl_ja_3.3.0.v20080604-1400.jar [243] was not resolved.
    !SUBENTRY 2 org.eclipse.core.contenttype.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.contenttype.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.databinding.beans.source.nl_ja_1.1.1.M20080827-0800a.jar [246] was not resolved.
    !SUBENTRY 2 org.eclipse.core.databinding.beans.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.databinding.beans.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.databinding.source.nl_ja_1.1.1.M20080827-0800b.jar [249] was not resolved.
    !SUBENTRY 2 org.eclipse.core.databinding.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.databinding.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.expressions.source.nl_ja_3.4.0.v20080603-2000.jar [252] was not resolved.
    !SUBENTRY 2 org.eclipse.core.expressions.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.expressions.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filebuffers.source.nl_ja_3.4.0.v20080603-2000.jar [255] was not resolved.
    !SUBENTRY 2 org.eclipse.core.filebuffers.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.filebuffers.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filesystem.linux.x86_1.2.0.v20080604-1400.jar [257] was not resolved.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filesystem.macosx.nl_ja_1.0.0.v20080604-1400.jar [258] was not resolved.
    !SUBENTRY 2 org.eclipse.core.filesystem.macosx.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.filesystem.macosx_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filesystem.solaris.sparc_1.0.100.v20080604-1400.jar [260] was not resolved.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filesystem.source.nl_ja_1.2.0.v20080604-1400.jar [261] was not resolved.
    !SUBENTRY 2 org.eclipse.core.filesystem.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.filesystem.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filesystem.win32.x86.nl_ja_1.1.0.v20080604-1400.jar [262] was not resolved.
    !SUBENTRY 2 org.eclipse.core.filesystem.win32.x86.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.filesystem.win32.x86_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.jobs.source.nl_ja_3.4.0.v20080512.jar [266] was not resolved.
    !SUBENTRY 2 org.eclipse.core.jobs.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.jobs.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.net.linux.x86_1.0.0.I20080521.jar [268] was not resolved.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.net.source.nl_ja_1.1.0.I20080604.jar [270] was not resolved.
    !SUBENTRY 2 org.eclipse.core.net.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.net.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.net.win32.x86.nl_ja_1.0.0.I20080521.jar [271] was not resolved.
    !SUBENTRY 2 org.eclipse.core.net.win32.x86.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.net.win32.x86_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.resources.compatibility.nl_ja_3.4.0.v20080604-1400.jar [274] was not resolved.
    !SUBENTRY 2 org.eclipse.core.resources.compatibility.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.resources.compatibility_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.resources.compatibility.source.nl_ja_3.4.0.v20080604-1400.jar [275] was not resolved.
    !SUBENTRY 2 org.eclipse.core.resources.compatibility.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.resources.compatibility.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.resources.source.nl_ja_3.4.1.R34x_v20080902.jar [278] was not resolved.
    !SUBENTRY 2 org.eclipse.core.resources.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.resources.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.runtime.compatibility.auth.source.nl_ja_3.2.100.v20070502.jar [282] was not resolved.
    !SUBENTRY 2 org.eclipse.core.runtime.compatibility.auth.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.runtime.compatibility.auth.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.runtime.compatibility.registry.nl_ja_3.2.200.v20080610.jar [285] was not resolved.
    !SUBENTRY 2 org.eclipse.core.runtime.compatibility.registry.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.runtime.compatibility.registry_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.runtime.compatibility.registry.source.nl_ja_3.2.200.v20080610.jar [286] was not resolved.
    !SUBENTRY 2 org.eclipse.core.runtime.compatibility.registry.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.runtime.compatibility.registry.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.runtime.compatibility.source.nl_ja_3.2.0.v20071008.jar [288] was not resolved.
    !SUBENTRY 2 org.eclipse.core.runtime.compatibility.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.runtime.compatibility.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.runtime.source.nl_ja_3.4.0.v20080512.jar [291] was not resolved.
    !SUBENTRY 2 org.eclipse.core.runtime.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.runtime.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.variables.source.nl_ja_3.2.100.v20080529-1300.jar [294] was not resolved.
    !SUBENTRY 2 org.eclipse.core.variables.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.variables.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.cvs.nl_ja_1.0.100.v20080603.jar [296] was not resolved.
    !SUBENTRY 2 org.eclipse.cvs.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.cvs_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.cvs.source.nl_ja_1.0.100.v20080603.jar [297] was not resolved.
    !SUBENTRY 2 org.eclipse.cvs.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.cvs.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.debug.core.source.nl_ja_3.4.0.v20080612.jar [299] was not resolved.
    !SUBENTRY 2 org.eclipse.debug.core.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.debug.core.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.debug.ui.source.nl_ja_3.4.1.v20080811_r341.jar [302] was not resolved.
    !SUBENTRY 2 org.eclipse.debug.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.debug.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.filetransfer.nl_ja_2.0.0.v20080611-1715.jar [304] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.filetransfer.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf.filetransfer_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.identity.nl_ja_2.0.0.v20080611-1715.jar [305] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.identity.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf.identity_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.nl_ja_2.0.0.v20080611-1715.jar [306] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.provider.filetransfer.nl_ja_2.0.0.v20080611-1715.jar [307] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.provider.filetransfer.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf.provider.filetransfer_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.provider.filetransfer.ssl.nl_ja_1.0.0.v20080611-1715.jar [308] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.provider.filetransfer.ssl.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf.provider.filetransfer.ssl_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.ssl.nl_ja_1.0.0.v20080611-1715.jar [309] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.ssl.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf.ssl_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.app.source.nl_ja_1.1.0.v20080421-2006.jar [311] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.app.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.app.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.common.source.nl_ja_3.4.0.v20080421-2006.jar [314] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.common.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.common.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.frameworkadmin.equinox.nl_ja_1.0.2.R34x_v20080911.jar [316] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.frameworkadmin.equinox.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.frameworkadmin.equinox_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.frameworkadmin.equinox.source.nl_ja_1.0.2.R34x_v20080911.jar [317] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.frameworkadmin.equinox.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.frameworkadmin.equinox.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.frameworkadmin.nl_ja_1.0.2.R34x_v20080910.jar [318] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.frameworkadmin.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.frameworkadmin_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.frameworkadmin.source.nl_ja_1.0.2.R34x_v20080910.jar [319] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.frameworkadmin.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.frameworkadmin.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.http.jetty.source.nl_ja_1.1.0.v20080425.jar [321] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.http.jetty.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.http.jetty.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.http.registry.source.nl_ja_1.0.100.v20080427-0830.jar [324] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.http.registry.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.http.registry.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.http.servlet.source.nl_ja_1.0.100.v20080427-0830.jar [327] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.http.servlet.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.http.servlet.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.jsp.jasper.registry.source.nl_ja_1.0.0.v20080427-0830.jar [331] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.jsp.jasper.registry.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.jsp.jasper.registry.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.jsp.jasper.source.nl_ja_1.0.100.v20080427-0830.jar [333] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.jsp.jasper.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.jsp.jasper.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.0.101.R34x_v20080805/ [335] was not resolved.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.launcher.gtk.solaris.sparc_1.0.101.R34x_v20080731/ [336] was not resolved.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.launcher.source.nl_ja_1.0.101.R34x_v20080819.jar [338] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.launcher.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.launcher.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.launcher.win32.win32.x86.nl_ja_1.0.101.R34x_v20080731.jar [339] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.launcher.win32.win32.x86.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.launcher.win32.win32.x86_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.preferences.source.nl_ja_3.2.201.R34x_v20080709.jar [343] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.preferences.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.preferences.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.registry.source.nl_ja_3.4.0.v20080516-0950.jar [346] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.registry.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.registry.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.security.source.nl_ja_1.0.1.R34x_v20080721.jar [349] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.security.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.security.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.security.ui.source.nl_ja_1.0.0.v20080603-1810.jar [351] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.security.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.security.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.security.win32.x86.nl_ja_1.0.0.v20080529-1600.jar [353] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.security.win32.x86.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.security.win32.x86_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.security.win32.x86.source.nl_ja_1.0.0.v20080529-1600.jar [354] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.security.win32.x86.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.security.win32.x86.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.source.nl_ja_3.1.300.v20080507.jar [358] was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.help.appserver.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.help.base.source.nl_ja_3.3.101.M20080728_34x.jar [361] was not resolved.
    !SUBENTRY 2 org.eclipse.help.base.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.help.base.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.help.source.nl_ja_3.3.101.v20080702_34x.jar [364] was not resolved.
    !SUBENTRY 2 org.eclipse.help.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.help.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.source.nl_ja_3.3.101.M20080715_34x.jar [366] was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.help.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.source.nl_ja_3.3.101.M20080805_34x.jar [369] was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.help.webapp.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.apt.core.source.nl_ja_3.3.101.R34x_v20080902-1220.jar [373] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.apt.core.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.apt.core.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.apt.pluggable.core.source.nl_ja_1.0.100.v20080407-1345.jar [376] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.apt.pluggable.core.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.apt.pluggable.core.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.apt.ui.source.nl_ja_3.3.100.v20080407-1345.jar [379] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.apt.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.apt.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.compiler.apt.nl_ja_1.0.100.v20080513-1235.jar [381] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.compiler.apt.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.compiler.apt_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.compiler.apt.source.nl_ja_1.0.100.v20080513-1235.jar [382] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.compiler.apt.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.compiler.apt.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.compiler.tool.nl_ja_1.0.100.v_883_R34x.jar [384] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.compiler.tool.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.compiler.tool_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.compiler.tool.source.nl_ja_1.0.100.v_883_R34x.jar [385] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.compiler.tool.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.compiler.tool.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.core.manipulation.source.nl_ja_1.2.0.v20080603-2000.jar [388] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.core.manipulation.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.core.manipulation.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.core.source.nl_ja_3.4.2.v_883_R34x.jar [391] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.core.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.core.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.debug.source.nl_ja_3.4.0.v20080604.jar [394] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.debug.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.debug.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.debug.ui.source.nl_ja_3.3.1.v20080730_r341.jar [396] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.debug.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.debug.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.doc.isv.nl_ja_3.4.1.r341_v20080716-0800.jar [399] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.doc.isv.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.doc.isv_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.junit.runtime.source.nl_ja_3.3.0.v20080603-2000.jar [404] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.junit.runtime.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.junit.runtime.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.junit.source.nl_ja_3.4.0.v20080603-2000.jar [406] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.junit.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.junit.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.junit4.runtime.source.nl_ja_1.0.200.v20080603-2000.jar [408] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.junit4.runtime.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.junit4.runtime.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.launching.macosx.nl_ja_3.1.100.v20080422.jar [411] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.launching.macosx.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.launching.macosx_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.launching.source.nl_ja_3.4.1.v20080729_r341.jar [413] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.launching.source.nl_ja 2 0 2012-05-29 14:05:35.009

  • Excel cannot complete this task with available resources

    Hello all,
    I am having a puzzling problem with some Excel 2010 users. 
    One person in Finance is having problems with excel in general, the others are having problems with a specific spreadsheet.
    The specific spreadsheet is very large, 250mb, and contains a lot of data. They're trying to update a specific pivot table within this sheet but every time they try to refresh the data they get the message "Excel cannot complete this task with available
    resources". I have also replicated the problem on my PC.
    All PC's have 4GB of RAM available. I closed all programs, opened the sheet again, refreshed the pivot table and still received the same error. 
    Now, one person in the department was able to open the sheet, refresh the pivot table and save it with no problems. They have the same spec machine as the others in the Finance department.
    All users have rebooted their machines, I've checked the server where the saved files sit to make sure there are no problems, I've asked them to check all data sources within the spreadsheet, watched RAM usage during the operation and while it is high, it
    doesn't max out. Before finding out that one person can open it, I thought it could be that the file had become corrupted in some way. 
    It's very puzzling as I cannot see any logical reason why four people cannot use this sheet but one can. Any help or suggestions would be greatly appreciated. 

    Hi
    MrBeardyDrummer,
    Since you got the error message "Excel cannot complete this task with available resources. Choose less data or close other applications."
    when opened the Excel, please try the follow this KB to fix the issue.
    http://support.microsoft.com/kb/2655178
    You can also refer to these.
    http://support.microsoft.com/kb/2779852
    http://blogs.technet.com/b/the_microsoft_excel_support_team_blog/archive/2012/05/22/quot-excel-cannot-complete-this-task-with-available-resources-quot-after-installing-ms12-030.aspx
    If there is anything I can do for you regarding this issue, feel free to post back.
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Excel cannot complete this task with available resources.... running windows 8 office 2013

    excel cannot complete this task with available resources.choose less data or close other applications.
     m currently running windows 8 with office 2013 version. need help pplz

    Hi,
    Did you get the error message "Excel cannot complete this task with available resources error" in Excel 2013?
    Could you give me more detailed information? Which action caused the error message? Such as:
          Open or save an Excel workbook
          Open an Excel workbook that references a relative name from another workbook
          Use a defined name in a formula in an Excel workbook
          Define or delete a name in an Excel workbook
    Please go to the folder,
    and delete all the files in that folder.
    C:\Users\user name\AppData\Roaming\Microsoft\Excel
    If the issue still exists, I recommend you try to follow the links to troubleshooting it :
    http://support.microsoft.com/kb/2779852/en-us
    http://support.microsoft.com/kb/2655178/en-us
    The links apply to Excel 2010, but we can refer to it.
    If you had more information, I'll do deeply research.
    Regards,
    George Zhao
    TechNet Community Support

  • Excel cannot complete this task with available resources. Choose less data or close other applications

    Hello:
    I'm using Excel 2010 and when I try to open several workbooks a message "Excel cannot complete this task with available resources. Choose less data or close other applications" appears.  This happens when I open email attachments from MS Outlook
    and files on my C-Drive.
    Thank you for your help

    Hi NFL1,
    Could you tell me which version of office are you using, 32bit or 64bit? You said this issue always happened when open attachments from outlook and files in C-Driver.
    For opening attachments from outlook, it might there is a conflict between the preview pane and Excel. You can try to hide the preview pane as a workaround to solve this issue. Please refer to this link:
    https://support.microsoft.com/en-us/kb/2526883
    It is often the case, if your file is large or contains a large amount of features, it is possible you are running low on available memory resources. If you work with extremely large data sets, the 64-bit version of Office may perform better for you. 32-bit
    office you run are limited to making use of only 2GB of RAM. And this is one of the reasons occur the issue, you can via these links to get more information about this issue and detailed methods to solve this problem.
    https://support.microsoft.com/en-us/kb/2779852
    http://blogs.technet.com/b/the_microsoft_excel_support_team_blog/archive/2012/05/22/quot-excel-cannot-complete-this-task-with-available-resources-quot-after-installing-ms12-030.aspx
    Please try these methods and let me know if they work, I am glad to help and forward to your reply.
    Regards,

  • Java.sql.SQLException: No available resource. Wait-time expired.

    Hi all,
    The application platform is SunONE Application Server 7, and the database is ORACLE 9i. My Website application will raise the SQLException once a few days' running. Everything will be ok once the Application server has been restarted. The detail about the Exception is :
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr: java.sql.SQLException: No available resource. Wait-time expired.
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.sun.enterprise.resource.JdbcDataSource.internalGetConnection(JdbcDataSource.java:251)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.sun.enterprise.resource.JdbcDataSource.getConnection(JdbcDataSource.java:98)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.util.EnvUtil.getDSConnection(EnvUtil.java:72)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.util.DirectDSUtil.getObjectsFromDS(DirectDSUtil.java:103)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.jcsms.dam.JcsmsDDSA.getSpecialistByPage(JcsmsDDSA.java:388)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.jcsms.sessionbeans.SpecialManagerEJBBean.listSpecialist(SpecialManagerEJBBean.java:1941)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.jcsms.sessionbeans.SpecialManagerEJBBean_EJBObjectImpl.listSpecialist(SpecialManagerEJBBean_EJBObjectImpl.java:702)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.jcsms.sessionbeans._SpecialManagerEJBBean_EJBObjectImpl_Tie._invoke(Unknown Source)thanks for any help
    Niu

    Ther is a related Bug i n Oracle: Bug No. 4420032
    PROBLEM STATEMENT: ------------------
    The Oracle client file ojdbc_14.jar is not handling exceptions correctly. The connection pool slowly runs out of connections and hits the oracle db limit of max_sessions. Increasing the db max_sessions does not help as the number of sessions continue to increase.
    The vendor developers of ct's application have identified a code problem with the Oracle client file ojdbc_14.jar. Their description follows.
    The following is a technical description of the Oracle JDBC client library issue. The jar file in question is: ojdbc_14.jar. This issue is also present in the 9.2.05 and 9.2.06 versions of the client code.
    The socket.close() call in TcpNTAdapter.disconnect() does not properly handle network exceptions. Where the exception should be handled within the code segment calling socket.close(), the class instead throws an exception without ensuring the socket is closed. The socket is not subsequently closed by clients of the class. This ultimately results in a connection leak. Overtime, the maximum number of Oracle database sessions is reached. The only work around for this issue in production, is to restart the effected processes.
    The code segment:
    public void disconnect()
    throws IOException { 
    socket.close();
    socket = null; }
    should be along the lines of:
    public void disconnect()
    throws IOException { 
    try{  socket.close();  }
    catch(IOException ioe){  throw ioe;  }
    finally{  socket = null;  } }
    The original code segment will not execute the statement "socket = null" when . an exception occurs. Given the fact that the exception is not subsequently processed properly, the object is never dereferenced, and the socket remains open for the life of the process. Adding this statement in the finally block . ensures the object will ultimately be destroyed by the garbage collector. . ct tested this change in their lab and found that the recommended modification successfully resolved the issue.
    This problem has occurred with the previous ct's application releases, but the vendor has only recently been able to isolate the root cause. The JDBC connection pool slowly runs out of connections and hits the oracle db limit of max_sessions.
    Increasing the db max_sessions does not help as the number of sessions continue to increase. This problem has been occuring in Production over the past few releases of the application, but usually the connections leak slowly. This problem can be duplicated under heavy load in just a few minutes . in the Loadtest environment.

  • Excel not even open - "cannot complete this task with available resources" and then VBA run-time error randomly appear!

    Has anyone else seen the "Excel cannot complete this task with available resources" error message appear when Excel isn't even open? It keeps happening to me, and it's the strangest thing.
    It seems like interacting with Excel files sometimes prompts it - for example, I just turned on my computer this morning, checked my email, and then opened Google Chrome to upload some Excel files. Excel hasn't been opened at any point since the machine
    booted up, but this Excel error popped up while I was uploading the files.
    Checked the Task Manager because I was baffled (not that this is the first time it's happened), and there's no Excel application running, just that silly error message. Choose OK on that error and a VBA run-time error message appears (not even sure if it's
    Excel VBA or Word/Outlook but I assume it's Excel - it's the good old 1004, application-defined or object-defined error).
    Debug is greyed out, so it won't let me debug to see what the problem is. Choosing End brings the "Excel cannot complete this task with available resources" message back for one final performance.
    This happens on a not-infrequent basis: Excel isn't open, and I randomly get this set of Excel errors: 1) "cannot complete task", 2) VBA run-time, 3) "cannot complete task" again. Then it's done, until the next time it happens. Weird.
    I have 32-bit Windows 7 and Excel 2013/2010/2007/2003/2002 (I know!) but the issue only started after installing 2013. I also get the "cannot complete this task" message regularly when working in Excel (generally with Power Pivot or something legitimately
    memory-hungry though), and restarting the application does the trick. I don't mind a heads-up when I'm gobbling up too many resources, but when Excel's not even open, it's a bit ridiculous. It's like I have a zombie Excel! Does interacting with Excel files
    via upload/moving around Windows Explorer actually trigger some sort of Excel action in the background?
    Any ideas would be most appreciated!! Thank you :)

    Hi,
    As the memory error messages , it can be very generic and don't always identify the real cause of the issue. We may try to use the KB that Mr. KR mentioned above to troubleshoot it.
    On the other hand, if the file is xls format, we may convert to the new file format .XLSM and test.
    http://www.experts-exchange.com/Software/Office_Productivity/Office_Suites/MS_Office/Excel/Q_28339883.html
    Next, try to disable hardware graphics acceleration from File > Options > Advanced > Display section and disable Aero Themes (if you enabled) to check the results.
    For the hangs and crashes issues, we may use ADPlus.vbs to troubleshoot:
    http://support.microsoft.com/kb/286350/en-us
    http://www.networksteve.com/exchange/topic.php/Excel_cannot_complete_this_task_with_available_resources_error,/?TopicId=39411&Posts=1
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Hope it's helpful.
    George Zhao
    TechNet Community Support

  • Cannot get local socket

    I'm using iTunes v6.0.1.3. The problem is that I'm always getting these pop-up error messages that say "cannot get local socket". Really annoying, but iTunes plays radio and library songs just fine.
    Windows XP Pro

    I can't get the JDBC to work. I get the following error:
    "No suitable driver found for
    jdbc:microsoft:sqlserver://MIWEB/MIWEB:1433"
    URL: jdbc:microsoft:sqlserver://MIWEB/MIWEB:1433;
    Driver class: macromedia.jdbc.MacromediaDriver
    I recently upgraded to CF 8. Is there something I have to
    setup first before using the JDBC connection?

  • OpenScript & ant ssh - "Cannot get a connection from helper after 120 seconds"

    Hi, I'm trying to run openscript tests (with runscript.bat file) from hudson. I'm connecting to windows XP machine through ssh and executing batch file, but execution of scipt finishes with error "Cannot get a connection from helper after 120 seconds". This error occurs when openscript tries to run test on Internet Explorer. If IE is not nescessary, test finishes with OK. When running batch directly on windows (without hudson and ssh, but on the same user) everything works fine. Has enyone met with such issue ?

    Hi,
    What Jules has suggested should work, but I have also used the following to get scripts working from OTM -
    OATS Application service - run as a user with local admin rights
    helper service - local system
    OATS agent service - set to manual
    Then, run the agent service as a console app -
    1. run a cmd prompt
    2. Run c:\> C:\OracleATS\agentmanager\bin\AgentManagerService.exe -c C:\OracleATS\agentmanager\bin\\AgentManagerService.conf
    3. Execute the script from OTM
    If the agent is running on a machine separate to OTM then the user will have to remain logged in.
    Cheers,
    Jamie

  • Cannot get maile connection to server failed

    followed the instructions for icloud set up in apple support for ipad and iphone even deleted the account and then set the account up with the correct ID and password.  I do use a different ID  than my apple ID for my icloud account.  I use my me.com email address.  I can get into the cloud on my pc and I can send and recieve email when I log into my icloud account but this fails to work on my ipad and iphone.  Attempts to seen or get email on these devices when on a wifi network end up with the message "cannot get mail connection to server failed"
    lee

    Hi HLSdoc,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    iCloud: Troubleshooting iCloud Mail
    http://support.apple.com/kb/ts4002
    Issues sending or receiving mail on iPhone, iPad, or iPod touch
    Best of luck,
    Mario

  • Sybase jconnect and tomcat 5. Getting error:Cannot get a connection, pool

    Hi,
    I am not sure why i am getting this error.
    All the drivers are in the write location. Tomcat does find and load the driver correctly.
    But... when i try to connect, i get this error.
    org.apache.commons.dbcp.SQLNestedException: Cannot get a connection, pool exhausted, cause:
    java.util.NoSuchElementException: Could not create a validated object
    at org.apache.commons.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:851)
    at org.apache.commons.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:140)
    at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:518)
    at com.aoltw.ic.ars.data.DAO.connect(DAO.java:233)
    at com.aoltw.ic.ars.data.authenticateDAO.getGroups(authenticateDAO.java:114)
    at com.aoltw.ic.ars.data.authenticateDAO.getUserInfo(authenticateDAO.java:97)
    at com.aoltw.ic.ars.helpcentral.presentation.action.loginAction.authenticate(loginAction.java:35)
    at com.aoltw.ic.ars.helpcentral.presentation.action.loginAction.execute(loginAction.java:86)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:446)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:266)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1292)
    Thanks
    --Arun

    What is the "right" location? I'll assume you mean your app's WEB-INF/lib.
    Sounds like your Java code isn't closing statements and/or connections properly, or perhaps you need to increase the number of connections in the pool. I'm guessing it's the former.
    MOD

Maybe you are looking for

  • My hard drive does not appear in the Finder window

    I installed a second internal hard drive inside my G5, but it never shows up in the finder window, nor anytime I try to access files from within applications (it appears on the desktop though). How can I configure my computer so that it always sees t

  • Installing 8.0.5 on Red Hat 6.2

    Hi everyone I have to install Oracle 8.0.5 in Linux and it's the first time(I have installed Oracle in Solaris several times), so I have some doubts. Is it the Red Hat 6.2 a good version in order to install Oracle 8.0.5 on it? Is necessary to install

  • Safari keeps quitting on me and has been for the past few weeks.. help!

    I have a macbook pro and I am using an up to date version of safari. For the past few weeks safari will quit out of now where and any page I was on will be gone, which is very inconvenient if I'm doing research for school and such because everything

  • Car FM Stereo Connector 30-Pin vs 3.5mm Earphone

    I have an iPhone 4 and I am trying to buy below Car FM Stereo adaptor.  This one connects to the iPhone 3.5mm earphone connector instead of Apple 30-pin.  I don't really want something that works with iPhones only, but works with other smartphone, so

  • Call drop when VXML server goes down

    Can somebody tell me what should ideally happen in the below given scenario? We have two media/vxml servers. We have a ACE load balancer which sends calls to these two servers. When the customer call is sent to CVP for self service (VXML application)