How to send mms in blackberry cascade blackberry 10 - blackberry-10

Can you please tell me how to send mms in blackberry cascade c++ .
I have successfully figured out how to send sms and am able to so but now I am interested to send mms (having image) but am not able to do that .
Can you please provide me some sample code or example how to send mms in blackberry 10 (cascade)?

Programatically sending an MMS is not possible at this time.

Related

Sending & Receiving SMS in Netbeans SMSLIB

I am working on a project in which im sending sms and receiving them in computer through SMSLIB where a mobile is connected to my computer via Bluetooth. I have to get the mobile number of that mobile which is connected to my computer but i am unable to find a function for it. Kindly help me.
Thanks!
this is a late response, and you might already have the answer, but the fact is that you can't. you have to know the number of the SIM card that your modem (or phone) is using.
I usually set the gateway ID to be the phone number. that helps with debugging and whatnot, especially if you have multiple modems.

How to send data from iphone to MAC/PC via serial port?

I'm new to these things, and have no idea how to achieve this thing.
I want to send some data from iphone to MAC/PC and also want to receive data sent from MAC to iphone.
Please help me out or give me some clue, where I can start from.
Most apps solve this issue by including a small http server in the app and providing a web interface to upload/download data to the app.

How to read sms message on iOS?

I wanna make a application which can read SMS message through bluetooth headset automatically when it arrives.
I think this could be very useful when driving a car.
To do this,
able to detect SMS arriving.
able to get SMS text message.
able to encode SMS text as TTS stream.(I have my own TTS Engine, so this doesn't matter)
send stream through bluetooth headset which already paired.
Is there someone could help me? :)
it's not possible on standard iOS. The sms API is not exposed, hence interaction with the message application or database is not possible.
Jailbroken Apps might be able to use the SMS interface somehow, tho. I would start going into that direction.

How to get connection with particular server in j2me application

I am beginner of j2me application. I am working on application of tracking the mobile. I am supposed to make application in j2me is like I can save the received SMS in some nokia mobile in some server and then fetch that sms and send that message to another mobile device.
I am using Eclipse IDE for this application.
Please help me for this.
Yes, you can read SMS from inbox. for this purpose you need to use APIBridge.jar file. just google & download. This file fills the gap between Java ME & Phone's Native Operating system. Using this JAR File you can perform many other native things. You will find its example with that JAR File.
if you are sending sms on some predefine port no and your j2me application is listening on that port then and only then you can get those message.
Reading sms from inbox is not possible with j2me.

WiFi iPhone Application

im working on an iPhone application which requires communication between 2 devices through WiFi.
Can somebody please help me by providing a simple iphone application code for the same which is able to communicate data between the devices...i hv gone through the "witap application" available on the developers site but wasnt able to understand it...
please help..
There's a great 2-part tutorial at MacResearch:
Part One
Part Two
Use the Bonjour , let Device A as the server, and publish service via Bonjour; and in Device B,use the NSNetServiceBrowser to search the published service via device A in the same local network,and connect by socket to send data.
there is a demo here.download.And you can read this article go>>.It helped me before.