NameNotFoundException when looking up JNDI

Hi,
I'm getting the same naming exception you can see @ http://www.coderanch.com/t/51509/Struts/Calling-EJB-action-class when looking up an ejb object.
How should I lookup the object?
Thank you in advance,
    Michael Jones

Hello
Please try the following.
Do annotate the EJB with the corresponding name in order to identify it later on:
@Stateful(name = "MyLostEJB")
public MyLostEJB implements LostEJBRemoteHome, LostEJBLocalHome
      public String sayHello(){ return "Hello"; }
And then:
LostEJBRemoteHome myEjb= null;
myEjb= (LostEJBRemoteHome ) new InitialContext().lookup("MyLostEJB/remote");
    myEjb.sayHello();
I hope it helps
Alejandro

Similar Messages

  • NameNotFoundException when looking up datasource jndi from standalone clien

    Hi,
    I'm trying to lookup datasource jndi from standalone client, but always get exceptions.
    I configured an oralce datasource with jndi name "oracleDataSource". When looking it up in servlet, I can get connection.
    In order to test it from standalone client, I created following code:
    public class DataSourceTest
    * Attempt to authenticate the user.
    public static void main(String[] args)
    String datasource = null;
    if (args.length == 1 ) {
    datasource = args[0];
    System.out.println("datasource = "+datasource);
    if(datasource == null)
    datasource = "oracleDataSource";
    try{
    Connection conn = null;
    Properties env = new Properties();
    env.put("java.naming.factory.initial","com.sun.jndi.cosnaming.CNCtxFactory");
    env.put("java.naming.provider.url", "iiop://localhost:3700");
    Context initial = new InitialContext(env);
    if(datasource != null){
    DataSource ds = (DataSource)initial.lookup(datasource);
    conn = ds.getConnection();
    if(conn != null){
    System.out.println("datasource is gotten.");
    conn.close();
    else
    System.out.println("datasource is error.");
    System.exit(0);
    } catch (Exception ex) {
    System.err.println("Caught an unexpected exception!");
    ex.printStackTrace();
    When running, I get following exception:
    [java] datasource = oracleDataSource
    [java] Caught an unexpected exception!
    [java] javax.naming.NameNotFoundException. Root exception is org.omg.CosNaming.NamingContextPackage.NotFound
    [java] at org.omg.CosNaming.NamingContextPackage.NotFoundHelper.read(NotFoundHelper.java:34)
    [java] at org.omg.CosNaming._NamingContextExtStub.resolve(_NamingContextExtStub.java:402)
    [java] at com.sun.jndi.cosnaming.CNCtx.callResolve(CNCtx.java:368)
    [java] at com.sun.jndi.cosnaming.CNCtx.lookup(CNCtx.java:417)
    [java] at com.sun.jndi.cosnaming.CNCtx.lookup(CNCtx.java:395)
    [java] at javax.naming.InitialContext.lookup(InitialContext.java:350)
    [java] at com.tbcn.ceap.test.cilent.DataSourceTest.main(DataSourceTest.java:42)
    I also tried many other methods but always got exceptions. What's wrong with it? How can I lookup the datasource jndi from standalone client?
    Thanks in advance!

    Thank Tuan!
    I tried. When running, the server will read security.properties and ejb.properties. But I didn't use ejb and I didn't know how to configure ejb.properties, so I let ejb.properties empty. The security.properties is as following:
    client.sendpassword=true
    server.trustedhosts=*
    interop.ssl.required=false
    interop.authRequired.enabled=false
    interop.nameservice.ssl.required=false
    The result is:
    [java] javax.naming.CommunicationException: Can't find SerialContextProvider
    [java] at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:63)
    [java] at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:120)
    [java] at javax.naming.InitialContext.lookup(InitialContext.java:347)
    [java] at com.tbcn.ceap.test.cilent.DataSourceTest.main(DataSourceTest.java:42)
    Also, I tried it with ACC. In sun sample ConverterClient.java under rmi-iiop/simple, I added following code under with ACC and without ACC. With ACC, I can get connection. But without ACC, I can't get it.
    try{
              DataSource ds = (DataSource)initial.lookup("oracleDataSource");
              Connection conn = ds.getConnection();
              if(conn != null){
              System.out.println("datasource oracleDataSource gotten.");
              conn.close();
              else
              System.out.println("oracleDataSource is error.");
    Does it means that we must lookup datasource jndi with ACC?

  • NameNotFoundException when looking up the Recource Adapter

              Hi,
              I am facing a problem when looking-up of the Resource Adapter from the Ejb.
              I am using a session bean to lookup the Resource adapter. I have no problem deploying
              the resource adapter and the ejb. But I am getting an exception when I run the
              client.
              The <resource-ref> tag in ejb-jar.xml is as follows.
              <enterprise-beans>
              <session>
              <ejb-name>connect</ejb-name>
              <home>connect.InsertHome</home>
              <remote>connect.Insert</remote>
              <ejb-class>connect.InsertBean</ejb-class>
              <session-type>Stateless</session-type>
              <transaction-type>Container</transaction-type>
              <resource-ref>
              <res-ref-name>eis/CciBlackBoxNoTx</res-ref-name>
              <res-type>com.sun.connector.cciblackbox.CciConnectionFactory</res-type>
              <res-auth>Container</res-auth>
              </resource-ref>
              </session>
              </enterprise-beans>
              I changed the res-ref-type from javax.sql.Datasource to the connection factory
              as I am using the CCI to connect to the database.
              My weblogic-ejb-jar file contains the following description
              <reference-descriptor>
              <resource-description>
              <res-ref-name>eis/CciBlackBoxNoTx</res-ref-name>
              <jndi-name>eis/CciBlackBoxNoTxConnectorJNDINAME</jndi-name>
              </resource-description>
              </reference-descriptor>
              <jndi-name>Insert</jndi-name>
              When I run my client I am getting the follwing Exception.
              javax.naming.NameNotFoundException: Unable to resolve 'app/ejb/connect.jar#conn
              ect/comp/env/user' Resolved: 'app/ejb/connect.jar#connect/comp/env' Unresolved:
              'user' ; remaining name 'user'
              at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(Basi
              cNamingNode.java:858)
              at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.ja
              va:223)
              at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:1
              87)
              at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:1
              95)
              at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:1
              95)
              at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:337)
              at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:332)
              at weblogic.jndi.factories.java.ReadOnlyContextWrapper.lookup(ReadOnlyC
              ontextWrapper.java:36)
              at weblogic.jndi.internal.AbstractURLContext.lookup(AbstractURLContext.
              java:124)
              at javax.naming.InitialContext.lookup(InitialContext.java:345)
              at connect.InsertBean.setSessionContext(InsertBean.java:64)
              at connect.InsertBean_fqerje_Impl.setSessionContext(InsertBean_fqerje_I
              mpl.java:93)
              at weblogic.ejb20.manager.StatelessManager.createBean(StatelessManager.
              java:273)
              at weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSession
              Pool.java:148)
              at weblogic.ejb20.pool.StatelessSessionPool.getBean(StatelessSessionPoo
              l.java:101)
              at weblogic.ejb20.manager.StatelessManager.preInvoke(StatelessManager.j
              ava:148)
              at weblogic.ejb20.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:1
              27)
              at weblogic.ejb20.internal.StatelessEJBObject.preInvoke(StatelessEJBObj
              ect.java:61)
              at connect.InsertBean_fqerje_EOImpl.insertName(InsertBean_fqerje_EOImpl
              .java:28)
              at connect.InsertBean_fqerje_EOImpl_WLSkel.invoke(Unknown Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:362)
              at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServer
              Ref.java:114)
              at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:313)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServi
              ceManager.java:785)
              at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.ja
              va:308)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteReques
              t.java:30)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
              where connect.jar is the name of my ejb.
              This is the session bean code I am using to looup the resource adpater.
              user = (String) initCtx.lookup("java:comp/env/user");
              password = (String) initCtx.lookup("java:comp/env/password");
              cxf =(ConnectionFactory)initCtx.lookup("java:comp/env/eis/CciBlackBoxNoTx");
              I am using the weblogic 7.0 as the application server and Sun's CciblackboxNoTx
              as the resource adpter.The weblogic-ra.xml file for the resource adpter contains
              the following connection factory and jndi name.
              <connection-factory-name>LogicalNameOfCciBlackBoxNoTx</connection-factory-name>
              <jndi-name>eis/CciBlackBoxNoTxConnectorJNDINAME</jndi-name>
              Can any one please let me know where I am going wrong. Any solution will be of
              great help.
              Thanks,
              Ramya.
              

    Hi Ramya,
              Where you have defined user and password, is you have included those in the
              bean descriptor? Or rar descriptrs?. Server unable to findout the user and
              password.
              The following tags could not able to undestand what for?
              > </reference-descriptor>
              > <jndi-name>Insert</jndi-name>
              >
              Thanks
              Kumar
              "Ramya" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Hi,
              > I am facing a problem when looking-up of the Resource Adapter from the
              Ejb.
              > I am using a session bean to lookup the Resource adapter. I have no
              problem deploying
              > the resource adapter and the ejb. But I am getting an exception when I run
              the
              > client.
              >
              > The <resource-ref> tag in ejb-jar.xml is as follows.
              >
              > <enterprise-beans>
              > <session>
              > <ejb-name>connect</ejb-name>
              > <home>connect.InsertHome</home>
              > <remote>connect.Insert</remote>
              > <ejb-class>connect.InsertBean</ejb-class>
              > <session-type>Stateless</session-type>
              > <transaction-type>Container</transaction-type>
              > <resource-ref>
              > <res-ref-name>eis/CciBlackBoxNoTx</res-ref-name>
              >
              <res-type>com.sun.connector.cciblackbox.CciConnectionFactory</res-type>
              > <res-auth>Container</res-auth>
              > </resource-ref>
              > </session>
              > </enterprise-beans>
              >
              > I changed the res-ref-type from javax.sql.Datasource to the connection
              factory
              > as I am using the CCI to connect to the database.
              >
              > My weblogic-ejb-jar file contains the following description
              >
              > <reference-descriptor>
              >
              > <resource-description>
              > <res-ref-name>eis/CciBlackBoxNoTx</res-ref-name>
              > <jndi-name>eis/CciBlackBoxNoTxConnectorJNDINAME</jndi-name>
              > </resource-description>
              >
              > </reference-descriptor>
              > <jndi-name>Insert</jndi-name>
              >
              > When I run my client I am getting the follwing Exception.
              >
              >
              > javax.naming.NameNotFoundException: Unable to resolve
              'app/ejb/connect.jar#conn
              > ect/comp/env/user' Resolved: 'app/ejb/connect.jar#connect/comp/env'
              Unresolved:
              > 'user' ; remaining name 'user'
              > at
              weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(Basi
              > cNamingNode.java:858)
              > at
              weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.ja
              > va:223)
              > at
              weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:1
              > 87)
              > at
              weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:1
              > 95)
              > at
              weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:1
              > 95)
              > at
              weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:337)
              > at
              weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:332)
              > at
              weblogic.jndi.factories.java.ReadOnlyContextWrapper.lookup(ReadOnlyC
              > ontextWrapper.java:36)
              > at
              weblogic.jndi.internal.AbstractURLContext.lookup(AbstractURLContext.
              > java:124)
              > at javax.naming.InitialContext.lookup(InitialContext.java:345)
              > at connect.InsertBean.setSessionContext(InsertBean.java:64)
              > at
              connect.InsertBean_fqerje_Impl.setSessionContext(InsertBean_fqerje_I
              > mpl.java:93)
              > at
              weblogic.ejb20.manager.StatelessManager.createBean(StatelessManager.
              > java:273)
              > at
              weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSession
              > Pool.java:148)
              > at
              weblogic.ejb20.pool.StatelessSessionPool.getBean(StatelessSessionPoo
              > l.java:101)
              > at
              weblogic.ejb20.manager.StatelessManager.preInvoke(StatelessManager.j
              > ava:148)
              > at
              weblogic.ejb20.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:1
              > 27)
              > at
              weblogic.ejb20.internal.StatelessEJBObject.preInvoke(StatelessEJBObj
              > ect.java:61)
              > at
              connect.InsertBean_fqerje_EOImpl.insertName(InsertBean_fqerje_EOImpl
              > java:28)
              > at connect.InsertBean_fqerje_EOImpl_WLSkel.invoke(Unknown Source)
              > at
              weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:362)
              >
              > at
              weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServer
              > Ref.java:114)
              > at
              weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:313)
              > at
              weblogic.security.service.SecurityServiceManager.runAs(SecurityServi
              > ceManager.java:785)
              > at
              weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.ja
              > va:308)
              > at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteReques
              > t.java:30)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
              >
              > where connect.jar is the name of my ejb.
              >
              > This is the session bean code I am using to looup the resource adpater.
              >
              > user = (String) initCtx.lookup("java:comp/env/user");
              > password = (String) initCtx.lookup("java:comp/env/password");
              > cxf
              =(ConnectionFactory)initCtx.lookup("java:comp/env/eis/CciBlackBoxNoTx");
              >
              >
              >
              > I am using the weblogic 7.0 as the application server and Sun's
              CciblackboxNoTx
              > as the resource adpter.The weblogic-ra.xml file for the resource adpter
              contains
              > the following connection factory and jndi name.
              >
              >
              <connection-factory-name>LogicalNameOfCciBlackBoxNoTx</connection-factory-na
              me>
              > <jndi-name>eis/CciBlackBoxNoTxConnectorJNDINAME</jndi-name>
              >
              >
              > Can any one please let me know where I am going wrong. Any solution will
              be of
              > great help.
              >
              > Thanks,
              > Ramya.
              >
              

  • NameNotFoundException when looking up DataSource in new Thread

    I am trying to run a db procedure in a new Thread within a J2EE app. The actual code to run the procedure is in a class that is called from a JSP page, a controller if you will (not a servlet). When I start the new Thread and try to get a connection from my DataSource, I get a NameNotFoundException. We are using iPlanet and Oracle. Is it a bad idea to start a new Thread from within iPlanet? Is there another way to run the db procedure and not make the user wait for it to finish?
    Any help/suggestions would be greatly appreciated.

    Okay, here is my Runnable class.
    <code>
    public class ExtractRunner implements Runnable, Serializable
    Extract m_extract;
    String m_propfile;
    String m_modName;
    LogManager m_log;
    public void run()
    DBConnectionManager conMan = null;
    try
    conMan = new DBConnectionManager(m_log.getElectronicServicesLog(),
    m_propfile, m_modName, "");
    int result = m_extract.doExtract(conMan, m_log);
    catch (Exception e)
    e.printStackTrace();
    finally
    m_extract = null;
    if (conMan != null)
    conMan.release();
    conMan = null;
    m_log = null;
    ExtractRunner(Extract extract, String propfile, String modName, LogManager log)
    m_extract = extract;
    m_propfile = propfile;
    m_modName = modName;
    m_log = log;
    </code>
    Here is the code that starts the thread. It is in another class that is called from the JSP.
    <code>
    public int doExtract(Extract extract)
    ExtractRunner er = new ExtractRunner(extract, PROP_FILE, MOD_CODE, m_log);
    Thread t = new Thread(er);
    t.setName("ExtractRunner");
    t.start();
    return 0;
    </code>
    And here is the code that calls the db procedure. It is in the Extract class.
    <code>
    public int doExtract(DBConnectionManager dbConnMgr, LogManager log)
    DBProcedureStatement dbStmnt = null;
    DBQuery dbQuery = null;
    Vector rs = null;
    int sqlResultCode = 0;
    dbStmnt = new DBProcedureStatement(this.getExtractProcedure());
    dbStmnt.addParameter(this.getParameters());
    try
    dbQuery = new DBQuery(dbConnMgr);
    long start = System.currentTimeMillis();
    log.logDebug("ExtractRunner::run()", "debug",
    "Starting extract at " + start);
    rs = dbQuery.doProcedure(dbStmnt);
    long elapsed = System.currentTimeMillis() - start;
    log.logDebug("Extract::doExtract()", "debug",
    "Done with extract." +
    " Elapsed time(ms): " + elapsed);
    if (rs != null && !rs.isEmpty())
    sqlResultCode = ((BigDecimal)rs.elementAt(0)).intValue();
    log.logDebug("Extract::doExtract()", "debug",
    "Result = " + sqlResultCode);
    //System.out.println("REsult code: " + sqlResultCode);
    else
    sqlResultCode = GEN_ERROR; //Procedure error
    sqlResultCode = 0; // The extract is no longer returning a result code
    // so if there's no Exception return SUCCESS
    catch (Exception e)
    log.logError("Extract::doExtract", "FDE_LOGGING",
    "Error doing extract. Exception: " + e);
    e.printStackTrace();
    sqlResultCode = GEN_ERROR;
    finally
    DBUtil.releaseResults(rs);
    //sql = null;
    rs = null;
    dbStmnt.finalize();
    dbStmnt = null;
    dbQuery = null;
    log.logDebug("Extract::doExtract", "FDE_LOGGING",
    "END: Results: sqlResultCode=" + sqlResultCode);
    return sqlResultCode;
    </code>

  • When looking at my "About This Mac" it says that I have 60gb of space left on my hard drive, but when I go into finder to find all of these files there is not 300gb worth in anything I search, even searching, "All files on the Mac". Help!?

    When looking at my "About This Mac" it says that I have 60gb of space left on my hard drive, but when I go into finder to find all of these files there is not 300gb worth in anything I search, even searching, "All files on the Mac". Help!?
    It says I have over 150 gigs of video on my hard drive. But I have gone through and deleted almost all of what shows up, still it says there is roughly the same amount on the hard drive. Where are these files? I want to delete them so I can have my hard drive clear.
    Thanks for your help guys!

    Quote from the article.
    Time Machine in OS X Lion includes a new feature called "local snapshots" that keeps copies of files you create, modify or delete on your internal disk. Local snapshots compliment regular Time Machine backups (that are stored on your external disk or Time Capsule) giving you a "safety net" for times when you might be away from your external backup disk or Time Capsule and accidentally delete a file.
    So what makes a notebook any different then a desktop, other then with a desktop you might have your tm backup drive connected all the time.
    The object here is to not indiscriminately delete files you need or want to keep. I personally have never deleted a file I wanted to keep.
    In essence a backup is for catastrophic failure of your system. So it can be restored once that failure has been fixed. Not because you go in willy nilly and start deleting files.

  • PL/SQL: ORA-04052: error occurred when looking up remote object.

    Hi All,
    I'm getting the following error message while executing a PL/SQL Block.
    PL/SQL: ORA-04052: error occurred when looking up remote object UPLDUSER.filestatushistory@FTS
    ORA-00604: error occurred at recursive SQL level 1
    ORA-03106: fatal two-task communication protocol error
    ORA-02063: preceding line from FTSStatement
    declare
    v_coun number;
    begin
    select count(*) into v_coun
    from updluser.filestatushistory@fts;
    end;Back ground of the situation as follows,
    My DataBase version 10.2.0.3 DB Name :DB1
    Table Owner : UPLDUSER
    Table Name : FILESTATUSHISTORY
    I have a report user on the same database and I have grant all on the above table to report user
    Report User : RPT_FTS
    SQL> GRANT ALL ON FILESTATUSHISTORY_V TO RPT_FTS;Now Please find the below database details where I'm getting subjected error.
    Database version : 9.2.0.8
    DB Name : DB2
    User Name : RPT_REPORTS
    I Have create a dblink from RPT_REPORTS to RPT_FTS on DB1 and the dblink works fine. But getting the above error while running it.
    but When I do the same other 10.2.0.3 db , the above PL/SQL block works fine without any problem.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Now the strange about this is that I have Created a new table on DB1 db like below;
    SQL> CREATE TABLE UPLDUSER.ABC AS SELECT * FROM FILESTATUSHISTORY;and retry my code on DB2 (9.2.0.8) after changing the table to ABC and it worked. Now I don't know whats wrong with a original table(FILESTATUSHISTORY).
    To over come the problem and a work-a-round method I create a view on the DB1 (RPT_FTS) like the below
    SQL> CREATE VIEW FILESTATUSHISTORY AS SELECT * FROM UPLDUSER.FILESTATUSHISTORY;and was able to run the PL/SQL block Remotely.
    Just wants To know what whould have been the cause for this .
    Cheers
    Kanchana

    Hi Kanchana,
    Perhaps following link of google search has answer to your query
    ORA-04052. The search result contains some useful articles whose URLs I shan't post in the forums.
    HTH!
    *009*

  • When I try to open a Pages document from iCloud, created on my iPad, I get message stating I need a newer version of Pages.  When I go to app store all I get is "installed" when looking at pages app. my Macbook pro is up to date with all updates.

    When I try to open a Pages document from iCloud, created on my iPad, I get message stating I need a newer version of Pages.  When I go to app store all I get is "installed" when looking at pages app. my Macbook pro is up to date with all updates. Any ideas?

    You have 2 versions of Pages on your Mac.
    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5/5.01 can not open Pages 5.1 files and you will get the warning that you need a newer version.
    Pages 5.1 sometimes can not open its own files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has not only managed to confuse all its users, but also itself.
    Note: Apple has removed over 100 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • Is there a way for my daughter or her friends to block their numbers from showing up on activities page. At first i could see them, as of yesterday i can no longer see the numbers in the activities page. But i do see that she has texted them when looking

    Is there a way for my daughter or her friends to block their numbers from showing up on activities page. At first i could see them, as of yesterday i can no longer see the numbers in the activities page. But i do see that she has texted them when looking at her phone.

    First of all, there is no need to put the entire text of your post into the title of your thread.
    Next, does your daughter have an iPhone? Do her friends have iPhones? If the answer to both questions is "yes", then it is possible she is not texting them, but using iMessage to communicate with them. iMessages will not show up in the texting traffic on a line as they are not texts, but messages sent thru Apple's servers.
    For all "texts" to show up in the texting activity of an iPhone, you must disable iMessage on the device. Any messages sent as iMessages(blue bubbles around the text) on an iPhone will not show up in any texting activity.

  • ORA-04052: error occurred when looking up remote obj in mapping execution

    Hi,
    While executing an OWB mapping, I am getting the following error:
    ============
    Starting Execution UII_D_MAP_SPC_INSTALLATION_SIT
    Starting Task UII_D_MAP_SPC_INSTALLATION_SIT
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02019: connection description for remote database not found
    ORA-02063: preceding 3 lines from BIP2S@BIPDRACONN
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 73
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 1672
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 2353
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 6838
    ORA-06512: at line 1
    Completing Task UII_D_MAP_SPC_INSTALLATION_SIT
    Completing Execution UII_D_MAP_SPC_INSTALLATION_SIT
    ============
    Actually, here UII_ODS_OWNER itself is the target schema and <<UIIVS.DEVENV1.BT.CO.UK>> is the database in which this schema exists. And the mapping "UII_D_MAP_SPC_INSTALLATION_SIT" is being executed in the same target schema UII_ODS_OWNER.
    I am not sure why this above error is coming because such a dblink 'UIIVS.DEVENV1.BT.CO.UK' does not exist in the OWB generated package code. And the 2nd dblink 'BIP2S@BIPDRACONN' does not exist in the code, intead it exists as "BIP2S.DEVENV1.BT.CO.UK@BIPDRACONN" in the package code which is correct (as per OWB configuration & database).
    Same error also comes when I try to execute the same mapping from the OWB DEPLOYMENT MANAGER.
    Thanks & Regards,
    lenin

    Good morning Lenin,
    Have you checked the implementation of the connectors and are your locations well registered?
    Has a similar setup ever worked well?
    Can you access the source table using SQL (e.g. with SQL*Plus or TOAD)?
    Regards, Patrick

  • I set my iPhoto to save photos to a non-default location.  Now I can't find my iPhoto albums in iTunes, even when looking in my non-default location in the "Sync Photos from" menu.  How do I fix this?

    I set my iPhoto to save photos to a non-default location.  Now I can't find my iPhoto albums in iTunes, even when looking in my non-default location in the "Sync Photos from" menu.  How do I fix this?

    When you launch iPhoto with the option key depressed you'll get this window:
    Click to view full size
    All libraries on your hard drive (and on external drives) will be listed and the currently used library will be listed as (default).
    OT

  • When connecting to my wifi I get ! When looking for networks

    When connecting to my wifi I get ! When looking for networks
    I

    When you see an exclamation point in the Wi-Fi menu, from the menu bar, select
     ▹ System Preferences... ▹ Network
    Click the Assist me button and select Assistant. Follow the prompts. You may get a warning that Wi-Fi is not available, that you're too far from the base station, or that you're using the wrong password.
    Assuming that you've ruled out those possibilities, click the lock icon in the lower left corner of the preference pane and authenticate, if necessary. From the Location menu at the top of the window, select Edit Locations. A sheet will drop down. Click the plus-sign button to create a new location. Give it any name you want. In the new location, set up the Wi-Fi service with the same settings you used before. Click Apply and test.

  • When looking at videos on Facebook I get an error that says something went wrong try again

    When looking at videos on Facebook I get an error that says "something went wrong try again"

    Are you running modified software on your phone?  This error seems to be common if the firmware has been modified and you're trying to restore the phone again. 

  • [svn:fx-trunk] 7073: When looking around a tab group to determine which object to focus on, not only should the object be selected, but it should also be enabled and visible.

    Revision: 7073
    Author:   [email protected]
    Date:     2009-05-19 08:27:59 -0700 (Tue, 19 May 2009)
    Log Message:
    When looking around a tab group to determine which object to focus on, not only should the object be selected, but it should also be enabled and visible.
    QA Notes:
    Doc Notes:
    Bugs: SDK-19717
    Reviewers: Alex
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19717
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as

    Revision: 7073
    Author:   [email protected]
    Date:     2009-05-19 08:27:59 -0700 (Tue, 19 May 2009)
    Log Message:
    When looking around a tab group to determine which object to focus on, not only should the object be selected, but it should also be enabled and visible.
    QA Notes:
    Doc Notes:
    Bugs: SDK-19717
    Reviewers: Alex
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19717
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as

  • Problem with long response time when looking at queues!

    Hello,
    I have a problem with extream long response times, when looking at the queues in Message mapping test tool . Does anyone know how to improve performance.
    The source message I use is about 200 segments (idoc)
    The mapping is done with the graphical tool, with 10-15 field contain standard sap functions for mapping.
    Target structure is EDIFACT (xml)
    Brgds
    Karl Bergströ

    Hi Rod.
    Go to Apple Menu > System Preferences > Network > Show: Network Port Configurations. Make sure that the configuration used to connect to Internet is at the top of the list. Also, disable any communications/networking configuration enabled, but not in use.
    If the above doesn't fix the problem, open Keychain Access > Preferences, and disable Search .Mac For Certificates if it's enabled. Take a look at the following articles for an explanation of why this could fix the problem:
    http://www.hawkwings.net/2006/07/18/apple-mail-phones-home-too/
    http://www.macgeekery.com/tips/mailapp_doesnt_phone_homeeither

  • Having trouble seeing all pix, when looking for something on ebay.

    When looking for an item on ebay, some of the pictures are blank. 
    when I open an item with a blank pix, the picture is there.

    What model laptop do you have?
    Have you tried using a different USB port?
    If you have a USB flash drive or external hard drive, does that work when connected to the same port?
    - Peter

Maybe you are looking for

  • Aperture RAW processing too dark?

    I recently imported a set of pictures of my daughter into my Aperture library.  Everything went smoothly and looked great with the previews looking like I expected.  I even went through each picture one by one and flagged the ones I wanted to edit. 

  • Calculating the sum based on condition

    Hello Everybody, I am currently working on a report, where i have to calculate sum on transaction amount for all account numbers. Below is the example of data. masteraccount        accountno      transaction amount 1001                        001    

  • Photoshop CC 2014 pattern overlay tooltip not showing

    It appears the tooltip in pattern overlay dialog box is broken. It makes it very hard to create background images when you can't see the image dimensions. Anyone have a fix for this?

  • Where is 2504 how to?

    I have a 2504 mini docking station, but cannot for the life of me find any how to information on it.  The users manual points you to the ThinkVantage key on your laptop (mine is a T400), and tells you to look in the "Help" section.  Problem is when y

  • I am trying to find the "noise gate" .Where is it?

    I went to Track Info and Effects. There is no "noise filter". The "double filter" gives and echo and doesn't act as a noise filter. Can anybody lead me to the Noise FIlter?