I am developing the MMS application and I looking for some tools for developers. It will be very useful to have MMS binary format decoder, which I can run on the desktop to analyze MMS body, which I am creating problematically.

Also having installed on local some MMSC for testing purposed would be great. There was such an installation few years ago on NSN web site, but I am not able to find similar tool now.

Any tips are welcomed.

BR

STeN

link|improve this question

64% accept rate
feedback

1 Answer

In order to send mobile terminated (MT) and receive mobile originated (MO) MMS messages you need to work with an aggregator. An example of aggregators are Ericsson and Mobile Messenger. These companies have direct bindings with the carrier networks and provide it as a service to consumers. Different aggregators have different bindings w/ different carriers. Like w/ one aggregator you can only send MMS to a certain carrier or SMS to a certain carrier, etc. For example: Mobile Messenger can only send MMS to Verizon, Sprint and Alltel MMS is shoddy because each carrier has different limitations/restrictions around it - it's not very consistant. Anyways, you need to signup w/ an aggregator.

The MMS specification is called "MM7". It basically says an MT is a multi-part mime HTTP POST with a SOAP part and a SMIL part. The SOAP part is just a bunch of fields like message body message subject, etc. defined in the MM7 spec. The SMIL part is just another industry standard markup that handsets use to display the content.

Example Request:

Content-Length: 12504 
Content-Type: multipart/related; 
boundary="Part_0_22726732.1176907380897"; 
type="text/xml"; start="<mm7-submit>"

--Part_0_22726732.1176907380897 
Content-Type: text/xml; charset=us-ascii 
Content-Transfer-Encoding: 7bit 
Content-ID: <mm7-submit>

<?xml version='1.0' ?> 
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"> 
<env:Header> 
<mm7:TransactionID xmlns:mm7="http://www.3gpp.org/ftp/Specs/archive/ 23_series/23.140/schema/REL-6-MM7-1-4">m43v31cpef0j9u0117 </mm7:TransactionID> 
</env:Header> 
<env:Body> 
<SubmitReq xmlns= "http://www.3gpp.org/ftp/Specs/archive/23_series/23.1402-MM7 SOAP Interface   4 /schema/REL-6-MM7-1-4"> 
<MM7Version>6.8.0</MM7Version> 
<SenderIdentification> 
<VASPID>Stack Overflow</VASPID> 
<VASID>MMS_SUBMIT</VASID> 
</SenderIdentification>
 <Recipients>
<To> 
<Number>5551234567</Number> 
</To> </Recipients> 
<ServiceCode>54321</ServiceCode> 
<MessageClass>Personal</MessageClass> 
<ExpiryDate>2011-03-20T10:42:58-04:00</ExpiryDate> 
<DeliveryReport>true</DeliveryReport> 
<Priority>Low</Priority> 
<Subject>Hello Stack Overflow</Subject> 
<Content href="cid:generic_content_id" /> 
</SubmitReq> 
</env:Body> 
</env:Envelope> 
--Part_0_22726732.1176907380897 
Content-Type: multipart/related; boundary="----=_Part_1_17007273.11769073 79006";start="<mms.smil>";type="application/smil";start="<mms.smil>";type ="application/smil" 
Content-ID: <generic_content_id>

------=_Part_1_17007273.1176907379006 
Content-Type: text/plain; name=test1.txt; charset=us-ascii 
Content-Transfer-Encoding: 7bit 
Content-Disposition: attachment; filename=test1.txt 
Content-ID: <test1.txt>

I am message body.
------=_Part_1_17007273.1176907379006 
Content-Type: image/gif; name=yellowfl.gif 
Content-Transfer-Encoding: base64 
Content-Disposition: attachment; filename=yellowfl.gif 
Content-ID: <yellowfl.gif>

R0lGODlhZQBQAPUAAPzxp51dBvztkPLSMvr89uizAfzpcgMECvDWS/nJAv3lVdumBO7aa/73w f35 ... ZWB4SioQC/TJADOwTCaTyWRgmUwmk8lkYJlMJggAOw== 
------=_Part_1_17007273.1176907379006
Content-Type: application/smil 
Content-Transfer-Encoding: 7bit 
Content-ID: <mms.smil>

<?xml version="1.0" encoding="UTF-8"?> 
<smil>
<head>
<layout> 
<root-layout width="100%" height="100%"/> 
<region id="Text" top="50%" left="0" height="50%" width="100%" fit="hidden"/> 
<region id="Image" top="0" left="0" height="50%" width="100%" fit="hidden"/> 
</layout> </head> <body> <par> <img src="cid:yellowfl.gif" region="Image"/> 
<text src="cid:test1.txt" region="Text"/>
</par> 
</body> 
</smil> 
------=_Part_1_17007273.1176907379006-- 
--Part_0_22726732.1176907380897—

The MO will come as a a SOAP message to. So basically to send/receive MMS messages with an aggregator you need to parse/create SOAP requests according the the MM7 specification and the aggregator's specific API requirements.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.