Dave,
Current Xindice version, 1.1b4, has no such package at all. Your efforts will be so much more appreciated if you take a look at current CVS HEAD version (it has couple of changes/bugfixes over b4 version).
Thanks, Vadim
Dave Brosius wrote:
In org.apache.xindice.core.objects.Variant is this code
public void set(Object object) {
this.value = value;
type = value != null ? Types.OBJECT
: Types.EMPTY;
}
should this be
this.value = object;
type = object != null .....