<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Host Integration Server Blog</title><subtitle type="html" /><id>http://blogs.msdn.com/b/hostintegrationserver/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/hostintegrationserver/" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/b/hostintegrationserver/atom.aspx" /><generator uri="http://telligent.com" version="5.6.50428.7875">Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><updated>2008-03-26T22:34:00Z</updated><entry><title>Accessing System i Journal Files</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/hostintegrationserver/archive/2009/05/26/accessing-system-i-journal-files.aspx" /><id>http://blogs.msdn.com/b/hostintegrationserver/archive/2009/05/26/accessing-system-i-journal-files.aspx</id><published>2009-05-26T16:55:57Z</published><updated>2009-05-26T16:55:57Z</updated><content type="html">&lt;p&gt;Recently I got the following question from one of the Technical Specialists in our field team: ‘&lt;em&gt;How can I expose the change-data-capture information from the System i journal files to a process running on BizTalk Server?&lt;/em&gt;’&lt;/p&gt;  &lt;p&gt;After a joyful day of research, I found a simple way to achieve this goal by using two BizTalk Adapters that are part of the &lt;a href="http://www.microsoft.com/hostintegrationserver" target="_blank"&gt;Microsoft BizTalk Adapters for Host Systems&lt;/a&gt; package.&lt;/p&gt;  &lt;p&gt;This blog post assumes you have familiarity with BizTalk as well as basic knowledge of System i administration.&lt;/p&gt;  &lt;p&gt;Let’s start by creating sample data in the System i, so we can have a journal file to be used as a example. For this example, I will start creating a SQL Collection. By default, SQL Collections on the System i will automatically have a journal receiver. So, it’s time to connect to the System i by using a 5250 emulator and fire up some SQL Commands.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_4.png" target="_blank"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="right" src="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_thumb_1.png" width="244" height="171" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Enter the &lt;em&gt;Interactive SQL&lt;/em&gt; dialog by typing &lt;strong&gt;STRSQL&lt;/strong&gt; in the main System i menu. Using the &lt;em&gt;STRSQL&lt;/em&gt; dialog, type the following command: &lt;strong&gt;CREATE COLLECTION JRNTST&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;This step creates a System i library named &lt;em&gt;JRNTST&lt;/em&gt;. We will use this library in the subsequent examples.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_6.png" target="_blank"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="left" src="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_thumb_2.png" width="244" height="171" /&gt;&lt;/a&gt; The &lt;em&gt;JRNTST&lt;/em&gt; library can be inspected by using the following command: &lt;strong&gt;WRKOBJ OBJ(JRNTST/*ALL)&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;We can see that a &lt;em&gt;Journal (QSQJRN)&lt;/em&gt; and a &lt;em&gt;Journal Receiver(QSQJRNXXXX)&lt;/em&gt; had been created automatically as part of the collection’s creation.&lt;/p&gt;  &lt;p&gt;Any subsequent operation inside this collection will be stored in the journal and can be captured by reading the contents of it.&lt;/p&gt;  &lt;p&gt;There are several ways one can read the contents of the journal. In this example, we will write the contents of the journal to a physical file (using the &lt;strong&gt;DSPJOB&lt;/strong&gt; command) and then read this file. For this task, we will use the &lt;em&gt;BizTalk Adapter for Host Files&lt;/em&gt; and the &lt;em&gt;BizTalk Adapter for DB2&lt;/em&gt;.&lt;/p&gt;  &lt;p&gt;Now it’s time to start configuring the BizTalk side of the solution. Let’s begin by creating a new &lt;em&gt;BizTalk Application&lt;/em&gt;.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_8.png" target="_blank"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="left" src="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_thumb.png" width="244" height="189" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Using &lt;em&gt;BizTalk Server Administration&lt;/em&gt; console, create a new &lt;em&gt;Application&lt;/em&gt; called &lt;strong&gt;Journal Test&lt;/strong&gt;.&lt;/p&gt;  &lt;p&gt;The next step, is to create two send ports, one based in the &lt;em&gt;BizTalk Adapter for Host Files, that &lt;/em&gt;will be used to execute the CL command that captures the journal contents to a physical file, and&amp;#160; the other to read the contents of the physical file using the &lt;em&gt;BizTalk Adapter for DB2&lt;/em&gt;.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_10.png" target="_blank"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="right" src="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_thumb_3.png" width="244" height="182" /&gt;&lt;/a&gt; We will start by creating a new &lt;em&gt;Static Solicit-Response Send Port&lt;/em&gt; named &lt;strong&gt;SendPortHF&lt;/strong&gt;.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;a href="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_12.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="left" src="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_thumb_4.png" width="238" height="244" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;The Send Port configuration is straightforward: We need to provide a &lt;em&gt;Connection String&lt;/em&gt;, &lt;em&gt;Target Namespace&lt;/em&gt; and &lt;em&gt;Root Element&lt;/em&gt; name. &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;a href="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_14.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="right" src="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_thumb_5.png" width="244" height="194" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;The &lt;em&gt;Connection Configuration&lt;/em&gt; dialog is launched. At this point, let’s create a new connection string.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_16.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="left" src="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_thumb_6.png" width="244" height="194" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;We will be connecting to a &lt;em&gt;System i&lt;/em&gt; machine over the &lt;em&gt;TCP/IP&lt;/em&gt; protocol. &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;a href="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_18.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="image" border="0" alt="image" align="right" src="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_thumb_7.png" width="244" height="195" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;In the &lt;em&gt;Network Connection Properties&lt;/em&gt; page, let’s provide the name of the server as well as the port in which the &lt;em&gt;System i&lt;/em&gt; is listening to &lt;em&gt;DRDA requests&lt;/em&gt;.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_20.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="image" border="0" alt="image" align="left" src="http://blogs.msdn.com/blogfiles/ricardom/WindowsLiveWriter/AccessingSystemiJournalFiles_E912/image_thumb_8.png" width="244" height="195" /&gt;&lt;/a&gt; The next step is to specify the location and default library names. These values can be retrieved in the AS/400 by using the &lt;strong&gt;WRKRDBDIRE (Work with Relational Database Directory Entries)&lt;/strong&gt; and &lt;strong&gt;WRKUSRPF (Work with User Profiles)&lt;/strong&gt; &lt;em&gt;System i&lt;/em&gt; commands.&lt;/p&gt;
Cross Posted from http://blogs.msdn.com/ricardom&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9642379" width="1" height="1"&gt;</content><author><name>Paul Larsen [Microsoft]</name><uri>http://blogs.msdn.com/hispms/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Exposing Mainframe Applications as SQL Stored Procedures using HIS 2009 Release Candidate</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/hostintegrationserver/archive/2009/03/25/exposing-mainframe-applications-as-sql-stored-procedures-using-his-2009-release-candidate.aspx" /><id>http://blogs.msdn.com/b/hostintegrationserver/archive/2009/03/25/exposing-mainframe-applications-as-sql-stored-procedures-using-his-2009-release-candidate.aspx</id><published>2009-03-25T19:41:54Z</published><updated>2009-03-25T19:41:54Z</updated><content type="html">&lt;a href="http://video.msn.comundefinedbc116309-ba95-4ec7-a2d9-cd1eb827cdc5/"&gt;[HIS2009] Exposing CICS Transactions as SQL Server Stored Procedures&lt;/a&gt;   &lt;br /&gt;  &lt;br /&gt;&lt;span style="display: none"&gt;&amp;#160;&lt;/span&gt;&lt;EMBED height="364" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="432" src="http://images.video.msn.com/flash/soapbox1_1.swf" allownetworking="internal" allowscriptaccess="never" flashvars="c=v&amp;amp;v=bc116309-ba95-4ec7-a2d9-cd1eb827cdc5&amp;amp;ifs=true&amp;amp;fr=msnvideo&amp;amp;mkt=en-US" wmode="opaque"&gt; &lt;BR&gt;&lt;A title="[HIS2009] Exposing CICS Transactions as SQL Server Stored Procedures" href="http://video.msn.com/video.aspx?vid=bc116309-ba95-4ec7-a2d9-cd1eb827cdc5"&gt;Video: [HIS2009] Exposing CICS Transactions as SQL Server Stored Procedures&lt;/A&gt;&lt;p&gt;&lt;/p&gt;&lt;/EMBED&gt;
Cross Posted from http://blogs.msdn.com/ricardom&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9509067" width="1" height="1"&gt;</content><author><name>Paul Larsen [Microsoft]</name><uri>http://blogs.msdn.com/hispms/ProfileUrlRedirect.ashx</uri></author><category term="HIS" scheme="http://blogs.msdn.com/b/hostintegrationserver/archive/tags/HIS/" /><category term="TI;CICS" scheme="http://blogs.msdn.com/b/hostintegrationserver/archive/tags/TI_3B00_CICS/" /></entry><entry><title>Acessing Offline Mainframe VSAM Data Using Host Integration Server 2009 Release Candidate</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/hostintegrationserver/archive/2009/03/25/acessing-offline-mainframe-vsam-data-using-host-integration-server-2009-release-candidate.aspx" /><id>http://blogs.msdn.com/b/hostintegrationserver/archive/2009/03/25/acessing-offline-mainframe-vsam-data-using-host-integration-server-2009-release-candidate.aspx</id><published>2009-03-25T13:23:31Z</published><updated>2009-03-25T13:23:31Z</updated><content type="html">&lt;a href="http://video.msn.comundefinedce410085-d544-4a29-8334-cbd858cf077b/"&gt;Talking about [HIS2009] MsHostFileClient Offline Capabilities&lt;/a&gt;   &lt;br /&gt;&lt;span style="display: none"&gt;&amp;#160;&lt;/span&gt;&lt;EMBED height="364" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="432" src="http://images.video.msn.com/flash/soapbox1_1.swf" allownetworking="internal" allowscriptaccess="never" flashvars="c=v&amp;amp;v=ce410085-d544-4a29-8334-cbd858cf077b&amp;amp;ifs=true&amp;amp;fr=msnvideo&amp;amp;mkt=en-US" wmode="opaque"&gt; &lt;BR&gt;&lt;A title="[HIS2009] MsHostFileClient Offline Capabilities" href="http://video.msn.com/video.aspx?vid=ce410085-d544-4a29-8334-cbd858cf077b"&gt;Video: [HIS2009] MsHostFileClient Offline Capabilities&lt;/A&gt;&lt;p&gt;&lt;/p&gt;&lt;/EMBED&gt;
Cross Posted from http://blogs.msdn.com/ricardom&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9508010" width="1" height="1"&gt;</content><author><name>Paul Larsen [Microsoft]</name><uri>http://blogs.msdn.com/hispms/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Configuring IP-DLC Link Service for IBM Enterprise Extender</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/hostintegrationserver/archive/2008/07/07/configuring-ip-dlc-link-service-for-ibm-enterprise-extender.aspx" /><id>http://blogs.msdn.com/b/hostintegrationserver/archive/2008/07/07/configuring-ip-dlc-link-service-for-ibm-enterprise-extender.aspx</id><published>2008-07-07T19:05:00Z</published><updated>2008-07-07T19:05:00Z</updated><content type="html">&lt;P&gt;&lt;SPAN style="FONT-SIZE: 11pt; LINE-HEIGHT: 115%; FONT-FAMILY: 'Calibri','sans-serif'; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA"&gt;This white paper aids Mainframe Programmers, AS/400 Administrators, and Microsoft Host Integration Server (HIS) administrators in configuring IP-DLC (Internet Protocol – Data Link Control) link service which ships with HIS.&lt;BR&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=86d6011a-3396-4c36-b4b1-af7f4d80a099&amp;amp;displaylang=en&amp;amp;tm"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=86d6011a-3396-4c36-b4b1-af7f4d80a099&amp;amp;displaylang=en&amp;amp;tm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8702418" width="1" height="1"&gt;</content><author><name>Paul Larsen [Microsoft]</name><uri>http://blogs.msdn.com/hispms/ProfileUrlRedirect.ashx</uri></author><category term="Training" scheme="http://blogs.msdn.com/b/hostintegrationserver/archive/tags/Training/" /></entry><entry><title>New Whitepaper!</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/hostintegrationserver/archive/2008/06/23/new-whitepaper.aspx" /><id>http://blogs.msdn.com/b/hostintegrationserver/archive/2008/06/23/new-whitepaper.aspx</id><published>2008-06-23T19:26:00Z</published><updated>2008-06-23T19:26:00Z</updated><content type="html">&lt;P&gt;Thanks &lt;STRONG&gt;Charles Ezzell&lt;/STRONG&gt; (Escalation Engineer on the Host Integration Server Team)&amp;nbsp;for writing the whitepaper entitled&amp;nbsp;&lt;STRONG&gt;Creating a Self-Running BizTalk Stress Application using the BizTalk Adapter for DB2&lt;/STRONG&gt; which can be found &lt;A class="" href="http://download.microsoft.com/download/b/3/b/b3b6c586-096c-40c4-8016-fdcf46eae66d/Creating%20a%20Self-Running%20BizTalk%20Stress%20Application%20using%20the%20BizTalk%20Adapter%20for%20DB2.doc" mce_href="http://download.microsoft.com/download/b/3/b/b3b6c586-096c-40c4-8016-fdcf46eae66d/Creating a Self-Running BizTalk Stress Application using the BizTalk Adapter for DB2.doc"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8642742" width="1" height="1"&gt;</content><author><name>Paul Larsen [Microsoft]</name><uri>http://blogs.msdn.com/hispms/ProfileUrlRedirect.ashx</uri></author><category term="Host Integration Server" scheme="http://blogs.msdn.com/b/hostintegrationserver/archive/tags/Host+Integration+Server/" /><category term="Training" scheme="http://blogs.msdn.com/b/hostintegrationserver/archive/tags/Training/" /></entry><entry><title>TechNet Webcast: Accessing Operational Data in Mainframe VSAM Using SQL Server 2005 and Host Integration Server (Level 200)</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/hostintegrationserver/archive/2008/04/16/technet-webcast-accessing-operational-data-in-mainframe-vsam-using-sql-server-2005-and-host-integration-server-level-200.aspx" /><id>http://blogs.msdn.com/b/hostintegrationserver/archive/2008/04/16/technet-webcast-accessing-operational-data-in-mainframe-vsam-using-sql-server-2005-and-host-integration-server-level-200.aspx</id><published>2008-04-17T01:35:22Z</published><updated>2008-04-17T01:35:22Z</updated><content type="html">&lt;p&gt;Most daily operational data resides in host files systems, such as mainframe VSAM and the AS/400 physical files. Often, legacy programs written in COBOL and RPG control access to these data sources. To improve your processes, you need to collect and analyze this vital information with up-to-date business intelligence tools in Microsoft SQL Server 2005. Integrating host-based data sources demands attention to issues such as security access, network deployment, and data conversion of complex data elements into SQL-accessible tables. This webcast shows how SQL Server can efficiently integrate legacy data sources using data and application technologies in Microsoft Host Integration Server.&lt;/p&gt;  &lt;p&gt;&lt;a title="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032278607&amp;amp;EventCategory=5&amp;amp;culture=en-US&amp;amp;CountryCode=US" href="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032278607&amp;amp;EventCategory=5&amp;amp;culture=en-US&amp;amp;CountryCode=US"&gt;http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032278607&amp;amp;EventCategory=5&amp;amp;culture=en-US&amp;amp;CountryCode=US&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8399665" width="1" height="1"&gt;</content><author><name>Paul Larsen [Microsoft]</name><uri>http://blogs.msdn.com/hispms/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>MSDN Webcast: Host Integration Server 2006 Data Providers for Host Files (Level 200)</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/hostintegrationserver/archive/2008/04/16/msdn-webcast-host-integration-server-2006-data-providers-for-host-files-level-200.aspx" /><id>http://blogs.msdn.com/b/hostintegrationserver/archive/2008/04/16/msdn-webcast-host-integration-server-2006-data-providers-for-host-files-level-200.aspx</id><published>2008-04-17T01:34:27Z</published><updated>2008-04-17T01:34:27Z</updated><content type="html">&lt;p&gt;Much mission-critical data resides in file systems, such as IBM mainframe Virtual Storage Access Method (VSAM) data sets and AS/400 physical files. To reliably read and write to these data stores, enterprise developers&amp;#8211;&amp;#8211;working with IBM host systems&amp;#8211;must write custom COBOL or RPG programs. Yet, this development time can hamper enterprise IT rollout of new solutions. In this webcast, we examine Microsoft Visual Studio 2005 and Microsoft Host Integration Server 2006 (including the new Microsoft .NET Framework Data Provider for Host Files) technologies that allow enterprise developers to quickly and efficiently build new .NET Framework applications based on industry-standard XML Web Services.&lt;/p&gt;  &lt;p&gt;&lt;a title="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032330318&amp;amp;EventCategory=5&amp;amp;culture=en-US&amp;amp;CountryCode=US" href="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032330318&amp;amp;EventCategory=5&amp;amp;culture=en-US&amp;amp;CountryCode=US"&gt;http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032330318&amp;amp;EventCategory=5&amp;amp;culture=en-US&amp;amp;CountryCode=US&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8399664" width="1" height="1"&gt;</content><author><name>Paul Larsen [Microsoft]</name><uri>http://blogs.msdn.com/hispms/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>We Are Going To Disneyland!</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/hostintegrationserver/archive/2008/04/02/we-are-going-to-disneyland.aspx" /><id>http://blogs.msdn.com/b/hostintegrationserver/archive/2008/04/02/we-are-going-to-disneyland.aspx</id><published>2008-04-02T19:01:17Z</published><updated>2008-04-02T19:01:17Z</updated><content type="html">&lt;p&gt;Yes, you read it right! The Host Integration Server Team is going to Disneyland! Ok, not the entire team and it's definitely not on vacations! And we are not going to Disneyland exactly...&lt;/p&gt;  &lt;p&gt;On the first two weeks of June we head over Orlando to participate on Tech*Ed. You will have the chance to meet individuals from the product team on both weeks: DEV and ITPRO.&lt;/p&gt;  &lt;p&gt;Besides the usual booth duty, we will present the following sessions:&lt;/p&gt;  &lt;p&gt;DEV Week:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Delivering Enterprise Solutions Using Microsoft BizTalk Adapters for Host Systems&lt;/li&gt;    &lt;li&gt;Publishing and Extending Business Rules in Mainframe (CICS and IMS) and AS/400 Programs Using Microsoft Host Integration Server&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;ITPRO Week:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;SOA352 - Enabling Knowledge Workers to Access Mainframe Programs and Data&lt;/li&gt;    &lt;li&gt;SOA358 - Publishing and Extending Business Rules in Mainframe (CICS and IMS) and AS/400 Programs Using Microsoft Host Integration Server&lt;/li&gt;    &lt;li&gt;SOA56 TLC - Building Customer Care Solutions Using Microsoft Host Integration Server 2006 and BizTalk Adapters for Host Systems&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Please join us for these sessions! It would be great to meet you folks in person!&lt;/p&gt;  &lt;p&gt;Cheers,&lt;/p&gt;  &lt;p&gt;Ricardo&lt;/p&gt;
Cross Posted from http://blogs.msdn.com/ricardom&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8352723" width="1" height="1"&gt;</content><author><name>Paul Larsen [Microsoft]</name><uri>http://blogs.msdn.com/hispms/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>MSDN Webcast: BizTalk Server Adapters for DB2 and Host Files (Level 200)</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/hostintegrationserver/archive/2008/03/26/msdn-webcast-biztalk-server-adapters-for-db2-and-host-files-level-200.aspx" /><id>http://blogs.msdn.com/b/hostintegrationserver/archive/2008/03/26/msdn-webcast-biztalk-server-adapters-for-db2-and-host-files-level-200.aspx</id><published>2008-03-27T00:35:00Z</published><updated>2008-03-27T00:35:00Z</updated><content type="html">Organizations are using Microsoft BizTalk Server 2006 to integrate and orchestrate composite solutions that span multiple systems and applications. Key assets in most enterprise solutions are the line-of-business (LOB) data stores on heritage IBM host systems. These data stores include IBM mainframe zSeries Sequential Access Method (SAM), Virtual Sequential Access Method (VSAM), and Partitioned Data Set (PDS) data sets, in addition to IBM midrange iSeries or i5 (AS/400) physical files and members. Records within these files are often program-described, redefined, or recurring, making it difficult to read and write without complex data mapping and conversion. In this webcast, learn how to apply the tools and capabilities of the BizTalk Adapters for Host Systems (including BizTalk Adapter for DB2 and BizTalk Adapter for Host Files) to efficiently access existing LOB information. Based on underlying Microsoft .NET data providers for DB2 and host files, these adapters offer flexible configuration tools, send and receive port capability, and a solution that requires no programming for integrating BizTalk Server with existing heritage data stores.&lt;BR&gt;&lt;A href="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032329834&amp;amp;EventCategory=5&amp;amp;culture=en-US&amp;amp;CountryCode=US"&gt;http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032329834&amp;amp;EventCategory=5&amp;amp;culture=en-US&amp;amp;CountryCode=US&lt;/A&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8338416" width="1" height="1"&gt;</content><author><name>Paul Larsen [Microsoft]</name><uri>http://blogs.msdn.com/hispms/ProfileUrlRedirect.ashx</uri></author><category term="Training" scheme="http://blogs.msdn.com/b/hostintegrationserver/archive/tags/Training/" /><category term="Webcasts" scheme="http://blogs.msdn.com/b/hostintegrationserver/archive/tags/Webcasts/" /></entry><entry><title>MSDN Webcast: BizTalk Adapter for Host Applications (Level 200)</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/hostintegrationserver/archive/2008/03/26/msdn-webcast-biztalk-adapter-for-host-applications-level-200.aspx" /><id>http://blogs.msdn.com/b/hostintegrationserver/archive/2008/03/26/msdn-webcast-biztalk-adapter-for-host-applications-level-200.aspx</id><published>2008-03-27T00:34:00Z</published><updated>2008-03-27T00:34:00Z</updated><content type="html">Enterprise computing is based on high-volume transaction and batch processing systems, such as IBM mainframe and midrange host computers. To modernize these heritage systems, organizations are using business process orchestration in Microsoft BizTalk Server 2006. Join this webcast to learn how the new BizTalk Adapter for Host Applications allows enterprises to connect BizTalk Server solutions to existing IBM mainframe zSeries (CICS and IMS) or midrange iSeries (AS/400) server programs. Based on technology from the Microsoft Transaction Integrator (TI), this adapter offers an intuitive Microsoft Visual Studio 2005 designer, including host COBOL and RPG source code import wizards for generating XML Schema (XSD) for BizTalk Server projects. We explain how the administration tools are integrated with the BizTalk Server port configuration and deployment tools. Attend this session to see how you can use the BizTalk Adapter for Host Applications to efficiently extend host programs with new solutions based on BizTalk Server 2006.&lt;BR&gt;&lt;A href="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032330320&amp;amp;EventCategory=5&amp;amp;culture=en-US&amp;amp;CountryCode=US"&gt;http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032330320&amp;amp;EventCategory=5&amp;amp;culture=en-US&amp;amp;CountryCode=US&lt;/A&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8338413" width="1" height="1"&gt;</content><author><name>Paul Larsen [Microsoft]</name><uri>http://blogs.msdn.com/hispms/ProfileUrlRedirect.ashx</uri></author><category term="Training" scheme="http://blogs.msdn.com/b/hostintegrationserver/archive/tags/Training/" /><category term="Webcasts" scheme="http://blogs.msdn.com/b/hostintegrationserver/archive/tags/Webcasts/" /></entry></feed>