by community-syndication | Aug 25, 2014 | BizTalk Community Blogs via Syndication
Great news for the BizTalk community, for the third time the BizTalkCrew (Steef-Jan Wiggers, Tord Glad Nordahl, Nino Crudele, Saravana Kumar and me) are hosting the BizTalk Innovation Day, an one-day event focused purely on Microsoft BizTalk Server/BizTalk Services and related topics, in Norway! The two previous BizTalk Innovation Day editions in Norway were carried […]
Blog Post by: Sandro Pereira
by Tord Glad Nordahl | Aug 25, 2014 | BizTalk Community Blogs via Syndication
We’re doing it again, and we are inviting you to join our BizTalk Innovation Day in Oslo.
Sign up here: BizTalk Innovation Day Sign up
For the third time the BizTalk Crew (Steef-Jan Wiggers, Sandro Pereira, Nino Crudele, Saravana Kumar and me) are hosting the BizTalk Innovation Day, one whole day with hardcore BizTalk!
We have decided to invite Cloud specialist Richard Sertoer from USA to tell us more about the future of integration both on-prem and in the cloud.
“The next decade looks to be one of the most disruptive in the short history of IT. New computing and architecture paradigms, an exploding number of connected devices, and new organization models have all directly impacted what systems integration will look like in the years ahead. What challenges has the cloud introduced? How does a DevOps commitment impact my integration approach? What role does integration play in the “internet of things”? In this session, we’ll talk about some of the mega-trends in the industry and how that may impact your approach to integration today and tomorrow.”
Steef-Jan Wiggers will give us more information around Microsoft Azure BizTalk Services (MABS)
“Microsoft Azure BizTalk Service (MABS) is almost available to us for year. It is a newcomer in the world of integration Platform as a Service (iPaaS) and promising contender for the sweet spot in the Gartner’s Magic Quadrant. This service in Azure has a lot offer and can provide different means of integration in the changing IT world of on premise ERP systems, services, cloud and devices. In this session the audience will learn where the Microsoft Azure BizTalk Service stands in middle of the iPaaS world, what it has to offer today and what the road map will look like in the future. During the session, the audience will also see demo is showcasing the various service features from a development, deployment and operations perspective.”
Sandro Pereira will announce a new whitepaper and give us a detailed overview of the new “Transform Designer” in MABS “.
“Migrating current BizTalk Server projects to BizTalk Services or starting new BizTalk Services projects can provide some challenges because although the developing experience is very similar, we are still talking about a new integration platform on Azure, and one of the main differences is the way we apply messages transformation with the new Transform Designer.
In this session, we will see the main differences between BizTalk Mapper Design (BizTalk Server) and the Transform Designer (BizTalk Services).”
Nino Crudele will talk more about how to “Develop as an Integration person”.
“After the London session, thinking like an integration person, Nino Crudele will speak about the real approach in a real development environment. There exists a lot of strategies, theories and philosophies about what the best strategies to use during development, some of them are very useful, other expensive, other very wrong.
In this session, Nino will present his personal approach and mining about development in real, considering all important topics for a good BizTalk developer.”
Saravana Kumar is repeating his known announcements at the BizTalk Innovation Day in Norway by releasing some brand new awesome feature in BizTalk360:
“BID Norway kind of became our inaugural place for introducing major versions. Last year we showcased version 7.0 to the public at BID, Norway. Since then we were constantly adding new features to the product and accelerated our development process. We worked on some exciting features like Graphical Message Flow, Throttling Analyzer, Business Rules Visualizer, Managed Services etc. Lot of these new features are designed in helping BizTalk customers to improve their support/operations/monitoring efficiency. In this presentation, Saravana Kumar will showcase the top 10 features we added since our last BID visit. We may be in a position to showcase some of the bits that’s going to come in 8.0 planned for end of this year.”
Myself (Tord Glad Nordahl) will be talking more about how developers and admins can co-exist together in harmony.
“The fight is on, and I am ready to provide you with the best ways and ideas on how to effectively work better together as a team, who messes up what, and how can we collaborate better. And I’ll share some of the secrets from both world, follow the rules and see how much more effective your team can become.”
Early bird is available till September 7th, so hurry up. We have a maximum cap, and the tickets are running out fast!!
Sign up here: BizTalk Innovation Day Sign up
by community-syndication | Aug 22, 2014 | BizTalk Community Blogs via Syndication
In this last week I’ve been migrating legacy custom adapters from previous BizTalk Versions (2004 and 2006) for recent version of BizTalk Server (2010 and 2013). In this particular case is an Isolated Adapter that in fact is a socket listener that will be listening on one or more TCP ports for a custom and […]
Blog Post by: Sandro Pereira
by community-syndication | Aug 22, 2014 | BizTalk Community Blogs via Syndication
When you set an endpoint in an Itinerary with the STATIC Resolver you store that endpoint location in the Itinerary. In ESB Toolkit Tip #6 I showed that in larger environments where you have a lot of services you can use Sentinet from Nevatech to store and manage the web services and use the Sentinet SOA Repository Resolver to dynamically get the endpoint of the Services. But what if you want to route the message to a MSMQ or for example a folder? In that case you can use the BTDF-SSO Resolver from the Deployment Framework for BizTalk (BTDF).
The Deployment Framework for BizTalk makes it easy for you to centrally manage all of the variables (connection strings, user names, passwords, file paths, URL’s, etc.) and store them in SSO. At runtime you can use the BTDF-SSO Resolver to resolve the settings from SSO.
Deploy Configuration Settings into SSO
To deploy configuration settings into SSO, edit your Deployment Framework for BizTalk project file (.btdfproj) as follows:
| 1. Set the IncludeSSO property to true. |
|
| |
| 2. Ensure that you have a PropsFromEnvSettings ItemGroup containing SsoAppUserGroup and SsoAppAdminGroup. |
|
| |
| 3. Ensure that the Excel settings spreadsheet contains SsoAppUserGroup and SsoAppAdminGroup settings and add custom settings. |
|
Using the BTDF ESB Resolver
To use the BTDF-SSO Resolver in an Itinerary:
| 1. Ensure that the BTDF-SSO Resolver is added to the esb.config. |
|
| |
| 2. Create or edit an itinerary in the Itinerary Designer and, on an itinerary service object, add or edit a Resolver. |
| |
| 3. Choose "Deployment Framework for BizTalk SSO Resolver Extension" as the Resolver Implementation. |
| |
| 4. Fill in the AffiliateAppName, Transport Location and Transport Type fields. |
|
Testing
Once the BizTalk Project with the SSO settings and the Itinerary is deployed with the Deployment Framework for BizTalk, the itinerary is ready to be tested.
| 1. Check if the settings of the BizTalk application are deployed to SSO with the SSOSettingsEditor tool. |
|
| |
| 2. Sent a message to BizTalk and run DebugView to watch the trace output of the BTDF-SSO Resolver. |
|
| |
See Also
For more information on the BTDF-SSO Resolver see:
by community-syndication | Aug 21, 2014 | BizTalk Community Blogs via Syndication
This is the third in a series of posts exploring What’s New in BizTalk Server 2013 R2. It is also the first in a series of three posts covering the enhancements to BizTalk Server’s support for RESTful services in the 2003 R2 release. In my blog post series covering the last release of BizTalk Server […]
Blog Post by: Nick Hauenstein
by community-syndication | Aug 21, 2014 | BizTalk Community Blogs via Syndication
We’re in the midst of such an interesting period of technology change. There are new concepts for delivering services (e.g. DevOps), new hosts for running applications (e.g. cloud), lots of new devices generating data (e.g. Internet of Things), and more. How does all this impact an organization’s application integration strategy? Next month, I’m traveling through […]
Blog Post by: Richard Seroter
by community-syndication | Aug 21, 2014 | BizTalk Community Blogs via Syndication
Azure search is an indexing service where you can look for content in documents. You could compare it with your personal Bing search engine for your own indexed documents. You can configure and search your documents by using the Azure Search REST API. This blog post tells you more about it.
by community-syndication | Aug 19, 2014 | BizTalk Community Blogs via Syndication
Thanks to all participants, however only 59% of the responses were correct, all due to a small trap – I apologize for that – that I put the third question. The correct answers for the questions were: Does BizTalk Services Bridges applies the VETER (Validate, Enrich, Transform, Enrich and Route)? Correct answer: A) Yes Where […]
Blog Post by: Sandro Pereira
by community-syndication | Aug 19, 2014 | BizTalk Community Blogs via Syndication
I think the answer is no unless you are prepared to accept the risk of duplicates and/or lost messages. Let me explain why below. This is a summary of conversations that I have had with my colleagues and external parties about this topic over the last two months and I have at times copied directly […]
Blog Post by: mbrimble