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.

learn more… | top users | synonyms

1
vote
0answers
20 views

Is it possible to send more than one image in MMS?

Is it possible to attach more than one image in android? I use this code : intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File("/sdcard/file.gif"))); but I want to send two or three images. ...
0
votes
0answers
22 views

How can i make Log report for vb.net

Im trying to make a vb.net program that detect physical intrusion using web camera and send a notification by sms n mms if there's any intrusion ... how can i make a log report when the intrusion ...
0
votes
0answers
31 views

Creating a system that send SMS and MMS

I'm trying to make a system that can send sms and mms using VB.Net. I already succeeded with the SMS part, using ozeki gateaway. Is there anyone that can help me on sending MMS on VB.Net ?
0
votes
2answers
39 views

Send MMS programmatically

I want to send an MMS programmatically I used the following code for it Intent sendIntent1 = new Intent(Intent.ACTION_SEND); try { sendIntent1.setType("text/x-vcard"); ...
0
votes
0answers
30 views

Is it possible to play a ssm:// on Android?

everyone I'm, trying to play a ssm stream on Android. However, I tried many ways, I can't find how to do it. Is there any better way to do it? This is my code: protected void onCreate(Bundle ...
0
votes
1answer
33 views

reporting mms agent to MMS service in amazon ec2

My db is on EC2 and i have installed MMS agent successfully and running successfully. However, when i check from MMS Hosts, it says You do not have a monitoring agent that is sending data to MMS or ...
0
votes
1answer
25 views

how to select an option from “attach” in message application using monkey runner

I am trying to automate sending of MMS using a monkey runner script which is a python script.I am getting the co-ordinates from hierarchy viewer for touch/press functions.But the problem is all these ...
1
vote
0answers
22 views

Sending MMS via monkey runner on android throws java exception

I need to send MMS by writing a monkey runner script.My script is as below and it throws a an exception .Can anyone please help? I am interested in writing script using intents and not using ...
-1
votes
2answers
87 views

How can I send an MMS via a GSM/GPRS modem connected to a linux computer? [closed]

I have a directory which contain say 50 image files (.jpg) each less than 300kb. This files should be attached as MMS and send from Linux computer using GSM/GPRS modem. I need to work out how to ...
0
votes
0answers
20 views

Compose a MMS with image attached via abd shell android

Hi all I am developing some test case automations, I try compose a MMS via abd Shell but until now I can´t have success. I try via code: adb shell am start -a android.intent.action.SENDTO -d ...
-1
votes
0answers
10 views

Is there a way to find the CC address of group messages in Android? [closed]

I am looking for a way in Android to identify the CC address of group MMS messages being sent. I am using a Verizon Galaxy S3. I know previous versions of Android may have handled group MMS messages ...
0
votes
1answer
33 views

sending image or video or audio with sms data

I am trying to make an application where I can get videos from my webserver download it to a users phone, and they have the option to mms it to someone. I have found that you can do this via the ...
0
votes
0answers
48 views

Issue with adding body text to MMS Action_Send intent on Motorola Droid 4

Having an issue getting the body text added to a mms message on the Motorola Droid 4. My code works on several other devices I have tested, but not the Droid. When the intent gets fired, it asks the ...
1
vote
0answers
28 views

mms-sms/conversations return invalid count in Htc explorer

The code run absolutely fine in other device like samsung ace, sony ericson x10 but in HTC explorer the conversation count return wrong count. Thanks for your concern and my code is as mention below ...
-2
votes
0answers
34 views

How to add MMS messaging to PHP-based website? [closed]

How to add MMS messaging service to PHP-based website for the admin to send MMS messages to their clients? Is there a good third-party service that can be integrated?
-1
votes
0answers
42 views

How to take an image from a text on my application and send it as mms?

When the user type S in text 1 and click the button an image is shown in text2. How can I take that picture from the text in my application and send it as an MMS? All I could find is how to chose an ...
8
votes
0answers
362 views

android mms download mms content through mms url

I am trying to download the MMS picture content through the MMS url, but it returns with a 403 (Forbidden) server response with an invalid MSISDN number. I have pasted my code below for reference. ...
1
vote
0answers
63 views

MMS receiver code please run this code and let me know the output

This code is suppose to be run on other country but in India it get the expected output. The code is as mention below :- if (intent.getAction().equals(MMS_RECEIVED) && ...
1
vote
0answers
39 views

android mms receiver

I found the default messaging app when receive new mms show the option for downloading the content and after downloading the content get downloaded. But how can we get the image downloading link and ...
1
vote
1answer
115 views

Deliver Apple Passbook Passes (.PKPass Files) Via MMS

While researching text message marketing companies I came across something unique (http://www.sumotext.com/passbook-MMS.html) that I didn't know was possible. This is the ability to be able to ...
1
vote
1answer
53 views

API for sending MMSs between phones and server in Python?

I wanted to send MMS/SMS messages between phones and a central server. Initially, I thought of Twilio but it looks like they don't support MMS messages. Is their an API that I can use that supports ...
0
votes
2answers
174 views

Android 4.1 How to read APN Details

In Android 4.1 (Jelly Beans) cannot access the APN details. When i try to access the APN details using final Cursor apnCursor = ...
1
vote
1answer
61 views

Android mark MMS as failed

I want mark some of my MMS as failed into my database. I have changed the msg_box field to 5 (Which is the correct value). But in the native messages app, they aren't marked as failed. It's exactly as ...
1
vote
0answers
106 views

android send mms

I found the mms sending example in following link http://androidbridge.blogspot.in/2011/03/how-to-send-mms-programmatically-in.html Here I came to notice that the subject field has been mention as ...
0
votes
1answer
481 views

How does Android Send MMS [closed]

Is there a simple code to download that provide the sending of an MMS using Android. I found many example but not the full code. Please Help me.
0
votes
0answers
94 views

How to send MMS through gateway API in android?

i want to send MMS through gateway API's in android. i found that mVaayoo supports sending picture messages through API. i dont know how to configure it inside my application. I done sending SMS ...
3
votes
1answer
111 views

How to Differentiate MMS and SMS in android?

How to Differentiate MMS and SMS via MMS/SMS listeners in Android? Because I got SMS counts as in MMS counts? I am calculating Total MMS as using following code. Uri mmsInboxUri = ...
0
votes
2answers
587 views

How to send MMS from Android App?

I am working on a project where I need to send MMS from my android app. Below is the code which I tried but it is not working. Please advise. Intent mmsIntent = new Intent(Intent.ACTION_SENDTO); ...
0
votes
0answers
105 views

Java pattern on hex code

I've the following hexadecimal code that I want to parse. For curious people, this is a MMS packet. ...
0
votes
0answers
57 views

MMS with CodeIgniter email class

I'm currently working on an application that will send the user a selected coupon via email or MMS. The problem that I am running into is with the display of the MMS when the customer receives it. on ...
0
votes
1answer
100 views

Android WAP_PUSH_RECEIVED Parse

I've made a simple BroadcastReceiver to catch the MMS before the native app. Now I want to parse the data of this MMS in order to do some work on it. In my onReceive method, I've the following code: ...
0
votes
1answer
234 views

To send MMS with Image

I have my images in drawable folder and I am getting that images in gridview.Also I am showing the perticular image on selection fullscreen.Now I want to send MMS with image attachment. Here is my ...
0
votes
0answers
86 views

android sms workaround for sending images? would this work?

Okay so I'm fairly new to developing for android but have plenty of experience with Java. I'm currently building an app, and part of its functionality allows users to send a select number of little ...
8
votes
2answers
426 views

Android add MMS to database

I want to add some MMS messages into my device database. I've the following code but it doesn't work at all. No entry are added into the native app... public static Uri insert(Context context, ...
-2
votes
1answer
774 views

Android Modifying mms.apk

I'll try to explain what I want to do. I have an i9100 SGS2 w/ CM10.1 (so a pretty quick phone). What I'm trying to do is modify the mms.apk app so that when I hit the send button in an SMS, the ...
1
vote
1answer
137 views

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          ...
0
votes
1answer
39 views

Detect that MMS has been deleted

Is there a way to detect that an MMS message has been deleted from the native messaging client? Right now I have an observer registered for Mms.CONTENT_URI but onChange is not being called.
0
votes
1answer
33 views

How can I parse the contents of MMS through PHP [closed]

I need to parse the contents of an MMS through a PHP script, which will save these contents to mysql server. Is there any class or API or any third party software which helps to do this
0
votes
0answers
188 views

Parse MMS content

I have GSM modem which gets SMS/MMS messages from users. It works good when I receive SMS. But if I receive MMS the PDU message(only user data without UDH etc.) becomes like bellow: ...
0
votes
0answers
79 views

Android MMS application with aes-256

I am developing an mms app works over gsm with aes-256.(message encrypted with aes). I tried using Connectivity Manager, but kinda stuck at this point, any recommendations/ suggested classes/packages ...
0
votes
0answers
27 views

Why am I getting ActivityNotFoundException when I try to send a MMS from Android?

Here is my code: Intent intent = new Intent(Intent.ACTION_SEND_MULTIPLE); intent.putExtra("address", recipient); intent.putExtra("sms_body", body); ArrayList<Uri> uris = new ...
1
vote
2answers
181 views

RequestRouteToHost doesn't work

I need to check if the route to host exists for my Android app. Here is my code: private void ensureRouteToHost(String proxyAddr) throws IOException { ConnectivityManager connMgr = ...
1
vote
1answer
443 views

Android MMS Database Contents

The explanation of the Android messaging database in this post How to Read MMS Data in Android? have been very helpful. Unfortunately I do not have enough reputation to ask for a clarification there. ...
33
votes
3answers
9k views

Sending and Receiving SMS and MMS in Android

I have figured out how to send and receive SMS messages. To send SMS messages I had to call the sendTextMessage() and sendMultipartTextMessage() methods of the SmsManager class. To receive SMS ...
0
votes
0answers
116 views

Android: Proper Query of MmsSms Conversations?

What i'm trying to do is a combined sms and mms query. I've read other solutions on SO, which include querying the content://mms-sms/conversations Uri. example: Cursor c = ...
0
votes
1answer
168 views

How to use MMS for audio in iphone?

I did goggling about MMS in iPhone but I did not find much info on this,most of the findings are related to images. I would like to send audio using MMS in iPhone using ios sdk.Is it possible to do ...
1
vote
1answer
273 views

how to detect mms type and extract phone number of mms

i want to detect weather mms recived or not,if mms recived than base on that i need to detect what type of mms is there?and after that want to extract phone number for a perticular mms.can any one ...
0
votes
1answer
156 views

NetworkInfo TYPE_MOBILE_MMS feature

I want to send a MMS using the stock MMS source. Before more explanation, I want to say that it does work on some android versions but 4.0.3 and 4.0.4. In my service, I ask the device to enable the ...
0
votes
1answer
102 views

MMS issue in samsung device through code

I had used below code to do MMS Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra("sms_body", "some text"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url)); ...
0
votes
1answer
266 views

How to Delete a MMS message from a particular number in Android?

I want to delete a MMS message of a particular phone number in android. How can i do it? I am using content://mms-sms/conversations to get list of MMS messaged and tried with the following query: ...

1 2 3 4 5 7