MarshalException:CORBA MARSHAL 1398079745 / 可以找到类
我们在netbeans中进行了cleanbuild,检查了jdk版本并将所有内容部署在服务器上,但仍然出现以下错误。有人可以帮忙吗?
javax.servlet.ServletException:#{RegistrationController.register}: javax.ejb.EJBException:嵌套异常是: java.rmi.MarshalException:CORBA MARSHAL 1398079745 也许;嵌套的 例外是: org.omg.CORBA.MARSHAL: ----------BEGIN 服务器端 堆栈跟踪---------- org.omg.CORBA.MARSHAL: vmcid: SUN 次要代码: 257 已完成:于 com.sun.corba.ee.impl.logging.ORBUtilSystemException.couldNotFindClass(ORBUtilSystemException.java:9679)
在 com.sun.corba.ee.impl.logging.ORBUtilSystemException.couldNotFindClass(ORBUtilSystemException.java:9694)
在 com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1042)
在 com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:896)
...
we did a cleanbuild in netbeans, checked the jdk version and deployed everything at the server but still got the following error. Can somebody help?
javax.servlet.ServletException: #{RegistrationController.register}:
javax.ejb.EJBException: nested exception is:
java.rmi.MarshalException: CORBA MARSHAL 1398079745 Maybe; nested
exception is: org.omg.CORBA.MARSHAL: ----------BEGIN server-side
stack trace---------- org.omg.CORBA.MARSHAL: vmcid: SUN minor code:
257 completed: at
com.sun.corba.ee.impl.logging.ORBUtilSystemException.couldNotFindClass(ORBUtilSystemException.java:9679)at
com.sun.corba.ee.impl.logging.ORBUtilSystemException.couldNotFindClass(ORBUtilSystemException.java:9694)at
com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1042)at
com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:896)...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,Corba Marshal 错误与 Corba 对象的 IDL 以及生成的存根与 Corba 对象本身实际实现的方法签名不匹配有关。
另外,请确保您拥有 Corba 实现所需的所有常规 Corba 相关 jar 引用。
您还可以发布您的客户端和服务器代码以及您正在使用的 IDL。
Normally Corba Marshal errors are related to the IDL of the Corba object and the generated stubs not matching up with the actual implemented method signature of the Corba object itself.
Also, make sure you have all of the normal Corba related jars referenced that you need for your Corba implementation.
You could also post your client and server code as well as the IDL you are using.