<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">German Marin's Blog</title><subtitle type="html">Ideas about Architecture y otras cosas</subtitle><id>http://blogs.geekdojo.net/german/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.geekdojo.net/german/atom.aspx" /><generator uri="http://communityserver.org" version="2.0.60217.2664">Community Server</generator><updated>2004-10-14T22:08:00Z</updated><entry><title>adjustable service level</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2005/06/24/8531.aspx" /><id>http://blogs.geekdojo.net/german/archive/2005/06/24/8531.aspx</id><published>2005-06-24T13:51:00Z</published><updated>2005-06-24T13:51:00Z</updated><content type="html">&lt;H1&gt;&lt;FONT&gt;&lt;SPAN&gt;adjustable service level &lt;/SPAN&gt;&lt;SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/H1&gt;
&lt;DIV&gt;
&lt;H2&gt;&lt;SPAN&gt;&lt;FONT&gt;Context&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/H2&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;SPAN&gt;You have an application that answers request from many clients and you want to have control over quality of service to each client considering application capabilities and the service level agreement that you have with your customers.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;H2&gt;&lt;SPAN&gt;&lt;FONT&gt;Problem&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/H2&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;SPAN&gt;You want to control the time when the application answers and processes requests. The answering application should have the option to deny service even if the requester is authorized to send requests. &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;H2&gt;&lt;SPAN&gt;&lt;FONT&gt;Solution&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/H2&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;SPAN&gt;The HUB informs the SPOKE how long it should wait for sending a response request, how long it is it time window and also the ID it should present to the HUB for retrieving response.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;
&lt;P&gt;See Picture:&lt;/P&gt;
&lt;P&gt;&lt;a href="http://blogs.geekdojo.net/photos/german/picture8525.aspx"&gt;http://blogs.geekdojo.net/photos/german/picture8525.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=8531" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Stateless Paging in SQL Server</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2005/05/17/8342.aspx" /><id>http://blogs.geekdojo.net/german/archive/2005/05/17/8342.aspx</id><published>2005-05-17T12:41:00Z</published><updated>2005-05-17T12:41:00Z</updated><content type="html">&lt;P&gt;&lt;U&gt;What I would like ROWNUM , LIMIT, etc&lt;/U&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT&gt;SELECT TITLE FROM BOOK WHERE ROWNUM &amp;lt;= 5 ORDER BY TITLE&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;
&lt;LI&gt;&lt;FONT&gt;&lt;FONT&gt;SELECT * FROM BOOK WHERE RowNumber BETWEEN 11 AND 20&lt;/FONT&gt; &lt;/FONT&gt;
&lt;LI&gt;SELECT * FROM &lt;FONT&gt;BOOK&amp;nbsp;&lt;/FONT&gt; WHERE userID = colname &lt;B&gt;LIMIT 2&lt;/B&gt;
&lt;LI&gt;&lt;STRONG&gt;SELECT * FROM &lt;/STRONG&gt;&lt;FONT&gt;BOOK&lt;/FONT&gt;&lt;STRONG&gt; LIMIT 20, 10 &lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT&gt;... y no tengo&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Sent from &amp;nbsp;the client to the server the last register and the server performs a new query ("Registro de reenganche") 
&lt;LI&gt;Cache en Cliente y Servidor??? 
&lt;LI&gt;Something that remember DIME???&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Referencias:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.windowsitpro.com/SQLServer/Article/ArticleID/40505/40505.html"&gt;http://www.windowsitpro.com/SQLServer/Article/ArticleID/40505/40505.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://weblogs.asp.net/pwilson/archive/2003/10/10/31456.aspx"&gt;http://weblogs.asp.net/pwilson/archive/2003/10/10/31456.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.windowsitpro.com/SQLServer/Article/ArticleID/43922/43922.html"&gt;http://www.windowsitpro.com/SQLServer/Article/ArticleID/43922/43922.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.codeproject.com/cs/database/PagingSqlNet.asp"&gt;http://www.codeproject.com/cs/database/PagingSqlNet.asp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.codeproject.com/aspnet/PagingLarge.asp"&gt;http://www.codeproject.com/aspnet/PagingLarge.asp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=31741"&gt;http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=31741&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Referencias RowNum / RowNumber&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.joesack.com/SQLServerROWNUM.htm"&gt;http://www.joesack.com/SQLServerROWNUM.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=8342" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Row level Security SQL</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2005/05/09/8078.aspx" /><id>http://blogs.geekdojo.net/german/archive/2005/05/09/8078.aspx</id><published>2005-05-09T14:34:00Z</published><updated>2005-05-09T14:34:00Z</updated><content type="html">&lt;P&gt;Microsoft provides a method to grant permisisons to individual columns within a table. Row-level security, however, is implemented using a "view", a stored proc, or SQL function. The method I most commonly see is using a SQL view--it's a lot easier than trying to manage column permissions. Instead, you grant SQL permissions to the view, not the underlying table. With creative use of a WHERE clause, you should only need one "view" for every type of database access. For example, a customer service rep viewing his/her trouble tickets can be accomplished by creating a view that filters the TroubleTicket database for tickets WHERE AgentName = SUSER_NAME(), a built-in SQL function that returns the currently logged-in username. This ensures that all actions taken using the view will only affect tickets for that agent. Deny permissions to all the tables and only grant your users permissions to the views. &lt;/P&gt;
&lt;P&gt;Referencias&lt;/P&gt;
&lt;P&gt;&lt;A href="http://vyaskn.tripod.com/row_level_security_in_sql_server_databases.htm"&gt;http://vyaskn.tripod.com/row_level_security_in_sql_server_databases.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I think It's a better idea to use SUSER_SID() &amp;nbsp;instead of SUSER_NAME(). What do you think???&lt;/P&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=8078" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Converting from the SOAP Toolkit to Visual Studio .NET</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2005/04/29/7997.aspx" /><id>http://blogs.geekdojo.net/german/archive/2005/04/29/7997.aspx</id><published>2005-04-30T06:38:00Z</published><updated>2005-04-30T06:38:00Z</updated><content type="html">&lt;H2 class=dtH1&gt;&lt;A name=migrsoapwebserv_topic5a&gt;&lt;/A&gt;&amp;nbsp;&lt;/H2&gt;
&lt;P&gt;Applications built with the SOAP Toolkit or XML Web services are built according to the SOAP specification. With SOAP-based applications, the connection between a client and a Web service is defined exclusively by the WSDL file. A Web service built with the SOAP Toolkit can be used with a Web service built with .NET and vice versa. This allows you to migrate from the SOAP Toolkit to .NET in stages by holding the WSDL definition of the service constant. For instance, the clients that access your Web service can continue to use the SOAP Toolkit's SOAPClient while your Web service is converted to .NET. &lt;/P&gt;
&lt;P&gt;The simplest way to hold the WSDL file for your Web service constant is to generate the skeleton for your Web service from the WSDL file created by the SOAP Toolkit. The .NET Wsdl.exe utility will generate the Visual Basic .NET skeleton for a Web service if you pass the utility the: &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;B&gt;/l &lt;/B&gt;parameter: Controls the language of the generated code. The default is C#. Passing /l:VB causes the utility to generate Visual Basic. 
&lt;LI&gt;&lt;B&gt;/server &lt;/B&gt;parameter: Indicates that you want the utility to generate the Web service&amp;#8217;s server-side code. The default is for the utility to generate the client-side proxies. 
&lt;LI&gt;The name of the WSDL file. &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;To generate the code for our sample Web service from the Cust.wsdl file, you would use:&lt;/P&gt;&lt;PRE class=code&gt;wsdl.exe /l:VB /server cust.wsdl&lt;/PRE&gt;
&lt;P&gt;The resulting skeleton code would be placed in a file called Cust.vb. You can copy the code from there into your ASMX module and then copy your Visual Basic 6.0 code into the equivalent routines in the ASMX module. You&amp;#8217;ll need to convert your Visual Basic 6.0 code to .NET syntax, as described in other papers in this series. If you want to create a completely new .NET version of your Web service, the WSDL file from your SOAP Toolkit version can be used to generate the skeleton code for your Web service.&lt;/P&gt;
&lt;P&gt;On the client side, the different client applications that access a Web service can be converted from the SOAP Toolkit to .NET on an individual basis. Even rolling out the .NET versions of a single client can be staged because of the interoperability that the SOAP specification provides. To convert from the SOAP Toolkit to Visual Studio .NET within the client, you must replace the references to SOAPClient with references to the Web service proxies.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Referencias SOAP Toolkit a :NET&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.dotnet247.com/247reference/a.aspx?u=http://msdn.microsoft.com/webservices/default.aspx?pull=/library/en-us/dnsoap/html/stkmigration.asp"&gt;http://www.dotnet247.com/247reference/a.aspx?u=http://msdn.microsoft.com/webservices/default.aspx?pull=/library/en-us/dnsoap/html/stkmigration.asp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://dev4net.com/blog/archive/2005/02/16/1988.aspx"&gt;http://dev4net.com/blog/archive/2005/02/16/1988.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/rdias/archive/2004/06/02/147128.aspx"&gt;http://blogs.msdn.com/rdias/archive/2004/06/02/147128.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msdn.microsoft.com/webservices/building/soaptk/default.aspx"&gt;http://msdn.microsoft.com/webservices/building/soaptk/default.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Referencias de Interop&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.programmersheaven.com/2/vbrad-Interop"&gt;http://www.programmersheaven.com/2/vbrad-Interop&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.codeproject.com/dotnet/nettocom.asp"&gt;http://www.codeproject.com/dotnet/nettocom.asp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconapplyinginteropattributes.asp"&gt;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconapplyinginteropattributes.asp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Some important info related to MSXML :&lt;/P&gt;
&lt;P&gt;SDK:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnmsxml/html/joyofsax.asp"&gt;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnmsxml/html/joyofsax.asp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Support:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/search/default.aspx?catalog=LCID%3D1033&amp;amp;mode=s&amp;amp;cat=false&amp;amp;query=MSXML&amp;amp;srch=sup&amp;amp;x=11&amp;amp;y=12"&gt;http://support.microsoft.com/search/default.aspx?catalog=LCID%3D1033&amp;amp;mode=s&amp;amp;cat=false&amp;amp;query=MSXML&amp;amp;srch=sup&amp;amp;x=11&amp;amp;y=12&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;MSXML2 will work if you point %TMP% to a writable location&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=7997" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>BizTalk setup</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2005/02/26/7315.aspx" /><id>http://blogs.geekdojo.net/german/archive/2005/02/26/7315.aspx</id><published>2005-02-27T07:43:00Z</published><updated>2005-02-27T07:43:00Z</updated><content type="html">&lt;A href="http://pluralsight.com/blogs/aaron/archive/2005/02/23/6140.aspx"&gt;http://pluralsight.com/blogs/aaron/archive/2005/02/23/6140.aspx&lt;/A&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=7315" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Bykes experimients</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2005/02/09/7202.aspx" /><id>http://blogs.geekdojo.net/german/archive/2005/02/09/7202.aspx</id><published>2005-02-09T23:35:00Z</published><updated>2005-02-09T23:35:00Z</updated><content type="html">
MSU mechanical engineering students design bicycle for kids with cerebral palsy
http://www.lsj.com/news/local/040501_msubike_1b-2b.html
&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=7202" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Infopath recordings</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2005/02/02/7142.aspx" /><id>http://blogs.geekdojo.net/german/archive/2005/02/02/7142.aspx</id><published>2005-02-03T03:15:00Z</published><updated>2005-02-03T03:15:00Z</updated><content type="html">&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://msevents.microsoft.com/cui/webcasteventdetails.aspx?eventid=1032259531&amp;amp;culture=en-us"&gt;Best Practices for Designing InfoPath Forms&lt;/A&gt; &lt;BR&gt;Level 200 - 5.10.2004 - 18:00 - 19:30 Uhr &lt;BR&gt;Scott Roberts, Software Design Engineer, Microsoft Corporation 
&lt;LI&gt;&lt;A href="http://msevents.microsoft.com/cui/webcasteventdetails.aspx?eventid=1032259537&amp;amp;culture=en-us"&gt;User Roles in InfoPath 2003&lt;/A&gt; &lt;BR&gt;Level 200 - 12.10.2004 - 18:00 - 19:30 Uhr &lt;BR&gt;Josh Bertsch, Software Test Engineer, Microsoft Corporation 
&lt;LI&gt;&lt;A href="http://msevents.microsoft.com/cui/webcasteventdetails.aspx?eventid=1032259110&amp;amp;culture=en-us"&gt;Building Advanced Dynamic Solutions in InfoPath 2003&lt;/A&gt; &lt;BR&gt;Level 200 - 19.10.2004 - 18:00 - 19:30 Uhr &lt;BR&gt;Jun Jin, Software Design Engineer, Microsoft Corporation 
&lt;LI&gt;&lt;A href="http://msevents.microsoft.com/cui/webcasteventdetails.aspx?eventid=1032259112&amp;amp;culture=en-us"&gt;Business Logic in InfoPath 2003&lt;/A&gt; &lt;BR&gt;Level 300 - 26.10.2004 - 20:00 - 21:30 Uhr &lt;BR&gt;Yuet (Emily) Ching and Prachi Bora, Software Test Engineers, Microsoft Corporation 
&lt;LI&gt;&lt;A href="http://msevents.microsoft.com/cui/webcasteventdetails.aspx?eventid=1032259539&amp;amp;culture=en-us"&gt;Using Managed Code and Visual Studio to Build Solutions&lt;/A&gt; &lt;BR&gt;Level 300 - 2.11.2004 - 22:00 - 23:00 Uhr&lt;BR&gt;Willson Raj David, Software Design Engineer, Microsoft Corporation 
&lt;LI&gt;&lt;A href="http://msevents.microsoft.com/cui/webcasteventdetails.aspx?eventid=1032259542&amp;amp;culture=en-us"&gt;InfoPath in End-to-End Enterprise Solutions: Integrating InfoPath with Siebel and SAP&lt;/A&gt; &lt;BR&gt;Level 300 - 8.11.2004 - 20:00 - 21:30 Uhr &lt;BR&gt;Hagen Green, Software Test Engineer, Microsoft Corporation 
&lt;LI&gt;&lt;A href="http://msevents.microsoft.com/cui/webcasteventdetails.aspx?eventid=1032259544&amp;amp;culture=en-us"&gt;Digital Signatures in InfoPath 2003&lt;/A&gt; &lt;BR&gt;Level 300 - 15.11.2004 - 20:00 - 21:30 Uhr &lt;BR&gt;Mihaela Cristina Cris, Software Test Engineer, Microsoft Corporation 
&lt;LI&gt;&lt;A href="http://msevents.microsoft.com/cui/webcasteventdetails.aspx?eventid=1032259546&amp;amp;culture=en-us"&gt;Creating Custom Controls for InfoPath SP1&lt;/A&gt; &lt;BR&gt;Level 400 - 29.11.2004 - 20:00 - 21:30 Uhr &lt;BR&gt;Andrew Ma, Software Test Engineer, Microsoft Corporation 
&lt;LI&gt;&lt;A href="http://msevents.microsoft.com/cui/webcasteventdetails.aspx?eventid=1032259548&amp;amp;culture=en-us"&gt;Programming Workflow into InfoPath Solutions: Using InfoPath with BizTalk Server 2004 and Human Workflow Services&lt;/A&gt; &lt;BR&gt;Level 400 - 6.12.2004 - 20:00 - 21:30 Uhr &lt;BR&gt;Rick Severson, Software Test Engineer, Microsoft Corporation 
&lt;LI&gt;&lt;A href="http://msevents.microsoft.com/cui/webcasteventdetails.aspx?eventid=1032259550&amp;amp;culture=en-us"&gt;Database Connectivity in InfoPath Through ADO.NET DataSet Support&lt;/A&gt; &lt;BR&gt;Level 400 - 14.12.2004 - 20:00 - 21:30 Uhr &lt;BR&gt;Mikhail Vassiliev, Software Design Engineer, Microsoft Corporation &lt;/LI&gt;&lt;/UL&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=7142" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Customer Data Integration (ideas 1)</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2005/02/02/7135.aspx" /><id>http://blogs.geekdojo.net/german/archive/2005/02/02/7135.aspx</id><published>2005-02-02T16:20:00Z</published><updated>2005-02-02T16:20:00Z</updated><content type="html">&lt;UL&gt;
&lt;LI&gt;&lt;U&gt;Objetivo:&lt;/U&gt; 
&lt;LI&gt;vista única del cliente (360 grados) &amp;nbsp;y su comportamiento macro&amp;nbsp; con la empresa. 
&lt;LI&gt;&lt;U&gt;Market Research&lt;/U&gt; 
&lt;LI&gt;Existe una iniciativa de OASIS para definir&amp;nbsp;información especifica &amp;nbsp;de los clientes (&lt;A href="http://www.oasis-open.org/committees/ciq/ciq.html"&gt;http://www.oasis-open.org/committees/ciq/ciq.html&lt;/A&gt;) tales como nombre (xNL) &amp;nbsp;y dirección (xAL), otro tipo de información (xCIL) y relaciones entre Organizaciones, Organizacion con Persona y Relación entre personas (xCRL) 
&lt;LI&gt;Existe una linea de investigación en la que encaja esta problematica de base de datos unica de clientes que se llama Semantic Integration (&lt;A href="http://www.coolheads.com/SRNPUBS/EXTREME2003/A_Semantic_Integration_Methodology/slide01.htm"&gt;http://www.coolheads.com/SRNPUBS/EXTREME2003/A_Semantic_Integration_Methodology/slide01.htm&lt;/A&gt;&amp;nbsp;) &lt;/LI&gt;&lt;/UL&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=7135" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Experiencias de adaptadores BTS</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2005/01/15/6482.aspx" /><id>http://blogs.geekdojo.net/german/archive/2005/01/15/6482.aspx</id><published>2005-01-16T03:57:00Z</published><updated>2005-01-16T03:57:00Z</updated><content type="html">http://www.gotdotnet.com/community/resources/default.aspx?Query=BizTalk&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=6482" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>BTS 2004 Webcast Recordings</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2005/01/14/6456.aspx" /><id>http://blogs.geekdojo.net/german/archive/2005/01/14/6456.aspx</id><published>2005-01-15T00:01:00Z</published><updated>2005-01-15T00:01:00Z</updated><content type="html">&lt;FONT color=#008000 size=2&gt;
&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#008000 size=2&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Past Webcast Recordings&lt;/U&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;U&gt;&lt;STRONG&gt;2003&lt;BR&gt;&lt;/STRONG&gt;Aug 29 &lt;STRONG&gt;BizTalk 2004 Overview &amp;amp; VS.NET Integration &lt;/STRONG&gt;- Erik Leaseburg&lt;/U&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;U&gt;&lt;FONT size=2&gt;Sep 5 &lt;STRONG&gt;Setup &amp;amp; Installation&lt;/STRONG&gt; - Vipul Goyal&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-1&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-1&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;U&gt;&lt;FONT size=2&gt;Sep 12 &lt;STRONG&gt;2002 to 2004 Comparison &amp;amp; Migration&lt;/STRONG&gt; - Erik Leaseburg&lt;BR&gt;Sep 19 &lt;STRONG&gt;2002 to 2004 Comparison &amp;amp; Migration (repeat!) &lt;/STRONG&gt;- Erik Leaseburg&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-2&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-2&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;U&gt;&lt;FONT size=2&gt;Sep 26 &lt;STRONG&gt;XML Editor &lt;/STRONG&gt;- Guru Venkataraman&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-3&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-3&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;U&gt;&lt;FONT size=2&gt;Oct 3 &lt;STRONG&gt;XML Mapper &lt;/STRONG&gt;- Vipul Goyal&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-4&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-4&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;U&gt;&lt;FONT size=2&gt;Oct 10 &lt;STRONG&gt;Orchestration&lt;/STRONG&gt; - Dale Michalk&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-5&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-5&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;U&gt;&lt;FONT size=2&gt;Oct 17 &lt;STRONG&gt;Deployment&lt;/STRONG&gt; - Rajan Dwivedi&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-6&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-6&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;U&gt;&lt;FONT size=2&gt;Oct 24 &lt;STRONG&gt;Content Based Routing&lt;/STRONG&gt; - Marty Wasznicky&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-7&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-7&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;U&gt;Oct 31 &lt;/U&gt;&lt;U&gt;&lt;I&gt;&lt;STRONG&gt;Skip This Week for PDC&lt;BR&gt;&lt;/STRONG&gt;&lt;/I&gt;Nov 7 &lt;STRONG&gt;Pipeline &amp;amp; Custom Components&lt;/STRONG&gt; - Gavin Islip&lt;BR&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-8&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-8&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;U&gt;Nov 14 &lt;/U&gt;&lt;U&gt;&lt;STRONG&gt;&lt;I&gt;Cancelled&lt;/I&gt;&lt;BR&gt;&lt;/STRONG&gt;Thu, Nov 20 &lt;STRONG&gt;BizTalk Message Queuing (MSMQ/T)&lt;/STRONG&gt; - Rajan Dwivedi&lt;BR&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=6DWNGR-16&amp;amp;pw=494ZRK"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=6DWNGR-16&amp;amp;pw=494ZRK&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;U&gt;Note: Click on &lt;STRONG&gt;Agenda &lt;/STRONG&gt;slide to skip first 30min of unrelated information&lt;/U&gt;&lt;/FONT&gt;&lt;I&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/I&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;U&gt;Nov 28 &lt;/U&gt;&lt;U&gt;&lt;I&gt;&lt;STRONG&gt;Skip This Week for Thanksgiving Holiday&lt;BR&gt;&lt;/STRONG&gt;&lt;/I&gt;Dec 5 &lt;STRONG&gt;Web Services and Orchestration - &lt;/STRONG&gt;Erik Leaseburg&lt;BR&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-10&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-10&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;&lt;U&gt;Dec 12 &lt;STRONG&gt;Rules Composer&lt;/STRONG&gt; - David Wang&lt;BR&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-11&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-11&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;I&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/I&gt;&lt;/FONT&gt;&lt;U&gt;&lt;FONT size=2&gt;Dec 19 &lt;STRONG&gt;Advanced Orchestration, Part 1 &lt;/STRONG&gt;- Erik Leaseburg&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-12&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-12&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;U&gt;Dec 26 &lt;I&gt;&lt;STRONG&gt;Skip This Week for Holidays&lt;/STRONG&gt;&lt;/P&gt;&lt;/I&gt;&lt;/U&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;2004&lt;BR&gt;&lt;/U&gt;&lt;/STRONG&gt;Jan 2 &lt;STRONG&gt;&lt;I&gt;Skip This Week for New Years Holiday&lt;/I&gt;&lt;BR&gt;&lt;/STRONG&gt;Jan 9 &lt;STRONG&gt;Health and Activity Tracking (HAT) &amp;amp; Debugging &lt;/STRONG&gt;- Patrick Smith&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-13&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-13&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Jan 16 &lt;STRONG&gt;Business Activity Services (BAS) &lt;/STRONG&gt;- David Wang&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-14&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-14&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;I&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/I&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Jan 23 &lt;STRONG&gt;Advanced Orchestration, Part 2 &lt;/STRONG&gt;- Marty Wasznicky&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-15&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-15&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#0000ff size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Jan 30 &lt;STRONG&gt;Human Workflow Services (HWS) &lt;/STRONG&gt;- Raman Mahal&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-16&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-16&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#0000ff size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Feb 6 &lt;STRONG&gt;InfoPath/BizTalk 2004 Integration &lt;/STRONG&gt;- David Solomon&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-17&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-17&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#c0c0c0 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Feb 13 &lt;STRONG&gt;BizTalk Adapter Framework &lt;/STRONG&gt;- Gavin Islip&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-18&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-18&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#0000ff size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Feb 20 &lt;STRONG&gt;Business Activity Monitoring (BAM) &lt;/STRONG&gt;- David Wang&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-19&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-19&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;I&gt;&lt;FONT color=#0000ff size=2&gt;&lt;BR&gt;&lt;/I&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Feb 27 &lt;STRONG&gt;BizTalk Explorer &amp;amp; Administration &lt;/STRONG&gt;- Erik Leaseburg&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-20&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-20&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Mar 5 &lt;STRONG&gt;Enterprise Single Sign-On (SSO) - &lt;/STRONG&gt;Jonathan Gao&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-21&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-21&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Mar 12 &lt;STRONG&gt;EDI Covast Adapter&lt;/STRONG&gt; - Scott Mauvais&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-22&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-22&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#0000ff size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Mar 19 &lt;STRONG&gt;BizTalk Adapter Program &lt;/STRONG&gt;- Ramona Ramadas &lt;I&gt;&lt;STRONG&gt;(no recording)&lt;BR&gt;&lt;/STRONG&gt;&lt;/I&gt;Mar 26 &lt;STRONG&gt;SQL Adapter&lt;/STRONG&gt; - Ananth Krishnamurthy (Equarius)&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-23&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-23&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Apr 2 &lt;STRONG&gt;Performance, Stress &amp;amp; Scalability&lt;/STRONG&gt; - Erik Leaseburg&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-24&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-24&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Apr 9 &lt;I&gt;&lt;STRONG&gt;Skip This Week for Good Friday/Easter Weekend&lt;BR&gt;&lt;/STRONG&gt;&lt;/I&gt;Apr 16 &lt;STRONG&gt;SAP Adapter &lt;/STRONG&gt;- Bryan McCutchan&lt;/FONT&gt;&lt;FONT color=#808080 size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-25&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-25&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#0000ff size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Apr 23 &lt;I&gt;&lt;STRONG&gt;Skip This Week&lt;BR&gt;&lt;/STRONG&gt;&lt;/I&gt;Apr 30 &lt;STRONG&gt;Migrating from BizTalk 2002 to 2004 &lt;/STRONG&gt;- Erik Leaseburg&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-26&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-26&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;May 7 &lt;STRONG&gt;MQSeries Adapter &lt;/STRONG&gt;- Susie Adams&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-27&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-27&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;May 14 &lt;STRONG&gt;SharePoint Adapter&lt;/STRONG&gt; - Steve Resnick&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-28&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-28&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;May 21 &lt;STRONG&gt;Advanced Orchestration &lt;/STRONG&gt;- Erik Leaseburg&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032253626"&gt;&lt;FONT color=#0000ff size=2&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032253626&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;May 28 &lt;STRONG&gt;HIPAA 3.0 Accelerator &lt;/STRONG&gt;- Monica DeZulueta&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-29&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-29&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Jun 4 &lt;STRONG&gt;Advanced Dev - Crypto Pipeline, Submit Direct, Orchestration&lt;/STRONG&gt; - Rajan Dwivedi&lt;BR&gt;(no recording, see Jun 18 repeat delivery)&lt;BR&gt;Jun 11 &lt;STRONG&gt;&lt;I&gt;Skip This Week&lt;/I&gt;&lt;BR&gt;&lt;/STRONG&gt;Jun 18 &lt;STRONG&gt;Advanced Dev - Crypto Pipeline, Submit Direct, Orchestration (repeat!) &lt;/STRONG&gt;- Rajan Dwivedi&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-31&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-31&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Jun 25 &lt;STRONG&gt;Trading Partner Management &amp;amp; FTP Adapter &lt;/STRONG&gt;- David Wang&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-30&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-30&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Jul 2 &lt;STRONG&gt;&lt;I&gt;Skip This Week for 4th of July Holiday in US&lt;/I&gt;&lt;BR&gt;&lt;/STRONG&gt;Jul 9 &lt;STRONG&gt;SWIFT Accelerator &lt;/STRONG&gt;- Fredda Cole&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-32&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-32&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;July 16 &lt;STRONG&gt;&lt;I&gt;Skip This Week for MGB in Atlanta&lt;/I&gt;&lt;BR&gt;&lt;/STRONG&gt;July 23 &lt;STRONG&gt;RosettaNet Accelerator &lt;/STRONG&gt;- Cuneyt Havlioglu&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-33&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-33&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;July 30 &lt;STRONG&gt;HL7 Accelerator &lt;/STRONG&gt;- Suren Machiraju&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-34&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-34&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Aug 6 &lt;STRONG&gt;&lt;I&gt;Skip This Week&lt;/I&gt;&lt;BR&gt;&lt;/STRONG&gt;Aug 13 &lt;I&gt;&lt;STRONG&gt;Skip This Week&lt;BR&gt;&lt;/STRONG&gt;&lt;/I&gt;Aug 20&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;BizTalk Configuration and Administration &lt;/STRONG&gt;&amp;#8211; Erik Leaseburg&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-35&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-35&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Sep 3 &lt;STRONG&gt;Orchestration Drilldown: Transactions, Exceptions and Compensation&lt;/STRONG&gt; - Erik Leaseburg&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-36&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-36&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Sep 10 &lt;STRONG&gt;BizTalk Adapter Wizard&lt;/STRONG&gt; - Boudewijn van der Zwan (Unisys)&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-37&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-37&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Sep 17 &lt;STRONG&gt;HIS Integration with BizTalk&lt;/STRONG&gt; - Mike Cramer&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-38&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-38&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Sep 24 &lt;STRONG&gt;Advanced Mapping&lt;/STRONG&gt; - Aleksey Savateyev&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-39&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-39&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#0000ff size=2&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;Oct 1 &lt;STRONG&gt;BizTalk PowerToys&lt;/STRONG&gt; - Erik Leaseburg&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-40&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-40&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Oct 8 &lt;STRONG&gt;BizTalk 2004 Administration Management Tool &lt;/STRONG&gt;- Paul Somers (Charteris)&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-41&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-41&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Oct 14 &lt;STRONG&gt;Microsoft BizTalk Adapter for WSE 2.0 Technical Overview&lt;/STRONG&gt; - Joe Klug&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=WSE2.0&amp;amp;pw=WSE2.0"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=WSE2.0&amp;amp;pw=WSE2.0&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Oct 15 &lt;STRONG&gt;UK SDC BizTalk 2004 Documenter v.2.0 &lt;/STRONG&gt;- Jason Birth&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-42&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-42&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Oct 22 &lt;STRONG&gt;BAM Drilldown &lt;/STRONG&gt;- Zach Jason and John Ballard&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-43&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-43&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Oct 29 &lt;STRONG&gt;Building Adapters From Scratch Using VB.NET&lt;/STRONG&gt; - David Stampfli&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-44&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-44&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Nov 5 &lt;I&gt;&lt;STRONG&gt;Skip This Week&lt;BR&gt;&lt;/STRONG&gt;&lt;/I&gt;Nov 12 &lt;STRONG&gt;BizTalk 2004 Adapter for MSMQ (NAIAD) - &lt;/STRONG&gt;Rick Mittelstaedt&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-45&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-45&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Nov 19 &lt;STRONG&gt;BizTalk Native Adapter &amp;amp; Orchestration Tips &amp;amp; Tricks&lt;/STRONG&gt; - Erik Leaseburg&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-46&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-46&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Nov 26 &lt;I&gt;&lt;STRONG&gt;Skip This Week for Thanksgiving Holiday in US&lt;BR&gt;&lt;/STRONG&gt;&lt;/I&gt;Dec 3 &lt;STRONG&gt;Trading Partner Management (TPM) &amp;amp; Business Activity Services (BAS)&lt;/STRONG&gt; - Dale Michalk&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-47&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-47&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;BR&gt;Dec 10 &lt;STRONG&gt;WRQ Verastream BizTalk 2004 Screen Scraping Adapter for Legacy Integration - &lt;/STRONG&gt;Paul Neutz &amp;amp; Jeff Zuber (WRQ)&lt;BR&gt;&lt;/FONT&gt;&lt;A href="http://www.placeware.com/cc/microsoft/view?id=JUPBAG-48&amp;amp;pw=35DKTQ"&gt;&lt;FONT color=#0000ff size=2&gt;http://www.placeware.com/cc/microsoft/view?id=JUPBAG-48&amp;amp;pw=35DKTQ&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=6456" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Ideas para laboratorio MBI/EDRA+BTS</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2005/01/14/6454.aspx" /><id>http://blogs.geekdojo.net/german/archive/2005/01/14/6454.aspx</id><published>2005-01-14T23:49:00Z</published><updated>2005-01-14T23:49:00Z</updated><content type="html">&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Llamar desde una accion a BTS sincronicamente&lt;BR&gt;2. Hacer un Output Provider de MBI que escriba en una cola y sacar la info con &lt;BR&gt;adapatdor MSMQc de biztalk para inyectar una Orquestracion que registre BAM&lt;BR&gt;El mensaje command tiene variable el request (any) pero se le puede fijar una propiedad&lt;BR&gt;en MBi donde se indique el esquema del request. Se puede construir un patron&lt;BR&gt;broker con BTS donde se filtra en los puertos de acuerdo con el esquema.&lt;BR&gt;Otra forma es construir un pipeline donde se pueda leer esta propiedad por un handler &lt;BR&gt;del pipe.&lt;/P&gt;
&lt;P&gt;3. Modificar al target del pipeline de EDRA para que este envie al BRE el request&lt;BR&gt;y este devuelva informaci&amp;#243;n respecto a la acci&amp;#243;n a ejecutar. De esta forma se puede&lt;BR&gt;delegar al analista de negocio que accion&amp;nbsp; mas refinada ejecutar.&lt;BR&gt;&lt;/P&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=6454" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Outlook Scenarios</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2004/11/04/3836.aspx" /><id>http://blogs.geekdojo.net/german/archive/2004/11/04/3836.aspx</id><published>2004-11-04T19:38:00Z</published><updated>2004-11-04T19:38:00Z</updated><content type="html">&lt;P&gt;1.-Crear desde Outlook 2003 un mail con word 2003 que este formateado con un custom schema&lt;/P&gt;
&lt;P&gt;2.-Transformar un Excel formateado con un custom schema en objetos de Outlook (tareas, contactos, citas, etc)&lt;/P&gt;
&lt;P&gt;3.-Asociar eventos a&amp;nbsp;&amp;nbsp;algunos objetos de Outlook &amp;nbsp;que puedan ser transmitidos por correo una aplicaci&amp;#243;n central. Por ejemplo, cambio en una direcci&amp;#243;n de un contacto se actualiza en una aplicaci&amp;#243;n centralizada.&lt;/P&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=3836" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Servicio de Notificaciones</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2004/10/19/3484.aspx" /><id>http://blogs.geekdojo.net/german/archive/2004/10/19/3484.aspx</id><published>2004-10-19T20:30:00Z</published><updated>2004-10-19T20:30:00Z</updated><content type="html">&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;
&lt;TABLE class=MsoTableGrid style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; BORDER-LEFT: medium none; BORDER-BOTTOM: medium none; BORDER-COLLAPSE: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 480; mso-padding-alt: 0in 5.4pt 0in 5.4pt; mso-border-insideh: .5pt solid windowtext; mso-border-insidev: .5pt solid windowtext" cellSpacing=0 cellPadding=0 border=1&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: windowtext 1pt solid; PADDING-LEFT: 5.4pt; BACKGROUND: #ccffff; PADDING-BOTTOM: 0in; BORDER-LEFT: windowtext 1pt solid; WIDTH: 131.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; mso-border-alt: solid windowtext .5pt" vAlign=top width=175&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: Arial"&gt;Ambito&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: windowtext 1pt solid; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 311.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt" vAlign=top width=415&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Arquitectura de Aplicaciones&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 1"&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; BACKGROUND: #ccffff; PADDING-BOTTOM: 0in; BORDER-LEFT: windowtext 1pt solid; WIDTH: 131.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=175&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: Arial"&gt;Descripci&amp;#243;n&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 311.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=415&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Servicio de notificaciones que permite a los ejecutivos y a las aplicaciones suscribirse a notificaciones provenientes de otros sistemas tales como &lt;?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /&gt;&lt;st1:stockticker w:st="on"&gt;CRM&lt;/st1:stockticker&gt; , sistemas productos, canales internet, etc. Este servicio consta de servicio de notificaciones basado en un framework de notificaciones y de una pieza encargada de inyectar o buscar&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;los eventos en los sistemas y formatearlos adecuadamente. El interface de suscripci&amp;#243;n a eventos puede ser Web a trav&amp;#233;s de&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;una &lt;st1:stockticker w:st="on"&gt;API&lt;/st1:stockticker&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 2"&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; BACKGROUND: #ccffff; PADDING-BOTTOM: 0in; BORDER-LEFT: windowtext 1pt solid; WIDTH: 131.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=175&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: Arial"&gt;Enfoque&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 311.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=415&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;La arquitectura propuesta inicialmente para el Servicio de Notificaciones &lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;consta de los siguientes componentes :&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;STRONG&gt;&lt;U&gt;&lt;SPAN lang=ES-CL style="FONT-WEIGHT: normal; FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL; mso-bidi-font-weight: bold"&gt;Cliente Outlook :&lt;/SPAN&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt; responsabilidades (1) Es el receptor de las suscripciones; (2) Es el cliente desde donde el ejecutivo se suscribe ;(3) Puede ser una Web Part o un cliente rico&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-WEIGHT: normal; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;STRONG&gt;&lt;U&gt;&lt;SPAN lang=ES-CL style="FONT-WEIGHT: normal; FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL; mso-bidi-font-weight: bold"&gt;Smart Client&amp;nbsp;:&lt;/SPAN&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt; responsabilidades (1) Es el receptor de las suscripciones;&amp;nbsp;(2) &amp;nbsp;Puede ser un control&amp;nbsp;en el&amp;nbsp; cliente rico&lt;/SPAN&gt;&lt;/P&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;STRONG&gt;&lt;U&gt;&lt;SPAN lang=ES-CL style="FONT-WEIGHT: normal; FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL; mso-bidi-font-weight: bold"&gt;Servicios de Notificaci&amp;#243;n (NS)&lt;/SPAN&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt; (1)Los suscriptores crean suscripciones ;NS&amp;nbsp;recolecta eventos ;(3) NS hace match en entre subscripciones y eventos ;(4) NS formatea la notificaci&amp;#243;n y la env&amp;#237;a a un servicio de entrega&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Los eventos son generados por aplicaciones externas a NS. &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;STRONG&gt;&lt;U&gt;&lt;SPAN lang=ES-CL style="FONT-WEIGHT: normal; FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL; mso-bidi-font-weight: bold"&gt;Extractor/Recolector de eventos&lt;/SPAN&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;: (1) Entrega&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;al NS los eventos (2) permite definir formato de los eventos y Transformar de formatos &amp;nbsp;de eventos (3) Generar consultas de eventos (pull) &amp;nbsp;a las aplicaciones que sea fuentes de eventos; (4) Recibir de las aplicaciones eventos generados por ellas (push)&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 3"&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; BACKGROUND: #ccffff; PADDING-BOTTOM: 0in; BORDER-LEFT: windowtext 1pt solid; WIDTH: 131.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=175&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Objetivos&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 311.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=415&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l2 level1 lfo2; tab-stops: list .5in"&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: Symbol; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&amp;#183;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: Arial"&gt;Mejorar calidad relacion comercial&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l1 level1 lfo1; tab-stops: list .5in"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Symbol; mso-ansi-language: ES-CL; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&amp;#183;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Integraci&amp;#243;n de canales&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 4"&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; BACKGROUND: #ccffff; PADDING-BOTTOM: 0in; BORDER-LEFT: windowtext 1pt solid; WIDTH: 131.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=175&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Entregables&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 311.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=415&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l1 level1 lfo1; tab-stops: list .5in"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Symbol; mso-ansi-language: ES-CL; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&amp;#183;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Servicio &lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;de Notificaciones &lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;incorporado a la Arquitectura del Banco&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l1 level1 lfo1; tab-stops: list .5in"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Symbol; mso-ansi-language: ES-CL; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&amp;#183;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Formaci&amp;#243;n&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l2 level1 lfo2; tab-stops: list .5in"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Symbol; mso-ansi-language: ES-CL; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&amp;#183;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Profile de una aplicaci&amp;#243;n y configuraci&amp;#243;n de Notificaciones &lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;para dicha aplicaci&amp;#243;n.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 5"&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; BACKGROUND: #ccffff; PADDING-BOTTOM: 0in; BORDER-LEFT: windowtext 1pt solid; WIDTH: 131.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=175&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Beneficios&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 311.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=415&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l1 level1 lfo1; tab-stops: list .5in"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Symbol; mso-ansi-language: ES-CL; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&amp;#183;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Aumento de la eficiencia de la gesti&amp;#243;n comercial&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in; TEXT-INDENT: -0.25in; mso-list: l1 level1 lfo1; tab-stops: list .5in"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Symbol; mso-ansi-language: ES-CL; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&amp;#183;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Aumento de la Satisfacci&amp;#243;n de los clientes&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 6"&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; BACKGROUND: #ccffff; PADDING-BOTTOM: 0in; BORDER-LEFT: windowtext 1pt solid; WIDTH: 131.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=175&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Riesgos Identificados&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 311.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=415&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.25in"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 7; mso-yfti-lastrow: yes"&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; BACKGROUND: #ccffff; PADDING-BOTTOM: 0in; BORDER-LEFT: windowtext 1pt solid; WIDTH: 131.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=175&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Problemas impactados&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-RIGHT: windowtext 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #d4d0c8; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0in; BORDER-LEFT: #d4d0c8; WIDTH: 311.4pt; PADDING-TOP: 0in; BORDER-BOTTOM: windowtext 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt" vAlign=top width=415&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.25in; TEXT-INDENT: -0.25in; mso-list: l0 level1 lfo3; tab-stops: list .25in"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Symbol; mso-ansi-language: ES-CL; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&amp;#183;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Satisfacci&amp;#243;n de clientes&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.25in; TEXT-INDENT: -0.25in; mso-list: l0 level1 lfo3; tab-stops: list .25in"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Symbol; mso-ansi-language: ES-CL; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&amp;#183;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Productividad&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.25in; TEXT-INDENT: -0.25in; mso-list: l0 level1 lfo3; tab-stops: list .25in"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Symbol; mso-ansi-language: ES-CL; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol"&gt;&lt;SPAN style="mso-list: Ignore"&gt;&amp;#183;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;Calidad de Servicio&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.25in"&gt;&lt;SPAN lang=ES-CL style="FONT-SIZE: 8pt; FONT-FAMILY: Arial; mso-ansi-language: ES-CL"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=3484" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Rol de la arquitectura</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2004/10/15/3440.aspx" /><id>http://blogs.geekdojo.net/german/archive/2004/10/15/3440.aspx</id><published>2004-10-15T22:07:00Z</published><updated>2004-10-15T22:07:00Z</updated><content type="html">&lt;P&gt;&lt;B&gt;&lt;/B&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class=dv_doc1Level&gt;
&lt;P&gt;Architecture is essentially the process of making the appropriate technological choices for the enterprise and its business units. These decisions concern the target architecture and technical standards or guidelines. It is not the role of architecture to decide when or where to spend the available financial resources &amp;#8212; that is the job of strategic planning, which is primarily resource allocation.&lt;/P&gt;&lt;/DIV&gt;
&lt;DIV class=dv_doc1Level&gt;
&lt;P&gt;The architecture team has the responsibility to reveal the opportunities, standards and migration paths that will yield the greatest benefit for the company. The decision, for example, to spend the money on an upgrade or consolidate two different styles of portals, as opposed to buying some new package, should be made by the strategic planners. The benefits of this attention to choices and technology consistency can produce favorable results.&lt;/P&gt;&lt;/DIV&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=3440" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry><entry><title>Extensible Application Markup Language (XAML)</title><link rel="alternate" type="text/html" href="http://blogs.geekdojo.net/german/archive/2004/10/14/3435.aspx" /><id>http://blogs.geekdojo.net/german/archive/2004/10/14/3435.aspx</id><published>2004-10-15T05:08:00Z</published><updated>2004-10-15T05:08:00Z</updated><content type="html">&lt;BR&gt;&lt;BR&gt;
&lt;H2&gt;XAML Schemas&lt;/H2&gt;The primary use of XAML is in the definition of Client User Interfaces, both describing the graphical layout of the interface, and tying user-Interface generated events to code. The introduction of XAML should hopefully replace the hidden block of &amp;#8220;Windows Form Designer Generated Code&amp;#8221; with structured XML.XAML will be fully supported in the Longhorn build of .NET, but until then, you can use a third-party Xaml viewer such as that from xamlon. &lt;BR&gt;As with all programming languages, the best place to start is with a simple &amp;#8220;Hello World&amp;#8221; example, XAML should be no exception. Simply create a file named HelloWorld.xaml with the following content:&lt;BR&gt;&lt;PRE&gt;&amp;lt;?xml version="1.0" standalone="yes"?&amp;gt;
&amp;lt;Window&amp;gt;
   &amp;lt;Button&amp;gt;Hello World&amp;lt;/Button&amp;gt;
&amp;lt;/Window&amp;gt;
&lt;/PRE&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=3435" width="1" height="1"&gt;</content><author><name>german</name><uri>http://blogs.geekdojo.net/members/german.aspx</uri></author></entry></feed>