Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Downloads > BizTalk Server


Search:
What's New - What's Hot
BizTalk Error – Please verify that the receive location exists, and that the isolated adapter runs under an account that has access to the BizTalk dat  Version: 0.00     Price: $0.00  
Total Hits: 20  |  Today: 0Author: Abdul_Rafay      Rating:  
Read Reviews | Write Review |  Your Rating: 

The Messaging Engine failed to register the adapter for “SOAP” for the receive location {Location}”. Please verify that the receive location exists, and that the isolated adapter runs under an account that has access to the BizTalk databases.

As this is a permission issue the error occurs because the web service is running on the application pool which security account user is not a member of the BizTalk Isolated Host Users group....

Using C# inline on maps in BizTalk  Version: 0.00     Price: $0.00  
Total Hits: 26  |  Today: 0Author: John Charles Olamendy      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article, I will cover how to implement custom business logic (a simple string concatenation) using C# inline on maps in BizTalk. This is a common scenario when the business logic is very simple and we want to embed the logic within the map....

Developing a custom functoid in BizTalk Server  Version: 0.00     Price: $0.00  
Total Hits: 23  |  Today: 0Author: John Charles Olamendy      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article, I will show how to create a custom functoid in BizTalk. A functoid is a mapping artifact which enable encapsulate custom business logic in the component in order to transform documents with different formats. As an example, I will describe the process to develop, deploy, and use a custom functoid which implements the addition mathematical operation. The functoid will have two input parameters representing the numbers to be added and one output parameter representing the result o...

BizTalk Server 2000: Architecture and Tools for Trading Partner Integration  Version: 0.00     Price: $0.00  
Total Hits: 21  |  Today: 0Author: Aaron Skonnard and Bob Laskey      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article provides an overview of the concepts involved with implementing a trading partner integration system on BizTalk Server 2000 and details the document interchange server architecture and toolset. Additionally, an early look was taken at some business process integration features planned for the production release of the product that allow easy design, execution and sharing of new business processes with trading partners. The concepts and architecture presented allow companies to prepa...

An XML Guru's Guide to BizTalk Server 2004, Part I  Version: 0.00     Price: $0.00  
Total Hits: 23  |  Today: 0Author: Aaron Skonnard      Rating:  
Read Reviews | Write Review |  Your Rating: 

Who would have believed that XML, such a seemingly trivial technology, could revolutionize an industry? It may have seemed like a long shot in the beginning, but the XML aficionados saw something special and pragmatic right away—a sort of duct tape for the world's information systems. But not all developers felt this way. Some were disappointed by the lack of tool support that would bring XML to life....

BizTalk Server 2006 Web Services  Version: 0.00     Price: $0.00  
Total Hits: 23  |  Today: 0Author: Aaron Skonnard      Rating:  
Read Reviews | Write Review |  Your Rating: 

This month I'll introduce you to the exciting world of BizTalk Server 2006 and its support for today's Web services technologies. You'll learn how to use the SOAP and Web Services Enhancements (WSE) adapters available right now, and I'll tell you about the forthcoming Windows® Communication Foundation (WCF) adapter included in the BizTalk® Server 2006 R2 release....

Using Polling Statement and Executing Custom SQL using BizTalk Oracle Adapter     
Total Hits: 123  |  Today: 0Author: Abdul_Rafay      Rating:  
Read Reviews | Write Review |  Your Rating: 

The BizTalk oracle adapter can be used to poll a table after specific intervals. The oracle adapter transport properties must be set to poll the specific table. Username, password and Service Name (The TNS alias used in the TNS file) should be configured along with the Bin Path of the Oracle Client installed. You can check whether all the properties are configured properly by clicking the ellipsis in the managing events property in the Oracle transport property. Select the SQLNative as receive p...

Writing Effective BizTalk Server Adapters     
Total Hits: 125  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Many people, both within Microsoft and in third-party companies, have written successful adapters for Microsoft® BizTalk Server®. This task can be difficult, and this paper is intended to present some of the "tricks of the trade" that these developers have learned, in the hope that these will help others avoid common problems. This document is structured as a set of issues that programmers face when writing adapters, and provides guidelines for resolving these issues. These guidelines can be rea...

SQL Server Query Notification with BizTalk Server 2009 WCF SQL Adapter  Version: 0.00     Price: $0.00  
Total Hits: 23  |  Today: 0Author: Abdul_Rafay      Rating:  
Read Reviews | Write Review |  Your Rating: 

SQL Server 2005 introduced query notifications which allow applications to subscribe to the database and receive notifications from the database based on the changes in the result set of the query on which the application is subscribed. This can change the behavior and performance of the application as the application does not have to query the database in order to get changes. For e.g. if a service/application has cached the data, it can refresh its cache whenever there is a change in the resul...

Sending an HTML-Formatted E-Mail Message from BizTalk  Version: 0.00     Price: $0.00  
Total Hits: 22  |  Today: 0Author: Abdul_Rafay      Rating:  
Read Reviews | Write Review |  Your Rating: 

Text emails from BizTalk are really simple to send; you can easily configure the SMTP adapter in BizTalk and send text emails. You can also use the XSLT Transform Pipeline component (BizTalk Server Example) which is a Microsoft Sample Pipeline component that converts your XML that contains data into HTML. You can use the similar solution by changing the XSL template and extract relevant data from your XML. Make sure about the path of your XSL file in the component. For practice use the same solu...

Consuming Web Services without web references in BizTalk  Version: 0.00     Price: $0.00  
Total Hits: 26  |  Today: 0Author: Abdul_Rafay      Rating:  
Read Reviews | Write Review |  Your Rating: 

Last week, I came across a scenario where I had to call the card verification service before updating the credit/debit card status. This was the first time I was consuming a Web Service in an orchestration, so I had a little trouble in the beginning. Very innocently, I made request and response messages of the schema types which I got from the WSDL, made a request-response port, and deployed the project. I configured the port to use the SOAP adapter, and gave the URI of the Web Service....

Change Namespace of a Message in a Custom Pipeline Component  Version: 0.00     Price: $0.00  
Total Hits: 10  |  Today: 0Author: Steinar Moen from Norway      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article, I describe in detail how to develop a custom pipeline component to change the namespace of a message on BizTalk 2006 R2. In BizTalk 2009, there are existing components to add and remove namespaces.

This component can be used in the decode stage in a receive pipeline. A public property allows the user to type a new namespace which will be added to the root node or replace an existing namespace in the XML message....

Pitfalls Encountered and their Workarounds during Development of BizTalk Projects  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Abhijit Mahato      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article explains some of the commonly encountered pitfalls and their workarounds during the development of BizTalk Project....

How to Troubleshoot Schemas in BizTalk Server 2006  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: briberry      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article was originally published on http://blogbiztalk.com/.

One of the biggest frustrations about working with BizTalk can be the fact that schemas cannot really be “debugged” in the traditional sense. In the .NET world, we can attach a debugger to a process and break into our source code. While schemas are compiled into CLR classes, the source code is not a VB.NET or C# class: they are XSD files. You can't put a break point into these files....

A Quick look at the new functoids in BizTalk Server 2006  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Naveen Karamchetti      Rating:  
Read Reviews | Write Review |  Your Rating: 

BizTalk Server 2006 has come out with several improvements with the map and schema editor. In the BizTalk Mapper, several new functoids have been added. This article will explain all the new functoids added to the BizTalk Mapper toolbox....

BizTalk Enterprise Integration Patterns - Part 1  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Naveen Karamchetti      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article is the first part of the BizTalk Integration pattern series. This article discusses about a simple message oriented systems pattern known as Content Enricher Pattern....

Configuring BizTalk Orchestrations to handle un-typed messages  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Naveen Karamchetti      Rating:  
Read Reviews | Write Review |  Your Rating: 

A typical orchestration in BizTalk deals with several kinds of messages. A message in BizTalk is always strongly typed. It is usually associated to some schema defined in the project. A Receive/Send shape in an orchestration is tied to a message declared in the Orchestration View. In the case of an un-typed message, the message type is set to 'System.Xml.XmlDocument', instead of a schema type. The class "XmlDocument" is a super class for all XML messages, and hence it can hold any type of XML me...

Fax Adapter  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Anil_Kumar_P      Rating:  
Read Reviews | Write Review |  Your Rating: 

One of the primary design goals of BizTalk Server 2006 is to facilitate the exchange of business documents between trading partners. To help meet this goal, BizTalk Server 2006 includes several adapters that provide connectivity between BizTalk Server and trading partners using commonly recognized data protocols and document formats....

Custom BizTalk Pipeline Disassembler Component  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Wael Al Wirr      Rating:  
Read Reviews | Write Review |  Your Rating: 

As part of system integration, specially when dealing with non-XML communication (flat files), a conversion is needed. It is the pipelines that come into the picture and transform the data into something that BizTalk can understand – XML. Essentially, pipelines form a channel for the messages from the adapters to the message box where they are finally delivered....

Application Integration through Microsoft Technologies  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Naveed Bajwa      Rating:  
Read Reviews | Write Review |  Your Rating: 

Organizations have been using numerous applications that were built over many years. These applications probably are of different era, were written by using different languages and technologies, reside on different hardware platforms, use different operating systems, and provide very different functionality. In fact, many of the applications often have very little in common at all, resulting in isolated functionality and multiple instances of the same data. For your organization, these condition...


1  2  3  4  5  6  7  8  9  10  Next >> 


Disclaimer - Privacy
© 2002-2012 DevASP.net