• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Corba unknown exception when accessing Session bean

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Experts,

I am running JUnit testcase called ClientTest using Ant Build tool which calls an AdminSessionBean(Session Bean) deployed on WebSphere6.1/MSSQL 2005. The purpose of running this test case is to insert some dummy rows to selected tables in underlying SQLServer 2005. Instead it is throwing the below ugly exception...have no idea what is going wrong. I also Googled it but found no information there. I would appreciate and would be thankful if anyone guide me
in fixing below issue.

java.rmi.RemoteException: CORBA UNKNOWN 0x4942fe86 Maybe; nested exception is:
org.omg.CORBA.UNKNOWN: vmcid: IBM minor code: E86 completed: Maybe
at com.ibm.CORBA.iiop.UtilDelegateImpl.mapSystemException(UtilDelegateImpl.java:309)
at javax.rmi.CORBA.Util.mapSystemException(Util.java:84)
at com.actiontech.jmetro.server.ejb._AdminSession_Stub.syncUsers(_AdminSession_Stub.java:458)
at com.actiontech.jmetro.client.Session.syncUsers(Session.java:726)
at com.actiontech.jmetro.client.ClientTest.testLdapConfig(ClientTest.java:62)
at com.actiontech.jmetro.client.ClientTest.testAll(ClientTest.java:39)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:615)
at junit.framework.TestCase.runTest(TestCase.java:154)
at junit.framework.TestCase.runBare(TestCase.java:127)
at junit.framework.TestResult$1.protect(TestResult.java:106)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.framework.TestResult.run(TestResult.java:109)
at junit.framework.TestCase.run(TestCase.java:118)
at junit.framework.TestSuite.runTest(TestSuite.java:208)
at junit.framework.TestSuite.run(TestSuite.java:203)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:297)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.launch(JUnitTestRunner.java:672)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:567)
Caused by: org.omg.CORBA.UNKNOWN: vmcid: IBM minor code: E86 completed: Maybe
at java.lang.Class.newInstanceImpl(Native Method)
at java.lang.Class.newInstance(Class.java:1263)
at com.ibm.rmi.iiop.ReplyMessage._getSystemException(ReplyMessage.java:254)
at com.ibm.rmi.iiop.ReplyMessage.getSystemException(ReplyMessage.java:189)
at com.ibm.rmi.iiop.ClientResponseImpl.getSystemException(ClientResponseImpl.java:232)
at com.ibm.rmi.corba.ClientDelegate.intercept(ClientDelegate.java:982)
at com.ibm.rmi.corba.ClientDelegate.invoke(ClientDelegate.java:459)
at com.ibm.CORBA.iiop.ClientDelegate.invoke(ClientDelegate.java:1150)
at com.ibm.rmi.corba.ClientDelegate.invoke(ClientDelegate.java:778)
at com.ibm.CORBA.iiop.ClientDelegate.invoke(ClientDelegate.java:1180)
at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:484)
at com.actiontech.jmetro.server.ejb._AdminSession_Stub.syncUsers(_AdminSession_Stub.java:448)
reply
    Bookmark Topic Watch Topic
  • New Topic