Can you guys help me with javax.naming.NameNotFoundException:

Using Oracle App Server 10.1.2, OC4J managed by OPMN
Which OC4J I am using
oracle@SUSE-E:~/OracleAS/j2ee/home> java -jar oc4j.jar -version
Oracle Application Server Containers for J2EE 10g (10.1.2.0.0) (build 041222.1873)
oracle@SUSE-E:~/OracleAS/j2ee/home>
/OracleAS/j2ee/home/config/server.xml
<application name="xPression" path="../applications/xPression.ear" auto-start="true" />
OracleAS/opmn/conf/opmn.xml
<opmn xmlns="http://www.oracle.com/ias-instance">
<notification-server>
<port local="6100" remote="6200" request="6003"/>
<log-file path="$ORACLE_HOME/opmn/logs/ons.log" level="4" rotation-size="1500000"/>
<ssl enabled="true" wallet-file="$ORACLE_HOME/opmn/conf/ssl.wlt/default"/>
</notification-server>
<ias-component id="OC4J">
<process-type id="home" module-id="OC4J" status="enabled">
</ias-component>
</opmn>
Parameters that I used to construct the InitialContext in my Java Code.
InitialContextFactory=com.evermind.server.rmi.RMIInitialContextFactory
ProviderURL=opmn:ormi://10.10.5.41:6003:home/xPression
SECURITY_PRINCIPAL=<user>
SECURITY_CREDENTIALS=<password>
Refered:
http://radio.weblogs.com/0135826/2005/10/06.html
Logfile extract: OracleAS/opmn/logs/OC4J~home~default_island~1
53 06/10/19 11:38:04 EL providerUrl: opmn:ormi://10.10.5.41:6003:home/xPression
54 06/10/19 11:38:04 EL namingFactory: com.evermind.server.rmi.RMIInitialContextFactory
56 06/10/19 11:38:04 EL Creating the Initial Context
57 06/10/19 11:38:04 EL jndi Name: com/dsc/uniarch/cr/ejb/CRContentSF
58 06/10/19 11:38:04 EL Inside Class.forName
59 06/10/19 11:38:04 EL Class.forName succeeded
60 06/10/19 11:38:04 PROVIDER_URL =opmn:ormi://10.10.5.41:6003:home/xPression
61 06/10/19 11:38:04 INITIAL_CONTEXT_FACTORY =com.evermind.server.rmi.RMIInitialContextFactory
62 06/10/19 11:38:04 SECURITY_PRINCIPAL =user
63 06/10/19 11:38:04 SECURITY_CREDENTIALS =password
64 06/10/19 11:38:04 JNDI NAME =com/dsc/uniarch/cr/ejb/CRContentSF
65 06/10/19 11:38:04 EL Exception Occurred while lookup
66 06/10/19 11:38:04 EL Exception occurred at PortableRemoteObject.narrow
67 06/10/19 11:38:04 javax.naming.NameNotFoundException: com/dsc/uniarch/cr/ejb/CRContentSF not found
68 06/10/19 11:38:04 at com.evermind.server.rmi.RMIContext.lookup(RMIContext.java:164)
69 06/10/19 11:38:04 at javax.naming.InitialContext.lookup(InitialContext.java:347)
70 06/10/19 11:38:04 at com.dsc.uniarch.com2ejb.COM2EJBBridge._processInitializeCommand(COM2EJBBridge.java:521)
71 06/10/19 11:38:04 at com.dsc.uniarch.com2ejb.COM2EJBBridge.processInitializeCommand(COM2EJBBridge.java:656)
72 06/10/19 11:38:04 at com.dsc.uniarch.op.cmpcalwrapper.csetCompose(Native Method)
73 06/10/19 11:38:04 at com.dsc.uniarch.op.cmpcalwrapper.csetOutput2PDL(cmpcalwrapper.java:96)
74 06/10/19 11:38:04 at com.dsc.uniarch.op.OutputProfileController.processDocument(OutputProfileController.java:
orion-ejb-jar.xml
<session-deployment name="CRContentSF"
location="com/dsc/uniarch/cr/ejb/CRContentSF">
</session-deployment>
ejb-jar.xml
<session id="CRContentSF">
<ejb-name>CRContentSF</ejb-name>
<home>com.dsc.uniarch.cr.ejb.CRContentSFHome</home>
<remote>com.dsc.uniarch.cr.ejb.CRContentSF</remote>
<ejb-class>com.dsc.uniarch.cr.ejb.CRContentSFBean</ejb-class>
<session-type>Stateful</session-type>
<transaction-type>Container</transaction-type>
</session>
THANKS FOR YOUR TIME AND HELP

Some more info on from where I am looking up.
It is a java class in the EAR and OC4J container same as the EJB (Home) class.
Just highlighting the exception.
Logfile extract: OracleAS/opmn/logs/OC4J~home~default_island~1
53 06/10/19 11:38:04 EL providerUrl: opmn:ormi://10.10.5.41:6003:home/xPression
54 06/10/19 11:38:04 EL namingFactory: com.evermind.server.rmi.RMIInitialContextFactory
56 06/10/19 11:38:04 EL Creating the Initial Context
57 06/10/19 11:38:04 EL jndi Name: com/dsc/uniarch/cr/ejb/CRContentSF
58 06/10/19 11:38:04 EL Inside Class.forName
59 06/10/19 11:38:04 EL Class.forName succeeded
60 06/10/19 11:38:04 PROVIDER_URL =opmn:ormi://10.10.5.41:6003:home/xPression
61 06/10/19 11:38:04 INITIAL_CONTEXT_FACTORY =com.evermind.server.rmi.RMIInitialContextFactory
62 06/10/19 11:38:04 SECURITY_PRINCIPAL =user
63 06/10/19 11:38:04 SECURITY_CREDENTIALS =password
64 06/10/19 11:38:04 JNDI NAME =com/dsc/uniarch/cr/ejb/CRContentSF
65 06/10/19 11:38:04 EL Exception Occurred while lookup
66 06/10/19 11:38:04 EL Exception occurred at PortableRemoteObject.narrow
67 06/10/19 11:38:04 javax.naming.NameNotFoundException: com/dsc/uniarch/cr/ejb/CRContentSF not found
68 06/10/19 11:38:04 at com.evermind.server.rmi.RMIContext.lookup(RMIContext.java:164)
69 06/10/19 11:38:04 at javax.naming.InitialContext.lookup(InitialContext.java:347)
70 06/10/19 11:38:04 at com.dsc.uniarch.com2ejb.COM2EJBBridge._processInitializeCommand(COM2EJBBridge.java:521)
71 06/10/19 11:38:04 at com.dsc.uniarch.com2ejb.COM2EJBBridge.processInitializeCommand(COM2EJBBridge.java:656)
72 06/10/19 11:38:04 at com.dsc.uniarch.op.cmpcalwrapper.csetCompose(Native Method)
73 06/10/19 11:38:04 at com.dsc.uniarch.op.cmpcalwrapper.csetOutput2PDL(cmpcalwrapper.java:96)
74 06/10/19 11:38:04 at com.dsc.uniarch.op.OutputProfileController.processDocument(OutputProfileController.java:

Similar Messages

  • Can you guys help me with a size issue?

    I have problems with the size of the letter, when I put for example 3 pt it changes to 300.000 pt, and I don't know what to do. Plis HELP ME

    niza,
    You may try the list:
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save curent artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Hey guy can you please help me with this issue PLEASE!

    Hey Apple can you please help me with this issue, i have a iPhone 3gs and when i put my sim card into the iPhone it makes iphone 3gs shut down suddenly how do i fix that?
    iPhone version: 6.0.1
    service provider: Vodafone nz

    You could restarting your phone that sometimes fixes issues
    Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for phone to restart (no data will be lost).

  • Can you guys help me activate my iPhone?

    So, here i am, trying to activate my iPhone (finally!).
    Im open a new account with AT&T and i already select my plan and then appears something about my Apple ID, i put mine and then my date of birth. Ok, everything good. But then appears something about Billing Information, what kind of billing.. from my apple id or AT&T?
    Can you guys help me.. please .

    LeandroMP wrote:
    So, here i am, trying to activate my iPhone (finally!).
    Im open a new account with AT&T and i already select my plan and then appears something about my Apple ID, i put mine and then my date of birth. Ok, everything good. But then appears something about Billing Information, what kind of billing.. from my apple id or AT&T?
    Can you guys help me.. please .
    That would be what information you want AT7T to have since they are not privy to your iTunes billing. It can be the same credit card if you wanted it to, you would just need to put the details in.

  • HT1553 Hi, I'm stuck at step 9. I don't see my external harddrive when I want to save the DMG backup file. Can you please help me with this? I'm desperate to make this backup! Big thanx in advance!

    Hi, I'm stuck at step 9. I don't see my external harddrive when I want to save the DMG backup file. Can you please help me with this? I'm desperate to make this backup! Big thanx in advance!
    http://support.apple.com/kb/HT1553

    Repair permissions and restart your computer.  If this does not work, zap the pram.  You should now see your external hard drive. 

  • HT201318 I tried to downgrade my iCloud and when i did it never refunded me can you please help me with this thank you James

    I tried to downgrade my iCloud and when i did it never refunded me can you please help me with this thank you James
    <Personal Information Edited by Host>

    How did you try to downgrade
    (Don't post your telephone number in public places, unless you need more useless phone calls) I will ask for it to be removed.

  • Hi everyone, can you guy help me? I'm trying to update my iPhone to iOS 5 how would I do that?

    Hi everyone, can you guy help me? I'm trying to update my iPhone to iOS 5 how would I do that?

    sync your phone to itunes, then it should say update available.  I suggest doing a backup of your phone first prior to updating your phone.

  • Can you please help me with validation logic for Events in Table maintenance generator

    Can you please help me with validation logic for Events in Table maintenance generator,i.e if i enter record in 1st internal table then automatically 2nd internal table should be updated.

    Hi Glen Anthony,
        Thanks for replay,
         I used foreign key relationship between those 2 internal tables....
    I used event 05: When creating a new entry. I want to know the custom logic by which my 2nd Internal table gets automatically updated when i update my 1st Internal table
    Thanks Glen.

  • My ipod touch is stuck on the 4.2.1 software, its a 3rd gen as well i was just wondering why i can not get the lastest update can you please help me with this issue

    i have been having an issue with updating my ipod touch for some time now and i can not seem to get it to update to the lastest update. it is stuck on 4.2.1 software and i can not update it to 4.3 or any other ios software update. can you please help me to solve this issue.

    It sounds like you actually have a 2G iPod Touch which can only go as high as iOS 4.2.1.  If it's an 8 GB iPod Touch it's definitely a 2G iPod Touch as there was never such a thing as a 3G 8 GB iPod Touch. See this article to help verify what generation iPod Touch you have.
    Identifying iPod models
    B-rock

  • Hi Guys, can you please help me with Connection Pooling.

    I have:-
    Tomcat 5.0.27
    MySQL 4
    Apache 2.0.
    JSP web pages.
    I have been trying to get connection pooling working but i havent been successful yet. Please do help me make it happen.
    I have posted my server.xml and web.xml from /conf/. They are not edited. I have also included the pages that I am currently ussing to connect to the database.
    I need you to assist me with how I should edit the above.
    1.     SERVER.XML
    Where and how should I edit this file?
    2.     WEB.XML
    Where and how should I edit this file?
    3.     DATABASE_INFO.JSP
    <%
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    %>
    <%!
    public java.sql.Connection dataconnect() throws SQLException {
    Connection database_connector;
    database_connector = DriverManager.getConnection("jdbc:mysql://localhost/publications?user=hello&password=hello");
    return database_connector;
    %>
    <%!
    public java.sql.Connection adminconnect(javax.servlet.http.HttpSession session) throws SQLException {
    Connection database_connector;
    if (session.getAttribute("s_conn")!=null) {
    database_connector = (Connection) session.getAttribute("s_conn");
    if (database_connector.isClosed()) {
    database_connector = DriverManager.getConnection("jdbc:mysql://localhost/publications?user=hello&password=hello");
    } else {
    database_connector = DriverManager.getConnection("jdbc:mysql://localhost/publications?user=hello&password=hello");
    session.setAttribute("s_conn", database_connector);
    return database_connector;
    %>
    <%!
    public String filedir() {
    String directory = "C:/Tomcat/webapps/ROOT/publications/";
    return directory;
    %>
    etc
    Database Name : publications

    Hi,
    1- put your jdbc driver jar file in $CATALINA_HOME/common/lib (ex: C:\tomcat\common\lib )
    2- Next, modify the web application deployment descriptor (/WEB-INF/web.xml) to declare the JNDI name under which you will look up preconfigured data source
    take care of the ordering as below so resourc-ref tag is after taglib
    <resource-ref>
    <description>
    Resource reference to a factory for java.sql.Connection
    instances that may be used for talking to a particular
    database that is configured in the server.xml file.
    </description>
    <res-ref-name>
    jdbc/EmployeeDB
    </res-ref-name>
    <res-type>
    javax.sql.DataSource
    </res-type>
    <res-auth>
    Container
    </res-auth>
    </resource-ref>
    3- add an element like this to the /META-INF/context.xml file in the web application. ( under ../webapps/mywebapplication/WEB-INF
    <Context ...>
    <Resource name="jdbc/EmployeeDB" auth="Container"
    type="javax.sql.DataSource" username="hello" password="hello"
    driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost/publications"
    maxActive="8" maxIdle="4"/>
    </Context>
    4- code sample
    Context initCtx = new InitialContext();
    Context envCtx = (Context) initCtx.lookup("java:comp/env");
    DataSource ds = (DataSource)
    envCtx.lookup("jdbc/EmployeeDB");
    Connection conn = ds.getConnection();
    ... use this connection to access the database ...
    conn.close();
    The default data source support in Tomcat is based on the DBCP connection pool from the jakarta commons
    Regards,
    Alan Mehio
    London,UK

  • Can you please help me with WVC200!!

    hey, im using the WVC200 ip camera in my college project, and the problem is im not able to configure the settings to receive email alerts, so can you help me please?
    this is what i did so far:
    send to : [email protected]
    Show "From" as: [email protected]
    Subject: motion detection!!
    SMTP Mail Server: mail.hotmail.com
    finally there is a box that i left unticked  which is the (My Mail Server Requires Authentication) what should i do with this setting!?!
    can anyone guide me step by step on how to configure the email alerts please!!
    thanks a lot for your time

    i've already tried to make it work,but nothing happens
    here is a printscreen of the settings
    [IMG]http://i35.photobucket.com/albums/d183/z400_suzuki/ipcamerasetting.jpg[/IMG]
    did i do anything wrong?!
    Message Edited by I hate HCT on 04-13-2009 11:04 PM

  • Can you guys help me find a certain .plist?

    one of our lovely contributors posted this to help me with my issue:
    (i need to get photosmart studio to run on my friends computer because it is the only app he's familiar with, upon upgrading his computer to 10.6, he lost functionality of this app, upgrading from 10.4.11)
    I tried to resolve this thru HP support, but never got past the level 1 reinstall BS. However, I did come up with a 'fix'.
    By using Activity Monitor and Xcode Instruments I was able to determine that the excess cpu and memory was being consumed by a Studio thread responsible for Keyword Albums. I tried to 'turn off' Keyword Albums by deselecting the default albums in Studio Preferences, but this did not work. Finally I disabled Keyword Albums by using the plist editor to change the content of ~/Library/Preferences/com.hp.Photosmart.keywords.plist to this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>CustomKeywords</key>
    <array/>
    <key>Language</key>
    <string>English</string>
    </dict>
    </plist>
    Studio now functions normally except, of course, for Keyword Albums are disabled.
    i can't find the photosmart.keywords .plist he is referring to, when i change the regular old hp.keywords plist nothing happens because upon application launch, it writes itself a new one.
    maybe i'm doing this the wrong way? Changing a plist in the library folder with text edit and saving,
    IS there a way to find other .plists that are in the application?
    please someone help me, i need to disable keywords in photosmart studio so it can launch.
    sorry for being such a newb
    thanks

    I think that's my post from ages ago. If you have ever run Studio the plist is in /Users/YOUR_USERID/Library/Preferences/com.hp.Photosmart.keywords.plist. However, ASFAIK Studio won't run at all on Snow Leopard.

  • My 63y/o mom used her ipad and she forgot all the password but eventually my brother update my moms ipad into ios7 not noticing that they even dont know the password. so right now the ipad is not even working coz it asked for passwords? can you guys help?

    Hi my mom is using an ipad 2 and shes turning 65yo now and not a techie so she diddnt mind the email and she already forgot the password. so she visited my brother in canada my brother decided to update my moms ipad into ios7 ver but sadly we gotten a problem we need to retrieve the email and the password we cant activate the ipad. we do the best we can ask inquire and google everything. is there a way? we are scared coz other people my think that we stole it i know its the new security feature of the ios7 but honestly its an honest mistake. can you help me?

    Hi lydiagems,
    It sounds like you may be having issues with Activation Lock (one of the new security features you mentioned in iOS 7). If so, you may find the following article helpful:
    iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/ht5818
    Regards,
    - Brenden

  • Can You Please Help Me with My Prepaid Verizon Extravert Phone

    I have a Verizon prepaid Extravert phone.  The phone has a opera mini browser built into it.  I can read and respond to emails from Gmail through the phone.  It is just awkward to use the phone to check and respond to email.  My employer is cutting off access to personal email at the office and that is one of the reasons I purchased this Extravert phone and the prepaid plan with email access. 
    I would like to know if I can connect my phone to my laptop and use the Verizon connection and the opera mini browser to read and respond to personal emails while at the office.  I basically just want to use the computer because it is easier to read and type with it.
    If this is possible, can you explain how I can do it.
    Also, on my personal laptop, the Extravert will be recognized for about a minute when I have it connected with a USB cable.  And then the cell phone disapears from my view within My Computer.  Can you explain how I can get this phone recognized by laptop.  Thanks.

        Hi nico08,  We want you to be able to get the most out of your phones email capabilities!  While the LG Extravert does not have the capability to tether the data connection to a laptop.  Our Mobile Email application can be a very beneficial feature for you!  Check out your options right through the Messaging section of your device.  If you are currently paying for a data package the app may be included. If not, you can even use Mobile Email ten times without paying the subscription fee but data charges will apply.  Please let me know if you have any additional question.
    Thank you,
    YaleK_VZW
    Follow us on Twitter @VZwsupport

  • Plagued by drop frames - Part Deux!  Can you guys help again?

    Ok... I spoke too soon. The drop frame errors are back again! This time, I have documented when and where they happen and some "quirks" that go along with it.
    1 - Problem happens even when RT is in Safe with frame rate and video quality set to low. Video clips have a 3 band color correction and proc amp filter engaged.
    2 - Seems to happen when I add chan 3 and 4 a stereo music track. The track is converted to aiff in itunes and then placed into the capture scratch folder, then imported into a bin and placed on the timeline.
    3 - One way to get the problem to "correct" itself is to click on to the desktop and then click back into FCP. The problem will correct itself but eventually freeze up again.
    4 - As some members will attest, I have tried everything short of a full system restore. The drive media is captured to is a sata 73200 rpm drive (more than half full) that is on the lower "B" bus of the internal. The "a" bus is the OSX operating drive. No media is on it.
    5 - I have trashed prefs, tweaked environmental settings and swung a dead cat at the tower. Same problem is intermittent. Just when I think I have done something that seems to fix the problem, it comes back usually when I add chan 3 and 4.
    6 - I am capturing audio and video in the same file on the same drive. Should it be separated? Should drive be partitioned?
    7 - What about "limit data rate" I heard it isn't needed unless on a network.
    Should I call a priest or what?
    matt

    Your configuration doesn't make sense - DV is 720x480 and 29.97 fps. But, having said that, it doesn't matter so much so long as your sequence settings match your clip settings. Or, to put it another way, if you up your settings to High (for Playback Quality) and Full (for Playback Frame Rate), do you get some type of render line? Green? Yellow? Orange?
    After having skimmed through the previous thread you started, you just might be having some type of issue with how the files are (physically) written on your hard drive. The only surefire way to correct that is to copy your media files over to a third drive, use Disk Utility to wipe you media drive (format Mac OS Extended), then copy your media files back over your freshly formatted media drive. (and I know that's not a quick procedure but, hey, it beats throwing your G5 out of a window
    Before you try that though, can you tell us what your real-time audio settings are in your User Preferences?

Maybe you are looking for

  • Is there a way to speed up my iTunes with 120.000 tracks?

    Hi everybody, does anyone can suggest me how to speed up my iTunes? it is going very slow in all kinds of operations, not to mention importing a cd. Ok i have a quite big library - the library file is about 170MB - and a quite big archive of almost 1

  • Image Resolution Question 150dpi vs 300dpi in Final Layout

    In the final offset color printing of a file, does it make a difference if the images in the document are 150 dpi or 300 dpi? I know they shouldn't be less than 150, but does making them higher dpi make them really better? Or does it just make the fi

  • Dont want to allow user to confirm more hours than planned hours

    Hi, in the projects, we dont want to allow user to confirm more hours than planned hours. Pls suggest. Thanks

  • No rows returned in the BIS views

    I am new to Discoverer. I had connected to Financials Intelligence responsibility using discoverer desktop. When I tried to create a workbook in General Ledger Business Area to display the GL accounts, I get no rows returned message. I get the same m

  • Why is the email option grayed out from iphoto sharing

    I am running iPhoto 9.5.1 on Mavericks.  When I select a photo and try to share it the share menu has email and all the social meida options grayed out.  Checking accounts in iPhoto my email accounts are there.  I tried deleting and reinserting the o