biztalk

Forcing a Biztalk Host to Throttle for Debugging Purposes

江枫思渺然 提交于 2019-12-13 18:22:15
问题 we're currently having issue in our production servers and would like to try to replicate the issue in our dev. I'm currently awaiting access to our Performance Monitoring Tool, and while waiting would like to play with it a little. I'm thinking of, since I suspect a host throttling in prod, forcing hosts to throttle in dev and see if it will recreate the issue. Is there a way to do this? 回答1: As others have mentioned, monitoring of the throttling counters and other counters like memory and

FHIR JSON to XML decoding in BizTalk

戏子无情 提交于 2019-12-13 17:51:32
问题 I am just starting out with FHIR and with json so my question may not be well asked. I have built a BizTalk pipeline component to convert FHIR-json to FHIR-xml using this library, https://github.com/ewoutkramer/fhir-net-api , based on an example i found here, http://soapfault.com/blog/2016/08/hl7-fhir-json-decoding-in-biztalk/ Here is a code snippet from the pipeline component. It's almost identical to the example. //Read the json message using (TextReader tr = new StreamReader

Reference trouble with BizTalk schema project in Visual Studio 2008

时光毁灭记忆、已成空白 提交于 2019-12-13 14:29:34
问题 In a large VS 2008 solution we have different schema projects and mapping projects. The mapping projects reference the appropriate schema projects and this works fine overall. However, recently I added a new schema project and it consistently gives the same problem. When I add a new schema to it, and I want to use that schema in a mapping project that already has a reference to the schema project, the map fails to validate with the message Cannot load source/destination schema [...]. Either

Error converting String in to DateTime format

会有一股神秘感。 提交于 2019-12-13 07:55:46
问题 I am trying to convert the string in to DateTime so it can be inserted in the Ms SQL Database field which is datetime datatype. public DateTime ConvertCloseDate(string closeDate) { return DateTime.ParseExact(closeDate,"YYYY-MM-DDThh:mm:ss",null); } Here closeDate holds value like 7/14/0016 5:00:00 AM I need to convert in to the datetime format that Ms SQL Database will accept. With the above code I am getting error like String was not recognized as a valid DateTime. Exception type:

Using a BizTalk orchestration to call .NET class library to read xml when there is new xml file in the directory

一笑奈何 提交于 2019-12-13 05:39:52
问题 I have set up receive message and receive port to monitor for XML files. I also added expression shape to execute .NET class library by using System.Diagnostics.Process.Start (@"C:\TEMP\XmlReader\XmlReader\bin\Release\XmlReader.exe"); When I deploy the BizTalk, as soon as new file gets received on the receive location, file disappears and nothing happens. I have other orchestration project with receive and send port where the file disappears and does not move to send location 回答1: I am not

BizTalk 2016 Functoids Not Displaying in Visual Studio 2015

╄→гoц情女王★ 提交于 2019-12-13 03:41:47
问题 I have a quick question. Currently at my job we are attempting to implement a new project that utilizes Microsoft Logic Apps. Logic Apps implements BizTalk functoids for mapping purposes as anyone that is familiar with Logic Apps already knows. Currently though we are encountering an issue with the BizTalk functoids. The functoids are not displaying in the toolbox. We tried installing any possible missing packages, we have tried repairing the toolbox and the visual studio ide. We have even

BizTalk low latency - response time issue calling C# to WCF-Published-Orchestration

回眸只為那壹抹淺笑 提交于 2019-12-13 02:54:39
问题 Calling a WCF published orchestration from a C# program usually is sub-second response time. However, on some occasions, it can take 20-50- seconds between the call in the C# program and the first trace message from the orchestration. The C# that runs calls the WCF runs under HIS/HIP (Host Integration Services/CICS Host-Initiated Processing). Almost everytime I restart the HIS/HIP service, we have a very slow response time, and thus a timeout in CICS. I'm also afraid it might happen during

Execute SQL stored procedure from BizTalk

余生颓废 提交于 2019-12-13 02:22:59
问题 I have three tasks to do in my BizTalk orchestration execute a stored procedure with dynamic parameters do a insert into DB do a update in DB Example data stored procedure [databasename].[storedprocedurename] 'param1Value', 'param2Value' table [databasename].[tablename] (id integer,desc nvarchar(50)) UPDATE Rephrase: Tasks are How to call stored procedure from BizTalk orchestration with parameters from incoming XML message How to do insert into DB table from orchestration (and get back result

BizTalk 2010 Dynamic FTP Send Port Output Directory and File Name Issue

一世执手 提交于 2019-12-13 02:06:10
问题 I have a rather complex requirement - that I have to drop a very specifically named file in an FTP location, and the trick here is that I would often have to drop it into a new location and with a new file name each time (both directory name and file name depending on the year, month, date and time). Obviously, for this purpose I chose to use a Dynamic Send Port, which I have configured using a MessageAssignment Shape. A file will be generated each day. I need to drop it in a remote location

How to fix 'Errors were reported during stylesheet compilation' in XSLT?

故事扮演 提交于 2019-12-13 00:55:25
问题 I have this SaxonApiException when I run my XSLT code on https://xslttest.appspot.com/. It return this error : net.sf.saxon.s9api.SaxonApiException: Errors were reported during stylesheet compilation I tried on another online tester https://www.freeformatter.com/xsl-transformer.html but I got the same error. I tried to split my XSLT code. First part with the process of extract ZipCode in Wages and second part with the process of extract ZipCode in Addresses. Both works when they're separated