Hi to all, I'm developing an application that mixes Python and Javame.
I wrote this code
The Python script tries to connect to localhost and the Javame program is launched through PushRegistryCode:from socket import * client=socket(AF_INET, SOCK_STREAM) client.connect(("127.0.0.1", 9000)) client.send("")
The first time the connection and the "awakening" of the Javame program were successful, but when I rebooted the phone and launched the Python script I got this message:
Obviously I didn't change the code, but now the program don't work, do you know why?Code:client.connect(("127.0.0.1", 9000)) File "<string>" , line 1, in connect error: (61, "Connection refused")
I really need to solve this problem
Thanks in advance![]()

Reply With Quote

