SlideShare uma empresa Scribd logo
1 de 26
Mobile Computing
Participents 
112323 : Inkal Patel
112329 : Jatin Patel
 Topic 
MMS [Multimedia Message Service]
Department Of Computer Science
Vidyapith
Agenda
• What is MMS
• Introduction
• Figures
• MMS message example
• SMIL and supported media types
• Specifications
• Network elements
• MMS service in detail
• Other issues
• Personal view
• Questions?
Department Of Computer Science
Vidyapith
What is MMS (1/2)
• In short: ”A method to send voice,
pictures, text and video from phone/
computer to phone/computer”
• Virtually all new phones have the
capabity to send MMS messages. (For
example all Nokia phones starting from
the new 3000 model series)
• In order to send MMS messages the
user has to configure GPRS (or other
data channel) settings to his/her phone
Department Of Computer Science
Vidyapith
What is MMS (2/2)
• The recipient address can be MSISDN, a
phone number or an e-mail address
• The messages are always relayed through a
MMSC (Multimedia Messaging Service Center)
• Current MMS services:
– Pictures, video, sound and text from computer/phone to
computer/phone
– ISP’s have personal accounts for users
• People can for example store pictures on an ISP’s server and then
send them as an MMS using a computer
• Future MMS services
– Every possible way of combining text, sound and pictures
Department Of Computer Science
Vidyapith
Introduction to MMS (2)
Department Of Computer Science
Vidyapith
Introduction to MMS (3)
Multimedia
Messaging
Center (MMSC)
Internet
MMS Terminal A
MMS Terminal B
Department Of Computer Science
Vidyapith
Comparison of MMS and SMS
• both messaging; store-and-forward, not real time.
• MMS: not size-limited, SMS: 160 char;
• MMS: rich message(video,audio..); SMS: pure text
• MMS: personalized profile(when,how send MMS). SMS: no
profile
• MMS: 2.5G, 3G. SMS: 2G+2.5G, also 3G if like.
• MMS: need storage(large). SMS: not a problem due to small
size.
• MMSC: complicated, many elements from different vendors.
SMSC: simple, monolithic
• MMS: data channel; SMS: signalling channel
Department Of Computer Science
Vidyapith
MMS Messaging Architecture (1)
MMSM
E
MMSS
MMS Terminal A MMS Server
MMS Proxy Relay
Internet
L
Legacy Wireless Messaging
Systems
Email Server
MMS Terminal B
MMS Terminal C
MMSR
Department Of Computer Science
Vidyapith
MMS Messaging Architecture (2)
• MMS Terminal: send, receive, render or create,
modify MM.
• MMS Proxy Relay: interact with MMS terminal, route
MM to target network, send notification to receiver,
communicate with MMS Server.
• MMS Server: storage. Can combined with MMS
Proxy Relay.
• MMSM: interface between client & Proxy Relay; MMSR
and MMSS: not defined yet.
Department Of Computer Science
Vidyapith
MMS Messaging Architecture (3)
• With legacy messaging system(i.e. SMS):
interface not defined yet; MM filtered out or
get a SMS with URL pointing to MM.
• With email system: send MM to Email server,
receive MM from Email server, fetch MM
from Email server.
Department Of Computer Science
Vidyapith
MMS Messaging Architecture (4)
Interface between mobile handset and MMS proxy relay
• WAP gateway provides HTTP and PUSH services.
• WSP (Wireless Service Protocol) as transport layer between client and WAP
gateway.
• SMIL (Synchornized Multimedia Intergration Language) or WML (Wireless Markup
Language) as Presentation layer.
• WAP gateway encapsulate MM as HTTP to proxy relay
• WAP gateway decapsulate traffic from proxy relay to MMS client.
Department Of Computer Science
Vidyapith
Figures
• In Britain 15% of sold phones have a camera by the
end of this year (Wireless World Forum)
• All major ISPs in Finland have MMS relaying
equipment. One MMS costs about 0.6 e
• Worldwide in 2002 over 580 billion users sent 430
billion SMS messages. Under 1 % of users used
MMS (Telecom Trends International)
• Wireless World Forum* predicts that MMS is worth
5.8 billion by 2006 in the Key 16 market**. This is
only 20% of the amout that analysts predict.
• ISPs do not give out information regarding the
number of sent MMS messages.
• In short: estimations are still high and it is uncertain
will MMS hit the market big time like SMS.
Department Of Computer Science
Vidyapith
SMIL and supported media types
• SMIL = Synchronized Multimedia Integration Language
– HTML-like language with timing capabilites
– SMIL defines when and where different MMS message
elements (i.e text, audio) are presented
– First phones offer only limited SMIL
– Altenatives for example XHTML, but it does not support
timing
– Conclusion: SMIL must be supported in the future. To help
this there are already documents concerning SMIL+XHTML
• Supported media types:
– Picture: JPEG, GIF, WBMP
– Text: UTF-8/16
– Speech: AMR (Adaptive Multi-Rate)
– Personal information Management: vCalendar and vCard
Department Of Computer Science
Vidyapith
MMS example (1/4)
Department Of Computer Science
Vidyapith
MMS example (2/4)
• Header
– X-Mms-Message-Type: m-retrieve-conf (required)
– X-Mms-Transaction-Id: text-string
– X-Mms-Version: 1.0
– Message-Id: text-string (usually x@x format)
– Date: HTTP-date-format
– From: address@domain or +InternationalPhoneNumber/TYPE=PLMN (Address-
present-token is assumed)
– To: address@domain or +InternationalPhoneNumber/TYPE=PLMN (use multiple
headers for multiple recipients)
– Cc: (same format as To)
– Bcc: (same format as To)
– Subject: text-string
– X-Mms-Message-Class: Personal, Advertisement, Informational or Auto (default is
Personal)
– X-Mms-Priority: Low, Normal or High (default is Normal)
– X-Mms-Delivery-Report: Yes or No (default is No)
– X-Mms-Read-Reply: Yes or No (default is No)
– Content-type: MIME-Type (default is application/vnd.wap.multipart.related,
override default with caution!)X-NowMMS-Content-Location: filename;content-
type (optional, use multiple headers for multiple files)
Department Of Computer Science
Vidyapith
MMS example (3/4)
• SMIL part
<?XML version="1.0" ?>
<!DOCTYPE SMIL PUBLIC "-//W3C//DTD SMIL 2.0 Basic//EN"
"http://www.w3.org/TR/REC-smil/2000/SMIL20Basic.dtd">
<smil>
<head>
<layout> <!-- This is a "landscape" screen -->
<root-layout width="352" height="144"/>
<region id="Image" width="176" height="144" left="0" top="0"/>
<region id="Text" width="176" height="144" left="176" top="0"/>
</layout>
</head>
<body>
<par dur="8s">
<img src="FirstImage.jpg" region="Image" alt="First image" begin="1s" end="6s"/>
<text src="FirstText.txt" region="Text"/>
<audio/>
</par>
</body>
</smil> Department Of Computer Science
Vidyapith
MMS example (4/4)
• <smil>: smil part
• <par>: parallel -- happens in parallel. The
par-tag can have dur=” XXms” as an attribute
• <exce>: only one can be selected, a button
for example (not shown here)
• <seq>: elements played in a sequence (not
shown here)
Department Of Computer Science
Vidyapith
Specifications
• 3GPP has published two MMS related
specifications
– TS 22.140 Service Aspects
• System requirements at a general level
– TS 23-140 Functional Description
• Detailed version which descibes various architectural
elements that are a part of MMS
• In addition to these 3GPP has five WAP MMS
specifications that describe
– Architecture overview
– Client Transaction
– Encapsulation Protocol
– Two Wireless Session Protocol Spesifications
Department Of Computer Science
Vidyapith
Network elements (1/2)
Department Of Computer Science
Vidyapith
Network elements (2/2)
• E-mail Server/Gateway
– MMS to E-mail
• Legacy support
– Server where to store the message before user fetches it
• Subscriber database
– Helps MMSC to decide what content to deliver
• Content server
– If a user’s mobile phone does not support sent media,
content server converts it
• Voicemail
– Voice can be encapsulated to MMS messages
• Foreign MMSC
– Must be used when MMS is sent to other carrier’s network
• These are just the basic elements, the future will show us
many more
Department Of Computer Science
Vidyapith
MMS service in detail
1. Originator addresses a message
2. Mobile device contains information about MMSC
and initializes a connection and sends the message
3. MMSC accepts the message
4. MMSC sends the message to the receiver
5. The receiver gets information about the message
from MMSC
• Receiver can decide when to get the message
1. MMS message in sent to the user
2. Receiver acknowledges the message
3. MMSC informs the originator that the message was
delivered
Department Of Computer Science
Vidyapith
MMS Capable Mobilephones
Nokia 7650
Nokia 7210
Nokia 3510
Sony Ericsson
T300
Ericsson T68/ie
Sony Ericsson
P800
Motorola A820
Nokia 3315
Nokia 6610
Nokia 6100
Nokia 5100
Nokia 3650
Nokia 3530
Sony EricssonP802
Department Of Computer Science
Vidyapith
Other important issues
• Terminolgy
– Synchronous: only one message can be
handled at a time
– Asynchronous: several messages can be
handled at a time
• MMSC center uses standard HTTP
headers
• Security: SSL can be used in MMSC
• Charging: external applications may
send charging information to MMSC
Department Of Computer Science
Vidyapith
Questions?
• Thank you!
Department Of Computer Science
Vidyapith
Personal view
• MMS looks like a killer application, but it
will not ”kill” until the price is reasonable
• MMS will definately belong to the future
of mobile communication
• Streaming and MMS could offer big
revenues
Department Of Computer Science
Vidyapith
References
• Course book
• www.w2forum.com
• http://www.ihub.com/MMS%20Messages.htm
• http://www.symbian.com/developer/techlib/v70
• http://www.forum.nokia.com/html_reader
/main/1,4997,2090,00.html?page_nbr=1
Department Of Computer Science
Vidyapith

Mais conteúdo relacionado

Mais procurados

TELECOMMUNICATIONS SYSTEMS
TELECOMMUNICATIONS SYSTEMSTELECOMMUNICATIONS SYSTEMS
TELECOMMUNICATIONS SYSTEMSjunnubabu
 
MEDIUM ACCESS CONTROL
MEDIUM ACCESS CONTROLMEDIUM ACCESS CONTROL
MEDIUM ACCESS CONTROLjunnubabu
 
Key management and distribution
Key management and distributionKey management and distribution
Key management and distributionRiya Choudhary
 
Routing algorithm
Routing algorithmRouting algorithm
Routing algorithmBushra M
 
Substitution techniques
Substitution techniquesSubstitution techniques
Substitution techniquesvinitha96
 
2.5G Cellular Standards
2.5G Cellular Standards2.5G Cellular Standards
2.5G Cellular StandardsGauravBiswas9
 
symmetric key encryption algorithms
 symmetric key encryption algorithms symmetric key encryption algorithms
symmetric key encryption algorithmsRashmi Burugupalli
 
Mobile computing unit2,SDMA,FDMA,CDMA,TDMA Space Division Multi Access,Frequ...
Mobile computing unit2,SDMA,FDMA,CDMA,TDMA  Space Division Multi Access,Frequ...Mobile computing unit2,SDMA,FDMA,CDMA,TDMA  Space Division Multi Access,Frequ...
Mobile computing unit2,SDMA,FDMA,CDMA,TDMA Space Division Multi Access,Frequ...Pallepati Vasavi
 
Secure Hash Algorithm (SHA-512)
Secure Hash Algorithm (SHA-512)Secure Hash Algorithm (SHA-512)
Secure Hash Algorithm (SHA-512)DUET
 
cellular wirelessnetworks
 cellular wirelessnetworks cellular wirelessnetworks
cellular wirelessnetworksSrinivasa Rao
 
AES-Advanced Encryption Standard
AES-Advanced Encryption StandardAES-Advanced Encryption Standard
AES-Advanced Encryption StandardPrince Rachit
 
Principles of public key cryptography and its Uses
Principles of  public key cryptography and its UsesPrinciples of  public key cryptography and its Uses
Principles of public key cryptography and its UsesMohsin Ali
 

Mais procurados (20)

TELECOMMUNICATIONS SYSTEMS
TELECOMMUNICATIONS SYSTEMSTELECOMMUNICATIONS SYSTEMS
TELECOMMUNICATIONS SYSTEMS
 
MEDIUM ACCESS CONTROL
MEDIUM ACCESS CONTROLMEDIUM ACCESS CONTROL
MEDIUM ACCESS CONTROL
 
Public key algorithm
Public key algorithmPublic key algorithm
Public key algorithm
 
What is XMPP Protocol
What is XMPP ProtocolWhat is XMPP Protocol
What is XMPP Protocol
 
GSM channels
GSM channelsGSM channels
GSM channels
 
Mobile Data Networks
Mobile Data NetworksMobile Data Networks
Mobile Data Networks
 
Key management and distribution
Key management and distributionKey management and distribution
Key management and distribution
 
Equalization
EqualizationEqualization
Equalization
 
Routing algorithm
Routing algorithmRouting algorithm
Routing algorithm
 
Substitution techniques
Substitution techniquesSubstitution techniques
Substitution techniques
 
2.5G Cellular Standards
2.5G Cellular Standards2.5G Cellular Standards
2.5G Cellular Standards
 
symmetric key encryption algorithms
 symmetric key encryption algorithms symmetric key encryption algorithms
symmetric key encryption algorithms
 
UMTS, Introduction.
UMTS, Introduction.UMTS, Introduction.
UMTS, Introduction.
 
Mobile computing unit2,SDMA,FDMA,CDMA,TDMA Space Division Multi Access,Frequ...
Mobile computing unit2,SDMA,FDMA,CDMA,TDMA  Space Division Multi Access,Frequ...Mobile computing unit2,SDMA,FDMA,CDMA,TDMA  Space Division Multi Access,Frequ...
Mobile computing unit2,SDMA,FDMA,CDMA,TDMA Space Division Multi Access,Frequ...
 
Secure Hash Algorithm (SHA-512)
Secure Hash Algorithm (SHA-512)Secure Hash Algorithm (SHA-512)
Secure Hash Algorithm (SHA-512)
 
cellular wirelessnetworks
 cellular wirelessnetworks cellular wirelessnetworks
cellular wirelessnetworks
 
Spread spectrum
Spread spectrumSpread spectrum
Spread spectrum
 
AES-Advanced Encryption Standard
AES-Advanced Encryption StandardAES-Advanced Encryption Standard
AES-Advanced Encryption Standard
 
Principles of public key cryptography and its Uses
Principles of  public key cryptography and its UsesPrinciples of  public key cryptography and its Uses
Principles of public key cryptography and its Uses
 
Cordless Technology
Cordless TechnologyCordless Technology
Cordless Technology
 

Destaque

MMS Introduction
MMS IntroductionMMS Introduction
MMS Introductionmamahow
 
Wireless application protocol (WAP)
Wireless application protocol (WAP)Wireless application protocol (WAP)
Wireless application protocol (WAP)Sajan Sahu
 
SMS & MMS Technologies
SMS & MMS TechnologiesSMS & MMS Technologies
SMS & MMS TechnologiesArun Shukla
 
10 Slides to SMS
10 Slides to SMS10 Slides to SMS
10 Slides to SMSseanraz
 
Wireless Application Protocol
Wireless Application ProtocolWireless Application Protocol
Wireless Application Protocolbartekel
 
Wireless Application Protocol
Wireless Application ProtocolWireless Application Protocol
Wireless Application ProtocolNyi Tun
 
Automated Penetration Testing With Core Impact
Automated Penetration Testing With Core ImpactAutomated Penetration Testing With Core Impact
Automated Penetration Testing With Core ImpactTom Eston
 
An introduction to mutation testing
An introduction to mutation testingAn introduction to mutation testing
An introduction to mutation testingdavidmus
 
wireless application protocol
wireless application protocol wireless application protocol
wireless application protocol Smriti Agrawal
 
Mobile Messaging - Part 5 - Mms Arch And Transactions
Mobile Messaging  - Part 5 - Mms Arch And TransactionsMobile Messaging  - Part 5 - Mms Arch And Transactions
Mobile Messaging - Part 5 - Mms Arch And TransactionsGwenaël Le Bodic
 
Introduction to SMS, MMS, Modems & Gateways
Introduction to SMS, MMS, Modems & GatewaysIntroduction to SMS, MMS, Modems & Gateways
Introduction to SMS, MMS, Modems & Gatewaystawi123
 
WAP- Wireless Application Protocol
WAP- Wireless Application ProtocolWAP- Wireless Application Protocol
WAP- Wireless Application ProtocolSenthil Kanth
 
IMS IP multimedia subsystem presentation
IMS IP multimedia subsystem presentationIMS IP multimedia subsystem presentation
IMS IP multimedia subsystem presentationWaldir R. Pires Jr
 
futuristic trends in information technology
futuristic trends in information technologyfuturistic trends in information technology
futuristic trends in information technologyamartya_kumar
 

Destaque (20)

MMS Introduction
MMS IntroductionMMS Introduction
MMS Introduction
 
Wireless application protocol (WAP)
Wireless application protocol (WAP)Wireless application protocol (WAP)
Wireless application protocol (WAP)
 
security issue
security issuesecurity issue
security issue
 
SMS & MMS Technologies
SMS & MMS TechnologiesSMS & MMS Technologies
SMS & MMS Technologies
 
Sms &mms
Sms &mmsSms &mms
Sms &mms
 
10 Slides to SMS
10 Slides to SMS10 Slides to SMS
10 Slides to SMS
 
Wireless Application Protocol
Wireless Application ProtocolWireless Application Protocol
Wireless Application Protocol
 
Wireless Application Protocol
Wireless Application ProtocolWireless Application Protocol
Wireless Application Protocol
 
Automated Penetration Testing With Core Impact
Automated Penetration Testing With Core ImpactAutomated Penetration Testing With Core Impact
Automated Penetration Testing With Core Impact
 
An introduction to mutation testing
An introduction to mutation testingAn introduction to mutation testing
An introduction to mutation testing
 
MMS presentation
MMS presentationMMS presentation
MMS presentation
 
wireless application protocol
wireless application protocol wireless application protocol
wireless application protocol
 
Mobile Messaging - Part 5 - Mms Arch And Transactions
Mobile Messaging  - Part 5 - Mms Arch And TransactionsMobile Messaging  - Part 5 - Mms Arch And Transactions
Mobile Messaging - Part 5 - Mms Arch And Transactions
 
Ch5
Ch5Ch5
Ch5
 
Introduction to SMS, MMS, Modems & Gateways
Introduction to SMS, MMS, Modems & GatewaysIntroduction to SMS, MMS, Modems & Gateways
Introduction to SMS, MMS, Modems & Gateways
 
WAP- Wireless Application Protocol
WAP- Wireless Application ProtocolWAP- Wireless Application Protocol
WAP- Wireless Application Protocol
 
IMS IP multimedia subsystem presentation
IMS IP multimedia subsystem presentationIMS IP multimedia subsystem presentation
IMS IP multimedia subsystem presentation
 
Short message service
Short message serviceShort message service
Short message service
 
futuristic trends in information technology
futuristic trends in information technologyfuturistic trends in information technology
futuristic trends in information technology
 
Wap ppt
Wap pptWap ppt
Wap ppt
 

Semelhante a Mobile Computing

SMS-SMPP-Concepts
SMS-SMPP-ConceptsSMS-SMPP-Concepts
SMS-SMPP-ConceptsDuy Do Phan
 
Mobile Message Delivery: SMS and MMS_Michael Hanley
Mobile Message Delivery: SMS and MMS_Michael HanleyMobile Message Delivery: SMS and MMS_Michael Hanley
Mobile Message Delivery: SMS and MMS_Michael HanleySara Quinn
 
Tecore networks icoresmsc
Tecore networks icoresmscTecore networks icoresmsc
Tecore networks icoresmscDaud Suleiman
 
Telecommunication system gms mobile service
Telecommunication system gms mobile serviceTelecommunication system gms mobile service
Telecommunication system gms mobile serviceSanSan149
 
GSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptxGSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptxANIKETKUMARSHARMA3
 
Mobile wireles-computing
Mobile wireles-computingMobile wireles-computing
Mobile wireles-computingLuthfi Prayoga
 
GSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptxGSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptxJEGANGOVIND
 
Image Encoding to Short Text Message
Image Encoding to Short Text MessageImage Encoding to Short Text Message
Image Encoding to Short Text Messageijtsrd
 
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdfRoopa slideshare
 
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdfBhavanislide2
 
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdfRoopa slideshare
 
GSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptxGSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptxssuser5c580e1
 
Mobile Computing Complete Introduction
Mobile Computing Complete IntroductionMobile Computing Complete Introduction
Mobile Computing Complete IntroductionDenis R
 
1cellulñar network
1cellulñar network1cellulñar network
1cellulñar networkEmiii
 
5432 cellular network
5432 cellular network5432 cellular network
5432 cellular networkRaafat younis
 

Semelhante a Mobile Computing (20)

SMS-SMPP-Concepts
SMS-SMPP-ConceptsSMS-SMPP-Concepts
SMS-SMPP-Concepts
 
Mobile Message Delivery: SMS and MMS_Michael Hanley
Mobile Message Delivery: SMS and MMS_Michael HanleyMobile Message Delivery: SMS and MMS_Michael Hanley
Mobile Message Delivery: SMS and MMS_Michael Hanley
 
Tecore networks icoresmsc
Tecore networks icoresmscTecore networks icoresmsc
Tecore networks icoresmsc
 
Telecommunication system gms mobile service
Telecommunication system gms mobile serviceTelecommunication system gms mobile service
Telecommunication system gms mobile service
 
GSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptxGSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptx
 
Poster
PosterPoster
Poster
 
Mobile wireles-computing
Mobile wireles-computingMobile wireles-computing
Mobile wireles-computing
 
GSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptxGSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptx
 
Image Encoding to Short Text Message
Image Encoding to Short Text MessageImage Encoding to Short Text Message
Image Encoding to Short Text Message
 
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
 
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
 
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
9.EAACK---A-Secure-Intrusion-Detection-System-for-MANETs-pdf.pdf
 
GSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptxGSM TECHNOLOGIES-ARCHITECTURE.pptx
GSM TECHNOLOGIES-ARCHITECTURE.pptx
 
Unit II -Mobile telecommunication systems
Unit II -Mobile telecommunication systemsUnit II -Mobile telecommunication systems
Unit II -Mobile telecommunication systems
 
Cellular network
Cellular networkCellular network
Cellular network
 
Mobile Computing Complete Introduction
Mobile Computing Complete IntroductionMobile Computing Complete Introduction
Mobile Computing Complete Introduction
 
Global System for Mobile GSM
Global System for Mobile GSM Global System for Mobile GSM
Global System for Mobile GSM
 
Gsm Vs Cdma
Gsm Vs CdmaGsm Vs Cdma
Gsm Vs Cdma
 
1cellulñar network
1cellulñar network1cellulñar network
1cellulñar network
 
5432 cellular network
5432 cellular network5432 cellular network
5432 cellular network
 

Último

Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptxPoojaSen20
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 

Último (20)

Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 

Mobile Computing

  • 1. Mobile Computing Participents  112323 : Inkal Patel 112329 : Jatin Patel  Topic  MMS [Multimedia Message Service] Department Of Computer Science Vidyapith
  • 2. Agenda • What is MMS • Introduction • Figures • MMS message example • SMIL and supported media types • Specifications • Network elements • MMS service in detail • Other issues • Personal view • Questions? Department Of Computer Science Vidyapith
  • 3. What is MMS (1/2) • In short: ”A method to send voice, pictures, text and video from phone/ computer to phone/computer” • Virtually all new phones have the capabity to send MMS messages. (For example all Nokia phones starting from the new 3000 model series) • In order to send MMS messages the user has to configure GPRS (or other data channel) settings to his/her phone Department Of Computer Science Vidyapith
  • 4. What is MMS (2/2) • The recipient address can be MSISDN, a phone number or an e-mail address • The messages are always relayed through a MMSC (Multimedia Messaging Service Center) • Current MMS services: – Pictures, video, sound and text from computer/phone to computer/phone – ISP’s have personal accounts for users • People can for example store pictures on an ISP’s server and then send them as an MMS using a computer • Future MMS services – Every possible way of combining text, sound and pictures Department Of Computer Science Vidyapith
  • 5. Introduction to MMS (2) Department Of Computer Science Vidyapith
  • 6. Introduction to MMS (3) Multimedia Messaging Center (MMSC) Internet MMS Terminal A MMS Terminal B Department Of Computer Science Vidyapith
  • 7. Comparison of MMS and SMS • both messaging; store-and-forward, not real time. • MMS: not size-limited, SMS: 160 char; • MMS: rich message(video,audio..); SMS: pure text • MMS: personalized profile(when,how send MMS). SMS: no profile • MMS: 2.5G, 3G. SMS: 2G+2.5G, also 3G if like. • MMS: need storage(large). SMS: not a problem due to small size. • MMSC: complicated, many elements from different vendors. SMSC: simple, monolithic • MMS: data channel; SMS: signalling channel Department Of Computer Science Vidyapith
  • 8. MMS Messaging Architecture (1) MMSM E MMSS MMS Terminal A MMS Server MMS Proxy Relay Internet L Legacy Wireless Messaging Systems Email Server MMS Terminal B MMS Terminal C MMSR Department Of Computer Science Vidyapith
  • 9. MMS Messaging Architecture (2) • MMS Terminal: send, receive, render or create, modify MM. • MMS Proxy Relay: interact with MMS terminal, route MM to target network, send notification to receiver, communicate with MMS Server. • MMS Server: storage. Can combined with MMS Proxy Relay. • MMSM: interface between client & Proxy Relay; MMSR and MMSS: not defined yet. Department Of Computer Science Vidyapith
  • 10. MMS Messaging Architecture (3) • With legacy messaging system(i.e. SMS): interface not defined yet; MM filtered out or get a SMS with URL pointing to MM. • With email system: send MM to Email server, receive MM from Email server, fetch MM from Email server. Department Of Computer Science Vidyapith
  • 11. MMS Messaging Architecture (4) Interface between mobile handset and MMS proxy relay • WAP gateway provides HTTP and PUSH services. • WSP (Wireless Service Protocol) as transport layer between client and WAP gateway. • SMIL (Synchornized Multimedia Intergration Language) or WML (Wireless Markup Language) as Presentation layer. • WAP gateway encapsulate MM as HTTP to proxy relay • WAP gateway decapsulate traffic from proxy relay to MMS client. Department Of Computer Science Vidyapith
  • 12. Figures • In Britain 15% of sold phones have a camera by the end of this year (Wireless World Forum) • All major ISPs in Finland have MMS relaying equipment. One MMS costs about 0.6 e • Worldwide in 2002 over 580 billion users sent 430 billion SMS messages. Under 1 % of users used MMS (Telecom Trends International) • Wireless World Forum* predicts that MMS is worth 5.8 billion by 2006 in the Key 16 market**. This is only 20% of the amout that analysts predict. • ISPs do not give out information regarding the number of sent MMS messages. • In short: estimations are still high and it is uncertain will MMS hit the market big time like SMS. Department Of Computer Science Vidyapith
  • 13. SMIL and supported media types • SMIL = Synchronized Multimedia Integration Language – HTML-like language with timing capabilites – SMIL defines when and where different MMS message elements (i.e text, audio) are presented – First phones offer only limited SMIL – Altenatives for example XHTML, but it does not support timing – Conclusion: SMIL must be supported in the future. To help this there are already documents concerning SMIL+XHTML • Supported media types: – Picture: JPEG, GIF, WBMP – Text: UTF-8/16 – Speech: AMR (Adaptive Multi-Rate) – Personal information Management: vCalendar and vCard Department Of Computer Science Vidyapith
  • 14. MMS example (1/4) Department Of Computer Science Vidyapith
  • 15. MMS example (2/4) • Header – X-Mms-Message-Type: m-retrieve-conf (required) – X-Mms-Transaction-Id: text-string – X-Mms-Version: 1.0 – Message-Id: text-string (usually x@x format) – Date: HTTP-date-format – From: address@domain or +InternationalPhoneNumber/TYPE=PLMN (Address- present-token is assumed) – To: address@domain or +InternationalPhoneNumber/TYPE=PLMN (use multiple headers for multiple recipients) – Cc: (same format as To) – Bcc: (same format as To) – Subject: text-string – X-Mms-Message-Class: Personal, Advertisement, Informational or Auto (default is Personal) – X-Mms-Priority: Low, Normal or High (default is Normal) – X-Mms-Delivery-Report: Yes or No (default is No) – X-Mms-Read-Reply: Yes or No (default is No) – Content-type: MIME-Type (default is application/vnd.wap.multipart.related, override default with caution!)X-NowMMS-Content-Location: filename;content- type (optional, use multiple headers for multiple files) Department Of Computer Science Vidyapith
  • 16. MMS example (3/4) • SMIL part <?XML version="1.0" ?> <!DOCTYPE SMIL PUBLIC "-//W3C//DTD SMIL 2.0 Basic//EN" "http://www.w3.org/TR/REC-smil/2000/SMIL20Basic.dtd"> <smil> <head> <layout> <!-- This is a "landscape" screen --> <root-layout width="352" height="144"/> <region id="Image" width="176" height="144" left="0" top="0"/> <region id="Text" width="176" height="144" left="176" top="0"/> </layout> </head> <body> <par dur="8s"> <img src="FirstImage.jpg" region="Image" alt="First image" begin="1s" end="6s"/> <text src="FirstText.txt" region="Text"/> <audio/> </par> </body> </smil> Department Of Computer Science Vidyapith
  • 17. MMS example (4/4) • <smil>: smil part • <par>: parallel -- happens in parallel. The par-tag can have dur=” XXms” as an attribute • <exce>: only one can be selected, a button for example (not shown here) • <seq>: elements played in a sequence (not shown here) Department Of Computer Science Vidyapith
  • 18. Specifications • 3GPP has published two MMS related specifications – TS 22.140 Service Aspects • System requirements at a general level – TS 23-140 Functional Description • Detailed version which descibes various architectural elements that are a part of MMS • In addition to these 3GPP has five WAP MMS specifications that describe – Architecture overview – Client Transaction – Encapsulation Protocol – Two Wireless Session Protocol Spesifications Department Of Computer Science Vidyapith
  • 19. Network elements (1/2) Department Of Computer Science Vidyapith
  • 20. Network elements (2/2) • E-mail Server/Gateway – MMS to E-mail • Legacy support – Server where to store the message before user fetches it • Subscriber database – Helps MMSC to decide what content to deliver • Content server – If a user’s mobile phone does not support sent media, content server converts it • Voicemail – Voice can be encapsulated to MMS messages • Foreign MMSC – Must be used when MMS is sent to other carrier’s network • These are just the basic elements, the future will show us many more Department Of Computer Science Vidyapith
  • 21. MMS service in detail 1. Originator addresses a message 2. Mobile device contains information about MMSC and initializes a connection and sends the message 3. MMSC accepts the message 4. MMSC sends the message to the receiver 5. The receiver gets information about the message from MMSC • Receiver can decide when to get the message 1. MMS message in sent to the user 2. Receiver acknowledges the message 3. MMSC informs the originator that the message was delivered Department Of Computer Science Vidyapith
  • 22. MMS Capable Mobilephones Nokia 7650 Nokia 7210 Nokia 3510 Sony Ericsson T300 Ericsson T68/ie Sony Ericsson P800 Motorola A820 Nokia 3315 Nokia 6610 Nokia 6100 Nokia 5100 Nokia 3650 Nokia 3530 Sony EricssonP802 Department Of Computer Science Vidyapith
  • 23. Other important issues • Terminolgy – Synchronous: only one message can be handled at a time – Asynchronous: several messages can be handled at a time • MMSC center uses standard HTTP headers • Security: SSL can be used in MMSC • Charging: external applications may send charging information to MMSC Department Of Computer Science Vidyapith
  • 24. Questions? • Thank you! Department Of Computer Science Vidyapith
  • 25. Personal view • MMS looks like a killer application, but it will not ”kill” until the price is reasonable • MMS will definately belong to the future of mobile communication • Streaming and MMS could offer big revenues Department Of Computer Science Vidyapith
  • 26. References • Course book • www.w2forum.com • http://www.ihub.com/MMS%20Messages.htm • http://www.symbian.com/developer/techlib/v70 • http://www.forum.nokia.com/html_reader /main/1,4997,2090,00.html?page_nbr=1 Department Of Computer Science Vidyapith