New Post: How to bounce a list of BizTalk host instances
Hi Milan, It's still the order of evaluation issue. The PropertyGroup and ItemGroup have already been evaluated by the time the properties are created from the settings spreadsheet. Assuming that...
View ArticleNew Post: How to bounce a list of BizTalk host instances
OK, great! I've debated moving the SetPropertiesFromEnvironmentSettings step very early in the process and then internally restarting the script using the MSBuild task, which, in theory, should make...
View ArticleNew Post: How to bounce a list of BizTalk host instances
FYI, I've implemented a transparent fix for this issue in v6.0 that enables the normal MSBuild syntax as in your original example, with no workaround necessary. Tom
View ArticleNew Post: How to bounce a list of BizTalk host instances
That's great news Tom ! Keep up with good work !
View ArticleNew Post: Deploy new orchestrations without removing application
Any update on this? I mean I don't want to go down that route and insert all the skip flag conditions. This seems to me too complicated and as you said it will be pain when you want to install a new...
View ArticleNew Post: possible to use enviorment variables in .btdfproj file?
truly newbie here, any possible way to use the environment variable in the btdf project file itself? would it work within visual studio deployment? Thanks!!!
View ArticleNew Post: possible to use enviorment variables in .btdfproj file?
All environment variables present when MSBuild.exe is launched are automatically available as MSBuild properties named $(EnvironmentVarName) within the .btdfproj. That is always the case, so within...
View ArticleNew Post: Deploying ESB using BTDF
tfabraham wrote: Please see the ESBToolkitSSOResolver sample application. It's just another property and ItemGroup in your .btdfproj. One extra manual step that I could not avoid is that you must...
View ArticleNew Post: Deploying ESB using BTDF
Unfortunately yes. Microsoft never included a tool that could do the export outside of Visual Studio. I dug deep into their code years ago and it all seemed too tied into the DSL Toolkit and other...
View ArticleNew Post: Deploying ESB using BTDF
tfabraham wrote: Unfortunately yes. Microsoft never included a tool that could do the export outside of Visual Studio. I dug deep into their code years ago and it all seemed too tied into the DSL...
View ArticleNew Post: BAM WCF Interceptor deployment support
Is there a way to deploy BAM WCF interceptor config file using deployment framework?
View ArticleNew Post: BAM WCF Interceptor deployment support
Yes there is.<ItemGroup> <AdditionalFiles Include="MyInterceptor.xml"> <LocationPath>..\</LocationPath> </AdditionalFiles> </ItemGroup> <Target...
View ArticleNew Post: BAM WCF Interceptor deployment support
Thanks for quick response. I was able to deploy interceptor using following target <Target Name="DeployBamInterceptor" AfterTargets="DeployBam"> instead of one you mentioned. Due to some reason,...
View ArticleNew Post: Redeploy without undeploy to avoid changing BatchID number
Is there a way to use a BTDF msi to deploy (redeploy?) an application without undeploying it first? The problem I'm running into is in an application I inherited that uses parties and an agreement to...
View ArticleNew Post: Redeploy without undeploy to avoid changing BatchID number
Is it failing to undeploy because the agreement references one or more send ports in the application? If so, as a workaround I wonder if you could add another BizTalk app that holds only the send...
View ArticleNew Post: Deploy solution on development system
Hi there, I want to quick deploy my solution on my development system to test it by simply clicking the single right arrow in the BTDF toolbar. The first time this worked just fine. But now I get an...
View ArticleNew Post: Redeploy without undeploy to avoid changing BatchID number
Yes, the failure is because of a port reference in the agreement. The first suggestion sounds like it would work, but it is a little late in the process to do that much reengineering. I tried the...
View ArticleNew Post: Deploy solution on development system
It sounds like you have either deleted "BizTalk Application 1" or deployed into it, or perhaps made a different app the default. The Deployment Framework expects to fully control the target...
View Article