I am able to push data on a blackberry device by following the JDE example (I made it more simple than in the example).
PUSH-APPLICATION-SIDE
------------------------
I establish a connection (HttpURLConnection) and send the data to
http://...../push?DESTINATION...
BB-SIDE
--------
The BB receives the Push and the data I send. Now I would like that the BB can response to that connection (StreamConnection). How is this possible? Has anyone a SIMPLE example?
What I tried: get an OutputStream (BB side) from the StreamConncetion and send data over that outputstream output.write(...). This didn't work when I waited with inpu.read on the "other side".