MSDN Universal question
(Thursday, September 23, 2004)
Found the following interesting discussion in the Newsgroups:
MSDN Universal question by:DMan
| I have an MSDN universal subscription. Is there any way I can add a second passport login for a recently aquired business partner I took on? I really don't want to give them my login information!
Thanks
| | | Reply: by:Ken Tucker [MVP]
| | | Hi,
No
Ken
| | | Reply: by:Ray Cassick \(Home\)
| | | MSDN is per person.
|
Posted by Xander Zelders

RichTextBox Span method
(Wednesday, September 22, 2004)
Found the following interesting discussion in the Newsgroups:
RichTextBox Span method by: SamSpade
| The VB6 TextBox had a Span method to extend a selection.
Is there a similar capability in Dotnet?
I can't find it. Thanks
| | | Reply: by:CaribSoft
| | | You have to get the ITextDocument of the richtextbox and call the Selection.Expand(tomWord) method ,see the msdn docs for ItextDocument interface.
| | | Reply: by: SamSpade
| | | Thanks, that works
|
Posted by Xander Zelders

dial up connection control
Found the following interesting discussion in the Newsgroups:
control dial up connection by:news dur Wanadoo
| Dear all,
I need to writte a VB application that establish a dial up connection to the internet, upload and file on a ftp, then close the connection.
what's the easiest way to do it ?
Thanks for help, Loïc
| | | Reply: by:Cor Ligthert
| | | Hi News,
I do not know however one of the places I first would look at,
Net Component http://www.indyproject.org/indy.html
I do not know it it helps, however maybe a little bit.
Cor
| | | Reply: by:Jim Hughes
| | | My apologies for not converting this dialup code to VB, but it is at least a pointer in the right direction :)
http://authors.aspalliance.com/aldotnet/examples/translate.aspx should help with the conversion...
The indy project at http://www.indyproject.org/ has a ftp client that should work for the rest.
// Requires IE >= v5.0
using System; using System.Runtime.InteropServices;
public class RASDialup {
[DllImport("wininet.dll",CharSet=CharSet.Auto)] public extern static int InternetDial(
IntPtr hwnd,
[In]string lpszConnectoid,
uint dwFlags,
ref int lpdwConnection,
uint dwReserved
);
[DllImport("wininet.dll",CharSet=CharSet.Auto)]
public extern static int InternetHangUp(
int lpdwConnection,
uint dwReserved
);
public enum DialUpOptions
{
INTERNET_AUTODIAL_FORCE_ONLINE = 0x0001,
INTERNET_AUTODIAL_FORCE_UNATTENDED = 0x0002,
INTERNET_DIAL_FORCE_PROMPT =0x2000,
INTERNET_DIAL_SHOW_OFFLINE =0x4000,
INTERNET_DIAL_UNATTENDED =0x8000 }
int m_connectionnumber;
public int ConnectionNumber
{
get { return m_connectionnumber; }
}
public int Connect(string m_ConnectionName)
{
int retVal = InternetDial(IntPtr.Zero, m_ConnectionName, (uint) DialUpOptions.INTERNET_DIAL_UNATTENDED, _ ref m_connectionnumber, 0);
return retVal;
}
public void Disconnect()
{
InternetHangUp(m_connectionnumber, 0);
}
}
|
Posted by Xander Zelders

Tabcontrol event called at odd time
Found the following interesting discussion in the Newsgroups:
tabcontrol event called at odd time by:Anonymous
| Hello, I'm curious as to why the following would happen. I have 4 forms that I'm dealing with. On form4 is a tabcontrol (we'll call it tab1).
When form1 is opened, and OK is pressed, form2 opens, when an item is clicked, form3 opens. On form 3 is a menu, and when file, open, and form4 is selected, the tab1_SelectedIndexChanged event is triggered... I have code in here to deal with when users select different tabs...but why would opening the form trigger it? Obviously I only notice it when I step through the code...is this normal??
Thanks in advance, amber
| | | Reply: by:Jens Blom
| | | Hi hmm yes its normal
try this if you dont want it to triger on load ------------------------------------
Dim isLoad As Boolean = False Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load isLoad = True End Sub Private Sub TabControl1_SelectedIndexChanged(ByVal _ sender As Object, ByVal e As System.EventArgs) _ Handles TabControl1.SelectedIndexChanged If isLoad = True Then MsgBox("ok") End If End Sub
-----------------------------------
/Jens
|
Posted by Xander Zelders

How to catch an event of a running program
(Tuesday, September 21, 2004)
Found the following interesting discussion in the Newsgroups:
Catching Event by:Deadly_M
| I have asked this question before but it was a while ago , hope there are some new readers here now
Windows XP, VB.NET
I want to catch the event of a program being run for example user loads notepad, im assuming there is an event triggered that can be caught with VB i want to detect any programs being run not specifically notepad , but i need to be able to read the program's .exe name back to my code
My program will most likely be running as a service if this helps Thanx in advance
_____________________________________
Matthew Purves , (Deadly_M) www.DeadlyM.com
| | | Reply: by:Omar Salinas
| | | Unless you are intercepting the execution of programs (you can do that, with the registry) the oly way I see of doing this is using a timer, and listing the programs that are running. Check Process class, under System.Diagnostics
Regards
| | | Reply: by:Deadly_M
| | | im using that technique at the moment but to me it looks like a typical example of bad code , ie a timer etc Not that your suggestion is bad cause thats the way im doing it just now. Thanx anyway , at least i know that the way im going just now isnt too bad
|
Posted by Xander Zelders

How to determine the sorted column in a DataGrid.
Found the following interesting discussion in the Newsgroups:
Sorted column in the DataGrid. by:Frank Rizzo
| How can I find out which columns is the currently sorted one in the DataGrid (WinForms, not asp.net)? This issue has been driving me nuts for a little while now.
Thanks, Frank
| | | Reply: by:WStoreyII
| | | try controling it with a click event set a variable that is an integer and equals the row that was clicked on the header click event
WSToreyII
|
Posted by Xander Zelders

How to Change the foreground / background of a disabled combobox
Found the following interesting discussion in the Newsgroups:
Changing foreground / background of disabled combobox by:Brian Mitchell
| Is it possible to change the fore and back colors of a combo box when its enabled property is set to false? I need to lock the value of my combo boxes (and still keep its color) but that control doesn't have a read-only property.
Thanks!!
| | | Reply: by:Cor Ligthert
| | | Hi Brian,
Did you set the colors in code when you enabled and disabled it, I do not see the problem?
Cor
| | | Reply: by:hirf-spam-me-here@gmx.at (Herfried K. Wagner [MVP])
| | | The combobox will use Windows' default colors when drawn in disabled mode.
-- Herfried K. Wagner [MVP] <URL:http://dotnet.mvps.org/>
| | | Reply: by:Cor Ligthert
| | | Hi Herfried,
That I did not know, than we can support the sample from Ken is it not.
\\\By Ken Tucker ListBox1.DrawMode = DrawMode.OwnerDrawFixed Dim ff As FontFamily For Each ff In FontFamily.Families ListBox1.Items.Add(ff.Name) Next Private Sub ListBox1_DrawItem(ByVal sender As Object, ByVal e As System.Windows.Forms.DrawItemEventArgs) Handles ListBox1.DrawItem Dim g As Graphics = e.Graphics Dim s As String Dim d As Date Dim br As Brush = SystemBrushes.WindowText Dim brBack As Brush Dim rDraw As Rectangle Dim bSelected As Boolean = CBool(e.State And DrawItemState.Selected) rDraw = e.Bounds rDraw.Inflate(-1, -1) If bSelected Then brBack = Brushes.LightBlue g.FillRectangle(Brushes.LightBlue, rDraw) g.DrawRectangle(Pens.Blue, rDraw) Else brBack = Brushes.White g.FillRectangle(brBack, e.Bounds) End If br = Nothing brBack = Nothing rDraw = Nothing ///
|
Posted by Xander Zelders

How to: Single file setup
Found the following interesting discussion in the Newsgroups:
Single file setup by:John
| Hi
My setup project creates three files. This is a slight problem as when sending link to clients I need to send three links and they have to download all three files in the same folder before installing app. Is it not possible to have a single file setup?
Thanks
Regards
| | | Reply: by:hirf-spam-me-here@gmx.at (Herfried K. Wagner [MVP])
| | | Distribute the MSI file only (and add optional downloads for the other files).
-- Herfried K. Wagner [MVP] <URL:http://dotnet.mvps.org/>
| | | Reply: by:Sven Groot
| | | Alternatively, you could just zip all files into single archive for download.
-- Sven Groot
| | | Reply: by:hirf-spam-me-here@gmx.at (Herfried K. Wagner [MVP])
| | | Sven,
This will work too but it will require the user to have a ZIP application installed (there is native ZIP support available in Windows XP, I know). In many cases, the user won't need the updates for the Windows Installer, so creating separate packages is IMO the best approach (and providing an additional complete download package would be a good idea too).
-- Herfried K. Wagner [MVP] <URL:http://dotnet.mvps.org/>
| | | Reply: by:Sven Groot
| | | There's also self-extracting archives.
I'm not trying to compete with you, just offering alternatives. ^_^
> In many cases, the user won't need the updates > for the Windows Installer.
Doesn't the .Net Framework installation use the same version of MSI as the deployment project created setup files? In that case, anyone who has the Framework has the right MSI version, and anyone who doesn't have the framework can't run your app anyway.
-- Sven Groot
|
Posted by Xander Zelders

BizTalk Server 2002 Bible
(Monday, September 20, 2004)
BizTalk Server 2002 Bible by B. Patterson
Paperback: 792 pages Publisher: John Wiley & Sons Inc; ASIN: 0764538284
Posted by Xander Zelders

Programmation XML et SOAP pour serveur BizTalk (avec CD-Rom)
Programmation XML et SOAP pour serveur BizTalk (avec CD-Rom) by Brian E. Travis
Paperback Publisher: Dunod; (March 21, 2001) ISBN: 284082860X
Posted by Xander Zelders

Microsoft BizTalk Server Resource Kit
Microsoft BizTalk Server Resource Kit by Corporation Microsoft
Paperback: 900 pages Publisher: Microsoft Press; (February 2001) ISBN: 0735611084
Posted by Xander Zelders

Microsoft Biztalk Server 2000 Administration (Sams White Book Series)
Microsoft Biztalk Server 2000 Administration (Sams White Book Series) by Keith Powel
Paperback Publisher: Macmillan Computer Pub; (January 1, 2020) ISBN: 0672320266
l
Posted by Xander Zelders

Microsoft Biztalk Server 2000 Administration (Sams White Book Series)
Microsoft Biztalk Server 2000 Administration (Sams White Book Series) by Keith Powel
Paperback Publisher: Macmillan Computer Pub; (January 1, 2020) ISBN: 0672320266
l
Posted by Xander Zelders

BizTalk: Implementing Business-to-Business E-commerce
BizTalk: Implementing Business-to-Business E-commerce by James G. Kobielus
Paperback: 464 pages ; Dimensions (in inches): 1.20 x 9.23 x 7.02 Publisher: Prentice Hall PTR; 1st edition (October 24, 2000) ISBN: 0130891592
Book Info Walks the reader through every issue associated with the development of BizTalk, Microsoft's strategic e-commerce initiative. Answers common questions about the nature of BizTalk and what it can really do, discussing it in terms of its eventual success. Softcover. DLC: Microsoft BizTalk.
From the Inside Flap PrefaceWhat Makes an Electronic Marketplace Tick? We live in the most dynamic, productive, and innovative society the world has ever known.
Today's economy pulses with electronic vibrancy. We have created an engine of nonstop wealth generation, drawing power from the flow of cheap, easy, instantaneous transactions on the World Wide Web. In the few short years since we first commercialized the Web, this new mass medium has become a familiar presence in offices and households worldwide. Millions of...
Posted by Xander Zelders

Implementing Biztalk for E-Commerce
Implementing Biztalk for E-Commerce by Jason Leedy
Paperback: 350 pages Publisher: Prentice Hall; (February 2001) ISBN: 0130196126
Posted by Xander Zelders

BizTalk Server 2000 Developer's Guide for .NET
BizTalk Server 2000 Developer's Guide for .NET by Scott Roberts, Milton Todd, Chris Farmer, Robert Shimonski
Paperback: 512 pages ; Dimensions (in inches): 1.39 x 9.20 x 7.42 Publisher: Syngress; 1 edition (January 2002) ISBN: 1928994407
Book Info Shows how to use BizTalk Server 2000 to create, integrate, manage, and automate business processes for the exchange of business documents. Softcover.
Book Description BizTalk Server 2000 is part of the .NET family of Enterprise Servers designed to work together to provide e-business solutions. The .NET Enterprise Servers are based on open Web standards, such as XML, to allow an organization to integrate and orchestrate their applications and service needs into a single comprehensive solution. This book shows how to use BizTalk Server 2000 to create, integrate, manage, and automate business processes for the exchange of business documents.
Posted by Xander Zelders

BizTalk Server 2000 Developer's Guide for .NET
BizTalk Server 2000 Developer's Guide for .NET by Scott Roberts, Milton Todd, Chris Farmer, Robert Shimonski
Paperback: 512 pages ; Dimensions (in inches): 1.39 x 9.20 x 7.42 Publisher: Syngress; 1 edition (January 2002) ISBN: 1928994407
Book Info Shows how to use BizTalk Server 2000 to create, integrate, manage, and automate business processes for the exchange of business documents. Softcover.
Book Description BizTalk Server 2000 is part of the .NET family of Enterprise Servers designed to work together to provide e-business solutions. The .NET Enterprise Servers are based on open Web standards, such as XML, to allow an organization to integrate and orchestrate their applications and service needs into a single comprehensive solution. This book shows how to use BizTalk Server 2000 to create, integrate, manage, and automate business processes for the exchange of business documents.
Posted by Xander Zelders

Microsoft BizTalk Server 2000 Administrator's Guide (Administrator's Guide)
Microsoft BizTalk Server 2000 Administrator's Guide (Administrator's Guide) by Keith A. Powell
Hardcover: 550 pages ; Dimensions (in inches): 1.45 x 9.45 x 7.68 Publisher: Muska & Lipman/Premier-Trade; 1 edition (June 1, 2001) ISBN: 076153430X
Book Info (Prima Tech) A complete guide to understanding and using Microsoft BizTalk Server 2000, offering a solid foundation through discussions of the product and its technology. Discusses aspects of administration, such as installation and configuration, and management, such as the use of Messaging Manager.
Book Description BizTalk Server 2000 is Microsoft’s product that enables the development and management of application integration within and between organizations using XML. It provides comprehensible process management and is a platform for reliable business document interchange and business processes integration. BizTalk Server 2000 is one of the first products that includes all of the functionality that businesses need to build business processes that are linked together seamlessly over the Internet. Administering BizTalk Server 2000 covers everything you need to know about understanding, installing, and managing the BizTalk Server, as well as some advanced BizTalk topics. This book will help you advance from a beginning to an intermediate administrative level.
Posted by Xander Zelders

Understanding BizTalk [DOWNLOAD: ADOBE READER]
Understanding BizTalk [DOWNLOAD: ADOBE READER] by John Matranga, Stephen Tranchida, Bart Preecs
Format: Adobe Reader File Size: 2576K Printable: Most publishers do not allow Adobe e-books to be printed. Mac OS Compatible: This title requires Adobe Reader 6.x, which requires Mac OS 10.2 and above. Windows Compatible: Yes Handheld Compatible: Adobe Reader supports transfer of e-books to PalmOS devices, but not to Pocket PC or Symbian devices. Publisher: Que/Sams; ISBN: B0001AV3HS; (March 2000)
Book Info Designed to help you understand how to leverage BizTalk for B2B e-commerce. Provides an advanced look at the tools and technologies businesses can leverage to make it fundamentally easier to integrate business processes within and between organizations. Softcover. --This text refers to the Paperback edition.
Book Description Understanding BizTalk explains the complexities of Microsoft's newest framework for business to business transactions. This book gives you a look at the 'whole picture' of BizTalk, and its importance to the future of electronic commerce. After completing the book, you will have an understanding of topics including XML's role in the BizTalk Framework, The BizTalk XML tags, BizTalk Schemas, The BizTalk Schema Repository, and BizTalk and the future of e-commerce.
Posted by Xander Zelders

Microsoft Biztalk Server 2000 : Documented (Pro-Documentation)
Microsoft Biztalk Server 2000 : Documented (Pro-Documentation) by Microsoft Corporation
Paperback: 1509 pages ; Dimensions (in inches): 2.75 x 9.03 x 7.36 Publisher: Microsoft Press; Bk&CD-Rom edition (March 1, 2001) ASIN: 0735613842
Posted by Xander Zelders

MCSE Training Kit: Microsoft BizTalk(tm) Server 2000 (Exam 70-230)
MCSE Training Kit: Microsoft BizTalk(tm) Server 2000 (Exam 70-230) by Microsoft Corporation, Microsoft Corporation
Hardcover: 650 pages ; Dimensions (in inches): 2.19 x 9.35 x 7.65 Publisher: Microsoft Press; Bk&CD-Rom edition (December 12, 2001) ASIN: 0735614407
Book Description With this official MCSE TRAINING KIT, IT professionals learn how to install, administer, and troubleshoot BizTalk Server 2000. As they build these real-world systems-support skills, they're also getting in-depth preparation for MCP Exam 70-230-a key elective on the Microsoft Windows(r) 2000 MCSE track. Topics map directly to the objectives measured by the exam; students learn through an integrated system of lessons, case-study based exercises, and self-assessment. An economical alternative to classroom instruction, this kit enables working professionals to set their own pace and learn by doing!
Posted by Xander Zelders

XML and SOAP Programming for BizTalk Servers
XML and SOAP Programming for BizTalk Servers by Brian E. Travis
Paperback: 464 pages ; Dimensions (in inches): 1.34 x 9.22 x 7.41 Publisher: Microsoft Press; Bk&CD-Rom edition (August 30, 2000) ISBN: 0735611262
Book Info Teaches the reader how to create business-tobusiness, or B2B, e-commerce applications using eXtensible Markup Language, or XML. Discusses the standards, industry schemes, and BizTalk Framework as well as the how-to's of application integration and more. The CD-ROM contains an E-Book with the examples that go with the book. Softcover. DLC: XML (Document markup language).
Book Description With XML AND SOAP PROGRAMMING FOR BIZTALK SERVERS, enterprise developers get the work-ready information and tools they need to help their organizations meet the challenge of doing business in 'Internet time'. Author Brian Travis-a highly regarded XML instructor and solutions developer-offers expert guidance for building real-world, business-to-business (B2B) e-commerce applications using XML and BizTalk. This practical, code-rich book begins with an overview of XML in the B2B context, including coverage of XSL and industry schemas. Readers then dive into the BizTalk framework for application integration, stepping through the development of a working BizTalk server application. All the book's code is featured on CD-ROM so programmers can see what the syntax looks like and better comprehend the intricacies of implementing BizTalk solutions; the Microsoft BizTalk Server 2000 Technical Preview helps expedite development of their own B2B applications. Case study discussions and a summary of references help round out the reader's understanding of technological and business considerations.
Posted by Xander Zelders

BizTalk(TM) Server: The Complete Reference
BizTalk(TM) Server: The Complete Reference by David Lowe, Xin Chen, Todd Mondor, Tomislav Rus, Ned Rynearson, Steve Wright, Tom Xu
Paperback: 1000 pages ; Dimensions (in inches): 2.13 x 9.11 x 7.34 Publisher: McGraw-Hill Companies; Bk&CD-Rom edition (November 13, 2001) ASIN: 0072134984
Book Info Complete reference explains in full detail how to use BizTalk Server 2000 to manage business processes, integrate applications and exchange documents regardless of format, platform or devices being used. Softcover. CD-ROM included.
From the Back Cover The Most In-Depth Guide to BizTalk Server Available "An absolute top-notch resource for developing and deploying BizTalk Server 2000 and 2002." --Ben Smith, Instructional Software Design Engineer, Microsoft Corporation
Unleash the power of BizTalk Server and streamline your business processes with help from this comprehensive resource. You'll discover how to take advantage of BizTalk Server's capacity for integrating applications, managing workflow, and exchanging business documents--regardless of... read more
Book Description Master all the features of BizTalk Server 2000--one of the core servers in Microsoft's .NET enterprise Server collection. This complete reference explains in full detail how use BizTalk Server 2000 to manage business processes, integrate applications and exchange documents regardless of format, platform or device being used. The bonus CD-ROM contains trial versions of BizTalk Server 2000, SQL Server 2000, and Visio 2000.
Posted by Xander Zelders

BizTalk(tm) Server Developer's Guide
BizTalk(tm) Server Developer's Guide by Peishu Li
Paperback: 794 pages ; Dimensions (in inches): 1.88 x 11.14 x 6.88 Publisher: McGraw-Hill Companies; Bk&CD-Rom edition (November 8, 2001) ASIN: 0072133384
Book Info Aimed at the developer, this book offers in-depth information on building and deploying real-world BizTalk applications. Includes important case studies to help illustrate BizTalk's features. Softcover. CD-ROM included.
From the Back Cover Your professional resource for building and deploying real-world BizTalk applications
Get the most out of BizTalk Server using this authoritative, hands-on guide. Written by an expert with more than a decade of enterprise development experience, this in-depth guide provides you with all the tools you need to create, implement, and support successful EAI and B2B integration solutions. Learn key ways to effectively manage BizTalk Server messaging services, orchestrate business processes, and more.
Book Description Build and deploy fully-functional e-commerce applications using this comprehensive developer's guide. You'll get in-depth information on how to maximize the functionality of BizTalk applications in the real-world, develop XML schemas, and implement multi-level security. Also includes important case studies which help illustrate BizTalk's key features.
Posted by Xander Zelders

CramSession's Developing and Deploying Microsoft BizTalk Server 2000 : Certification Study Guide [DOWNLOAD: PDF]
CramSession's Developing and Deploying Microsoft BizTalk Server 2000 : Certification Study Guide [DOWNLOAD: PDF]
Format: Adobe Reader (PDF) Printable: Yes. This title is printable Mac OS Compatible: OS 9.x or later Windows Compatible: Yes Handheld Compatible: Yes. Adobe Reader is available for PalmOS, Pocket PC, and Symbian OS. Publisher: CramSession.com; ISBN: B000079Y4T; (December 13, 2001)
Posted by Xander Zelders

Professional Biztalk (Programmer to Programmer)
Professional Biztalk (Programmer to Programmer) by Scott Woodgate, Stephen T Mohr
Paperback: 800 pages ; Dimensions (in inches): 1.60 x 9.29 x 7.28 Publisher: Wrox Press Inc; 1st edition (January 2001) ISBN: 1861003293
Book Info A text showing programmers using Microsoft Web solutions, showing how to use BizTalk Server as an Enterprise Application Integration tool, to integrate applications into co-operating systems. Shows how to design the flow of data through an enterprise application, how to translate between different document formats, and how to monitor and track messages in the application. Softcover.
Book Description The BizTalk(tm) Framework is an XML framework for application integration and electronic commerce. Microsoft's BizTalk Server 2000 runs on Windows 2000 Server and is capable of integrating with delimited and positional flat file formats, EDI documents, and XML. It allows you to perform the three tasks critical in enterprise application integration: design the flow of information through a system, use BizTalk and its interfaces as the glue to perform the actual integration, then track the flow of information through the resulting system. It does this by providing the integration code in a central server, removing the need for writing integration code into programs, and does much of this by configuration of the server, reducing the amount of time you need to spend programming the integration code. This book teaches you how to use BizTalk Server as an Enterprise Application Integration tool, to integrate applications into co-operating systems. It is especially suited to rapid deployment B2B and B2C e-commerce applications, where you need to integrate with legacy applications.
Posted by Xander Zelders

Biztalk Unleashed
Biztalk Unleashed by Susie Adams, Dilip Hardas, Kevin Price, Akhtar Hossein, Charlie Kaiman, Clifford R. Cannon, Rand Morimoto, Cuneyt Havlioglu, Bill Martschenko, Robert Oikawa, Rick Pearson, Tom Lake, Larry Wall
Paperback: 1104 pages ; Dimensions (in inches): 2.23 x 9.14 x 7.36 Publisher: Sams; 1st edition (February 8, 2002) ISBN: 0672321769
From the Back Cover
BizTalk Unleashed covers a wide range of implementation and development tools, techniques, and technologies for use with BizTalk Server. You will learn everything from the basic foundation and history of XML to how to create, transform, process, and configure BizTalk server specifications, maps, and BizTalk Messaging.
Instead of just skimming the surface of what BizTalk Server has to offer, this book provides an overarching view of how BizTalk Server impacts the traditionally difficult application integration tasks developers face. Detailed information and example code is given on the new BizTalk 2002 features as well as the correlation of BizTalk Messaging and Orchestration services, the integration of .NET, and the RosettaNet and HIPPA BizTalk Server accelerators.
About the Author
Susie Adams has been in the computer industry for 15 years. She has been a contributing author on several books including Microsoft Press's Microsoft Visual InterDev 6.0 Enterprise Developer's Workshop, Sams Publishing's Visual InterDev Unleashed, and several industry journals. She also regularly speaks on Microsoft distributed Web application development topics at industry conferences including Microsoft Tech Ed and VBITS. As a Senior Technology Specialist at Microsoft Corporation, Susie... read more
Book Description
BizTalk Unleashed covers a wide range of implementation and development tools, techniques, and technologies for use with BizTalk Server. You will learn everything from the basic foundation and history of XML to how to create, transform, process, and configure BizTalk server specifications, maps, and BizTalk Messaging.
Instead of just skimming the surface of what BizTalk Server has to offer, this book provides an overarching view of how BizTalk Server impacts the traditionally difficult application integration tasks developers face. Detailed information and example code is given on the new BizTalk 2002 features as well as the correlation of BizTalk Messaging and Orchestration services, the integration of .NET, and the RosettaNet and HIPPA BizTalk Server accelerators.
Posted by Xander Zelders

BizTalk Server 2002 Design and Implementation
BizTalk Server 2002 Design and Implementation by Xin Chen
Paperback: 704 pages ; Dimensions (in inches): 1.68 x 9.24 x 7.40 Publisher: Apress; 1 edition (November 15, 2002) ISBN: 1590590341
Book Info Explains BizTalk Server 2002 by presenting technical discussions around a BizTalk project from the very beginning. Chen provides everything developers need to know to build an end-to-end BizTalk solution. Softcover.
About the Author Xin Chen is a solution development consultant at Avanade. His professional career has focused on Web and B2B application development and has evolved in tandem with Microsoft’s technologies from DNA to .net. Chen is very proud that he designed and built the very first BizTalk Server application for the U.S. financial industry, a chance that comes once a lifetime.
Book Description "BizTalk Server 2002 Design and Implementation" shows developers how to write BizTalk Server 2002 applications by example. Readers will learn BizTalk Server 2002 step-by-step as they read through the chapters and build an actual BizTalk Server application. Readers will also be exposed to the many invaluable lessons that Xin Chen learned by designing and implementing a number of high-profile BizTalk Server projects. Among other topics covered are the Messaging and Orchestration services, programming BizTalk Server, application deployment, performance and fault tolerance, application security, and many more advanced BizTalk Server features, as well as design discussions on how to build an effective BizTalk Server 2002 solution. "BizTalk Server 2002 Design and Implementation" provides everything developers need to know to build an end-to-end BizTalk Server solution.
Xin Chen is a solution development consultant at Avanade. His professional career has focused on Web and B2B application development and has evolved in tandem with Microsoft's technologies from DNA to .NET. Chen is very proud that he designed and built the very first BizTalk Server application for the U.S. financial industry, a chance that comes once a lifetime.
Posted by Xander Zelders

Microsoft BizTalk Server 2004 Unleashed (Unleashed)
Microsoft BizTalk Server 2004 Unleashed (Unleashed) by Scott Woodgate, Stephen Mohr, Brian Loesgen
Paperback: 768 pages Publisher: Sams; (October 28, 2004) ISBN: 0672325985
Posted by Xander Zelders

|