Showing posts with label Biztalk (talk to Applications). Show all posts
Showing posts with label Biztalk (talk to Applications). Show all posts

Wednesday, September 10, 2014

Script move files from source to destination.

@echo off
set sourcedir="d:\Projects\run\MVK.Common.MMM\WCFService"
set destdir="d:\Projects\run\WCFService\MVK.Common.BizTalk.MMM"

REM - Copy WCF Files into IIS Server
xcopy /E /Q /Y /I %sourcedir% %destdir%   

Friday, September 5, 2014

BTDS TeamFoundation Dlls



Path of


using Microsoft.TeamFoundation.Client;
using Microsoft.TeamFoundation.Framework.Common;
using Microsoft.TeamFoundation.Framework.Client;


C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ReferenceAssemblies\v2.0

Sunday, October 6, 2013

Microsoft WCF Test Client Issue Due To Oracle Dll installed in Biztalk Machine


About this Document
Purpose
This document shall address to resolve the Oracle.DataAccess.dll,version=2.111.7.0 not found while using Microsoft WCF Test Client.
Issue
When invoking a service from Microsoft WCF Test Client the below error appears as shown in below Figure


Fig 1.0 Issue
Reason
This Issue may arise if the box is installed with WCF LOB adapter after installation of Biztalk Server 2010.Because there is a conflict between Oracle.DataAccess.dll


Resolution
To Uninstall Microsoft Biztalk Adapter Pack




Uninstallation of Microsoft Biztalk Adapter Pack
For the Microsoft Biztalk Adapter Pack Uninstallation .The uninstallation steps are given as below order.


Start -> Control Panel -> Programs and features


Fig 2
Select “Programs and Features”










  • Right click on Microsoft Biztalk Adapter pack and Click “Uninstall




Fig 3




Fig 4


Select “Yes” 

Thursday, October 11, 2012

Logging error in Biz talk Orchestration

System.Diagnostics.EventLog.WriteEntry("Error - Get Member Info Business Service", System.String.Format("SOAPException occurred. Exception = {0}", SOAPFault.ToString()), System.Diagnostics.EventLogEntryType.Error);


SOAPFault is a Exception Object Name


This is used in Expression shape:


Wednesday, March 7, 2012

Write Biztalk error message in event log

FaultMsg is a message

System.Diagnostics.EventLog.WriteEntry("Error - ProductMember Business Service", System.String.Format("GetMemberProducts Opertaion : GenericServiceFault occurred - FaultID:{0}, Message:
{1}", FaultMsg.detail.FaultId, FaultMsg.detail.Message), System.Diagnostics.EventLogEntryType.Error);