WAS6.1测试环境上的JAX-RPC Web服务序列化问题
我试图通过 WS 方法传递复杂对象的向量。我正在遵循 JavaBeans 方案,并且所有集合都已被向量替换,但我仍然收到序列化异常 WSWS3037E:[myclass] 无法发生序列化 如何测试序列化是否真的失败或者这是 WAS 问题?
I'm trying to pass Vector of complex objects as a result of a WS method. I'm following a JavaBeans scheme and all Collections are replaced by Vectors already, but I'm still getting a serialization exception WSWS3037E: Serialization cannot occur for [myclass]
How can I test if serialization really fails or this is WAS issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 6.1,IBM 建议使用数组而不是向量。支持向量,但不建议使用它们。此外,Vector/array 中的所有类都必须实现 Serialized。
For 6.1 it is recommended by IBM to use arrays instead of Vectors. Vectors are supported but their use is not recommended. Also, all of your classes in the Vector/array must implement Serializable.