mms-gateway

How to send MMS with MM7 using Java?

微笑、不失礼 提交于 2020-01-03 13:41:08
问题 Please let me know is there any way to send MMS using MM7 protocol in Java? If there is a free API to generate the appropriate SOAP message please let me know it too. I'm in a dead end situation and I really need a way to do this. Your wise suggestions are also welcome. Thank in advance. 回答1: The MMS Soap should look like this: 3GPP MM7 SOAP Spesicifation. Here is how I'm doing it: You will need activation.jar, saaj-api.jar, activation.jar, and saaj-impl.jar (and any other dependent jar files

How to send MMS with MM7 using Java?

丶灬走出姿态 提交于 2020-01-03 13:41:08
问题 Please let me know is there any way to send MMS using MM7 protocol in Java? If there is a free API to generate the appropriate SOAP message please let me know it too. I'm in a dead end situation and I really need a way to do this. Your wise suggestions are also welcome. Thank in advance. 回答1: The MMS Soap should look like this: 3GPP MM7 SOAP Spesicifation. Here is how I'm doing it: You will need activation.jar, saaj-api.jar, activation.jar, and saaj-impl.jar (and any other dependent jar files

Android MMS Parsing

北慕城南 提交于 2019-12-12 01:26:23
问题 In one of my application, I have to parse the MMS content. I am able to get the encoded MMS content in the form of byte[] . Now I have to decode this byte[] and need to extract all the content based on their content types and header values. But I am struggling here. I don't know how to start decoding... Any help will be appreciated. 回答1: you have the content in byte[] so you can try this: byte[] buffer; String incomingNumber = new String(buffer); int indx = incomingNumber.indexOf("/TYPE"); if