<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for K.A.I.E.C.</title>
	<atom:link href="http://blog.kaiec.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kaiec.org</link>
	<description>Kai's Automatic Indexing Evaluation Center</description>
	<lastBuildDate>Tue, 18 Oct 2011 23:50:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>Comment on Message Handling with JSF and Redirects by Preserving FacesMessage after redirect for presentation through &#60;h:message&#62; in JSF &#124; Gravity Layouts</title>
		<link>http://blog.kaiec.org/2009/03/01/message-handling-with-jsf-and-redirects/comment-page-1/#comment-22329</link>
		<dc:creator>Preserving FacesMessage after redirect for presentation through &#60;h:message&#62; in JSF &#124; Gravity Layouts</dc:creator>
		<pubDate>Tue, 18 Oct 2011 23:50:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.computerkind.de/?p=42#comment-22329</guid>
		<description>[...] would I solve it? I found this amazing post explaining how to do it using a PhaseListener but I believe this situation is too common to have to [...]</description>
		<content:encoded><![CDATA[<p>[...] would I solve it? I found this amazing post explaining how to do it using a PhaseListener but I believe this situation is too common to have to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic Auth Webservice Client with .NET by Geeko</title>
		<link>http://blog.kaiec.org/2009/02/11/basic-auth-webservice-client-with-net/comment-page-1/#comment-22070</link>
		<dc:creator>Geeko</dc:creator>
		<pubDate>Sun, 10 Jul 2011 08:41:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kaiec.org/?p=15#comment-22070</guid>
		<description>Hi Kai,

trotzdem danke für die schnelle Antwort :-)

Grüße
Geeko</description>
		<content:encoded><![CDATA[<p>Hi Kai,</p>
<p>trotzdem danke für die schnelle Antwort <img src='http://blog.kaiec.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Grüße<br />
Geeko</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic Auth Webservice Client with .NET by Kai</title>
		<link>http://blog.kaiec.org/2009/02/11/basic-auth-webservice-client-with-net/comment-page-1/#comment-22067</link>
		<dc:creator>Kai</dc:creator>
		<pubDate>Fri, 08 Jul 2011 13:49:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kaiec.org/?p=15#comment-22067</guid>
		<description>Hi Geeko,

sorry, das ist zu lange her, da müsste ich mich noch mal neu reindenken. Vielleicht haben die auch auf der Wortschatz-Seite etwas geändert, da würde ich mal nachfragen. Ich habe den Dienst schon ewig nicht mehr benutzt und kann noch nicht mal auf die Schnelle sagen, ob meine Implementierung noch funktioniert, weil ich gar kein Windows-System mehr laufen habe (Java hat bei dem Projekt am Ende doch das Rennen gemacht ;-)).

Viele Grüße,

Kai</description>
		<content:encoded><![CDATA[<p>Hi Geeko,</p>
<p>sorry, das ist zu lange her, da müsste ich mich noch mal neu reindenken. Vielleicht haben die auch auf der Wortschatz-Seite etwas geändert, da würde ich mal nachfragen. Ich habe den Dienst schon ewig nicht mehr benutzt und kann noch nicht mal auf die Schnelle sagen, ob meine Implementierung noch funktioniert, weil ich gar kein Windows-System mehr laufen habe (Java hat bei dem Projekt am Ende doch das Rennen gemacht <img src='http://blog.kaiec.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ).</p>
<p>Viele Grüße,</p>
<p>Kai</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic Auth Webservice Client with .NET by Geeko</title>
		<link>http://blog.kaiec.org/2009/02/11/basic-auth-webservice-client-with-net/comment-page-1/#comment-22066</link>
		<dc:creator>Geeko</dc:creator>
		<pubDate>Fri, 08 Jul 2011 13:31:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kaiec.org/?p=15#comment-22066</guid>
		<description>Hallo Kai,

über trial &amp; errror bin ich zwar schon lange hinaus, es will aber immer noch nicht funktionieren. 
Ich versuch hier genauso wie du eine Verbindung zu dem Uni-Leipzig Server herzustellen um Synonyme abzufragen. Aber es will einfach nicht. 
Die Subclass hab ich so von dir übernommen. Versuch ich aber eine Verbindung zum Server aufzubauen, will er immer noch ein Passwort bzw. Benutzername. 

Meinst du könntest mir deine Implementierung in Form einer Konsolenanwendung zukommen lassen oder mir sagen was daran falsch ist?:
            static void Main(string[] args)
            {
                ServiceOverviewService sos =
                new ServiceOverviewService();

                NetworkCredential netCredential = new NetworkCredential(&quot;anonymous&quot;, &quot;anonymous&quot;);
                Uri uri = new Uri(sos.Url);
                ICredentials credentials = netCredential.GetCredential(uri, &quot;Basic&quot;);
                sos.Credentials = credentials;
                // Be sure to set PreAuthenticate to true or else authentication will not be sent.
                sos.PreAuthenticate = true;
                                
                RequestParameter param = new RequestParameter();
                param.corpus = &quot;Internet&quot;; // whatever ...

                ResponseParameter response = sos.execute(param);
            }

Gruß Geeko</description>
		<content:encoded><![CDATA[<p>Hallo Kai,</p>
<p>über trial &amp; errror bin ich zwar schon lange hinaus, es will aber immer noch nicht funktionieren.<br />
Ich versuch hier genauso wie du eine Verbindung zu dem Uni-Leipzig Server herzustellen um Synonyme abzufragen. Aber es will einfach nicht.<br />
Die Subclass hab ich so von dir übernommen. Versuch ich aber eine Verbindung zum Server aufzubauen, will er immer noch ein Passwort bzw. Benutzername. </p>
<p>Meinst du könntest mir deine Implementierung in Form einer Konsolenanwendung zukommen lassen oder mir sagen was daran falsch ist?:<br />
            static void Main(string[] args)<br />
            {<br />
                ServiceOverviewService sos =<br />
                new ServiceOverviewService();</p>
<p>                NetworkCredential netCredential = new NetworkCredential(&#8220;anonymous&#8221;, &#8220;anonymous&#8221;);<br />
                Uri uri = new Uri(sos.Url);<br />
                ICredentials credentials = netCredential.GetCredential(uri, &#8220;Basic&#8221;);<br />
                sos.Credentials = credentials;<br />
                // Be sure to set PreAuthenticate to true or else authentication will not be sent.<br />
                sos.PreAuthenticate = true;</p>
<p>                RequestParameter param = new RequestParameter();<br />
                param.corpus = &#8220;Internet&#8221;; // whatever &#8230;</p>
<p>                ResponseParameter response = sos.execute(param);<br />
            }</p>
<p>Gruß Geeko</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Message Handling with JSF and Redirects by Ravi</title>
		<link>http://blog.kaiec.org/2009/03/01/message-handling-with-jsf-and-redirects/comment-page-1/#comment-18117</link>
		<dc:creator>Ravi</dc:creator>
		<pubDate>Wed, 02 Feb 2011 07:54:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.computerkind.de/?p=42#comment-18117</guid>
		<description>Its pretty good solution..Thanks lot</description>
		<content:encoded><![CDATA[<p>Its pretty good solution..Thanks lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Message Handling with JSF and Redirects by Jens</title>
		<link>http://blog.kaiec.org/2009/03/01/message-handling-with-jsf-and-redirects/comment-page-1/#comment-15348</link>
		<dc:creator>Jens</dc:creator>
		<pubDate>Thu, 18 Nov 2010 11:52:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.computerkind.de/?p=42#comment-15348</guid>
		<description>Very Nice! Works well. This should be standard behaviour for jsf in my opinion...</description>
		<content:encoded><![CDATA[<p>Very Nice! Works well. This should be standard behaviour for jsf in my opinion&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Message Handling with JSF and Redirects by rainer</title>
		<link>http://blog.kaiec.org/2009/03/01/message-handling-with-jsf-and-redirects/comment-page-1/#comment-15320</link>
		<dc:creator>rainer</dc:creator>
		<pubDate>Wed, 17 Nov 2010 15:23:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.computerkind.de/?p=42#comment-15320</guid>
		<description>very useful! added this functionality in my phaselistener taking care of message styling...works as expected :-) !</description>
		<content:encoded><![CDATA[<p>very useful! added this functionality in my phaselistener taking care of message styling&#8230;works as expected <img src='http://blog.kaiec.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Netbeans Update Center written in PHP by Kai</title>
		<link>http://blog.kaiec.org/2009/07/17/nbmcenter/comment-page-1/#comment-13839</link>
		<dc:creator>Kai</dc:creator>
		<pubDate>Wed, 15 Sep 2010 06:41:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kaiec.org/?p=141#comment-13839</guid>
		<description>Did you follow these instructions? http://wiki.netbeans.org/FaqAddingNewUpdateCenter

What is the exact problem? Are there error messages?</description>
		<content:encoded><![CDATA[<p>Did you follow these instructions? <a href="http://wiki.netbeans.org/FaqAddingNewUpdateCenter" rel="nofollow">http://wiki.netbeans.org/FaqAddingNewUpdateCenter</a></p>
<p>What is the exact problem? Are there error messages?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Netbeans Update Center written in PHP by Dr.Vet. Cumpanasu Florin</title>
		<link>http://blog.kaiec.org/2009/07/17/nbmcenter/comment-page-1/#comment-13837</link>
		<dc:creator>Dr.Vet. Cumpanasu Florin</dc:creator>
		<pubDate>Wed, 15 Sep 2010 04:13:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kaiec.org/?p=141#comment-13837</guid>
		<description>I still can not get the modules/plug-ins entry in my platform application. I can update my modules only if I import them in IDE.</description>
		<content:encoded><![CDATA[<p>I still can not get the modules/plug-ins entry in my platform application. I can update my modules only if I import them in IDE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Semtinel Workbench released on Sourceforge by Christian Brumm</title>
		<link>http://blog.kaiec.org/2010/05/24/semtinel-workbench-released-on-sourceforge/comment-page-1/#comment-12221</link>
		<dc:creator>Christian Brumm</dc:creator>
		<pubDate>Sat, 29 May 2010 08:33:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kaiec.org/?p=150#comment-12221</guid>
		<description>Great! I think a far too little number of researchers release their code (most likely because of embarrassment ;)). 
Some good reasons to share your code:
http://www.daniel-lemire.com/blog/archives/2010/02/10/open-sourcing-your-software-hurts-your-competitiveness-as-a-researcher/

Keep up the great work!</description>
		<content:encoded><![CDATA[<p>Great! I think a far too little number of researchers release their code (most likely because of embarrassment <img src='http://blog.kaiec.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ).<br />
Some good reasons to share your code:<br />
<a href="http://www.daniel-lemire.com/blog/archives/2010/02/10/open-sourcing-your-software-hurts-your-competitiveness-as-a-researcher/" rel="nofollow">http://www.daniel-lemire.com/blog/archives/2010/02/10/open-sourcing-your-software-hurts-your-competitiveness-as-a-researcher/</a></p>
<p>Keep up the great work!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

