biztalk

BizTalk 2006 Adapter for CRM 4.0 Response

HI, i am using BTS 2006 adapter for MS CRM 4.0 to create records and to fetch data from MS CRM 4.0. I want to get the response from CRM after the record is created or to fetch data from CRM For this i am using response.xsd coming with BTS 2006 adapter for MS CRM 4.0 to receive response from MS CRM i set the target namespace for reponse....

BizTalk: In the remote connection dialog, is there any way to force TCP/IP transport rather than Named Pipes?

I am trying to connect to a biztalk instance over the network, and not being all that successful. The SQL server with the biztalk databases on it has named pipes disabled. When I try to connect to the server that has biztalk installed, it gives a named pipes error. When I try to connect to the database server, it just times out and gives...

How to call a Biztalk net.TCP service from Raw TCP request?

I have written a net.tcp based service in Biztalk 2006 R2 and it listens at a location, http://localhost:5060/WCFTcpService I need to call this service by using Raw TCP request. i.e. I don't want to create a proxy class and consume it in a .NET client application. How can I be able to do this? The real scenario is that an Oracle Stored ...

Using Biztalk orchestration as a webservice

Hi! I published an orchestration in Biztalk as a webservice. Does anyone know how I can use XML serialization or something to load XML from a file and "convert" it to the messagetype the webservice expects? How do people usually use this webservices? I try to avoid using untyped messages since I use both XML and flatfile, and have re...

Getting receive pipeline error information in BAM

Hi! I have two orchestrations One of them is used as an error handler for the other orchestration, and is getting failed messages from it. I have set this up in bam. The problem is when a file fails in the receive port I don't get any usefull information in the Activity Search. Only that something has been registered. Data ex from Bam: ...

Choking experienced while using the TCP/IP Adapter for BizTalk Server 2006

I am using the TCP/IP Adapter for BizTalk Server 2006 which was obtained from codeplex: http://www.codeplex.com/BTSTCPIP Once the application was deployed in production, we started to experience choking in the performance of the application. The more the requests, the more the performance degradation. Sometimes, it happens that the rec...

Does everything go through the bus?

We have introduced BizTalk into our organization as a Service Bus, it is linking a new Web GUI to numerous existing back end systems. We have wrapped our existing systems as Services (WCF) and connected them to the BUS. We are also replacing some of the legacy system GUI's with our new web GUI (ensuring we replicate existing functionali...

Biztalk : can a message select an orchestration to be processed by ?

Hi, Can a message select between an 'older' or 'latest' version of the orchestration he'd like to be prosessed by ? thanks ...

Garbage Collection in Biztalk, What would be the wise approach?

Our Biztalk 2006 application contains two orchestrations which are invoked on frequent basis (approx 15 requests per second). We identified possible memory leakages in our application by doing certain throttling threshold changes in the host. As we disabled the memory based throttling, the Process memory started increasing till 1400 MB a...

Can biztalk publish multiple xml (infopath) forms to the same document library?

I have a need to do the following: The business process involves several document types based on cXML. BizTalk needs to be able to push these to a SharePoint form library (as InfoPath forms) to be manually workflowed. Once workflowed, the xml doc will be returned to BizTalk. In order to be able to use a single document library, I'll ...

Biztalk Send Port Group and Filtering

So the model I need for my solution is as follows: I need to poll the database and based on a result, create a request to the database for more data, get the response and pass it to a group of ports, for which based on a promoted property, only one of the ports will act. It looks like this: However, if you assign "Temp Out" to a sen...

Create Custom Entity record using MS BTS 2006 adapter for MS CRM 4.0.

Hi Rich, i tried it with different custom entities it gives same error. and the same process works fine for customizable entities. I am working on CRM record creation using MS BTS 2006 adapter for MS CRM 4.0. I am able to create records for customizable entities [e.g. Account, contact]. But I am getting an error when trying to create re...

Publishing schema as wcf service trouble

Hi. I'm trying to publish some HL7 schemas (with quite a few ) as wcf services using the "WCF Service Publishing Wizard". The wizard seemingly runs and completes just fine, creating a service that exposes the schemas I want. But when I try to browse the newly created service, I get "Server Application Unavailable"... I looked in the ev...

BizTalk Dynamic WCF-WSHttp Send Port reverting to Http Adapter

I'm trying to send a message to the WCF-WSHttp adapter with a dynamic send port from an orchestration, but BizTalk seems to always be reverting back to the HTTP Adapter. According to the docs that I've been able to find, I should just need to set the transport type from my expression shape to get BizTalk to use the WCF-WSHttp adapter, a...

Biztalk 2004 message backup

I have a Biztalk 2004 orchestration that receives a message from an FTP server. The message is received through a pipeline that immediatley changes the message, altering it's original form and splitting it into sub-messages. I'd like to make a backup of the original message, before Biztalk makes any changes to it. Once the orchestration...

BizTalk port/orchestration filtering performance overhead

Please consider the following scenario in BizTalk 2006: Received message should be routed to orchestration or send port according to the following constraints (Message.Type = "SomeType" AND Message.Sender = "SomeSender") OR (Message.Type = "SomeOtherType" AND Message.Sender = "SomeOtherSender" AND Message.IsSigned = true) OR (Message.S...

Biztalk 2006, same assemblies with different behaviour in different biztalk applications

Is it possible to have the same assemblies behave differently in different biztalk 2006 applications? For example, is it possible within an assembly to somehow have access to the Biztalk application Id or Name that is using that instance and then make it have different behaviours for different Biztalk applications? Or could it be done ...

Synchronising data entities from different applications

I'm looking for some feedback on the best approach to a problem I've been tasked with. There are two systems with their own databases which store very similar business entities. For each entity in question there needs to be a synchronization mechanism in place to make sure that changes in one database are delivered to the other when a ...

WCF System.ServiceModel.Channel.Message: binary message contents (non-XML)?

I need to retrieve binary (non-XML) documents as Messages in a custom WCF LOB Adapter (for consumption by BizTalk). The messages need to be represented as instances of System.ServiceModel.Channel.Message. I can't find how to create an instance of this class when the content is binary (by "binary" I mean any arbitrary byte array or Strea...

Help with Business Rule

I have a nodeset that contains various number of nodes with unique values. I want the rule to fire if the nodeset contains nodes with some of the possible values. Example: Instance containing a nodeset with one node with Y=1 AND another node with Y=2 should fire rule. Instance that should fire: - X - - Y - 1 - - Y - 2 - - Y - 3 - - ...