I am attempting to stream accelerometer data from a Python script to a Java midlet via a socket connection on a Nokia N97, using the following code. Unfortunately, this code (which previously worked fine on a N95 8GB) doesn't seem to send any data to the midlet, and I have no idea why. I am using this approach, as I have found that performance is better than using the Java Sensor API (which appears to have some memory management issues, on my phone at least).
The print messages in the while loop do not get printed, with only the "start loop" and "connection closed" messages printed once the midlet is closed (thus closing the connection).
From my debugging efforts, it seems the midlet does receive the connection. The problem seems to be that nothing gets written to the midlet. Any ideas?