Questions tagged [mms]

Multimedia Message Service(MMS) is an extension of the Short Message Service(SMS) protocol which allows for multimedia to be passed in messages. Microsoft Media Server(MMS) is Microsoft's proprietary network streaming protocol for Windows Media.

585 questions
6
votes
1 answer

Differentiate MMS and SMS via MMS/SMS listeners in Android

Is there any ways to differentiate MMS and SMS messages by using a MMS/SMS listener before they hit the inbox?
Zerhinne
  • 1,987
  • 2
  • 22
  • 43
6
votes
1 answer

Is there a MS-DRM client library for linux?

I have used the libraries (libavformat and libavcodec) to decode some MMS streaming urls. But some of them are protected by DRM. When I try to decode them, the library will warn about it In libavformat/asfdec.c: if (!s->keylen) { if…
qrtt1
  • 7,746
  • 8
  • 42
  • 62
6
votes
2 answers

What's the best way to test sending/receiving MMS messages with Android?

I'm writing an app that stores secret (encrypted+hidden using steg) information in MMS messages. Obviously I need a way to test this, in particular, sending and receiving MMS messages. I have one Android phone, a Nexus One. I know that MMS's cannot…
fredley
  • 32,953
  • 42
  • 145
  • 236
6
votes
1 answer

How to read RCS messages from android device programmatically

My application basically backup the SMS and MMS to cloud server. I used below URI to retrieve data from database. SMS- Uri uri = Uri.parse("content://sms/"); MMS-Uri uri = Uri.parse("content://mms/"); Few days back while testing my app i…
Krish Allamraju
  • 703
  • 1
  • 7
  • 29
6
votes
2 answers

Android Programming - Send mail

I'm using the following piece of code in Android to send a mail: Intent emailIntent = new Intent(Intent.ACTION_SEND); emailIntent.setType("text/html"); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,sendTo ); …
Satyam
  • 15,493
  • 31
  • 131
  • 244
6
votes
3 answers

How to send MMS in J2ME?

How to send MMS in J2ME?
Ali El-sayed Ali
  • 451
  • 4
  • 14
6
votes
2 answers

How to get all messages by ThreadID in android

I tried to get all messages by thread id with uri:content://mms-sms/conversations/{threadId}, but it doesn't seem work and throws exceptions:          java.lang.NullPointerException          at android.os.Parcel.readException(Parcel.java:1333)     …
Binary Wang
  • 73
  • 1
  • 6
5
votes
2 answers

Android sending image via mms programatically(Operation timed out)

I want to send an image via MMS programmatically in Android. I am following the links below: http://androidbridge.blogspot.com/2011/03/how-to-send-mms-programmatically-in.html How to send image via MMS in Android? It works sometimes but mostly I…
Sando
  • 1,893
  • 11
  • 29
  • 45
5
votes
2 answers

How to send MMS with MM7 using Java?

Please let me know is there any way to send MMS using MM7 protocol in Java? If there is a free API to generate the appropriate SOAP message please let me know it too. I'm in a dead end situation and I really need a way to do this. Your wise…
Maxi
  • 285
  • 6
  • 20
5
votes
1 answer

WAP_PUSH_DELIVER Intent never sent by Android system

I spent 5 hours attempting to make a custom MMS Broadcast receiver work. I googled and searched here at Stackoverflow a gazillion of seemingly duplicate threads but non of the workarounds or proposed solutions. A few random debugging notes: The app…
Basic Coder
  • 10,882
  • 6
  • 42
  • 75
5
votes
0 answers

how to send an MMS programmatically?

I'm trying to write an app that send an MMS without user interaction (i.e. not using the ACTION_SEND intent), following what suggested here. The statement HttpUtils.httpConnection(context, 4444L, MMSCenterUrl, bytesToSendFromPDU,…
gfoed
  • 51
  • 2
  • 6
5
votes
1 answer

React Native - Sending text messages with attached image

Does anyone have a working method for sending text messages that supports attaching local images from your React Native project? I'm currently using react-native-communications (https://github.com/anarchicknight/react-native-communications), which…
Armin
  • 1,271
  • 3
  • 17
  • 31
5
votes
0 answers

Sending MMS messages programmatically

I looked at code here: How to send image via MMS in Android? And here: Unable to send MMS using SmsManager And I did some research from other places as well, but so far I'm quite confused about how to send MMS messages to people without using…
jortyjorts
  • 51
  • 3
5
votes
1 answer

SMS missing from content provider results on Android Marshmallow

Some text messages are missing and never show in the content://sms provider URI since the Samsung S7 came out. I have noticed this between multiple Samsung devices (S6 and/or S7) that are on the same carrier (in this case T-Mobile) but may not be…
5
votes
1 answer

Unable to Connect MongoDB on Amazon EC2 Instance using java

I'm developing an android application which uses the mongoDB for data storage, currently I'm using Mongolab sandbox to store data's. I'm thinking of moving the database to the Amazon Ec2 Instance and I've configured it through the MMS service. I've…
S A R
  • 146
  • 3
  • 20
1 2
3
38 39