Serialization of Linux files......

Hi All,

I have two serialized files from the Linux.

RaidSMTP.ser

SMTPSRV.ser

When iam trying to deserialize the above 2 files iam getting the following errors:

1.Classnotfoundexp:com.ibm.sysmgt.raidmgr.common.SMTPServerInfo

2.Classnotfoundexp:com.ibm.sysmgt.raidmgr.common.EmailRecipient

And iam trying to deserialize the 2 files seperately.

Can anyone tell how to workaround with?

Thanks,

Gita

[461 byte] By [GitaSumana] at [2007-11-27 9:28:46]
# 1
What are serialized in those files?Do you have classes required for deserialization of them on your local environment?
hiwaa at 2007-7-12 22:34:59 > top of Java-index,Java Essentials,Java Programming...
# 2

I don't know what is the data in those serialized files and neither do i have the serialized class files in my environment.

I cant even get the serialized class files.

But the serialized file contains a few mail addresses.Does this cause the error?

Is there any other way to work with.....

Gita.

GitaSumana at 2007-7-12 22:34:59 > top of Java-index,Java Essentials,Java Programming...
# 3
Your local environment, classpath, must have the two classes:com.ibm.sysmgt.raidmgr.common.SMTPServerInfocom.ibm.sysmgt.raidmgr.common.EmailRecipient
hiwaa at 2007-7-12 22:34:59 > top of Java-index,Java Essentials,Java Programming...
# 4
Clearly there was some IBM package in use when the files were serialized. You will have to talk to whoever wrote the code that serialized the data, or find the code and find what JAR files it depends on.
ejpa at 2007-7-12 22:34:59 > top of Java-index,Java Essentials,Java Programming...