Archivo de la categoría: .NET

Microsoft y su HttpClient

http://www.pluralsight.com/community/blogs/aaron/archive/2009/03/13/consuming-the-twitter-rest-api-with-httpclient-wcf-rest-starter-kit.aspx Me gusta cuando se inspiran en las cosas mias. Pongo el código para que vean como utilizan internamente HttpRequest con Linq to XML try{ // initialize HttpClient for Twitter REST API HttpClient http = new HttpClient("http://twitter.com/statuses/"); http.TransportSettings.Credentials = new … Seguir leyendo

Publicado en .NET | 10 comentarios

La nube o servicios de aplicativos por internet

Cloud Computing o como yo lo denoto Servicios de Aplicativos por Internet (SAI), es la nueva tendencia que se esta viviendo en 2009. Les puedo comentar mis experiencias con algunas de estas nuevas tecnologías. Salesforce.com Interesante: Tiene un modelo de … Seguir leyendo

Publicado en .NET | 5 comentarios

Ecyware WebRobot 1.0 – antecedentes

Estoy tomando las tecnologias en HttpLightClient y IELightClient y creando una herramienta inspirada en estos, que digamos son hermanos lejanos de GreenBlue Inspector. La utilidad de esto es que los robots web necesitan estar lo mas cercano a Internet Explorer … Seguir leyendo

Publicado en .NET | 2 comentarios

CodeDOM sencillamente con Method Extensions

            // Class and namespace declaration            CodeCompileUnit targetUnit = new CodeCompileUnit();             CodeNamespace namespaceDeclaration = new CodeNamespace(NAMESPACE);            namespaceDeclaration.Imports.Add(new CodeNamespaceImport("System"));            namespaceDeclaration.Imports.Add(new CodeNamespaceImport("System.Runtime.InteropServices"));            namespaceDeclaration.Imports.Add(new CodeNamespaceImport("Microsoft.Win32"));             CodeTypeDeclaration targetClass =              new CodeTypeDeclaration(CLASSNAME)              {                  IsClass = true,                  TypeAttributes = TypeAttributes.Public,                  IsPartial = true              }; … Seguir leyendo

Publicado en .NET | 8 comentarios

HttpLightClient y IELightClient Open Source: Mis librerías de creación de robots web

HttpLightClient http://cid-300f1a82465dccda.skydrive.live.com/embedrowdetail.aspx/Public/HttpLightClient.rarIELightClient http://cid-300f1a82465dccda.skydrive.live.com/embedrowdetail.aspx/Public/IELightClient.rar Brevemente, estas librerías son útiles para web scraping, web automation y también para todo lo que tiene que ver con web testing y web hacking (en términos de White hat). Como usar HttpLightClient La clase base en … Seguir leyendo

Publicado en .NET | 8 comentarios

Sobre LINQ To SQL, LINQ to Entities y nHibernate

LINQ To SQL Gets Kicked to the Curb… Needs A Good Homehttp://codebetter.com/blogs/david.hayden/archive/2008/10/30/linq-to-sql-gets-kicked-to-the-curb-needs-a-good-home.aspx He tenido preguntas varias sobre mi opinión personal de si utilizar LINQ to SQL vs. LINQ to Entities. Mi experiencia con LINQ to SQL es agradable, lo utilize … Seguir leyendo

Publicado en .NET | 5 comentarios

Creando un DAL con LINQ to SQL y LINQ to Entities

Interesante articulo y muy util de Tony Sneed de DevelopMentor, publicado en MSDN Magazine. http://msdn.microsoft.com/en-us/magazine/dd263098.aspx En el blog aparece mas detalle para arreglar un issue con Linq to Entitieshttp://blog.tonysneed.com/?p=120 Todavia me siento mal por que Microsoft cancelo Linq to SQL, … Seguir leyendo

Publicado en .NET | 7 comentarios

He estado en SQL Server 2008 estas ultimas semanas

SQL Server 2008 me esta emocionando a tal nivel que vale la pena hasta retomar las certificaciones. Apenas he revisado todo lo que tiene pero por ejemplo el nuevo Reporting Services tiene un Report Builder que pareciera estar desarrollado en … Seguir leyendo

Publicado en .NET | 5 comentarios

WCF Best Practices

WCF Best Practices http://mehranikoo.net/CS/archive/2008/05/31/WCF_5F00_Best_5F00_Practices.aspx In our conversations with customers and partners, questions related to the design and development best practices are quite common and WCF is not an exception. Some of these questions are very specific to a customer scenario but most of … Seguir leyendo

Publicado en .NET | Deja un comentario

nHibernate Search with Lucene

NHibernate.Search using Lucene.NET Full Text Index (3 partes) http://blogs.intesoft.net/?tag=/lucene"Ayende added the NHibernate.Search last year but I’ve never seen a great deal of documentation or examples around it so hopefully this post will help others to get started with it. Basically, … Seguir leyendo

Publicado en .NET | 32 comentarios