[javax.comm] wha?
Error loading SolarisSerial: java.lang.UnsatisfiedLinkError: no SolarisSerialParallel in java.library.path
Caught java.lang.UnsatisfiedLinkError: readRegistrySerial while loading driver com.sun.comm.SolarisDriver
Exception in thread "main" javax.comm.NoSuchPortException
at javax.comm.CommPortIdentifier.getPortIdentifier(CommPortIdentifier.java:430)
at ser1.<init>(ser1.java:44)
at ser1.main(ser1.java:117)
(line 44)portId = CommPortIdentifier.getPortIdentifier("COM4");
serialPort = (SerialPort)portId.open("GenericSerialReader", 100);
serialPort.setSerialPortParams(4800, SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE); //
serialPort.setFlowControlMode(SerialPort.FLOWCONTROL_NONE); //
serialPort.enableReceiveThreshold (1);
serialPort.enableReceiveTimeout(100);
that is my error message and corresponding code. line 44 is the first line of my constructor. i guess where im lost is where it starts talking about SolarisDriver. i downloaded the generic version of the API...
im using winxp tablet edition (aka winxp pro).

