How to reboot Ricoh MFP programmatically using RXOP.
RXOP library version 3.5.3 or higher is required. The recommendation is to reboot both the controller and the smart operation panel, choosing this option ensures the Android app stays in sync with the controller.
Note for the value " both(true) " it means to reboot the SOP and the controller. If false, only the panel will be rebooted.
===========
import ricoh.rxop.rxcommon.RxopException;
import ricoh.rxop.rxinst.RicohJavaDevice;
public class test {
public static void main(String[] args) throws RxopException {
RicohJavaDevice device = RicohJavaDevice.CreateDevice("xx.xx.xx.xx");
device.setRebootBoth(true);
device.reboot();
}
}
=============