I created an EJB (CMP) in Websphere for WCS and I'm trying to use it.
and then TestClient(VJAVA) no problem with my AccessBean.
However, when I run a JSP in WTE and try to access the same bean,
I get a following error :
javax.naming.NamingException:
Error during resolve [Root exception is
org.omg.CORBA.TRANSACTION_ROLLEDBACK:
minor code: 0 completed: No]
what's wrong?
JSP source code :
.....
<%
XcsoptionAccessBean opfinder= new XcsoptionAccessBean();
XcsoptionAccessBean csoption ;
try
{
Enumeration opList= opfinder.findWithXisCurrent();
while( opList.hasMoreElements() ) {
csoption = (XcsoptionAccessBean)opList.nextElement();
%>
.......
Thanks
the information you sent is like sending someone a drop of rain and asking
them where the rain fell. Send the source, believe me your probably not
going to have anyone trying to plagiarize your rookie bean attempts and
most likely you could get some good design feedback.
Mayhap a bit more information on configuration, platform would be politely
received.
UserAccessBean is what I assume you meant.
Have you added your new EJB to the EJB server, with the correct
Persistence Name Server settings? A NamingException is usually related
to some JNDI lookup error and chances are that you might be having
some problems resolving your EJB Home Interface.
Like George said, a little more info would help.
Augustine Lim
Shared Vision Group
(415) 409-9000
al...@sharedvision.com
George Niece <gni...@glc-web.com> wrote in message news:<3B7B75ED...@glc-web.com>...