Navigation

Search

Categories

 
 

On this page

Send e-mail with local files as attachments with BizTalk 2006
10 reason to love WF
An XML Guru's Guide To BizTalk, Part 2
Windows Workflow Foundation 1.2 for Office "12"
An XML Guru's Guide to BizTalk Server 2004, Part I

Archive

Blogroll

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

RSS 2.0 | Atom 1.0 | CDF

Send mail to the author(s) E-mail

Total Posts: 21
This Year: 0
This Month: 0
This Week: 0
Comments: 29

Sign In
Pick a theme:

 Wednesday, November 30, 2005
Wednesday, November 30, 2005 4:03:21 AM (GMT Standard Time, UTC+00:00) ( )

Now, we can send e-mails with local file(s) as attachment(s) in BizTalk 2006 without add these files as Multipart-MessageParts of the message that we'll send.  This new feature can be used for both static and dynamic ports.

If you use static ports, you can use the new Admin Console to select the file(s) that you can send without problems.  But, if you need that these files change depending of message type, then you must use a dynamic port and set the path of file(s) to new SMTP.Attachments context property of http://schemas.microsoft.com/BizTalk/2003/smtp-properties namespace.  There is only one restriction, you have to use a pipe character (|) to separate all path file(s) and one more pipe in the end of path(s), for example:


Msg_Mail(SMTP.From) = "carlos1254@mycompany.com";
Msg_Mail(SMTP.SMTPHost) = "SMTPServer";
Msg_Mail(SMTP.Subject) = "Dynamic attach files";
Msg_Mail(SMTP.Attachments) = "c:\file1.txt|c:\image2.jpg|d:\file1.xml|";
Port_SendMail(Microsoft.XLANGs.BaseTypes.Address) = mailto:carlos1254@destiny.com;

This is a fantastic new feature of SMTP Adatper in BizTalk 2006.

 Thursday, November 24, 2005
Thursday, November 24, 2005 4:01:08 AM (GMT Standard Time, UTC+00:00) ( )

To people that have not begin to test Windows Workflow Foundation yet... and people that are testing Windows Workflow Foundation now, here is 10 reason to love WF and believe in it....

Thanks to Michael Zammuto for it.....

 Wednesday, November 23, 2005
Wednesday, November 23, 2005 3:55:11 AM (GMT Standard Time, UTC+00:00) ( )

In MSDN Magazine Aaron Skonnard has published An XML Guru's Guide To BizTalk, Part II, this is the last article in the serie.  You can read the first article in An XML Guru's Guide To BizTalk, Part I.

 Saturday, November 05, 2005
Saturday, November 05, 2005 3:54:08 AM (GMT Standard Time, UTC+00:00) ( )

Microsoft has released Windows Workflow Foundation 1.2... this version must be installed on a machine with Visual Studio 2005 RTM.  There are two downloads available:

  • The first download consists of the platform components for Office "12" Beta User needed to run WF applications
  • The second download consists of solutions templates, activities, SDK and other tools that developers need to construct WF application using Visual Studio 2005 RTM
 Thursday, November 03, 2005
Thursday, November 03, 2005 3:53:07 AM (GMT Standard Time, UTC+00:00) ( )

Aaron Skonnard has been write a good article about BTS 2004 in MSDN magazine.   In this article, Aaron explains the BTS architecture and how this architecture tries to take advantage of XML's benefits.  This is the first part of a series ...

Article: An XML Guru's Guide to BizTalk Server 2004, Part I