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

How to send an downloaded image via MMS in Android

In my application I am downloading an image from server.Now I want to send this image via MMS & Email. How can I do that. Please help
Arun Badole
  • 10,977
  • 19
  • 67
  • 96
0
votes
1 answer

is there a special way to send MM7 soap request to MMSC for sending mms to Android devices

We use a MM7 to send the request to MMSC for sending MMS. Receiving user has an Android phone and He doesn't get the MMS. But when Receiving user has a feature phone he gets the MMS. Confusing here. please help.
Ruwan Dissanayaka
  • 305
  • 1
  • 8
  • 19
0
votes
1 answer

send a photo through MMS message

I am trying to send a photo through MMS message, I am using the following known snippet Intent i = new Intent(Intent.ACTION_SEND); i.putExtra(Intent.EXTRA_TEXT, "This is an MMS message"); String sendfilepath = "file://" + sendfile.toString() +…
yasserbn
  • 391
  • 3
  • 18
0
votes
1 answer

how to import com.android.mms.R?

In some class of android source code ,they import com.android.mms.R, but I can't do it after I tryied. Are there any methods be used to import com.android.mms.R?
user1072605
  • 97
  • 2
  • 8
0
votes
1 answer

Attach image in MMS / Facebook from iPhone.

I've easily found a way to post a picture to twitter, and email below.. But I still can't find a solution for MMS, all the searches on here say it's not possible but those posts are over a year old.. If anyone knows please help.. TWEET…
Rob Green
  • 5
  • 1
0
votes
2 answers

Query does not get MMS messages

I am implementing the method discussed here How to Read MMS Data in Android. Here is the code snippet: ContentResolver contentResolver = getContentResolver(); final String[] projection = new String[]{"*"}; Uri uri =…
yasserbn
  • 391
  • 3
  • 18
0
votes
3 answers

Windows Mobile App - Play Stream Over MMS Protocol?

NOTE: This question is being reasked because I accidentally clicked Community Wiki in the previous one, and obviously that didn't provide enough incentive in the form of reputation for people to answer it. Here is a link to the old question, please…
mkmurray
  • 2,434
  • 3
  • 21
  • 22
0
votes
2 answers

How to send a picture message (MMS) with PHP

I am currently trying to send a MMS message to a cell phone (via a MMS gateway address) with a PHP script using the mail() function. I want to include a picture in the message. I haven't found any information specific to sending MMS messages with…
smf7293
  • 55
  • 3
  • 9
0
votes
1 answer

Share contact in iOS, sms or mms?

Hi I am trying to share contact (vcard) through sms/mms gateway, should i encode contact and send as sms, or attach contact to mms? What is the way of iPhone doing that. I cannot find any document clearly states that. Thank you.
ThinkChris
  • 1,169
  • 2
  • 15
  • 38
0
votes
2 answers

Don't want option to be given for sending mms`

I have a requirement in my application in which I have to send MMS on click of button. When I click on the button it prompts to choose using which application I want to complete the action either email or messaging. I want it to open by default with…
Nitish
  • 3,097
  • 13
  • 45
  • 80
0
votes
1 answer

What is chunkLen in MMS MessageType's fields

I am developing the library that implements mms protocol fully. In Message Types, we know that all messages must be started with ChunckId( i.e. LinkMacToViewerPing ) . Could any one please tell me what is ChunckId and how can i fill it ? Thanks in…
Hossein Mobasher
  • 4,382
  • 5
  • 46
  • 73
0
votes
1 answer

How to pass phone number to mms

I have following code, which invoke mms client and attaches to it a picture Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra("sms_body", "some text"); sendIntent.putExtra("address", phoneNumber); …
unresolved_external
  • 1,930
  • 5
  • 30
  • 65
0
votes
1 answer

Android: Send MMS Message With Picture on SDCard

Hi so I'm trying to send an image (png) from the sdcard in an MMS message. I'm using the ACTION_SEND intent, but it doesn't seem to be working. Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra("sms_body", "Sent using…
K. Barresi
  • 1,275
  • 1
  • 21
  • 46
0
votes
4 answers

In the iOS SDK, how can I help my users send MMS intermixed with SMS from my app?

An app that I am developing relies on the ability to help users send a mixture of images and text to their friends in one go. I was hoping that MFMessageComposeViewController would offer some way to provide the user with an image in the body of the…
0
votes
1 answer

For iOS can you force SMS over MMS programmatically

I have a iOS app that is using the standard MFMessageComposeViewController to send a text with URL in it to people. Looking at the iPhone settings you can turn on MMS. Is there a way to force sending SMS even if the phone settings have MMS turned…