DirectoryTechnologyBlog Details for "Art Of Mobile"

Art Of Mobile


Art Of Mobile
Art of Mobile provides snippets, tutorials, news articles, newsletters, blogs, reviews and conferences covering all aspects of wireless technology.
Articles: 1, 2

Articles

What is MM per second (MM/sec)?
2007-03-22 13:40:00
What is MM per second (MM/sec)? How do you calculate MM per second? MM/sec is a common term that Telco industry used to define the license scheme when they measure the performance of MMSC (Multimedia Messaging Service Centre). So how do the Telco industry comes up with MM/sec? It first starts with SMSC when Telco industry ...
More About: What , Hat , Second , Econ
What is MM per second (MM/sec)?
2007-03-22 13:40:00
What is MM per second (MM/sec)? How do you calculate MM per second? MM/sec is a common term that Telco industry used to define the license scheme when they measure the performance of MMSC (Multimedia Messaging Service Centre). So how do the Telco industry comes up with MM/sec? It first starts with SMSC when Telco industry ...
What is MM per second (MM/sec)?
2007-03-22 13:40:00
What is MM per second (MM/sec)? How do you calculate MM per second? MM/sec is a common term that Telco industry used to define the license scheme when they measure the performance of MMSC (Multimedia Messaging Service Centre). So how do the Telco industry comes up with MM/sec? It first starts with SMSC when Telco industry ...
More About: What , Hat , Second , Econ
How to cut a 1GBit Ethernet Crossover RJ45 Cable
2007-03-15 15:40:00
This following table shows the arrangement of Cable for 1GBit Ethernet Cross over Cable which used all the 8 wires: GIGABIT ETHERNET (1000BASE-T) CROSSOVER Plug A Plug B Pin # Signal Conductor Color Code Pin # Signal Conductor Color Code 1 BI_DA+ white/green 1 BI_DA+ white/orange 2 BI_DA- green 2 BI_DA- orange 3 BI_DB+ white/orange 3 BI_DB+ white/green 4 BI_DC+ blue 4 BI_DC+ white/brown 5 BI_DC- white/blue 5 BI_DC- brown 6 BI_DB- orange 6 BI_DB- green 7 BI_DD+ white/brown 7 BI_DD+ blue 8 BI_DD- brown 8 BI_DD- white/blue
More About: How To , Over , Crossover
How to cut a 1GBit Ethernet Crossover RJ45 Cable
2007-03-15 15:40:00
This following table shows the arrangement of Cable for 1GBit Ethernet Cross over Cable which used all the 8 wires: GIGABIT ETHERNET (1000BASE-T) CROSSOVER Plug A Plug B Pin # Signal Conductor Color Code Pin # Signal Conductor Color Code 1 BI_DA+ white/green 1 BI_DA+ white/orange 2 BI_DA- green 2 BI_DA- orange 3 BI_DB+ white/orange 3 BI_DB+ white/green 4 BI_DC+ blue 4 BI_DC+ white/brown 5 BI_DC- white/blue 5 BI_DC- brown 6 BI_DB- orange 6 BI_DB- green 7 BI_DD+ white/brown 7 BI_DD+ blue 8 BI_DD- brown 8 BI_DD- white/blue
More About: How To , Over , Crossover
WAP 1.3 DTD Specification
2007-03-08 15:30:00
The following are the URLs to download the DTD for WAP 1.3 Specific ation: Wirleess Markup Language (WML) 1.3: http://www.wapforum.org/DTD/wml13.dtd Push Access Protocol (PAP): http://www.wapforum.org/DTD/pap_1.0.dtd Push Service Indication (SI): http://www.wapforum.org/DTD/si.dtd Push Service Loading (SL): http://www.wapforum.org/DTD/sl.dtd
More About: Cat , Wap
WAP 1.3 DTD Specification
2007-03-08 15:30:00
The following are the URLs to download the DTD for WAP 1.3 Specific ation: Wirleess Markup Language (WML) 1.3: http://www.wapforum.org/DTD/wml13.dtd Push Access Protocol (PAP): http://www.wapforum.org/DTD/pap_1.0.dtd Push Service Indication (SI): http://www.wapforum.org/DTD/si.dtd Push Service Loading (SL): http://www.wapforum.org/DTD/sl.dtd
More About: Cat , Wap
Detect WAP browser and redirect to different url in Perl
2007-03-01 15:17:00
Do you want to have the same url for your Web and Wap broswer? The following is the code to do so in Perl : #!/usr/local/bin/perl use CGI; my $query = new CGI; my @list=$query->Accept(); my $htmlsite="http://www.artofmobile.com/ind ex.html"; my $wmlsite="http://www.artofmobile.com/inde x.wml"; my $wml=0; my $html=0; foreach (@list) { $html=1 if /text/html/i; $wml=1 if /wap/; } print $query->redirect($wmlsite) if $wml==1; print $query->redirect($htmlsite) if $html==1; print $query->redirect($wmlsite);
More About: Direct , Browser , Rent
Detect WAP browser and redirect to different url in Perl
2007-03-01 15:17:00
Do you want to have the same url for your Web and Wap broswer? The following is the code to do so in Perl : #!/usr/local/bin/perl use CGI; my $query = new CGI; my @list=$query->Accept(); my $htmlsite="http://www.artofmobile.com/ind ex.html"; my $wmlsite="http://www.artofmobile.com/inde x.wml"; my $wml=0; my $html=0; foreach (@list) { $html=1 if /text/html/i; $wml=1 if /wap/; } print $query->redirect($wmlsite) if $wml==1; print $query->redirect($htmlsite) if $html==1; print $query->redirect($wmlsite);
More About: Direct , Browser , Rent
How to create a WAP push service in Perl
2007-02-22 15:37:00
To push a service (or commonly a URL) to a mobile phone from a Push Initiator (PI), normally a web server, WAP defines a protocol to do so in Push Access Protocol (PAP). This Push Message can be sent either as Service Indication (SI) or Service Loading (SL) kind of service push. SI signals an event on ...
More About: How To , Wap , Perl , Vice
How to create a WAP push service in Perl
2007-02-22 15:37:00
To push a service (or commonly a URL) to a mobile phone from a Push Initiator (PI), normally a web server, WAP defines a protocol to do so in Push Access Protocol (PAP). This Push Message can be sent either as Service Indication (SI) or Service Loading (SL) kind of service push. SI signals an event on ...
More About: How To , Wap , Perl , Vice
Detect WAP browser and redirect to different url in PHP
2007-02-09 15:37:00
Do you want to have the same url for your Web and Wap broswer? The following is the code to do so in PHP: <?php $htmlredirect = "http://www.artofmobile.com/index.html"; $wmlredirect = "http://www.artofmobile.com/index.wml"; $br='html'; if(preg_match("/wap/i",$HTTP_ACCEPT)) { $br = "wml"; } if($br == "wml") { header("302 Moved Temporarily"); header("Location: ".$wmlredirect); exit; } header("302 Moved Temporarily"); header("Location: ".$htmlredirect); ?>
More About: Php , Direct , Browser , Rent
Detect WAP browser and redirect to different url in PHP
2007-02-09 15:37:00
Do you want to have the same url for your Web and Wap broswer? The following is the code to do so in PHP: <?php $htmlredirect = "http://www.artofmobile.com/index.html"; $wmlredirect = "http://www.artofmobile.com/index.wml"; $br='html'; if(preg_match("/wap/i",$HTTP_ACCEPT)) { $br = "wml"; } if($br == "wml") { header("302 Moved Temporarily"); header("Location: ".$wmlredirect); exit; } header("302 Moved Temporarily"); header("Location: ".$htmlredirect); ?>
More About: Php , Direct , Browser , Rent
More articles from this author:
1, 2
111751 blogs in the directory.
Statistics resets every week.


Contact | About
© Blog Toplist 2012 - Supported by Web Catalog - SEO by FeWorks
eXTReMe Tracker