I&#39;m a bit puzzled. If I take a &quot;raw&quot; IDN, like<br><br><a href="http://Bücher.com">http://Bücher.com</a><br><br>and paste it into an IDNA unaware browser, it won&#39;t work.  We should expect that of browsers that doesn&#39;t handle IDN. We&#39;d need to paste in a punycode version to work: 
<a href="http://xn--bcher-kva.com/">xn--bcher-kva.com</a><br><br>If I take a &quot;raw&quot; IDN, like<br><br><a href="http://Buecher.com">http://Buecher.com</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // that dot is a full-width dot<br><br>and paste it into an IDNA unaware browser, it also won&#39;t work. We should also expect that of browsers that doesn&#39;t handle IDN. We&#39;d need to paste in a normalized version to work: 
<a href="http://Buecher.com">http://Buecher.com</a><br><br>That is, it doesn&#39;t appear that the dot conversion is much different than the punycode conversion (and case/normalization folding) -- something that has to be done before passing off to DNS for it to work correctly.
<br><br>Mark<br><br><div class="gmail_quote">On Dec 8, 2007 5:15 AM, John C Klensin &lt;<a href="mailto:klensin@jck.com">klensin@jck.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br><br>--On Saturday, 08 December, 2007 12:06 +0800 YAO Jiankang<br><div class="Ih2E3d">&lt;<a href="mailto:yaojk@cnnic.cn">yaojk@cnnic.cn</a>&gt; wrote:<br><br>&gt;&gt; Without that mapping, the string cannot be parsed into labels
<br>&gt;&gt; since conventional (legacy) FQDN parsers separate labels<br>&gt;&gt; _only_ on ASCII period, 0x2E, aka U+002E.<br>&gt;<br>&gt; true. non IDNA-aware software &nbsp;can &nbsp;not parse &nbsp;IDN.<br>&gt;<br>&gt;&gt;<br>&gt;&gt; Not being able to parse the string into labels would result in
<br>&gt;&gt; rather serious lookup failures, &nbsp;but the problem is even worse<br>&gt;&gt; because:<br>&gt;<br>&gt; if I understand it correctly,<br>&gt; it seems that you have the following assumption:<br>&gt; The domain name with the dot of (ideographic full
<br>&gt; &nbsp;stop), U+FF0E (fullwidth full stop), or U+FF61 (halfwidth<br>&gt; &nbsp;ideographic full stop) is not IDN. so this domain will be<br>&gt; sent to DNS lookup server without IDNA process. actually,<br>&gt; according to RFC3490, it is IDN.
<br>&gt; Since it is IDN, it must be dealt with IDNA before being sent<br>&gt; to DNS lookup. if that happens, there have not the problem as<br>&gt; you said.<br><br></div>That is not my assumption. &nbsp;Perhaps I can explain this better by
<br>means of an example. &nbsp; I can&#39;t do this exactly, so suppose that<br>the character &quot;?&quot; is actually U+3002 (ideographic full stop).<br><br>Someone sends me a URL in email. &nbsp;The URL consists of<br><br> &nbsp;<a href="http://www.xn--0xaat.example.com/" target="_blank">
http://www.xn--0xaat.example.com/</a><br><br>where the A-label corresponds to the U-label φοο.<br><br>That example uses standard dots. &nbsp; Suppose I do not have an<br>IDNA-aware browser. &nbsp; But I can take the string from your mail,
<br>paste it in, parse it into<br> &nbsp;&quot;www&quot;, &quot;xn--0xaat&quot;, &quot;example&quot;, and &quot;com&quot;,<br>look things up, and obtain the page. &nbsp; That is how IDNA is<br>supposed to work. &nbsp; As long as the user sticks to passing the
<br>ACE form around, applications do not need to be IDNA-aware.<br><br>However, assume that you send me a URL, that looks (substituting<br>&quot;?&quot; as above) like:<br><br> &nbsp;<a href="http://www.xn--0xaat?example.com/" target="_blank">
http://www.xn--0xaat?example.com/</a><br><br>I copy that out and paste it into my browser, which we are still<br>assuming is not IDNA-aware. &nbsp;Because the browser is not<br>IDNA-aware, the domain name is parsed into<br><br>
 &nbsp; &quot;www?xn--0xaat&quot;, &quot;example&quot; and &quot;com&quot;<br><br>This is obviously wrong and will obviously result in a failure<br>to find the name in a query. &nbsp; Worse, that parsing is performed<br>in places and with software other than DNS resolvers. &nbsp;For
<br>example, there are several security-related protocols that use<br>DNS names as identifiers but keep them in internal DNS form (a<br>list of labels stored with lengths and values, not separated by<br>dots). &nbsp; Depending on how they are designed, even modern
<br>implementations are not required to be IDNA-aware (because IDNA<br>is transparent). &nbsp;But the dot-mappings cannot be transparent:<br>every system, module, or application that has to parse an FQDN<br>into components must know what is, and is not, a
<br>label-separation character.<br><font color="#888888"><br> &nbsp; &nbsp;john<br></font><div><div></div><div class="Wj3C7c"><br><br><br><br><br>_______________________________________________<br>Idna-update mailing list<br><a href="mailto:Idna-update@alvestrand.no">
Idna-update@alvestrand.no</a><br><a href="http://www.alvestrand.no/mailman/listinfo/idna-update" target="_blank">http://www.alvestrand.no/mailman/listinfo/idna-update</a><br></div></div></blockquote></div><br><br clear="all">
<br>-- <br>Mark