<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Next Net &#187; ICANN</title>
	<atom:link href="http://patrick.vande-walle.eu/category/internet/icann/feed/" rel="self" type="application/rss+xml" />
	<link>http://patrick.vande-walle.eu</link>
	<description>Random thoughts about the Internet and life</description>
	<lastBuildDate>Thu, 15 Jul 2010 12:49:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Réunion de l&#8217;ICANN à Bruxelles en juin 2010</title>
		<link>http://patrick.vande-walle.eu/internet/reunion-de-licann-a-bruxelles-en-juin-2010/</link>
		<comments>http://patrick.vande-walle.eu/internet/reunion-de-licann-a-bruxelles-en-juin-2010/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 12:37:00 +0000</pubDate>
		<dc:creator>Patrick Vande Walle</dc:creator>
				<category><![CDATA[Belgium]]></category>
		<category><![CDATA[ICANN]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://patrick.vande-walle.eu/?p=589</guid>
		<description><![CDATA[Ainsi donc, l&#8217;ICANN tiendra une réunion à Bruxelles en juin 2010. Toutes mes félicitations à Marc Van Wesemael et l&#8217;équipe d&#8217;Eurid. Lors de la conception du projet de la réunion ICANN à Luxembourg qui se déroula en 2005, j&#8217;avais un temps envisagé de l&#8217;organiser à Bruxelles, tant il me semblait logique que la capitale de [...]]]></description>
			<content:encoded><![CDATA[<p>Ainsi donc, l&#8217;I<a href="http://www.icann.org/en/minutes/prelim-report-27aug09.htm" target="_blank">CANN tiendra une réunion à Bruxelles en juin 2010</a>. Toutes mes félicitations à Marc Van Wesemael et l&#8217;équipe d&#8217;<a href="http://www.eurid.eu/" target="_blank">Eurid</a>.</p>
<p>Lors de la conception du projet de la réunion ICANN à Luxembourg qui se déroula en 2005, j&#8217;avais un temps envisagé de l&#8217;organiser à Bruxelles, tant il me semblait logique que la capitale de l&#8217;Europe accueille une telle manifestation. Le contexte était cependant différent.</p>
<p>A l&#8217;époque, le coût de la manifestation était entièrement supporté par l&#8217;organisateur local et ses partenaires. Le fractionnement institutionnel de la Belgique, avec ses multiples niveaux de pouvoirs aux compétences redondantes et en concurrence directe rendait tout simplement la participation des pouvoirs publics impossible. De nos jours, l&#8217;ICANN a compris qu&#8217;elle ne pouvait plus compter sur des tiers pour ouvrir leur portefeuille et finance elle-même la majeure partie des coûts.</p>
<p>Il n&#8217;en reste pas moins qu&#8217;il sera intéressant de voir qui seront les orateurs lors de la séance inaugurale. Aura-t-on un ministre fédéral ? Les télécoms sont une compétence largement régionalisée. On pourrait donc avoir un ministre bruxellois. Oui mais, Bruxelles est aussi la capitale de la Flandre. Aura-t-on peut être un ministre flamand ? Le responsable  du protocle va s&#8217;arracher les cheveux.</p>
]]></content:encoded>
			<wfw:commentRss>http://patrick.vande-walle.eu/internet/reunion-de-licann-a-bruxelles-en-juin-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Top Level Domains and software implications</title>
		<link>http://patrick.vande-walle.eu/internet/icann/new-top-level-domains-and-software-implications/</link>
		<comments>http://patrick.vande-walle.eu/internet/icann/new-top-level-domains-and-software-implications/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 11:51:15 +0000</pubDate>
		<dc:creator>Patrick Vande Walle</dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[ICANN]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://patrick.vande-walle.eu/?p=532</guid>
		<description><![CDATA[Many software applications rely on validation routines to check the validity of domain names. By validation, I mean here to test the string submitted by the user and see if it matches a pre-defined pattern. A typical example are web forms that need to validate e-mail addresses. This is by no means a new issue. [...]]]></description>
			<content:encoded><![CDATA[<p>Many software applications rely on validation routines to check the validity of domain names. By validation, I mean here to test the string submitted by the user and see if it matches a pre-defined pattern. A typical example are web forms that need to validate e-mail addresses.</p>
<p>This is by no means a new issue. It first appeared with the introduction of the .info TLD. Before that TLDs were only two or three letters long, and many validation routines could not cope with the 4 letters of .info. At the time, ICANN had developed a testing tool which allowed developers to test if their code took into account the requirement for 4 letters. Still, you find today on the Internet tons of library routines that do not support 4 or more letter TLDs.</p>
<p>Some of these routines also rely on a hard-coded list of TLDs. Even today, I sometimes find that some web sites cannot deal with my .eu domain, which was introduced 4 years ago.There are hundreds of thousands of these routines written in Javascript, <a target="_blank" href="http://www.php.net">PHP</a>, Perl, ColdFusion, ASP and just about any programming or scripting language you can think of.</p>
<p><span id="more-532"></span>In the Draft Applicant&#8217;s Guidebook to new gTLDs, ICANN has clearly indicated that it does not guarantee universal acceptance of the new TLD, and rather place the burden on the registry operator to educate its customers. This made sense during the previous new TLD rounds, where there were only a few added, one at a time and with long intervals between them.</p>
<p>With the new gTLD round, ICANN plans to add a lot of TLDs, potentially at very close intervals, if not at the same time. The figure most often heard is 500. That is a quantum leap forward. All those hard-coded lists deeply buried in software will need to be updated. It will not happen overnight. It may take years. This time also, we are throwing into the mix TLDs which could be long strings, like .coca-cola. We are also adding IDN (internationalized Domain Names) in non-ASCII characters, which will be a real issue with all environments that do not process double-byte strings. There are tons of legacy applications that do not support that, and some never will.</p>
<p>The good news is that programmers do not need to worry about their job. There is plenty of work ahead. The bad news is that most of them are not aware of these upcoming TLDs, let alone the implications it will have on the code they wrote, or the code they use and written by someone else.</p>
<p>So, it does not make sense now for ICANN  just to say it is someone else&#8217;s problem. If the new gTLDs cannot be processed on the client platforms, this will mean their acceptance by the user community will be low. This means less revenue for registries, registrars and finally ICANN. This would also mean a partial failure of the whole new gTLD program, for which ICANN will be accountable for. It could cost ICANN much of its credibility, because it would not be the failure of one specific TLD for which the registry could be blamed, it would mean the failure of several, all for the same reasons.</p>
<p>Hence, I suggested today to ICANN to plan a workshop at the Seoul meeting to help identify these issues, so that clear guildelines can be given to the software community and an awareness campaign can be launched. It is absolutely crucial to identify the issues, the amount of work they represent and the time it will take to fix the code before the introduction of these new top level domains.</p>
]]></content:encoded>
			<wfw:commentRss>http://patrick.vande-walle.eu/internet/icann/new-top-level-domains-and-software-implications/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IRT Final Report on Trademark Protection in new Top Level Domains &#8211; Part 1 &#8211; Uniform Rapid Suspension System</title>
		<link>http://patrick.vande-walle.eu/internet/icann/irt-final-report-on-trademark-protection-in-new-top-level-domains-part-1-uniform-rapid-suspension-system/</link>
		<comments>http://patrick.vande-walle.eu/internet/icann/irt-final-report-on-trademark-protection-in-new-top-level-domains-part-1-uniform-rapid-suspension-system/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 09:40:47 +0000</pubDate>
		<dc:creator>Patrick Vande Walle</dc:creator>
				<category><![CDATA[ICANN]]></category>
		<category><![CDATA[trademarks]]></category>

		<guid isPermaLink="false">http://patrick.vande-walle.eu/?p=512</guid>
		<description><![CDATA[The ICANN IRT working group has published its final report, which I decided to analyze a bit further. I already made a few comments last month, both in the At-Large Advisory Council framework and on my own.   There are several issues raised by the recommendations of this report. The URS is one. Reliance on e-mail [...]]]></description>
			<content:encoded><![CDATA[<p>The ICANN <a href="http://vhva8m.s.isoc.lu" target="_blank">IRT working group has published its final report</a>, which I decided to analyze a bit further. I already made a few comments last month, both in the <a href="http://forum.icann.org/lists/irt-draft-report/msg00061.html" target="_blank">At-Large Advisory Council framework</a> and on <a href="http://forum.icann.org/lists/irt-draft-report/msg00003.html" target="_blank">my own</a>.   There are several issues raised by the recommendations of this report. The URS is one.</p>
<h3>Reliance on e-mail</h3>
<p>Among the issues is the fact that most of the URS process relies on e-mail for notifications to the registrant, to the registry operator, etc.  Let&#8217;s face it: e-mail has become unreliable for critical applications. With more than 90% of e-mail being catalogued as spam, identifying the one important e-mail that you are not expecting is like searching a needle in a haystack.  Some techniques like DKIM, S/MIME signing, etc might help getting through the spam filters, if only the latter are well-configured. Most users do not have fine-grained control on the configuration of their spam filter, and none at all on the one used by their ISP.</p>
<p>Where this matters is that &#8220;<em>A Registrant has fourteen (14) calendar days from the date of the initial email notification to submit an Answer</em>&#8220;.  If the e-mail was caught by your spam filter, or if you are on vacation, travelling or more simply not reading your e-mail on a regular basis, you are out of  luck. You might lose your domain name without you even noticing it before it is too late.</p>
<p>The language issue is also an important one. It may be that English is the<em> lingua franca</em> of the business community. However, it may not be a language understood by the domain name registrant and he may, in good faith,  discard the notification message.<span id="more-512"></span></p>
<h3>Collateral damage</h3>
<p>The IRT working group is focusing on  the web. To provide evidence, the complainant &#8220;<em>must include PDF copies of [...]  the website showing the alleged violation(s)</em>&#8220;.  If the domain name is indeed found to infringe on someone else&#8217;s IP rights by the third-party complaints examiner,  &#8220;<em>The third-party provider will post a standard page on the domain name</em>&#8220;. No mention is made of other services, although, as one of my friends says &#8220;there are <span class="toctext">65534 other ports&#8221;. </span></p>
<p>The URS proposal does not explain how other services, like e-mail, DNS, etc would be treated. E-mail is  problematic in this context. There could be a privacy issue with the third party provider intercepting correspondence originally addressed to the domain name registrant. Or, if the registrant had indicated a contact e-mail address under the domain name being suspended, he might not receive any notifications on his case any more.</p>
<p>DNS is another issue.  If the suspended domain name was running a DNS server for other, unchallenged domain names, those other domain names may not be accessible anymore.</p>
<p><span class="toctext">What the IRT group is proposing is technically close to the controversial <a href="http://en.wikipedia.org/wiki/Sitefinder" target="_blank"> Sitefinder &#8220;service&#8221;</a> , and this proves again that the IRT group would have benefitted to have a broader base of participants, especially from the technical community, in this case.</span></p>
<h3><span class="toctext">Legal uncertainty</span></h3>
<p><span class="toctext">The fact a registrant has successfully passed a URS examination does not mean he is certain to keep his domain name. He could still face a UDRP complaint and a legal action. There is not much that can be done to prevent a legal action. However, one could expect the complainant to have to choose between a URS complaint or a UDRP complaint, but not both.<br />
</span></p>
<p><span class="toctext">On other factor is that the registrant should be guaranteed some peace of mind regarding the use of his domain name. A URS complaint can be filed at any time.  If the registrant has been using a domain  name for several months or years, he could still face a URS complaint. This creates a high level of uncertainty. Would you dare to launch an  Internet-based business if your domain name can be taken down at any time ?<br />
</span></p>
<p><span class="toctext">The extensive use of  e-mail in the URS process creates a real issue regarding the production of  l</span><span class="toctext">egal evidence in law suits following URS cases.  Like it or not, most judicial system use written evidence to examine civil cases, and do not consider e-mails or faxes as legal evidence.<br />
</span></p>
<h3>Individual domain name registrants</h3>
<p>The IRT proposal does not make any difference between domain names registrants which are either  businesses or individuals. Unlike businesses which are &#8220;open all day&#8221;, individuals cannot be expected to be glued to their computer screen waiting for an  e-mail regarding a potential issue with a domain name they have registered. As mentioned above, the 14 day period for answering after the  notification may be impossible to keep for an individual, especially if he is not well-versed into the intricacies of the IP framework regarding domain names.</p>
<p>The language issue mentioned above is even more problematic for individuals.</p>
<h3>Potential suggestions for improvement</h3>
<p>I am told I should suggest possible improvements rather than just whining. So:</p>
<ul>
<li>Use certified/registered paper mail for notification. This is expensive, yes, but will provide indisputable evidence to both parties. Further, because of the cost involved, it will help eliminate frivolous complaints only designed to hurt competitors.</li>
<li>Draft notifications in the registrant&#8217;s native language. This is expensive, again, but will make sure that the registrant actually understands what is going on.  And again, it will greatly help in possible later law suits.</li>
<li>Differentiate between individual private persons and legal entities. The process applying to the former would be more relaxed in terms of  time schedules.</li>
<li>Make the suspended domain names unresolvable by the DNS. Web users, will get a 404 error. E-mail users will get a non-delivery receipt. This would be RFC-compliant and solve the privacy issues.</li>
<li>Put a time limit on the introduction of a URS complaint, for example 3 months. After that time, the domain name owner should be guaranteed he will not face a URS complaint anymore.</li>
<li>In line with the above, a complainant should be requested to elect for a URS or a UDRP but not both.  This will guarantee that the domain name registrant will not be harassed.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://patrick.vande-walle.eu/internet/icann/irt-final-report-on-trademark-protection-in-new-top-level-domains-part-1-uniform-rapid-suspension-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intellectual Property rights in new Top Level Domains: Implementation Recommendation Team draft report</title>
		<link>http://patrick.vande-walle.eu/internet/icann/ip-rights-in-new-tlds-irt-report/</link>
		<comments>http://patrick.vande-walle.eu/internet/icann/ip-rights-in-new-tlds-irt-report/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 07:56:17 +0000</pubDate>
		<dc:creator>Patrick Vande Walle</dc:creator>
				<category><![CDATA[ICANN]]></category>
		<category><![CDATA[New Top Level Domains]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[New gTLDs]]></category>
		<category><![CDATA[whois]]></category>

		<guid isPermaLink="false">http://patrick.vande-walle.eu/?p=494</guid>
		<description><![CDATA[The IRT has released a draft report.  The composition of the  team is strongly biased towards North American intellectual property interests. Unfortunately, individuals were not represented.  Neither were potential new gTLD operators.  There was only one US-based registrar present and only one incumbent US-based registry.  In summary, this report is partial, both because it does [...]]]></description>
			<content:encoded><![CDATA[<p>The IRT has released a <a href="http://www.icann.com/en/announcements/announcement-24apr09-en.htm" target="_blank">draft report</a>.  The composition of the  <a href="https://st.icann.org/data/workspaces/new-gtld-overarching-issues/attachments/trademark_protection:20090407232008-0-9336/original/IRT-Directory.pdf" target="_blank">team</a> is strongly biased towards North American intellectual property interests. Unfortunately, individuals were not represented.  Neither were potential new gTLD operators.  There was only one US-based registrar present and only one incumbent US-based registry.  In summary, this report is partial, both because it does not cover the whole picture and because it is strongly biased towards the interests of a specific group.</p>
<p>Quite confusingly, it was published on 24th April, with a 30 day comment period. However, one needs to comment before 6 May if it wants the IRT to consider the comments. Strange tactics.</p>
<p>As others have pointed out, the effective 7 day comment period over this draft report is way too short. It may be wise that the ICANN board does not consider this report before the community has had a real opportunity to comment.</p>
<p>I totally support<a href="http://forum.icann.org/lists/irtp-draft-report/msg00002.html" target="_blank"> Michele Neylon&#8217;s comments</a> on the whois model  contemplated by this report. It would be in breach with many privacy regulations throughout the world. Further, if the ability to comply with the whois recommendations, as set forth in this report, would become one of the evaluation criteria for the new gTLD applications, this would favour registry operators located in countries with little or no privacy laws. This would put at a competitive disadvantage those businesses which need to comply with local laws. Questions to the IRT:</p>
<ul>
<li>Did the IRT consider if their recommendations regarding the whois were actually compliant with relevant legislation throughout the world ?</li>
<li>Will the ability to comply with the whois recommendations, as set forth in this report, be a part of the evaluation process of new gTLD applications ?</li>
</ul>
<p>Regarding the IP clearinghouse, it is stated that &#8220;The recommendation should not result in unnecessary or undue costs, either to trademark owners or to legitimate users and consumers&#8221;. Does this mean that the registry operators will have to bear all the increase of their operating costs for protecting third parties interests? The net effect of this is that operators will need to shift the increasing cost among all their customers, including those who have no IP rights to protect. This will mean raising the unit price of domain names for every customer, making the TLD less attractive and potentially be a cause of registry failure. In the case of community-based TLDs that focus on a limited market through a not-for-profit model, this may simply mean that the potential costs  and legal risks may be disporportionate for them to bear.</p>
<p>There is a major concern that different levels of protection for marks may put the registry operator in a position to have to arbitrate between second level domain name  applications and become legally involved in disputes between third parties. Unlike trade marks, which can be multiple according to industrial sectors and geography, domain names are by nature  globally unique. As technical operators, registries should have no business in deciding who is the legitimate intellectual right owner.</p>
<p>If such IP clearinghouse system is put in place, it should, at a minimum:</p>
<ol>
<li>Be automated and implementable at a marginal cost by registries and registrars</li>
<li>Exempt the registry operators from further legal consequences if it has demonstrated that it queried the database at registration time.</li>
</ol>
<p>In addition to the above, I think it would be only fair that whatever policies are decided as a consequence of this process are also made mandatory for the existing gTLDs. The new entrants should not be the only ones having to bear the weight and costs of these policies.</p>
]]></content:encoded>
			<wfw:commentRss>http://patrick.vande-walle.eu/internet/icann/ip-rights-in-new-tlds-irt-report/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Comments on the second draft of ICANN&#8217;s gTLD applicant&#8217;s guide</title>
		<link>http://patrick.vande-walle.eu/internet/icann/comments-second-draft-of-gtld-applicants-guide/</link>
		<comments>http://patrick.vande-walle.eu/internet/icann/comments-second-draft-of-gtld-applicants-guide/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 09:18:40 +0000</pubDate>
		<dc:creator>Patrick Vande Walle</dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[ICANN]]></category>
		<category><![CDATA[gtLDs]]></category>

		<guid isPermaLink="false">http://patrick.vande-walle.eu/?p=481</guid>
		<description><![CDATA[These are the comments I sent today to ICANN Unfortunately, this second draft version of the applicant&#8217;s guide does not yet address major concerns in the process. As stated in the previous comments round, it is fundamentally wrong to assume that all new gTLD applicants will use the .com model of mass market approach for [...]]]></description>
			<content:encoded><![CDATA[<p><em>These are the comments I sent today to ICANN</em></p>
<p>Unfortunately, this second draft version of the applicant&#8217;s guide does not yet address major concerns in the process.</p>
<p>As stated in the previous comments round, it is fundamentally wrong to assume that all new gTLD applicants will use the .com model of mass market approach for domain names. Both the amount of the application fee and the yearly registry fee imply that the registry will need to sell as many domain names as possible, favouring numbers over quality. This is the wrong approach with regard to community-based TLDs.</p>
<p>The amount of the application fee should be reduced, as it may discriminate against less financially resourceful applicants, such as communities. While I understand ICANN may want to prevent frivolous applications with a high application fee, it nevertheless excludes from the process a lot of potential serious applications targeting a limited community.</p>
<p>It is unfair that only the applicants of the first round would have to cover the past costs of the new gTLD development program. On the other hand, it is difficult to guess how many applications will be submitted on each round. Because these costs have already been expended and that ICANN clearly states that whatever is recovered will be transferred to a reserve fund, it is therefore suggested to simply drop the $26,000 that represents the incidence of gTLD development program cost on each application.</p>
<p>Note that this request for a large up-front investment in the application process is orthogonal to the expectation of ICANN for the applicants to demonstrate the availability of continuation funding. Whatever capital will be invested in submitting the application will not be available in the future. Hence, ICANN&#8217;s financial expectations at the application stage may plant the seed of future registry failure.</p>
<p>Further, payment of the application fees in several installments should be offered to TLD applicants. For those applicants that need to submit a strong business plan to their investors, having a pay-as-you-go fee through the application process will make it easier to convince investors.</p>
<p>ICANN should also consider postponing for two or three years the collection of the annual registry fee, to allow new gTLD operators to start operating in a financially sound context, with no loans and other debts that may compromise the start-up of their activities. On the short and medium term, this help new registries to become more solid and will be beneficial for the the long term stability of the DNS space.</p>
<p>The fact that ICANN only allows for payments to be made in USD places a high risk on the business plans of those applicants that work in other currencies. As suggested elsewhere, ICANN should accept payments in other<br />
currencies, at a rate fixed at the time the applicant&#8217;s guidebook is published.</p>
<p>There is still a fundamental contradiction in using an auction model as a last resort for community-based applications. By definition, community-based applications will target smaller communities and use a cost-recovery model, rather than a purely commercial one. For the winner of the auction, this will mean recovering its costs through increasing the gross price of registrations. As a consequence, the number of domain names sold may be reduced and the newly launched registry may not meet its business plan. Ultimately, auctions may also be a cause of registry failure.</p>
]]></content:encoded>
			<wfw:commentRss>http://patrick.vande-walle.eu/internet/icann/comments-second-draft-of-gtld-applicants-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.vla TLD: not so fast, says Flemish governement</title>
		<link>http://patrick.vande-walle.eu/internet/icann/vla-tld-not-so-fast-says-flemish-governement/</link>
		<comments>http://patrick.vande-walle.eu/internet/icann/vla-tld-not-so-fast-says-flemish-governement/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 19:59:13 +0000</pubDate>
		<dc:creator>Patrick Vande Walle</dc:creator>
				<category><![CDATA[Belgium]]></category>
		<category><![CDATA[ICANN]]></category>

		<guid isPermaLink="false">http://patrick.vande-walle.eu/?p=476</guid>
		<description><![CDATA[As reported last July, there is a proposal from some Flemish politicians to create a .vla top level domain under the new gTLD process launched by ICANN. The proposal further elaborated that the Flemish government would have to cover the costs. Not so fast, says the Flemish government. According to this press article, it wants [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://patrick.vande-walle.eu/internet/icann/flanders-wants-vla/" target="_blank">As reported last July</a>, there is a proposal from some Flemish politicians to create a .vla top level domain under the new gTLD process launched by ICANN. The proposal further elaborated that the Flemish government would have to cover the costs.</p>
<p>Not so fast, says the Flemish government. <a href="http://www.datanews.be/fr/news/90-53-23131/une-etude-de-faisabilite-pour--vla.html" target="_self">According to this press article</a>, it wants to be sure the market is large enough to justify pouring all that money into the ICANN process.  They will hire a consultant to study the market and come up with a business case. Or not.</p>
<p>In this period of economic downturn, even wealthy communities like Flanders want to avoid expensive and risky investments.  ICANN does not yet understand the message that it has to adapt its RFP to the actual economic context.</p>
<p>Some possible ideas:</p>
<ul>
<li>stop dreaming about recovering past expenses on the gTLD program;</li>
<li>fractioning the payment of the application fee in several installments, which would make it easier to negotiate with investors;</li>
<li>postpone for two or three years the collection of the annual registry fee, to allow new gTLD operators to start operating in a financially sound context, with no loans and other debts that may compromise their existence.</li>
</ul>
<p>I am well aware the above-mentioned article is quite misinformed in that it mixes up registry operators with registrars. Still, the core element of the cost vs risk of the new gTLD process is symptomatic of the concerns I heard from  several wannabee registry operators.</p>
]]></content:encoded>
			<wfw:commentRss>http://patrick.vande-walle.eu/internet/icann/vla-tld-not-so-fast-says-flemish-governement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At-Large Summit news from ICANN Mexico</title>
		<link>http://patrick.vande-walle.eu/internet/at-large-summit-news-from-icann-mexico/</link>
		<comments>http://patrick.vande-walle.eu/internet/at-large-summit-news-from-icann-mexico/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 19:37:14 +0000</pubDate>
		<dc:creator>Patrick Vande Walle</dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[ICANN]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://patrick.vande-walle.eu/?p=470</guid>
		<description><![CDATA[I was appointed to the ICANN&#8217;s Security and Stability Advisory Committee recently and I am very proud of that. This group of esteemed security experts are a crucial element of the ICANN community, because their task is to identify threats to the good working fo the Internet and suggest possible remedies. This is not a [...]]]></description>
			<content:encoded><![CDATA[<p>I was appointed to the <a href="http://www.icann.org/en/committees/security" target="_blank">ICANN&#8217;s Security and Stability Advisory Committee </a>recently and I am very proud of that. This group of esteemed security experts are a crucial element of the ICANN community, because their task is to identify threats to the good working fo the Internet and suggest possible remedies. This is not a glamourous position, but rather behind the scenes work in the interest of the Internet user community at large.</p>
<p>On a similar note, I had the pleasure to co-chair the At-Large working group on DNS security issues, with came up with <a href="https://st.icann.org/summit-wg/index.cgi?wg5_policy_proposal" target="_self">a statement</a> we were reasonably happy with.  The best part was actually today, where we received kudos from other parts of the community, which tend to view the At-Large more as a political obligation of ICANN that a really useful component.</p>
<p>I hope this will both help the recognition of the At-Large as serious players in the ICANN context, but also motivate the At-Large members, who are often depicted as jerks and end up believing they are.</p>
]]></content:encoded>
			<wfw:commentRss>http://patrick.vande-walle.eu/internet/at-large-summit-news-from-icann-mexico/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m on You Tube</title>
		<link>http://patrick.vande-walle.eu/internet/im-on-you-tube/</link>
		<comments>http://patrick.vande-walle.eu/internet/im-on-you-tube/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 04:11:45 +0000</pubDate>
		<dc:creator>Patrick Vande Walle</dc:creator>
				<category><![CDATA[ICANN]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[You Tube]]></category>

		<guid isPermaLink="false">http://patrick.vande-walle.eu/?p=463</guid>
		<description><![CDATA[It&#8217;s not every I make it to You Tube, so I wanted to share with you this shameless self promotion.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not every I make it to You Tube, so I wanted to share with you this shameless self promotion.</p>
<p><object width="480" height="295" data="http://www.youtube.com/v/dZAf6IZSFDo&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/dZAf6IZSFDo&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://patrick.vande-walle.eu/internet/im-on-you-tube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whois, my friend</title>
		<link>http://patrick.vande-walle.eu/internet/icann/whois-my-friend/</link>
		<comments>http://patrick.vande-walle.eu/internet/icann/whois-my-friend/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 13:12:04 +0000</pubDate>
		<dc:creator>Patrick Vande Walle</dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[ICANN]]></category>

		<guid isPermaLink="false">http://patrick.vande-walle.eu/?p=453</guid>
		<description><![CDATA[One of my relatives moved into a new house the other day. No big news, except he is a registrant of a generic domain name. He spent a lot of his time to inform utility companies, banks, insurance companies, administrations, etc of his address change, BUT he did  not tell his registrar. You see, his [...]]]></description>
			<content:encoded><![CDATA[<p>One of my relatives moved into a new house the other day. No big news, except he is a registrant of a generic domain name.</p>
<p>He spent a lot of his time to inform utility companies, banks, insurance companies, administrations, etc of his address change, BUT he did  not tell his registrar.</p>
<p>You see, his registrar sends him every two or three years an e-mail asking to pay for the renewal. He then gets the invoice through e-mail. No postal mail is sent at all. That is all he knows about the domain name he uses. Other than that, it just works. E-mail to his domain gets delivered,  his web site is reachable. What else should he care about ?</p>
<p>As it stands, he should really care about updating his records with his registrar. A whois query on his domain name now returns a false postal address. This honest citizen now has the crowds of those hideous people who leave false information in the whois. Surely, law enforcement authorities may think of him as a terrorist covering his tracks. Intellectual property lawyers may think he is stealing somebody&#8217;s trade mark. According to term 3.7.7.2 of the <a href="http://www.icann.org/en/registrars/ra-agreement-17may01.htm" target="_blank">ICANN Registrar Accreditation Agreement</a>, he risks seeing his domain cancelled.</p>
<p>The sad truth is that this nice guy actually does not even know his $10/year domain is at risk. In the unlikely event his domain name gets cancelled, pleading the good faith will not help a lot. He may not notice it until he gets a phoen call telling himl the e-mails to him are undelivered.  It will be too late to react, because human errors by uninformed customers are not taken into account in ICANN policies. So, before he says  &#8220;I should have known&#8221; maybe I should tell him.</p>
]]></content:encoded>
			<wfw:commentRss>http://patrick.vande-walle.eu/internet/icann/whois-my-friend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commentaires à propos du cahier des charges pour les nouveaux TLD</title>
		<link>http://patrick.vande-walle.eu/internet/icann/commentaires-nouveaux-tld/</link>
		<comments>http://patrick.vande-walle.eu/internet/icann/commentaires-nouveaux-tld/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 19:52:27 +0000</pubDate>
		<dc:creator>Patrick Vande Walle</dc:creator>
				<category><![CDATA[ICANN]]></category>

		<guid isPermaLink="false">http://patrick.vande-walle.eu/?p=405</guid>
		<description><![CDATA[Commentaires envoyés à l&#8217;ICANN concernant les nouveaux noms de domaines Comme de nombreux autres intervenants, je m&#8217;interroge au sujet du coût lié tant à la soumission qu&#8217;à l&#8217;exploitation d&#8217;un TLD attribué dans le cadre de cet exercice. De fait, les coûts figurant actuellement dans le cahier des charges induisent le choix politique de gTLD vendant [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><em>Commentaires envoyés à l&#8217;ICANN concernant les nouveaux noms de domaines</em></p>
<p>Comme de nombreux autres intervenants, je m&#8217;interroge au sujet du coût lié tant à la soumission qu&#8217;à l&#8217;exploitation d&#8217;un TLD attribué dans le cadre de cet exercice.</p>
<p>De fait, les coûts figurant actuellement dans le cahier des charges induisent le choix politique de gTLD vendant les noms de domaine en nombre. Il n&#8217;y a pas de place dans le processus actuel pour des gTLD visant une communauté limitée. Il semble difficilement imaginable qu&#8217;un registre vendant moins de 200.000 noms de domaine par an puisse survivre, compte tenu de la concurrence sur les prix entre TLD.</p>
<p>Par ailleurs, il peut s&#8217;écouler plus d&#8217;un an entre la soumission du dossier et le lancement de l&#8217;exploitation commerciale du TLD. Cela implique une lourde charge financière, qui suppose que les soumissionnaires disposent d&#8217;une solide trésorerie. Ce n&#8217;est pas le cas des start-ups. Cela pose donc une barrière à l&#8217;entrée qui favorise les acteurs historiques, qui ne devront pas supporter de tels coûts, puisqu&#8217;ils disposent déjà de tout le nécessaire: personnel, infrastructure et revenus réguliers</p>
<p>Ailleurs dans le document, il est demandé de présenter dans le dossier de candidature les comptes annuels d&#8217;exercices précédents. Cela implique à nouveau que des start-ups, ou des sociétés non-encore légalement formées ne pourront pas soumissionner.</p>
<p>Notons également que la nécessité de présenter dans le dossier de candidature l&#8217;infrastructure technique qui sera utilisée.  La conséquence est que le soumissionnaire devra choisir, dès le départ  un gestionnaire technique (backend registry services provider).  Du point de vue commercial, il serait pourtant avantageux que la mise en concurrence des prestataires techniques puissent se faire après la première ou la deuxième phase du processus d&#8217;acceptation du dossier par l&#8217;ICANN. Cela offrirait une position de négociation plus avantageuse au soumissionnaire.</p>
<p>Dans le contexte économique et financier actuel, il est plus que probable que de nouveaux entrepreneurs ne seront pas en mesure de concurrencer les opérateurs établis et donc d&#8217;offrir de véritables alternatives si l&#8217;ICANN ne révise pas fondamentalement à la baisse tant le droit de soumission que la contribution annuelle.</p>
<p>A ce titre, je soutiens la proposition citée dans les commentaires de dotCities ( http://forum.icann.org/lists/gtld-guide/msg00086.htm ) et ajoutant que cela peut s&#8217;appliquer à de nombreux cas de TLD visant des communautés limitées en nombre.</p>
<p>Il convient également d&#8217;éclaircir et de chiffrer le montant du remboursement possible si le soumissionnaire décide de retirer son dossier.  Il est important pour tous les candidats qu&#8217;ils soient en mesure de présenter un plan financier clair à leurs bailleurs de fonds. Dans ce domaine, le cahier des charges doit être limpide, y compris, et surtout pour les différentes phases d&#8217;évaluation que l&#8217;ICANN fera sous-traiter auprès de consultants externes, que les candidats devront rémunérer directement.</p>
<p>Concernant la problématique de la &#8220;moralité et de l&#8217;ordre public&#8221;, il est nécessaire  d&#8217;insister sur le fait qu&#8217;en cette matière l&#8217;ICANN doit strictement se limiter à la chaine de caractères constituant le TLD. Toute présomption concernant les domaines de second niveau qui pourraient être enregistrés sous ce TLD, ou sur le contenu de sites web utilisant ce TLD, seraient clairement en dehors du mandat de l&#8217;ICANN.</p>
]]></content:encoded>
			<wfw:commentRss>http://patrick.vande-walle.eu/internet/icann/commentaires-nouveaux-tld/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
