biztalk

Extending timeout and message size in WCF service generated by Biztalk 2006 R2

Hi, I'm generating WCF service using Biztalk. The code I get is this: <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name="ServiceBehaviorConfiguration"> <serviceDebug httpHelpPageEnabled="true" httpsHelpPageEnabled="false" includeExceptionDetailInFaults="false" /> <serviceMetadat...

How Do I Execute A Stored Procedure From A BizTalk SendPort?

Hello, I would like to call a stored procedure from a SendPort. I want to avoid an orchestration and instead, create a subscription to the message box based on the receive port and message type. I also need to use attributes from the received message xml as parameters for my stored procedure. My assumption is that I should use WCF-SQL ...

What is the recommended way to split messages in send pipelines?

I need to split a bizTalk message in the send pipeline. This is easy with disassemblers in receive pipelines, but doesn't work in send pipelines (makes sense). So what is the recommended way to do it? The only easy way to do it is to write the outbound message to file, then reprocess it using a receive pipeline with a disassembler, and ...

BizTalk 2009 XSLT and Attribute Value Templates

I'm trying to make use of attribute value type in a BizTalk XSL transformation to dynamically setting attribute or other element names. Read more here: http://www.w3.org/TR/xslt#dt-attribute-value-template The following code is an example of an XSL template to add an attribute optionally. <xsl:template name="AttributeOptional"> ...

Setting Key Usage attributes with Makecert

Is it possible to set Key Usage attributes using makecert, or any other tool I can use to generate my own test certificates? The reason I'm interested is that certificates used for BizTalk Server AS2 transport require a key usage of Digital Signature for signing and Data Encipherment or Key Encipherment for encryption/decryption, and I ...

ASP.NET SOAP call times out after 20 minutes

We have an ASP.Net web service the call to which, due to some bad design, often takes more than 20 minutes to return. We have changed every setting that we can think of, but no matter what we do, we always get a timeout after 20 minutes. It happens that this web service is a BizTalk orchestration exposed as a web service, but I do not t...

BizTalk Web Reference - generated XSD has "lost" information from WSDL.

I am using BizTalk 2006 R2 to generate a web reference from a WSDL file. Comparing the generated XSD to the WSDL, it is apparent that a lot of information has been lost. Consider the following extract from the WSDL: <s:element form="unqualified" minOccurs="0" maxOccurs="4" name="Applicant"> <s:complexType> <s:sequence> <s:...

Where is the definition of Global_NS in a BizTalk schema?

I'm trying to use a distinguished property but I get an error "Cannot implicitly convert type ... to Global_NS ... " I've googled/bing'ed but I've found only 4 references, none of which help I can't see anywhere that this is set :-( I've been trying to remove the tempuri namespaces from a WCF service and all seemed OK, until I tried...

How to Resolve a Transformation Service with BRE that occurs after an Orchestration in an Itinerary?

In trying to implement simple integration patterns with Biztalk ESB Toolkit 2.0, I'm facing a problem trying to resolve a Transformation Itinerary Service that occurs after an Orchestration. I'm using the BRE Resolver to execute rules that need to inspect the Context Message Type property to determine the appropriate map to use. However...

Adding Message Part dynamically in Receive Pipeline

Hello, I tried to create a custom pipeline component that takes a message and attaches additional another part dynamically (during Disassemble stage). I haven't set up a send port, so that I can see what BizTalk is trying to process. I can see only the body part, the additional part doesn't show up. This is the code I used: var part = p...

BizTalk external assembly namespace and static methods

Is there some restriction in BizTalk 2006 R2 to accessing static methods in external assemblies when the assembly has a "." in the name ? I have the solution set-up with the BizTalk project "FooBar", and the external assembly project "FooBar.Helper" (strongly signed and GAC'ed) with a class "Demo" (public and serializable), which is ref...

Best way of inserting data into SQL Server through BizTalk

I have a requirement to process an excel attachment that comes via email, and then insert the data into a SQL Database. Need to be done through BizTalk. What would be the best way to accomplish this, in terms of architecture/steps. I have thought of a solution but it may not be the most optimum way of doing this. My idea is to 1) ret...

What are the various scenarios where one would prefer BizTalk ?

What are the various scenarios where one would prefer BizTalk Server ? Further which version of BizTalk would you recommend 2006 or 2009 ? ...

Biztalk AS2 MDN AS2EdiReceive "No Disassemble stage components can recognize the data"

Okay, I've looked through all the walkthroughs on the MSDN.. and I don't know what's happening. I've got an asynchronous MDN that's being received by my One-Way port which has the pipeline as "AS2EdiReceive". All EDI files come in fine. It's the MDN files that generate the "No Disassemble stage components can recognize the data". He...

windows domain in biztalk sftp adapter?

hi im just starting to use a biztalk sftp adapter, it seems fairly simple, but Im wondering if it can take a windows style domain with the username? eg sftp://domain//[email protected]/sftp_test/test.txt thanks DD ...

schema validation HELP (converted from Biztalk 2004 to 2006 R2)

This schema used to work on our Biztalk 2004 environment but throws an error when compiled in Biztalk 2006 R2. <?xml version="1.0" encoding="utf-16"?> <xs:schema xmlns:b="http://schemas.microsoft.com/BizTalk/2003" xmlns="http://Project.Schemas.External.ScheduleRepair" attributeFormDefault="unqualified" elementFormDefault="qualified" xml...

BizTalk BAM - manually editing BTT XPath to return just the First instance of a Message Payload property?

Hi! We have a preference for using TPE for BAM tracking since it can be deployed independently of our orchestrations. However, at one point in our process, we need to track a message payload property which has a 1:N relationship with the Root XML Element of the message. Despite the 1:N relationship, extracting just the first value of ...

Using Biztalk sftp adapter

Hi Ive downlaoded the nsoftware sftp adapter for biztalk, I created a few send & receive ports within biztalk admin just to see if it works, and it does. I now need to build an orchestration with an sftp send port and sftp receive port. Ive a reference to the adapter dll and included it in the project, but IM not sure how to wire it up...

BTSTask and BTSControl for BizTalk 2009

Hi, I am using BTSTask and BTSControl to do some deployment opertation on a BizTalk 2006. we moved to BizTAlk 2009 and these tools seem to not work with BT2009. are there any specific version or new tools for BT2009? Thanks, -Idriss ...

Multiple BizTalk custom pipeline components in the same assembly

Hello, The question is entirely described in the title: is it possible to have multiple components in the same .NET assembly. All examples I've seen so far had a single custom pipeline component per assembly. Microsoft.BizTalk.Pipeline.Components.dll would be a good example. Thank you. ...