Questions tagged [biztalk-2013r2]

For questions about Microsoft BizTalk Server 2013 R2.

Microsoft BizTalk Server 2013 R2 is the 9th version of a server product for Business Process Management and Enterprise Application Integration. It uses Microsoft .NET 4.5.1 and is done in Visual Studio 2013.

181 questions
1
vote
2 answers

BizTalk - Fail to Promote Properties

Using BizTalk 2013r2 CU1, I have a created a property schema for my inbound xsd and deployed the application. When I receive a sample xml document using a standard "xml receive" pipeline then I can see that the required element is promoted into the…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
1
vote
2 answers

BizTalk - Delete without a schema

I am importing a file with 200+ records into a master table. The BizTalk package only services one source, other packages service other sources I am using strongly type stored procedures for all SQL CRUD All records inside the file come from the…
Internet Engineer
  • 2,514
  • 8
  • 41
  • 54
1
vote
1 answer

Calling RestFul Services

I am trying to call the RestFull Services from BizTalk 2013 R2. I am trying to change the existing one using Http adapter and use Wcf-WebHttp Adapter System.Diagnostics.EventLog.WriteEntry("ABC", …
trx
  • 2,077
  • 9
  • 48
  • 97
1
vote
1 answer

BizTalk 2013 R2 WCF-SQL adapter having random issues

Ahoy, We have two BizTalk applcations in BizTalk 2013 R2 that seem to be having random issues. Both applications follow the same process. Pull data from a WCF endpoint. Delete data from a database via a stored procedure. Insert the new data…
Richard
  • 55
  • 1
  • 3
1
vote
1 answer

No Errors Highlighted in Orchestration, but Build Fails

I have an orchestration defined and no errors are present, but I see #error statements in the orchestration (in XML view): #error "Message Type 'X' does not exists or is not valid However, I know message type exists; I see the schema and see the…
1
vote
1 answer

How to organize lots of policies in BizTalk Server?

I have a project which is using BizTalk Server 2013 R2 in which, there's lots of policies stored in Business Rule Composer and it's really hard to manage and find them. According to the business, the policies can be grouped into some categories like…
mehrandvd
  • 8,806
  • 12
  • 64
  • 111
1
vote
2 answers

Biztalk Map Unit Testing Exception

I am trying to unit test a map with following code, protected string Map(TransformBase map, string xml) { StringWriter str = new StringWriter(); XmlTextWriter writer = new XmlTextWriter(str); …
Low Flying Pelican
  • 5,974
  • 1
  • 32
  • 43
1
vote
2 answers

BizTalk.Operations TerminateInstance SQL Error

I'm getting the following when trying terminate an instance calling TerminateInstance on Operations object: System.Data.SqlClient.SqlException (0x80131904): Conversion failed when converting from a character string to uniqueidentifier. at…
Calvin
  • 423
  • 3
  • 12
1
vote
1 answer

BizTalk integration into Visual Studio 2012

I am trying to integrate the BizTalk 2013 R2 templates into Visual Studio 2012 for a work project. I tried to repair the BizTalk installation, but I still cannot find the BizTalk templates in Visual Studio. I am using the two programs on a Windows…
1
vote
2 answers

BizTalk 2013 R2 Receive Pipeline Error

I'm getting this error message when I submit the input file (which BizTalk eats up as expected)... There was a failure executing the receive pipeline: "FileName.BizTalk.Pipelines.Receive_ResponsePipeline, FileName.BizTalk.Pipelines, …
user1327418
  • 167
  • 1
  • 2
  • 14
0
votes
1 answer

BizTalk 2020 with BTDF & Azure Pipelines - Application dependencies

Currently transitioning from BizTalk 2013r2 to 2020, and implementing Azure Pipelines to automate deployment with BTDF. So far, we're able to deploy our Core applications, but we've just realised there are dependencies with the 'child applications'…
0
votes
0 answers

How do I convert a string to a DateTime in BizTalk 2013R2?

Most of my BizTalk integrations write data to SQL Server databases. I've got an XLST direct message coming in from another application, and it's mapping to a SQL Server stored procedure. There are 4 dates that need to be mapped over, and I'm using a…
mrc85
  • 73
  • 10
0
votes
1 answer

BizTalk 2013r2 - Null elements in schemas

Trying to configure a schema so that it will always provide every element, regardless of whether it's populated or not. I've tried setting the minOccurs to 1 and nillable to true on all elements in the schema, but it still doesn't make a difference.…
mrc85
  • 73
  • 10
0
votes
1 answer

Biztalk 2013r2 - Checking for multiple return schemas

I'm sending data to a REST service, but need to make sure I can handle response issues generated from the XML-RPC end of the service. The problem is the return schema for a fault is completely different to the standardised response schema. I've…
mrc85
  • 73
  • 10
0
votes
0 answers

Calling a Referenced C# class from BizTalk

I'm trying to use a custom method to encode strings into an XML payload, so that it removes escape characters. I aim to do this by building the payload in a Message Assignment, passing through the input values for each element, and then where I know…
mrc85
  • 73
  • 10