Bugs item #894719, was opened at 2004-02-10 14:01
Message generated for change (Settings changed) made by zorzella
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=894719&group_id=22866

Category: JBossServer
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Luiz-Otavio Zorzella (zorzella)
Assigned to: Nobody/Anonymous (nobody)
>Summary: DeploymentInfo is not Serializable

Initial Comment:
version: jboss-3.2.1_tomcat-4.1.24

While trying to remotelly invoke "listDeployed" of the
Deployer service, a NotSerializableException occurs.

That's because DeploymentInfo is not declared
Serializable. It should also declare the Logger to be
transient, to allow for serialization (all loggers
should be declared transient, IMHO).


The following simple test method can be added to JUnit
to confirm success of Serialization:

public void testListDeployed () {
        Object o = getServer ().invoke(getDeployerName(),
        "listDeployed",
        new Object[]{},
        new String[]{});
}

Zorzella

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=894719&group_id=22866


-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to