<?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>Sat, 29 May 2010 08:33:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<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>
	<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-11760</link>
		<dc:creator>Kai</dc:creator>
		<pubDate>Thu, 06 May 2010 12:56:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kaiec.org/?p=15#comment-11760</guid>
		<description>I can not help you here. Just be sure that your Service implements System.Web.Services.Protocols.SoapHttpClientProtocol, which should be the case for automatically created clients.</description>
		<content:encoded><![CDATA[<p>I can not help you here. Just be sure that your Service implements System.Web.Services.Protocols.SoapHttpClientProtocol, which should be the case for automatically created clients.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic Auth Webservice Client with .NET by kunal</title>
		<link>http://blog.kaiec.org/2009/02/11/basic-auth-webservice-client-with-net/comment-page-1/#comment-11716</link>
		<dc:creator>kunal</dc:creator>
		<pubDate>Tue, 04 May 2010 08:56:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kaiec.org/?p=15#comment-11716</guid>
		<description>Hi sir,

I am calling a webservice in asp.net by http basic authentication(RFC2617) but unable to do so despite numerous attempts.

my code is(not working for me):

  MyService service = new MyService();
  service.Credentials = new NetworkCredential(&quot;username&quot;, &quot;password&quot;);
service.PreAuthenticate = true;

and
  MyService service = new MyService();
  NetworkCredential netCredential  = new NetworkCredential(&quot;username&quot;,  &quot;password&quot;);
  Uri uri = new Uri(service.Url);
  service.Credentials = netCredential.GetCredential(uri, &quot;Basic&quot;);
  service.PreAuthenticate = true;


My client has given me document as follows how to call webservice:

    please read about RFC2617 and how to implement it.
    It&#039;s clearly mentioned on page 110 of the Integration Document:
    Technology Partner Authentication
    &quot;Technology Partner&quot;, in the context of this document, means an authorized
    &quot;Account&quot; on the IRCTC site authorized to consume the web services. The username and password of the &quot;Technology Partner&quot; is set in the http header.

    NOTE: IRCTC Webservices follows strictly, the HTTP BASIC Authentication
    (RFC2617), so the same has to be followed by the integrating parties
    whether on Java/.NET or any other platform.


i try to do what Mr. Mark written on his blog but it gives me error: no suitable method find to override.

http://mark.michaelis.net/Blog/CallingWebServicesUsingBasicAuthentication.aspx


plz sir help me.

Thanks &amp; Regards
 Kunal Tilak</description>
		<content:encoded><![CDATA[<p>Hi sir,</p>
<p>I am calling a webservice in asp.net by http basic authentication(RFC2617) but unable to do so despite numerous attempts.</p>
<p>my code is(not working for me):</p>
<p>  MyService service = new MyService();<br />
  service.Credentials = new NetworkCredential(&#8220;username&#8221;, &#8220;password&#8221;);<br />
service.PreAuthenticate = true;</p>
<p>and<br />
  MyService service = new MyService();<br />
  NetworkCredential netCredential  = new NetworkCredential(&#8220;username&#8221;,  &#8220;password&#8221;);<br />
  Uri uri = new Uri(service.Url);<br />
  service.Credentials = netCredential.GetCredential(uri, &#8220;Basic&#8221;);<br />
  service.PreAuthenticate = true;</p>
<p>My client has given me document as follows how to call webservice:</p>
<p>    please read about RFC2617 and how to implement it.<br />
    It&#8217;s clearly mentioned on page 110 of the Integration Document:<br />
    Technology Partner Authentication<br />
    &#8220;Technology Partner&#8221;, in the context of this document, means an authorized<br />
    &#8220;Account&#8221; on the IRCTC site authorized to consume the web services. The username and password of the &#8220;Technology Partner&#8221; is set in the http header.</p>
<p>    NOTE: IRCTC Webservices follows strictly, the HTTP BASIC Authentication<br />
    (RFC2617), so the same has to be followed by the integrating parties<br />
    whether on Java/.NET or any other platform.</p>
<p>i try to do what Mr. Mark written on his blog but it gives me error: no suitable method find to override.</p>
<p><a href="http://mark.michaelis.net/Blog/CallingWebServicesUsingBasicAuthentication.aspx" rel="nofollow">http://mark.michaelis.net/Blog/CallingWebServicesUsingBasicAuthentication.aspx</a></p>
<p>plz sir help me.</p>
<p>Thanks &amp; Regards<br />
 Kunal Tilak</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Monitoring HTTP Traffic with tcpmon by Thomas Bayer</title>
		<link>http://blog.kaiec.org/2009/04/17/monitoring-http-traffic-with-tcpmon/comment-page-1/#comment-2775</link>
		<dc:creator>Thomas Bayer</dc:creator>
		<pubDate>Fri, 08 May 2009 09:55:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.computerkind.de/?p=26#comment-2775</guid>
		<description>A quite similar tool is &lt;a href=&quot;http://www.predic8.com/open-source/soap-monitor/&quot; rel=&quot;nofollow&quot;&gt;Membrane SOAP Monitor&lt;/a&gt;. It offers an XMLBeautifier and you can block and manipulate requests and responses.</description>
		<content:encoded><![CDATA[<p>A quite similar tool is <a href="http://www.predic8.com/open-source/soap-monitor/" rel="nofollow">Membrane SOAP Monitor</a>. It offers an XMLBeautifier and you can block and manipulate requests and responses.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Semantic Search with Hakia by K.A.I.E.C. &#187; Blog Archive &#187; Semantic Search with AskWiki</title>
		<link>http://blog.kaiec.org/2007/07/05/semantic-search-with-hakia/comment-page-1/#comment-17</link>
		<dc:creator>K.A.I.E.C. &#187; Blog Archive &#187; Semantic Search with AskWiki</dc:creator>
		<pubDate>Wed, 07 Nov 2007 12:01:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kaiec.org/2007/07/05/semantic-search-with-hakia/#comment-17</guid>
		<description>[...] in my posts about semantic search with Hakia and Lexxe, Tim Finin posted a set of questions posed to AskWiki, a semantic search engine that uses [...]</description>
		<content:encoded><![CDATA[<p>[...] in my posts about semantic search with Hakia and Lexxe, Tim Finin posted a set of questions posed to AskWiki, a semantic search engine that uses [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Semantic Search with Hakia by K.A.I.E.C. &#187; Blog Archive &#187; Semantic Search with Lexxe</title>
		<link>http://blog.kaiec.org/2007/07/05/semantic-search-with-hakia/comment-page-1/#comment-2</link>
		<dc:creator>K.A.I.E.C. &#187; Blog Archive &#187; Semantic Search with Lexxe</dc:creator>
		<pubDate>Tue, 10 Jul 2007 23:34:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kaiec.org/2007/07/05/semantic-search-with-hakia/#comment-2</guid>
		<description>[...] K.A.I.E.C. Kai&#8217;s Automatic Indexing Evaluation Center      &#171; Semantic Search with Hakia [...]</description>
		<content:encoded><![CDATA[<p>[...] K.A.I.E.C. Kai&#8217;s Automatic Indexing Evaluation Center      &laquo; Semantic Search with Hakia [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
