<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comentarios para La historia de mis desventuras</title>
	<atom:link href="http://calamitatum.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://calamitatum.wordpress.com</link>
	<description>Palabras más, palabras menos sobre desarrollo de software.</description>
	<lastBuildDate>Fri, 05 Apr 2013 19:32:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comentario en SQL Server 2008 Management Studio y VS2008 SP1 por Anónimo</title>
		<link>http://calamitatum.wordpress.com/2010/08/29/sql-server-2008-management-studio-y-vs2008-sp1/#comment-173</link>
		<dc:creator><![CDATA[Anónimo]]></dc:creator>
		<pubDate>Fri, 05 Apr 2013 19:32:31 +0000</pubDate>
		<guid isPermaLink="false">https://calamitatum.wordpress.com/2010/08/29/sql-server-2008-management-studio-y-vs2008-sp1/#comment-173</guid>
		<description><![CDATA[Gracias Ing. te felicito y te agradezco tu solucion a mis problemas ;)]]></description>
		<content:encoded><![CDATA[<p>Gracias Ing. te felicito y te agradezco tu solucion a mis problemas <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en SQL Server 2008 Management Studio y VS2008 SP1 por Anónimo</title>
		<link>http://calamitatum.wordpress.com/2010/08/29/sql-server-2008-management-studio-y-vs2008-sp1/#comment-169</link>
		<dc:creator><![CDATA[Anónimo]]></dc:creator>
		<pubDate>Fri, 01 Mar 2013 15:14:19 +0000</pubDate>
		<guid isPermaLink="false">https://calamitatum.wordpress.com/2010/08/29/sql-server-2008-management-studio-y-vs2008-sp1/#comment-169</guid>
		<description><![CDATA[SE AGRADECE POR EL APORTE MIS RESPETOS BROTHER ...]]></description>
		<content:encoded><![CDATA[<p>SE AGRADECE POR EL APORTE MIS RESPETOS BROTHER &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Consumir un Web Service hecho en Java desde .Net por Jhonny López Ramírez</title>
		<link>http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-164</link>
		<dc:creator><![CDATA[Jhonny López Ramírez]]></dc:creator>
		<pubDate>Tue, 22 Jan 2013 21:55:19 +0000</pubDate>
		<guid isPermaLink="false">http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-164</guid>
		<description><![CDATA[Ok, me cuentas cualquier cosa.]]></description>
		<content:encoded><![CDATA[<p>Ok, me cuentas cualquier cosa.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Consumir un Web Service hecho en Java desde .Net por Joel</title>
		<link>http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-163</link>
		<dc:creator><![CDATA[Joel]]></dc:creator>
		<pubDate>Tue, 22 Jan 2013 21:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-163</guid>
		<description><![CDATA[voy a probarlo y le cuento estimado, gracias por responder!]]></description>
		<content:encoded><![CDATA[<p>voy a probarlo y le cuento estimado, gracias por responder!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Consumir un Web Service hecho en Java desde .Net por Jhonny López Ramírez</title>
		<link>http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-162</link>
		<dc:creator><![CDATA[Jhonny López Ramírez]]></dc:creator>
		<pubDate>Tue, 22 Jan 2013 21:42:12 +0000</pubDate>
		<guid isPermaLink="false">http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-162</guid>
		<description><![CDATA[Pues mira, tal vez te baste sólo con especificar las credenciales a nivel del proxy. Tal cual está en mi ejemplo, en el lado del cliente pones:
proxy.ClientCredentials.UserName.UserName  = &quot;NombreUsuario&quot;;
proxy.ClientCredentials.UserName.UserPassword = &quot;Password&quot;; 

Todo mi ejemplo quedaría así:

static void Main(string[] args)
{    
    DiferenciasHorariasClient proxy = new DiferenciasHorariasClient();
    &lt;b&gt;proxy.ClientCredentials.UserName.UserName  = &quot;NombreUsuario&quot;;&lt;/b&gt;
    &lt;b&gt;proxy.ClientCredentials.UserName.UserPassword = &quot;Password&quot;; &lt;/b&gt;
    float resultado = proxy.CalcularDiferenciaEnHoras(21, 37);    
    Console.WriteLine(&quot;La diferencia es: {0}&quot;, resultado.ToString());    
    Console.ReadLine();
}]]></description>
		<content:encoded><![CDATA[<p>Pues mira, tal vez te baste sólo con especificar las credenciales a nivel del proxy. Tal cual está en mi ejemplo, en el lado del cliente pones:<br />
proxy.ClientCredentials.UserName.UserName  = &#8220;NombreUsuario&#8221;;<br />
proxy.ClientCredentials.UserName.UserPassword = &#8220;Password&#8221;; </p>
<p>Todo mi ejemplo quedaría así:</p>
<p>static void Main(string[] args)<br />
{<br />
    DiferenciasHorariasClient proxy = new DiferenciasHorariasClient();<br />
    <b>proxy.ClientCredentials.UserName.UserName  = &#8220;NombreUsuario&#8221;;</b><br />
    <b>proxy.ClientCredentials.UserName.UserPassword = &#8220;Password&#8221;; </b><br />
    float resultado = proxy.CalcularDiferenciaEnHoras(21, 37);<br />
    Console.WriteLine(&#8220;La diferencia es: {0}&#8221;, resultado.ToString());<br />
    Console.ReadLine();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Consumir un Web Service hecho en Java desde .Net por Joel</title>
		<link>http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-161</link>
		<dc:creator><![CDATA[Joel]]></dc:creator>
		<pubDate>Tue, 22 Jan 2013 21:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-161</guid>
		<description><![CDATA[exactamente estimado, servicio web(JAVA) y yo lo consumo con otro servicio web (.NET). el servicio tiene credenciales, (cuando hago la referencia web), y a continuacion cuando quiero usar los metodos tambien me pide credenciales.]]></description>
		<content:encoded><![CDATA[<p>exactamente estimado, servicio web(JAVA) y yo lo consumo con otro servicio web (.NET). el servicio tiene credenciales, (cuando hago la referencia web), y a continuacion cuando quiero usar los metodos tambien me pide credenciales.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Consumir un Web Service hecho en Java desde .Net por Jhonny López Ramírez</title>
		<link>http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-160</link>
		<dc:creator><![CDATA[Jhonny López Ramírez]]></dc:creator>
		<pubDate>Tue, 22 Jan 2013 21:08:42 +0000</pubDate>
		<guid isPermaLink="false">http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-160</guid>
		<description><![CDATA[Siendo el cliente .NET y el Servicio en Java?]]></description>
		<content:encoded><![CDATA[<p>Siendo el cliente .NET y el Servicio en Java?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en Consumir un Web Service hecho en Java desde .Net por Joel</title>
		<link>http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-159</link>
		<dc:creator><![CDATA[Joel]]></dc:creator>
		<pubDate>Tue, 22 Jan 2013 18:38:22 +0000</pubDate>
		<guid isPermaLink="false">http://calamitatum.wordpress.com/2009/11/27/consumir-un-web-service-hecho-en-java-desde-net/#comment-159</guid>
		<description><![CDATA[estimado, y que pasa si el servicio web  esta creado con credenciales,  usuario y password? podrias hablarme de eso, ya que tengo el problema de que no lo puedo consumir, y con soap ui 4.5, me dice que el tipo de autorizacion es Premptive....

saludos y gracias]]></description>
		<content:encoded><![CDATA[<p>estimado, y que pasa si el servicio web  esta creado con credenciales,  usuario y password? podrias hablarme de eso, ya que tengo el problema de que no lo puedo consumir, y con soap ui 4.5, me dice que el tipo de autorizacion es Premptive&#8230;.</p>
<p>saludos y gracias</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en SQL Server 2008 Management Studio y VS2008 SP1 por Anónimo</title>
		<link>http://calamitatum.wordpress.com/2010/08/29/sql-server-2008-management-studio-y-vs2008-sp1/#comment-144</link>
		<dc:creator><![CDATA[Anónimo]]></dc:creator>
		<pubDate>Wed, 03 Oct 2012 14:09:22 +0000</pubDate>
		<guid isPermaLink="false">https://calamitatum.wordpress.com/2010/08/29/sql-server-2008-management-studio-y-vs2008-sp1/#comment-144</guid>
		<description><![CDATA[Ok te felicito y te agradesco broder ya no voy a perder el tiempo descargando l visual sp1]]></description>
		<content:encoded><![CDATA[<p>Ok te felicito y te agradesco broder ya no voy a perder el tiempo descargando l visual sp1</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario en MembershipProvider y .Net Framework 4.0 por mlizbeth</title>
		<link>http://calamitatum.wordpress.com/2011/01/24/membershipprovider-y-net-framework-4-0/#comment-139</link>
		<dc:creator><![CDATA[mlizbeth]]></dc:creator>
		<pubDate>Fri, 27 Jul 2012 21:27:54 +0000</pubDate>
		<guid isPermaLink="false">https://calamitatum.wordpress.com/2011/01/24/membershipprovider-y-net-framework-4-0/#comment-139</guid>
		<description><![CDATA[o.O yo no tuve ese problema :S Con usar using System.Web.Security me funcionó]]></description>
		<content:encoded><![CDATA[<p>o.O yo no tuve ese problema :S Con usar using System.Web.Security me funcionó</p>
]]></content:encoded>
	</item>
</channel>
</rss>
