compatibility

Dynamics AX 2009 / BizTalk Server 2013 Compatibility

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-06 12:34:10
Is BizTalk Server 2013 compatible with the Dynamics AX 2009 AIF BizTalk Adapter? I've searched but can't find any information to say either way. I found that BizTalk Server 2010 is compatible with AX2009 SP1 RU7: http://blogs.msdn.com/b/emeadaxsupport/archive/2011/09/29/microsoft-biztalk-server-2010-passes-compatibility-testing-with-microsoft-dynamics-ax-2009-sp1.aspx (Apologies if this is not the correct site for this question, as it's not directly programming related; however I couldn't find another Stack Exchange site which looked more suitable). I did not find anything newer announced at

Java 8 Incompatible Types

对着背影说爱祢 提交于 2019-12-06 08:53:31
问题 Here's the simple code import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.Map; public class SimpleTest { public static void main(String[] args) { final ArrayList<Map<String, Object>> maps = newArrayList( createMap("1", "a", Collections.EMPTY_MAP, Collections.EMPTY_MAP), createMap("2", "b", Collections.EMPTY_MAP, Collections.EMPTY_MAP), createMap("3", "c", Collections.EMPTY_MAP, Collections.EMPTY_MAP) ); System.out.println(" maps = " + maps); }

Protobuf backward compatibility and proto3 vs proto2

给你一囗甜甜゛ 提交于 2019-12-06 07:49:56
One of selling points of Protobuf was backward compatibility, i.e. developers can evolve format, and older clients can still use it. Now with new Protobuf version called proto3, the IDL language itself is not compatible as such things as options , required where dropped, new syntax for enuns, no extention. Does it mean that using proto3 there's no way to produce binary that older proto2 would read/understand also? It is like you have to continue to use proto2. If you start using proto3, you can't talk to older systems, or have to rewrite, recompile all those .proto s That is compatibility

SSIS: version of ODBC source is not compatible with this version of the dataflow

北城余情 提交于 2019-12-06 05:03:28
I'm using Visual Studio 2015 to create a simple SSIS package. The data source is a DB2 database, and I'm using an ODBC driver on my workstation to connect to DB2. The target is SQL Server 2014. The package runs fine locally, but whenever I run it on the server, I'm having trouble with the ODBC data source. The driver on the server is the exact same one with the exact same name as the one on my workstation. To get the package into the server, I've imported the dtsx file into SSIS in Stored Packages. I've also tried to deploy the project to the Integration Service Catalog, but I get one of these

.Net Assembly /dll Sharing and Deploying

六眼飞鱼酱① 提交于 2019-12-06 04:54:52
问题 We have 3 software products which use the same .net dlls(code + legacy). All these use common functionality present across 3/4 dlls. i wanted to know how and where to deploy these dlls. And which is the most standard way of doing this. S1] Along with each product in its install dir -- probably easiest way to do. (but if any updates are to happen in the shared dll ..it has to be done for all 3 dlls.) S2]Put it in common files folder? S3] Does System GAC help in this? (Put all 3 in GAC and the

Does Visual Studio 2010 have backward compatibility with visual studio 2008's addins?

安稳与你 提交于 2019-12-06 04:42:17
I have some really great addins in Visual Studio 2008 that I don't want to lose, but I've heard that Visual Studio 2010 will use MEF. Does it mean that I can say goodbye to my dancing banana ? There are three levels of extensibility in Visual Studio : Macros Add-ins VS Packages I can confirm that VS2008 Add-ins work perfectly well in VS2010 beta2. You just have to edit the .AddIn file and replace "9.0" by "10.0". I don't know about VS Packages though. Unless the direction has changed from the first CTP released last year, the old method of plugging in still works. We should have a new beta

What is the latest version Hibernate for Java 1.5

徘徊边缘 提交于 2019-12-06 04:18:42
We are using Weblogic 10, so maximum Java allowed there is Java 1.5 I inherited the code using EJB3 So, I will have to work on it within a realm of my Java 1.5 limitation. I think, original designers had in mind to use Hibernate for implementing Data access, and at some point we will migrate to JBOSS, so would like to keep Hibernate as a choice There is one sitting in a project - version 3.2.1.ga. Same is a version for hibernate-entitymanager.jar What is the latest version of Hibernate that I can use for this? I understand there were some changes in it. Hibernate 3.x workes with JDK 4 and 5,

How to use Objective-C __nonnull in a backwards-compatible way?

非 Y 不嫁゛ 提交于 2019-12-06 04:17:01
问题 Xcode has recently added __nonnull , __nullable , etc. attributes. However, they're not supported by older versions of clang and other compilers. How can I use these attributes in a compatible way? I hoped something like this would work: #ifndef NS_ASSUME_NONNULL_BEGIN #define __nonnull #endif but it seems that NS_ASSUME_NONNULL_BEGIN is not a real macro, and it's "not defined" in Xcode7. And it would make sense for this to work: #if !defined(__is_identifier) || __is_identifier(__nonnull)

How to hide .NET Core compatibility warnings when referencing .NET 4.6 NuGet package in VS 2017.3

浪子不回头ぞ 提交于 2019-12-06 03:02:47
问题 I'm working on a .NET Core CLI app that needs to reference a 3rd party NuGet package that has not been published with a netcoreappX.X target. I've run the Analyze Project Portability tool on it and got 100% compatibility, which is expected, as this is a relatively simple library. The problem then comes in the form of this annoying NuGet warning: Warning: NU1701 Package 'XXXXXX 1.0.0' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version

Rails 2.3 and rspec-rails compatability

故事扮演 提交于 2019-12-06 02:58:02
问题 What version of the rspec-rails gem is still compatible with Rails 2.3 branch (2.3.14 specifically)? I've tried 2.1.0 , but that one's also for Rails >= 3.0. Any other dependencies or version limitations that I should be aware of? Thanks. 回答1: Version 1.3.4 is the latest supported version for Rails 2.x. http://rubygems.org/gems/rspec-rails/versions/1.3.4 来源: https://stackoverflow.com/questions/9274329/rails-2-3-and-rspec-rails-compatability