RxItemUtils.setFieldValue

I was trying to use the RxItemUtils.setFieldValue method out of the box from PSO Toolkit. It is complaining that Data Source not found.
The type javax.activation.DataSource cannot be resolved. It is indirectly referenced from required .class files

My invocation is:
RxItemUtils.setFieldValue(item, “myfield”, “some value”);

Where should be define the DataSource, as this class is coming as part of the PSOToolkit?

thanks
Manvinder

DataSource is defined in activation.jar. There should be a copy of this jar in your classpath. (This jar comes from Sun, not from Percussion).

Thanks Dave…