iOS MMS mm7阅读器

时间:2014-02-11 02:10:36

标签: ios7 mms mm7

通过我的应用程序发送彩信时遇到了麻烦。 MMS的附件似乎在某种程度上搞砸了。有没有办法从iOS上的MMS或任何xml格式中提取mm7。 我知道有些应用程序可以在Android上运行但是iOS呢?

编辑: 我很想从我的mm7 / xml文件中得到这种输出,笑容......任何......

--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

由于

1 个答案:

答案 0 :(得分:0)

MM7协议是基于SOAP / HTTP的协议,用于增值服务提供商(VASP)和MMSC(MMS中心)之间的通信。在MMS架构中,VASP是服务器端应用程序向手机发送消息和从手机接收消息。

客户端应用程序(如您正在开发的应用程序)应使用MM4协议与MMSC进行通信。

(VASP) <-- MM7 --> (MMSC) <-- MM4 --> (handset)

根据OMA MMS ENC规范,MM4由几种类型的二进制编码消息组成。传输是用于发送/接收的HTTP和用于向手机发送通知的WAP推送。