Getting NameNotFoundException while trying to look up timer from startup cl

Hi all,
I am getting NameNotFoundException while trying to look up timer from startup class.
I have configured commonj.timers.TimerManager in ejb-jar.xml of my MDB. I am using statrtup classes to initialize some static components immidiate to the MDB's active state. I have to initialize the timer manager object immidiate to the MDB's active state which is configured in ejb-jar.xml. I wrote this lookup logic in postStart() method of ApplicationLifecycleListener, The method getting called but the lookup logic getting failed, the same look up logic is working in MDB class (MDBTimer.java). I have tried different ways, I did’nt get solution, finally I am posting the problem here.
Could any of weblogic experts please help out on this Issue?
Here I am giving my code.
weblogic-application.xml
<?xml version='1.0' encoding='UTF-8'?>
<weblogic-application
     xmlns="http://www.bea.com/ns/weblogic/weblogic-application" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-application http://www.bea.com/ns/weblogic/weblogic-application/1.0/weblogic-application.xsd">
     <listener>
          <listener-class>my.examples.mdb.timer.TestApplicationListener</listener-class>
     </listener>     
</weblogic-application>
ejb-jar.xml
          <ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
          http://java.sun.com/xml/ns/j2ee/ejb-jar_3_0.xsd"
               version="3.0">
               <enterprise-beans>
                    <message-driven>
                         <ejb-name>MyTimerMDB</ejb-name>
                         <ejb-class>my.examples.mdb.timer.MDBTimer
                         </ejb-class>
                         <resource-ref>
                              <description>My Default Timer Manager</description>
                              <res-ref-name>timer/MyDefaultTimer</res-ref-name>
                              <res-type>commonj.timers.TimerManager</res-type>
                              <res-auth>Container</res-auth>
                              <res-sharing-scope>Unshareable</res-sharing-scope>
                         </resource-ref>
                    </message-driven>
               </enterprise-beans>
          </ejb-jar>
MDBTimer.java
package my.examples.mdb.timer;
import javax.ejb.MessageDriven;
import javax.ejb.TransactionAttribute;
import javax.ejb.TransactionAttributeType;
import javax.jms.Message;
import javax.jms.MessageListener;
import javax.jms.ObjectMessage;
import commonj.timers.Timer;
import commonj.timers.TimerManager;
@MessageDriven(mappedName = "TEST_Q", name = "MyTimerMDB", activationConfig = {
          @javax.ejb.ActivationConfigProperty(propertyName = "acknowledgeMode", propertyValue = "Auto-acknowledge"),
          @javax.ejb.ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
          @javax.ejb.ActivationConfigProperty(propertyName = "transactionType", propertyValue = "Container"), })
@TransactionAttribute(TransactionAttributeType.REQUIRED)
public class MDBTimer implements MessageListener {
     public static TimerManager manager = null;
     @Override
     public void onMessage(Message arg0) {
          System.out.println("onMessage() method called...\n\n");
          if (arg0 instanceof ObjectMessage) {
               ObjectMessage msg = (ObjectMessage) arg0;
               try {
                    if (msg.getObject() instanceof String) {
                         Thread.sleep(1000);
                         System.out
                                   .println("Message received >> " + msg.getObject());
               } catch (Exception e) {
                    e.printStackTrace();
          System.out.println("onMessage() method returned...\n\n");
          if(manager==null){
               manager=MyUtil.getTimerManager();
TestApplicationListener.java
package my.examples.mdb.timer;
import commonj.timers.TimerManager;
import weblogic.application.ApplicationException;
import weblogic.application.ApplicationLifecycleEvent;
import weblogic.application.ApplicationLifecycleListener;
public class TestApplicationListener extends ApplicationLifecycleListener {
     public void preStart(ApplicationLifecycleEvent evt)throws ApplicationException {
          String logStr = ">>>>TestApplicationListener.preStart()>>>>";
          System.out.println(logStr+"entered...");
          super.preStart(evt);
          System.out.println(logStr+"leveaing...");
     public void postStart(ApplicationLifecycleEvent evt)throws ApplicationException {
          String logStr = ">>>>TestApplicationListener.postStart()>>>>";
          System.out.println(logStr+"entered...");
          super.postStart(evt);
          TimerManager timerManager = MyUtil.getTimerManager();
          System.out.println(logStr+"Got timer manager ==> "+timerManager);
          System.out.println(logStr+"leveaing...");
     public void preStop(ApplicationLifecycleEvent evt)throws ApplicationException {
          String logStr = ">>>>TestApplicationListener.preStop()>>>>";
          System.out.println(logStr+"entered...");
          TimerManager timerManager = MyUtil.getTimerManager();
          System.out.println(logStr+"Got timer manager ==> "+timerManager);
          super.preStop(evt);
          System.out.println(logStr+"leveaing...");
     public void postStop(ApplicationLifecycleEvent evt) throws ApplicationException{
          String logStr = ">>>>TestApplicationListener.postStop()>>>>";
          System.out.println(logStr+"entered...");
          super.preStop(evt);
          System.out.println(logStr+"leveaing...");
MyUtil.java
package my.examples.mdb.timer;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import commonj.timers.TimerManager;
public class MyUtil {
     public static TimerManager getTimerManager() {
          TimerManager timerManager = null;
          try {
               InitialContext ctx = new InitialContext();
               timerManager = (TimerManager) ctx
                         .lookup("java:comp/env/timer/MyDefaultTimer");
               System.out
                         .println("@@@@@Looked-up using java:comp/env/timer/MyDefaultTimer : "
                                   + timerManager);
          } catch (NamingException e) {
               e.printStackTrace();
          return timerManager;
}

Thaks for your valuble information. I tried as you suggested!!! But NO luck . Still I am getting the issue.
I am using a class(TestApplicationListener) implements ApplicationLifecycleListener to listen my application.
I have overriden the methods preStart(), postStart(), preStop() and postStop().
Given following entries in weblogic-application.xml
<listener>
          <listener-class>my.examples.mdb.timer.TestApplicationListener</listener-class>
</listener>     
Also given
<ejb>
               <start-mdbs-with-application>false</start-mdbs-with-application>
</ejb>          As you suggested.
If I try to look-up timer manager from postStart() method of TestApplicationListener then it is giving NameNotFoundException
, same exception is giving in preStop() method.
If it is problem with initialization; I think, it should not give problem with preStop() method. (Correct me if I am wrong)
If I try to lookup the timer manager from onMessage() method of my MDB, It is not giving any problem.
I didn’t understand the reason why it is happening.
Note: All the life cycle methods (preStart(), postStart(), preStop() and postStop() ) are getting executed when I start/stop/redeploy my application from console.

Similar Messages

  • Getting Error while trying to select SS function from Tab(HTMl Tab on OAF)

    Hi All,
    I was trying to create a TAb navigation for the Self Service functions.
    There are 3 4 functions (Transactions) all other are working fine while I am trying to navigate via tabs.
    But there is a seeded SS function "Home Contac"(HR_PERINFO_SS) this is not working giving me error as
    "The selected action is not available. The cause may be related to security. Contact your system administrator to verify your permission level for this action."
    when I am directly hit the function link from Menu its working fine but via tab its giving error.
    Below is the function description
    Web HTML :
    OA.jsp?akRegionCode=HR_CREATE_PROCESS_TOP_SS&akRegionApplicationId=800&OAHP=XX_MSS_HOME_PAGE&OASF=XX_ESS_HOME_CONTACTS&OAFunc=GE_ESS_HOME_CONTACTS&GEHomeContact=Y
    Parameter:
    &pProcessName=XX_PERSONAL_INFO_JSP_PRC&pItemType=HRSSA&pCalledFrom=HR_PERINFO_SS&pPersonID=&pFromMenu=Y
    Please let me know how can correct this.
    Thanks,
    Tarun

    Hi,
    Please refer the last reply of following post:
    NWDI Configuration
    I hope it will help u out.
    Can refer this help link too.
    http://help.sap.com/saphelp_nw04s/helpdata/en/03/f6bc3d42f46c33e10000000a11405a/frameset.htm

  • Excel service and OWA - getting ERROR while trying to open/edit Excel documents

    Hi All,
    We have configured SharePoint 2013 with Excel Service and OWA (Office Web Apps).
    After configuring, we are able to view/edit Word or PowerPoint documents from the browser (as OWA is configured). But we are getting errors while trying to open/edit Excel documents.
    We are not able to view/edit the excel workbook from the browser (through OWA).
    To open the excel in the browser, decision has to be taken at the farm level on what to be used – Excel Service or OWA Server? Is it possible to do setting at site collection level?
    Error details are given below:
    Event code: 3005
    Event message: An unhandled exception has occurred.
    Event time: 3/25/2013 1:29:08 PM
    Event time (UTC): 3/25/2013 7:59:08 AM
    Event ID: fc2e0530f493493896e6c8b6297a0423
    Event sequence: 10
    Event occurrence: 3
    Event detail code: 0
    Application information:
        Application domain: /LM/W3SVC/2/ROOT/x-1-130086717598089315
        Trust level: Full
        Application Virtual Path: /x
        Application Path: C:\Program Files\Microsoft Office Web Apps\ExcelServicesWfe\
        Machine name: VHYDMANTHSTP-02
    Process information:
        Process ID: 1252
        Process name: w3wp.exe
        Account name: NT AUTHORITY\NETWORK SERVICE
    Exception information:
        Exception type: ArgumentException
        Exception message: An entry with the same key already exists.
       at System.Collections.Generic.TreeSet`1.AddIfNotPresent(T item)
       at System.Collections.Generic.SortedDictionary`2..ctor(IDictionary`2 dictionary, IComparer`1 comparer)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.GetInstalledUICultures()
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.IsUICultureSupported(String cultureTag, CultureInfo& cultureInfo)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICulture(String cultureTag, Boolean useOleo, Boolean allowCustomFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICultureFromFrontEnd(String uiCultureTag, Boolean allowFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentCulturesFromFrontEnd(String uiCultureTag, String dataCultureTag)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.SetCurrentCulturesFromContext(HttpContext context)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.PreProcessRequest(HttpContext context)
       at Microsoft.Office.Excel.WebUI.XlPreview.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Request information:
        Request URL:
    http://mysrevr/x/_layouts/xlpreview.aspx?ui=en-US&rs=en-US&WOPISrc=http://myservernames1/_vti_bin/wopi.ashx/files/f36d669ceb814d67bdad0e1e1f98e466&wdSmallView=1
        Request path: /x/_layouts/xlpreview.aspx
        User host address: 10.81.138.92
        User: 
        Is authenticated: False
        Authentication Type: 
        Thread account name: NT AUTHORITY\NETWORK SERVICE
    Thread information:
        Thread ID: 13
        Thread account name: NT AUTHORITY\NETWORK SERVICE
        Is impersonating: False
        Stack trace:    at System.Collections.Generic.TreeSet`1.AddIfNotPresent(T item)
       at System.Collections.Generic.SortedDictionary`2..ctor(IDictionary`2 dictionary, IComparer`1 comparer)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.GetInstalledUICultures()
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.IsUICultureSupported(String cultureTag, CultureInfo& cultureInfo)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICulture(String cultureTag, Boolean useOleo, Boolean allowCustomFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICultureFromFrontEnd(String uiCultureTag, Boolean allowFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentCulturesFromFrontEnd(String uiCultureTag, String dataCultureTag)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.SetCurrentCulturesFromContext(HttpContext context)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.PreProcessRequest(HttpContext context)
       at Microsoft.Office.Excel.WebUI.XlPreview.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    I have the same issue while opening the file , i have checked every thing twice. but unable to fix this thing . can any one help.
    One more thing which is i am wondering none of the MS representative replied on this post which is originally posted on March 27-2013.
    is microsoft alive??
    Imran Bashir Network Administrator MCP, JNCIA-EX,ER,JNIOUS +92-333-4330176

  • Getting Exception while trying to get Connection

    Getting Exception while trying to get Connection from Data Source in ejbCreate() for the First time when ejbCreate() is called.
    Thanks in Advance

    Hello Mallidi,
    And the exception is ?
    Cheers, Tsvetomir

  • Javax.naming.NameNotFoundException: While trying to lookup 'mail.NewMailSes

    Hi All,
    Am using jdeveloper 11.1.1.6. Am trying to send a mail through ADF
    I have verfied the link which given below and trying to do the same.
    http://adfblogs.blogspot.in/2012/01/sending-e-mail-from-adf-application.html
    While am pressing the send button am getting the exception as
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase INVOKE_APPLICATION 5
    javax.faces.el.EvaluationException: javax.naming.NameNotFoundException: While trying to lookup 'mail.NewMailSession' didn't find subcontext 'mail'. Resolved ''; remaining name 'mail/NewMailSession'
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:58)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:889)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:379)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:194)
    Could any one pls help me to resolve it?

    I had restarted the weblogic server even though am getting the same error
    javax.naming.NameNotFoundException: While trying to lookup 'mail.NewMailSession' didn't find subcontext 'mail'. Resolved ''; remaining name 'mail/NewMailSession'
         at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1139)
         at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:247)
         at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:182)
         at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:206)
         at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:411)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at Mail.SendAction(Mail.java:49)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)

  • Javax.naming.NameNotFoundException: While trying to lookup 'jdbc.SampleHR1DS' didn't find subcontext

    hi,
    i have installed hr schema and created a page with a table.when i run the page,
    i am getting  javax.naming.NameNotFoundException: While trying to lookup 'jdbc.SampleHR1DS' didn't find subcontext 'jdbc'. Resolved ''; remaining name 'jdbc/SampleHR1DS'
    Do i need to create data source for this.How to resolve this.
    i am using 11.1.2.4.0 jdev

    there are multiple option of creating data source.which one i should use.
    should i use generic one. what is URL information for oracle xe client.what is driver name?

  • While trying to setup a time capsule backup to my MyBookLive external drive, I got the following error message: The network backup disk does not support the required AFP features. What's up with this?

    While trying to setup a time capsule backup to my MyBookLive external drive, I got the following error message: The network backup disk does not support the required AFP features. What's up with this?

    This means that your NAS does not support the required encryption. Update your NAS to the latest firmware or ditch it and buy a Time Capsule (they are the most reliable when using TM).

  • Getting error while trying to generate SNP PPM

    Hi Experts,
    I am getting error, while trying to generate SNP PPM fron PP/DS PPM. It says Set up matrix for resource in planning version is not define. But I checked that i havea set up matrix as well as setup group.
    Any help will be appreciated. Thanks In advance.
    Sani

    Hi Sani,
    Try running resource & ppds ppm consistency check against
    their respective transactions (/sapapo/res01 & /sapapo/scc_03)
    and check any inconsistencies found.
    Regards
    R. Senthil Mareeswaran.

  • TS1424 I get error code 1009 while trying to download an application from app stor

    I get error code 1009 while trying to download an application from app storp

    You will need to do what it says, contact iTunes support. Click the Support tab above, then the Get Started link in the Contact Apple Support area and you'll be guided.
    Regards.

  • Getting error while trying to bring datafile online.

    Hi,
    I am getting error while trying to bring datafile online.
    Can you please help me in this.
    SQL> alter database datafile 5 online;
    alter database datafile 5 online
    ERROR at line 1:
    ORA-01157: cannot identify/lock data file 5 - see DBWR trace file
    ORA-01110: data file 5: 'G:\ABC.DBF'
    Database is running in Archivelog mode.
    Even when i tried to take the whole database backup i got the following error.
    RMAN> backup database;
    Starting backup at 21-OCT-09
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=139 devtype=DISK
    could not read file header for datafile 5 error reason 4
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 10/21/2009 18:07:04
    RMAN-06056: could not access datafile 5
    Please help me to rectify this problem.
    Database is running in Archivelog mode.
    Database is 10.2.3.0

    Aman wrote:
    Hi,
    I am getting error while trying to bring datafile online.
    Can you please help me in this.
    SQL> alter database datafile 5 online;
    alter database datafile 5 online
    ERROR at line 1:
    ORA-01157: cannot identify/lock data file 5 - see DBWR trace file
    ORA-01110: data file 5: 'G:\ABC.DBF'
    Database is running in Archivelog mode.
    Even when i tried to take the whole database backup i got the following error.
    RMAN> backup database;
    Starting backup at 21-OCT-09
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=139 devtype=DISK
    could not read file header for datafile 5 error reason 4
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 10/21/2009 18:07:04
    RMAN-06056: could not access datafile 5
    Please help me to rectify this problem.
    Database is running in Archivelog mode.
    Database is 10.2.3.0Why are you taking the backup when the file is not there? Files don't go offline just like that so the bigger concern for you should be that how come without your knowledge( I hope so) , it went offline?
    The file is not physically there and as like Don asked, is the G drive actually is there even?
    Do you have backup of this file? Also confirm, you have all the archivelogs available?
    HTH
    Aman....

  • I have an iPhone 4S I've been useing a sever for awhile now. Downloaded new iOS now I'm getting 403 forbidden when trying to look up anything from the server. Regular 3G works. How can I fix so I can use the server?

    I have an iPhone 4S I've been useing a sever for awhile now. Downloaded new iOS now I'm getting 403 forbidden when trying to look up anything from the server. Regular 3G works. How can I fix so I can use the server?

    Update: An Apple rep called me today to update the status of my return. I was told that the replacements for the BLACK iPad 2's was still another 3 weeks out (at least) so they offered me a brand new WHITE 16GB iPad 2. I could have that or continue waiting. I opted to go ahead and accept the offer of a new white one. Worst case scenario if I don't like the white one I have buddy that just bought a 16GB black one that he would be willing to swap it.

  • Error while trying to delete the universe from CMS

    Dear All,
    I am getting "Unable to reconnect to the CMS XXXXXXXXX. The session has been logged off or has expired" error while trying to delete any universe from the CMS. I tried restarting tomcat but it didnt work. I am unable to delete any universe from CMS. We have BO XI R2 SP2 environment on Windows 2003 Server.
    regards,
    Umair

    SAP NOTE - 1199539 gives a possible solution to this problem:
    When attempting to delete or migrate a universe, the following error message appears:
    "Unable to reconnect to the CMS BUSOBJDV.ACSAD.NCSU.EDU. The session has been logged off or has expired."
    Environment
    BusinessObjects Enterprise Premium XI Release 2 SP1 CHF15
    JDK version 1.4.2_08
    Tomcat version is the same as that shipped with the product
    Cause
    The universes and connection pages are special (AFAIK) compared to the other pages because they are pure JSP, while most of the other Central Management Console (CMC) pages still go though the CMC and use COM/C++ code unaffected by the Java Virtual Machine (JVM). If the JVM has not been updated against Eastern Daylight Savings Time (EDST), it may calculate the incorrect time locally, and problems may occur with token expiry or validation.
    Resolution
    Update the Tomcat JDK to JDK 1.5.0_11 for EDST:
    1. Go to the Microsoft web site and verify if you have the time zone update installed.
    2. Download JDK 1.5.0_11.
    3. Install JDK 1.5.0_11 on your server.
    4. Modify the JAVA_HOME here:
    C:\Program Files\Business Objects\Tomcat\bin\setenv.bat
    as follows:
    set JAVA_HOME=C: \Program Files\Java\jdk1.5.0_11\jre
    5. In Java Virtual Machine and Java Class Path, modify JAVA properties for Tomcat (Start > Programs > Tomcat > Tomcat Configuration > Java). Replace the default Business Objects JDK 1.4 directory:
    C:\Program Files\Business Objects\j2sdk1.4.2_08
    with JDK 1.5.0_11:
    C:\Program Files\Java\jdk1.5.0_11
    6. Go to Windows Time Zone (double-click Windows time) then on the Time Zone tab, select the automatically adjust clock for day light saving changes check box against EST time zone.
    7. Restart Tomcat and the Central Management Server (CMS) and, if possible, reboot your computer.
    Hope this works anyone facing this problem on Windows servers.
    Not sure what the solution is for BO instances running on Solaris. We have business objects/Weblogic running on a solaris server. I tried just changing java home to jdk1.5.0_12 but this didn't work.

  • SQL Server Import Export Wizard fails while trying to retrieve the data from FastObjects Database

    When trying to import data from FastObjects database to SQL Server 2008 R2 using import/ export wizard we get the following error message :
    "Column information for the source and the destination data could not be retrieved, or the data types of source columns were not mapped correctly to those available on the destination provider."
    Clicked on View button, the source data is retrieved correctly.
    Clicked on Edit Mapping button, the Import Export Wizard failed with the below error message:
    ===================================
    Column information for the source and destination data could not be retrieved.
    "Test" -> [dbo].[Test]:
    - Cannot find column -1.
    (SQL Server Import and Export Wizard)
    ===================================
    Cannot find column -1. (System.Data) 
    at System.Data.DataColumnCollection.get_Item(Int32 index) at System.Data.DataRow.get_Item(Int32 columnIndex) at Microsoft.DataTransformationServices.Controls.ProviderInfos.MetadataLoader.LoadColumnsFromTable(IDbConnection myConnection, String[] strRestrictions)
    at Microsoft.SqlServer.Dts.DtsWizard.OLEDBHelpers.LoadColumnsFromTable(MetadataLoader metadataLoader, IDbConnection myConnection, String[] strRestrictions, DataSourceInfo dsi)at Microsoft.SqlServer.Dts.DtsWizard.TransformInfo.PopulateDbSourceColumnInfoFromDB(IDbConnection
    mySourceConnection) at Microsoft.SqlServer.Dts.DtsWizard.TransformInfo.PopulateDbSourceColumnInfo(IDbConnection mySourceConnection, ColumnInfoCollection& sourceColInfos)

    Hi Chennie,
    Thank you for the post.
    Does the issue persists after you use the "Write a query to specify the data to transfer" option instead of “Copy data from one or more tables or views” option? If so, the issue may occur due to incorrect data type matching between the FastObjects database
    data types and SSIS data types. In this condition, I don’t think it is necessary to upgrade the SQL Server version. Since you can open the Column Mappings dialog box, please try to modify the data type mapping manually.
    In addition, the issue seems to be the same as the issue described in the following blog:
    http://blogs.msdn.com/b/dataaccesstechnologies/archive/2010/09/09/sql-server-import-export-wizard-fails-while-trying-to-retrieve-the-data-from-pervasive-database.aspx 
    Regards,
    Mike Yin
    TechNet Community Support

  • TS1424 While trying to make a purchase from app store "contact iTunes support" flagged up and download ceased. What do I do now.

    While trying to purchase an app from the app store "contact iTunes support to complete transaction" flagged up. What can I do to correct problem?

    You will need to do what it says, contact iTunes support. Click the Support tab above, then the Get Started link in the Contact Apple Support area and you'll be guided.
    Regards.

  • Error code 50 while trying to download a font from adobe creative cloud

    I received a error code 50 while trying to download a font from adobe creative cloud saying that the "Creative Cloud desktop failed to update" and that I should contact customer service. How should I resolve this issue?

    Read here.
    http://support.apple.com/kb/TS1279

Maybe you are looking for

  • Open sales orders are not coming in credit exposure

    Hi, We have implemented FSCM credit management, when i am running credit exposure, i am able to see open items from FI (200) but not for open orders (100) & Delivery (400), we have created some sales orders, which have exceeded the credit limit, syst

  • Sync between Outlook Express and BBold

    The desktop manager stop the syncro. It reads approx 383 adress from the adress book (outlook express), stop and close the software. Do there is a solution ? best regards richard

  • Problem with public folder initialization on exchange load generator 2010

    hi, we need to make some stress charge for a migration between 2010 and 2013. Before that we need to populate our exchange 2010 lab with full mailbox and public folders. So we tried Exchange load generator 2010 for this task ( initialization only). 

  • When will Oracle 10g and 11g PSU for July (quarter) be available?

    I've searched Oracle site and result shows Critical Patch Updates (CPU) page only that has release dates: Critical Patch Updates and Security Alerts. Are the dates applicable to PSU as well?

  • Formula limits in numbers

    Hi, I have just uploaded an excel spreadsheet to iCloud and then downloaded to my iPad. When I attempt to open on iPad I get an error message that says "Spreadsheet cannot be imported....to many formula in spreadsheet to be imported..." What are the