I have troubles with a MMS sent through my application. The attachment of the MMS seems to be somehow messed up. Is there any way to extract the mm7 from the MMS or any xml format on iOS. I know there are apps to do it on Android but what about iOS?
EDIT: I'd love to get this kind of output out of my mm7/xml file, the smil...anything...
--34543345345435\r
Content-Type: text/xml; charset=us-ascii\r
Content-Transfer-Encoding: 7bit\r
Content-ID: <mms7-submit>\r
\r
<?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">657567567567</mm7:TransactionID>
</env:Header>
<env:Body>
<SubmitReq xmlns= "http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-6-MM7-1-4">
<MM7Version>6.8.0</MM7Version>
<SenderIdentification>
<VASID>#{vasid}</VASID>
<VASPID>#{vaspid}</VASPID>
</SenderIdentification>
<Recipients>
<To>
<Number>+#{msisdn}</Number>
</To>
</Recipients>
<ServiceCode>#{shortcode.to_s}</ServiceCode>
<ApplicID>#{applicid}</ApplicID>
<AuxApplicInfo>#{action}</AuxApplicInfo>
<DeliveryReport>true</DeliveryReport>
<Subject><![CDATA[#{subject.to_s}]]></Subject>
<Content href="cid:myid.cidgeneric" allowAdaptations="false"/>
</SubmitReq>
</env:Body>
</env:Envelope>
\r
--34543345345435\r
Content-Type: multipart/related; boundary="657567567567"\r
Content-ID: <myid.cidgeneric>\r
.....CONTENT...
--34543345345435\r
Thanks