New Post: InstallWizard.xml
Does anyone know if there is any way to fill in the blanks for what the InstallWizard.xml prompts for? I want to run the MSI process the framework does, but just skip the prompts. I've read a lot of...
View ArticleNew Post: Start Deploying to BizTalk Checkbox
Does anyone know what gets invoked as the result of clicking the "Start Deploying to BizTalk" checkbox at the end of the install? Is it MSBuild or something else? Thanks, Craig
View ArticleNew Post: Start Deploying to BizTalk Checkbox
MSBuild is launched the same way as when you choose Deploy from the Start menu. Tom
View ArticleNew Post: SSOSettingsFileReader error
SSOSettingsFileReader.dll is always deployed to the GAC automatically. Do you have anything named AdditionalAssemblies in your .btdfproj? Please search for Deploying additional assemblies to GAC... in...
View ArticleNew Post: SSOSettingsFileReader error
I am only deploying schemas, maps, orchestration, and pipelines. I have Include SSO true. An application is being created in SSO when I see it from SSOSetting Editor. I am not recognising that how...
View ArticleNew Post: SSOSettingsFileReader error
Please capture the log output from the DeployResults.txt on one of the servers. Search for Deploying additional assemblies to GAC. Thanks, Tom
View ArticleNew Post: SSOSettingsFileReader error
Build started 2013-06-13 17:46:00. Project "D:\BizTalkApps\XXXXXXXXXXXXXXX\1.0\Deployment\Deployment.btdfproj" (Deploy target(s)): Target Deploy:Target SetModeDeploy: DEPLOYING APPLICATION TO...
View ArticleNew Post: SSOSettingsFileReader error
I also tried this link alos but no luck..http://snefs.blogspot.nl/2013/05/biztalk-deployment-framework-btdf-51.html
View ArticleNew Post: SSOSettingsFileReader error
You have added a custom target CustomSSODeploy that runs before the assemblies have even been deployed. You should schedule your custom target to run after DeploySharedAssemblies, and probably after...
View ArticleNew Post: SSOSettingsFileReader error
Below is my btdf project file. Please suggest what I need to change in this to make it work.<?xml version="1.0" encoding="utf-8"?><!-- Deployment Framework for BizTalk Copyright (C) 2004-2012...
View ArticleNew Post: SSOSettingsFileReader error
Hi Tom, I found the real issue now but not the solution. I have BizTalk clustered environment(2 instances). When I run the msi on instance1 it works fine. But when I run the msi from instance2 it gives...
View ArticleNew Post: SSOSettingsFileReader error
As I mentioned above, you have implemented your own custom SSO deployment (CustomSSODeploy target) and that is the source of the problem. It appears that the custom target is a copy of the default...
View ArticleNew Post: execute SQL scripts from BTDF
Hi, if you are using AdditionalFiles to include the SQL file, then your path in CustomDeployTarget should be ..\SQLQuery.sql. The current directory when the script runs is the directory containing the...
View ArticleNew Post: Get value for SetEnvUIConfig from real environment settings ?
Thans for your response ! I knew it works the way you described it. I wanted to keep the dialog of SetUiEnv but wanted to provide defaults for it... So on the dev and test machines I can do a quick...
View ArticleNew Post: execute SQL scripts from BTDF
Hi Tom Greetings. i tried giving like this.<Exec Command="sqlcmd.exe -S ZEW-V-0AC2807A\ISDEV -i ..\DBScripts\SQLQuery.sql" /> Its not working as it is searching for the .sql file in the location...
View ArticleNew Post: execute SQL scripts from BTDF
Why do you think it is searching for the file in the SQL Server bin folder where sqlcmd.exe resides? Is your folder structure:\My.sln \Deployment My.btdfproj \DBScripts SQLQuery.sql If so, when you use...
View ArticleNew Post: Add Reference To Another BizTalk Application during deploy
I have a situation where I need to reference a common biztalk application from a separate biztalk application so I can utilize the common pipelines I have created in the secondary app. I could have...
View ArticleNew Post: Add Reference To Another BizTalk Application during deploy
Here is the entry you need to put into Deployment.btdfproj.<ItemGroup><AppsToReference Include="Shared Application Name Goes Here" /></ItemGroup>Chris J AlbertsonPrincipal |...
View Article