| Reply | « Previous Thread | Next Thread » |
|
Hi, is it possible send binary sms with message module such as in j2me platform?
|
| tonino12345 |
| View Public Profile |
| Find all posts by tonino12345 |
|
i think not. Unless you base64 encode your data (in which case it will be about 33% larger than your original data). The problem lies mainly in the 7bit encoding of SMS. You might also consider writing an extension module which uses 8bit encoding.
|
|
It is possible.
public void sendBinaryMessage (MessageConnection connection, String destAddress, byte[] Body) { // Construct the message BinaryMessage Message = (BinaryMessage)connection.newMessage( MessageConnection.BINARY_MESSAGE, "sms://" + destAddress + ":7500"); // Set the payload Message.setPayloadData(Body); Please check the WMAExample doc in Forum Nokia: http://www.forum.nokia.com/info/sw.n..._v1_0.zip.html Daniel |
|
I thought he was referring to Python. In j2me of course its possible
|
|
Yes, varunc, I was referring to python
. I've just developed an application in j2me that sends ciphered binary SMS. I would know if exists a solution to realize this with python. Thanks to all.Tonino. |
| tonino12345 |
| View Public Profile |
| Find all posts by tonino12345 |
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|
| Rate This Thread | |
| Thread | Thread Starter | Forum | Replies | Last Post |
|---|---|---|---|---|
| Error sending SMS | jorge_c | Multimodecards | 0 | 2003-10-07 12:53 |
| Sending binary sms with D211 card | Patru | Multimodecards | 1 | 2003-06-18 09:25 |
| SENDING of Binary SMS (again) | jthieble | Multimodecards | 2 | 2003-06-02 22:30 |
| Sending binary data through SMS | gdesantos | General Symbian C++ | 1 | 2003-05-14 21:49 |
| Sending binary data through SMS | gdesantos | General Symbian C++ | 1 | 2003-04-14 18:36 |