strange ClassNotFoundException
sorry i had to crosspost this, but i think it's a more general issue what im getting
i have an RMI client/server app.
whenever my client tries to send data to the RMI server of a Serializable type
but i'm getting a ClassNotFoundException
java.lang.ClassNotFoundException: [[Lapp.brk.report.ReportField;
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java
at sun.rmi.transport.Transport$1.run(Transport.java:148)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTr
at java.lang.Thread.run(Thread.java:534)
at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer
at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCal
at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:133)
the ReportField is a class i use to wrap up an object to send to the server
publicclass ReportFieldimplements Serializable{
private String fieldName;
private String javaType;
public QueryField(){
}
public QueryField(String fieldName,String javaType)
{
this.fieldName = fieldName;
this.javaType = javaType;
}
public String getJavaType(){
return javaType;
}
public String getFieldName(){
return fieldName;
}
i noticed there's a[[L but i dunno where is it coming from
i dunno know where to look.
thanks for any help

