<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Hey, website developers! Give me a standard mobile URL please!</title><link>http://blogs.msdn.com/glengordon/archive/2005/02/24/380151.aspx</link><description>*sigh* Why can&amp;rsquo;t web developers agree on a standard naming convention for accessing mobile-device friendly pages?!?! Tonight I was trying to search on Amazon for a book from my iPAQ h6315. The full interface was frustrating and slow, so I wanted</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Hey, website developers! Give me a standard mobile URL please!</title><link>http://blogs.msdn.com/glengordon/archive/2005/02/24/380151.aspx#380164</link><pubDate>Fri, 25 Feb 2005 08:02:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:380164</guid><dc:creator>Jeff Parker</dc:creator><description>Well I don't know about a standard URL, that wouldn't be good, would confuse the millions of people surfing the web that don't know what a URL is and trust me there are millions of them.&lt;br&gt;&lt;br&gt;However the real sollution is Number 1 &lt;br&gt;Detect the browser and redirect you which any good web developer worth his salt should be doing anyway.&lt;br&gt;&lt;br&gt;This is not hard to do, in fact it is built into the .net framework. No more old browser agent string parsing.&lt;br&gt;&lt;br&gt;Copied from the IBuySpy Portal SDK from Microsoft. Very first page example of good developer practices.&lt;br&gt;if (Request.Browser[&amp;quot;IsMobileDevice&amp;quot;] == &amp;quot;true&amp;quot; )&lt;br&gt;{&lt;br&gt;    Response.Redirect(&amp;quot;MobileDefault.aspx&amp;quot;);&lt;br&gt;}&lt;br&gt;else&lt;br&gt;{&lt;br&gt;    Response.Redirect(&amp;quot;DesktopDefault.aspx&amp;quot;);&lt;br&gt;}&lt;br&gt;&lt;br&gt;While not everyone uses .net it could still be done in any language even old CGI and perl. Blame the poor developer practices on the site not a lack of standard.</description></item><item><title>re: Hey, website developers! Give me a standard mobile URL please!</title><link>http://blogs.msdn.com/glengordon/archive/2005/02/24/380151.aspx#380177</link><pubDate>Fri, 25 Feb 2005 08:23:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:380177</guid><dc:creator>John Dowdell</dc:creator><description>Good problem, thanks. I'd be leery of per-site client detection, just because it's so snafu-able. &lt;br&gt;&lt;br&gt;But there's already precedent in a similar realm, when XML (RSS) clients access an HTML page and find a &amp;quot;rel link&amp;quot; (sp?) in the HTML HEAD, which the client can then follow to find the accessible version. (My connection is spotty right now and I can't search the syntax... search terms like &amp;quot;rss autodiscovery&amp;quot; should reveal it.) This way the site provides what it knows, the client handles its own responsibilities, and we don't have to worry about zillions of sites correctly detecting zillions of clients.&lt;br&gt;&lt;br&gt;Hmm, let me stress this -- with the Macromedia Flash Player I've seen *tons* of poor handrolled detection schemes, and I'd hate for the same decentralized responsibility to go mobile. Better for each player to handle their own realm than to attempt to handle other people's work. Does this concern seem sound to you...?&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;John Dowdell&lt;br&gt;Macromedia support</description></item><item><title>Mobile autodiscovery</title><link>http://blogs.msdn.com/glengordon/archive/2005/02/24/380151.aspx#380179</link><pubDate>Fri, 25 Feb 2005 08:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:380179</guid><dc:creator>JD on MX</dc:creator><description>Mobile autodiscovery: Glen Gordon of Microsoft raises a good question, about being able to easily locate appropriate versions of web content from mobile devices. Suppose you're using a pocket browser and visit a new online bookstore... how can you avoid...</description></item><item><title>re: Hey, website developers! Give me a standard mobile URL please!</title><link>http://blogs.msdn.com/glengordon/archive/2005/02/24/380151.aspx#380404</link><pubDate>Fri, 25 Feb 2005 19:24:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:380404</guid><dc:creator>Jeff Parker</dc:creator><description>I guess to me the easiest way to do this is is have the site detect it. We have been doing this for years now. HTTP Standards the browsing angent and the operating system are sent with the HTTP request to the server. &lt;br&gt;&lt;br&gt;Like I said for years we have been doing this, determining on the server if the client is coming in via Netscape, or IE, or something else then present them with the dynamically generated HTML from the server specific to their browser. &lt;br&gt;&lt;br&gt;The Information passed in the http streams has everything you need to know both client and server side. I am not going to get into detail on the http streams but as an example &lt;a target="_new" href="http://news.netcraft.com/"&gt;http://news.netcraft.com/&lt;/a&gt; use the what is that site running. It just simlpy queries the site and gets an http response back from the server. It also sends one. The http stream specifics never change. Otherwise your client and your server wouldn't be able to comunicate with each other This information is passed each and every page request. Now can someone change their http settings. Yes they can, you have to really dig in to code and the registry change it, however if someone just wants to change it to think they are cool well then they pay the price of being inaccessable. They have corrupted the standard stream. &lt;br&gt;&lt;br&gt;But just looking at the information passed in the http stream from IE or Firefox, from a windows machine any version. I can tell they are running Windows. I can tell what version. I can tell what browser. I can tell what version, I can even tell you what all versions of the .net framework are installed if any.&lt;br&gt;&lt;br&gt;Now same goes for Unix and Linux and the mac, CE, what ever else they all send their information and recieve back from the server.&lt;br&gt;&lt;br&gt;http has been there and defined as a standard since 1992.&lt;br&gt;&lt;a target="_new" href="http://www.w3.org/Protocols/HTTP/HTTP2.html"&gt;http://www.w3.org/Protocols/HTTP/HTTP2.html&lt;/a&gt; &lt;br&gt;&lt;br&gt;The User Agent(Firefox, Mozilla, MSIE, etc) is also defined in that spec from 1992 as part of the header information sent with an http message.&lt;br&gt;&lt;a target="_new" href="http://www.w3.org/Protocols/HTTP/HTRQ_Headers.html#user-agent"&gt;http://www.w3.org/Protocols/HTTP/HTRQ_Headers.html#user-agent&lt;/a&gt;&lt;br&gt;&lt;br&gt;So basically in the standards for http this is defined. I still say it is up to the developer of the website to detect this and present the correct material to the user. Users should not have to think if they are at the right spot or using the correct language or if their device works or not. When I refer to developer I am not talking about someone that throws up a front page or dreamweaver site and says he look I am a web master. I am talking about the guys that know how the web is really supposed to work. Guys like the developers for Amazon.com, Microsoft.com, cnn.com and so on.&lt;br&gt;&lt;br&gt;Thoughts? I don't see where this is that hard to do it has worked fine for me for years and yeah I used to have to manually parse this all out of the stream, but now this has been built into the .net framework as well. they are basically doing the same thing parsing the stream they just go if for me now.&lt;br&gt;&lt;a target="_new" href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWebHttpBrowserCapabilitiesClassTopic.asp?frame=true"&gt;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWebHttpBrowserCapabilitiesClassTopic.asp?frame=true&lt;/a&gt;</description></item><item><title>re: Hey, website developers! Give me a standard mobile URL please!</title><link>http://blogs.msdn.com/glengordon/archive/2005/02/24/380151.aspx#380410</link><pubDate>Fri, 25 Feb 2005 19:31:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:380410</guid><dc:creator>Randy</dc:creator><description>I wrote an ISAPI DLL that used to break down redirection to the following logic:&lt;br&gt;&lt;br&gt;PC&lt;br&gt;Pocket PC&lt;br&gt;Handheld PC&lt;br&gt;Palm VII (dated, true)&lt;br&gt;RIM Browsers&lt;br&gt;HDML Phone (also dated)&lt;br&gt;WAP Phone&lt;br&gt;&lt;br&gt;We had different pages that were designed to support each of these &amp;quot;platforms&amp;quot; and anything that wasn't specifically supported fell into one of these.  FOr example, RIM and Palm's browsers only had vertical scrolling and not Horizonal, but Palm could hand grayscaling.&lt;br&gt;&lt;br&gt;The only thing it takes is a check on both the browers type and the HTTP accepting tag - you can't get by with just one of them, it has to be both: a majority of these browsers lied about their capabilities on HTTP requests.  They would say */* is accepted, which of course never worked: send a WAP phone an HTML page and it chokes.  &lt;br&gt;&lt;br&gt;Anyway, the company I was with that cared about this is long since gone, but the idea remains the same - it's just that most webmasters don't care about it.</description></item><item><title>re: Hey, website developers! Give me a standard mobile URL please!</title><link>http://blogs.msdn.com/glengordon/archive/2005/02/24/380151.aspx#401302</link><pubDate>Thu, 24 Mar 2005 05:02:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:401302</guid><dc:creator>rolandog</dc:creator><description>Excelent point you are raising. I'm moving my blog from blogspot to my own filehost, but apparently I'm going to need to learn automatic redirection.&lt;br&gt;It's a loooooong way till I get there, but when I get there, it's going to be cool.&lt;br&gt;&lt;br&gt;For web developers, you can use a javascript emulator of a cell phone: &amp;lt;a href=&amp;quot;&lt;a target="_new" href="http://pukupi.com/tools/mimic/&amp;quot;&amp;gt;cell"&gt;http://pukupi.com/tools/mimic/&amp;quot;&amp;gt;cell&lt;/a&gt; phone emulator&amp;lt;/a&amp;gt;.&lt;br&gt;&lt;br&gt;So far, I decided that I first needed to validate my page... so far, &amp;lt;a href=&amp;quot;&lt;a target="_new" href="http://rolandog.swifthost.net&amp;quot;&amp;gt;so"&gt;http://rolandog.swifthost.net&amp;quot;&amp;gt;so&lt;/a&gt; good&amp;lt;/a&amp;gt;</description></item><item><title>Detecting and automatically redirecting website visitors who visit a standard webpage / website on mobile, handheld, wireless, PDA, or cel / cell phone devices / browsers to a mobile version of the webpage or website &amp;laquo; hyper/bo??l/e</title><link>http://blogs.msdn.com/glengordon/archive/2005/02/24/380151.aspx#795173</link><pubDate>Fri, 06 Oct 2006 06:23:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:795173</guid><dc:creator>Detecting and automatically redirecting website visitors who visit a standard webpage / website on mobile, handheld, wireless, PDA, or cel / cell phone devices / browsers to a mobile version of the webpage or website « hyper/bo??l/e</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://studiohyperset.wordpress.com/2006/10/06/detecting-and-automatically-redirecting-website-visitors-who-visit-a-standard-webpage-website-on-mobile-handheld-wireless-pda-or-cel-cell-phone-devices-browsers-to-a-mobile-version-of-the-webpage-or-w/"&gt;http://studiohyperset.wordpress.com/2006/10/06/detecting-and-automatically-redirecting-website-visitors-who-visit-a-standard-webpage-website-on-mobile-handheld-wireless-pda-or-cel-cell-phone-devices-browsers-to-a-mobile-version-of-the-webpage-or-w/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Pla NET Southeast Hey website developers Give me a standard mobile | wheelbarrow</title><link>http://blogs.msdn.com/glengordon/archive/2005/02/24/380151.aspx#9780360</link><pubDate>Fri, 19 Jun 2009 09:22:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9780360</guid><dc:creator> Pla NET Southeast Hey website developers Give me a standard mobile | wheelbarrow</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://wheelbarrowstyle.info/story.php?id=1044"&gt;http://wheelbarrowstyle.info/story.php?id=1044&lt;/a&gt;&lt;/p&gt;
</description></item></channel></rss>