mms sending
-
hi .. i have came to know that there is no help for sending a mms in .net .. so plzzzz if any one know any source code or any document plzzzzzz tell me ... (:confused: :eek:
Do you mean SMS, as in short messaging service (often called "texting" for mobile phones)? You'll need an SMS gateway. Google for "SMS" and you'll find some free and commercial gateways. Sending messages to it depends a little on the implementation (depending on what you need to do), otherwise it is a standard system and documentation would be included with the product (assuming you get even a half-way decent one).
-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
-
Do you mean SMS, as in short messaging service (often called "texting" for mobile phones)? You'll need an SMS gateway. Google for "SMS" and you'll find some free and commercial gateways. Sending messages to it depends a little on the implementation (depending on what you need to do), otherwise it is a standard system and documentation would be included with the product (assuming you get even a half-way decent one).
-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
"MMS" could also mean "MultiMedia Message", the advances SMS version (SMS++ ;-)) -- - Free Windows-based CMS: www.zeta-software.de/enu/producer/freeware/download.html - See me: www.magerquark.de - MSN Messenger: uwe_keim@hotmail.com
-
"MMS" could also mean "MultiMedia Message", the advances SMS version (SMS++ ;-)) -- - Free Windows-based CMS: www.zeta-software.de/enu/producer/freeware/download.html - See me: www.magerquark.de - MSN Messenger: uwe_keim@hotmail.com
Not familiar with that (I'm not exactly hip on the mobile craze these days), but wouldn't "MultiMedia Message" be "MMM"? Oh well, guess we'll have to wait and see what the person is talking about. If either of us is right, though, it'll still require a gateway.
-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
-
Not familiar with that (I'm not exactly hip on the mobile craze these days), but wouldn't "MultiMedia Message" be "MMM"? Oh well, guess we'll have to wait and see what the person is talking about. If either of us is right, though, it'll still require a gateway.
-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
Yes, "MMM" would sound more reasonable. "MMS" is a way of sending images and such stuff from mobile phone to mobile phone. IIRC it is rather expensive (compared with the transmission of voice). Probably 1 cent per byte ;P -- - Free Windows-based CMS: www.zeta-software.de/enu/producer/freeware/download.html - See me: www.magerquark.de - MSN Messenger: uwe_keim@hotmail.com
-
Yes, "MMM" would sound more reasonable. "MMS" is a way of sending images and such stuff from mobile phone to mobile phone. IIRC it is rather expensive (compared with the transmission of voice). Probably 1 cent per byte ;P -- - Free Windows-based CMS: www.zeta-software.de/enu/producer/freeware/download.html - See me: www.magerquark.de - MSN Messenger: uwe_keim@hotmail.com
Uwe Keim wrote: "MMS" is a way of sending images and such stuff from mobile phone to mobile phone. Ah, so perhaps Mobile-to-Mobile Service. Seems reasonable. If that's the case, though, the CompactFramework most likely wouldn't support this because it would've been too new. Of course, if it uses sockets, you could always encapsulate your own protocol. :eek:
-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
-
Uwe Keim wrote: "MMS" is a way of sending images and such stuff from mobile phone to mobile phone. Ah, so perhaps Mobile-to-Mobile Service. Seems reasonable. If that's the case, though, the CompactFramework most likely wouldn't support this because it would've been too new. Of course, if it uses sockets, you could always encapsulate your own protocol. :eek:
-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
MMS is for multimedia message service. GSM operators have MMS Servers and these mms servers have interfaces to speak with the outside. Since messages are in KBytes it can not be handled with SMS. Instead it can be handled with HTTP or SMTP interfaces. There might be some special operator interfaces as well. So it depends on the interface of the MMS server. If it is SMTP , you have to handle it using SMTP codes.