Quantcast
Channel: biztalkdeployment Forum Rss Feed
Viewing all 1089 articles
Browse latest View live

New Post: BTDF Support for BizTalk 2016

$
0
0
I've tested Version 5.7 RC1 with BizTalk 2016 and it is working perfectly to deploy applications. I still needed to have the registry entry I described above, but now directed to Deployment Framework for BizTalk 5.7. I'm not sure if that is a unique problem with my development workstation, or not. Thank you, Mr. Abraham, for providing the RC1 release.

Regards,

Scott

New Post: BTDF error : .NET Framework Install Path pointing to v2.0 framework.

$
0
0
Hi All,

i am getting following error on BTDF 5.6 and also on BTDF 5.7 version

Using Microsoft Biztalk Server 2016 : Following error

_System.BadImageFormatException: Could not load file or assembly 'abc.dll' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.. *\Framework\BizTalkDeploymentFramework.targets(1461,5): error MSB3073: The command "C:\Windows\Microsoft.NET\Framework\v2.0.50727\installutil.exe /ShowCallStack "..\abc.dll"" exited with code -1._

i found that:
Target GetSoftwarePaths: is pointing to v2.0 framework
            Using .NET Framework Install Path 'C:\Windows\Microsoft.NET\Framework\v2.0.50727'.
.net install path is some how pointing to v2.0 version, i think this needs to point to 4.0 version

can you please let me know what i am missing, help please :)

New Post: BTDF error : .NET Framework Install Path pointing to v2.0 framework.

$
0
0
i found the issue in btdfproj file, issue is fixed.
thank you

New Post: CodePlex is shutting down

$
0
0
Will you be migrating to GitHub? Elsewhere?

New Post: Moving to GitHub...

$
0
0
I am wondering if there is a plan to move this to GitHub. I saw there is a empty project there, but nothing other than that.

If I can be of some help, let me know and I can share some contact details.

If the project doesn't have a plan to be maintained, that's more than understandable, we just need to know to create a migration plan.

New Post: BTDF for Visual Studio 2015

$
0
0
Is this thread still current? The home page of BTDF in CodePlex says BT2016 is supported. So do have to work without the "Add new project" feature?
I didn't see it in my Visual Studio 2015 when I went to "Add new project".

Thanks,
Neal Walters

New Post: BTDF for Visual Studio 2015

New Post: CodePlex is shutting down

$
0
0
With CodePlex is shutting down, are you going to move this solution to Github?

New Post: BTFD 5.6, VS2013 Update 4; BT 2013 R2

$
0
0
The menu entry Deployment Framework for BizTalk in the Tools menu of Visual Studio is greyed out and the message is "Adding child items to this menu will enable it". It did work previously, i was able to create an MSI file, deploy a solution to the BT server, etc but now the menu item in VS is greyed out.

Any suggestions how to fix this?

jl

New Post: Visual Studio 2015 - Tools - give "Object reference not set to an instance of object"

$
0
0
Hi Tom,

I'm using DeploymentFrameworkForBizTalkV5_7_RC2.msi with BT2016/VS2015.
Works fine in one project, so I don't think it's an install issue.

Today I created my first - a BTDF for a project that no binaries. The whole app is simply pass thru's (no schema, no maps, no pipelines, no orchestrations). Just a binding file on which to do substitution.

In Visual Studio, when I click "Tools", then "Deployment Framework for BizTalk", then any other item, it pops up an error box that says: "Object reference not set to an instance of object"

I added the project using the BTDF add project wizard.

Any ideas what to look at first?

Thanks,
Neal Walters

New Post: Visual Studio 2015 - Tools - give "Object reference not set to an instance of object"

$
0
0
I added a dummy/empty "BizTalk Project" to the solution, and now the menu errors goes away.
So is this a necessity? What is the minimum I have to do? I'll play with it today and try to figure out.
Neal

New Post: Where are you moving BTDF to when CodePlex shuts down?

$
0
0
Where are you moving BTDF to when CodePlex shuts down?

Bill

New Post: How to populate UserName and Password in IISAppPool itemgroup?

$
0
0
Hi,

I'm using BDTF 5.7 with BizTalk Server 2016 and I can't get the IdentityType = SpecificUser in the IISAppPool itemgroup to work 'out-of-the-box'. BTDF keeps throwing error 'IdentityType is set to SpecificUser but either the UserName or the Password is missing.'

Fields are present and populated in the settingsfilegenerator.xml. They are retrieved using PropsFromEnvSettings, as is acknowledged in the output window during deployment:
SetPropertiesFromEnvironmentSettings:
  Setting properties from environment settings file (D:\Development\..\EnvironmentSettings\Exported_LocalSettings.xml)
  Setting property 'SsoAppUserGroup' to value 'BizTalk Application Users'.
  Setting property 'SsoAppAdminGroup' to value 'BizTalk Server Administrators'.
  Setting property 'VDIR_UserPass' to value 'pwd'.
  Setting property 'VDIR_UserName' to value 'username'.
The AppPool definition is as follows:
<ItemGroup>
    <IISAppPool Include="MyAppPool">
      <DeployAction>CreateOrUpdate</DeployAction>
      <DotNetFrameworkVersion>v4.0</DotNetFrameworkVersion>
      <IdentityType>SpecificUser</IdentityType>
      <UserName>$(VDIR_UserName)</UserName>
      <Password>$(VDIR_UserPass)</Password>
      <PipelineMode>Integrated</PipelineMode>
      <UndeployAction>Delete</UndeployAction>
    </IISAppPool>
  </ItemGroup>
But this throws error 'IdentityType is set to SpecificUser but either the UserName or the Password is missing.'

Funny thing is, when I alter the Deployment.btdfproj file by explicitly adding a ItemDefinitionGroup for the IISAppPool with items UserName and Password the deployment succeeds!????
<ItemDefinitionGroup>
    <IISAppPool>
      <IdentityType>SpecificUser</IdentityType>
      <UserName>$(VDIR_UserName)</UserName>
      <Password>$(VDIR_UserPass)</Password>
    </IISAppPool>    
  </ItemDefinitionGroup>

  <ItemGroup>
    <IISAppPool Include="MyAppPool">
      <DeployAction>CreateOrUpdate</DeployAction>
      <DotNetFrameworkVersion>v4.0</DotNetFrameworkVersion>
      <PipelineMode>Integrated</PipelineMode>
      <UndeployAction>Delete</UndeployAction>
    </IISAppPool>
  </ItemGroup>

Output from 'Output Window':

DeployIISAppPools:
  Updating IIS application pool 'MyAppPool'...
  Created/updated IIS application pool 'MyAppPool'.
Anyone any idea why the 'out-of-the-box' IISAppPool definition with SpecificUser doesn't seem to work, but by defining the ItemDefinitionGroup it does? And more importantly, why is the first example not working?

Cheers,
Michel

New Post: Party Setup: Deleting SendPort Reference during Undeploy

$
0
0
Hi - I have the same issue as above with an EDI install. I understand the DeleteParty, but now, how can we automate the restore of the party after the deploy?

For now, I'll just do it manually. The other cheat solution should be to remove the SendPort from the Agreement, then add it back, without deleting the whole party.

Neal

New Post: Including All Config Settings in btdfproj file

$
0
0
I think I just noticed the following. When I do an "add new project" of type BTDF, then select "False" for some values, then those settings are omitted from the .btdfproj file.

Then later, when I want to flip the value to True, there it's not there. So I have to Google, find the doc, or find another projec that has that setting.

Just seems to me that it would be nice to have all the settings, even if the values are False, in the .btfdproj file.

Thanks,
Neal

New Post: Support for a shared EnvironmentSettings file

New Post: Access Database Engine 2010 Redistributable 64bit / 32bit

$
0
0
Hi Tom, I've run into this problem several times but can't remember how I solved it! The BAMTypedDefinition exe requires the Access Database Engine 2010 Redistributable. My problem is, I can't get this to work with the 32bit version. It works 1st time with the 64bit version. However, the ExportBamDefinitionXml will only work with the 32bit version. So, currently I'm having to build my solution with the 64bit version installed, then uninstall and install the 32bit version before deploying the soltion - this hampers productivity a little! I'm running VS2013 / BTS201r2 and BTDF 5.6. The dev vm has Excel 2013 32bit installed.

New Post: CodePlex is shutting down

New Post: BTDF 5.7 and Visual Studio 2015

$
0
0
Hi

I installed BTDF 5.7 on a machine with VS 2015 Professional and BizTalk 2016. But there is no template for BTDF project, nu BTDF entry in tools menu and no toolbar. Why is not the integration working?

New Post: How can set SSO affiliate application settings when it has a different name than the BizTalk application

$
0
0
Hi,

I'm trying to use BTDF but my existing SSO affiliate application has a different name than the BizTalk application. Is there a way to specify SSO name differently than the projectname property?

Thanks,
Mike Douglas
Viewing all 1089 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>