作者最近加紧了更新进度,赞一个。

时间都去哪儿了? 还没好好看4.81, 新版就来了。

这个版本主要是增强日志管理,已经强大到替换delphi 本身的异常处理了。

We are happy to announce the release of kbmMW v. 4.82.00
Professional and Enterprise Edition. kbmMW continues to set the bar for what an n-tier product must be
capable of in the real world! Keywords for this release: - Much improved XSD to Delphi objects generator
- New advanced logging and auditing framework for local and
remote logging (remote is in Enterprise Edition only)
- JSON marshalling improvements
- Many more operators and features on TkbmMWDateTime
- Bug fixes! Look at end of post for detailed list of additions, changes and fixes. Professional and Enterprise Edition is available for all with a current
active SAU.
If your SAU has run out, please visit our shop to extend it with another
12 months. kbmMW CodeGear Edition is available for free for
Delphi XE6/Win32, XE7/Win32, XE8/Win32 and includes kbmMemTable CodeGear
Edition. It can be used for commercial work and require no royalty or
distribution payment for compiled user executables. Please visit https://portal.components4developers.com to download. ---- kbmMW is the premiere n-tier product for Delphi, C++Builder and FPC
on .Net, Win32, Win64, Linux, Java, PHP, Android, IOS, embedded devices,
websites, mainframes and more. Please visit www.components4developers.com for more information about kbmMW. ---- Components4Developers is a company established in 1999 with the purpose
of providing high quality development tools for developers and
enterprises. The primary focus is on SOA, EAI and systems integration
via our flagship product kbmMW. kbmMW is a portable, highly scalable, high end application server and
enterprise architecture integration (EAI) development framework for
Win32, ..Net and Linux with clients residing on Win32, .Net, Linux,
Unix, Mainframes, Minis, Embedded and many other places.
It is currently used as the backbone in hundreds of central systems, in
hospitals, courts, private, industries, offshore industry, finance,
telecom, governements, schools, laboratories, rentals, culture
institutions, FDA approved medical devices, military and more. Important notes (changes that may break existing code)
======================================================
* Removed kbmMWDateTimeToString, kbmMWStringToDateTime,
kbmMWDayOfWeek, kbmMWGetUTCOffset.
Use TkbmMWDateTime methods instead.
* Removed kbmMWGetCurrentTimeNS from kbmMWGlobal.pas.
Use TkbmMWTimeNS.NowUTC.
* Removed standard specific options settings on UniDAC database.
Notice you must set these manually on the database template when
relevant. Previous settings which were automatically set were:
InterBase.BooleanDomainFields=False
InterBase.DescribeParams=True New stuff
=========
- Added new major feature in the form of a new logging/auditing/timing
/exception handling system:
Added TkbmMWLog and TkbmMWCustomLogManager descendant classes with
loads of different logging, assertion, exception handling, timing
and auditing mechanisms.
(kbmMWLog.pas, kbmMWDebugMapFile.pas and kbmMWDebugStackTrace.pas).
It supports optionally dumping stacktrace on Win32/Win64 bit systems.
Notice to have the assert based logging enabled you must define in
kbmMWConfig.inc:
{$DEFINE KBMMW_INSTALL_ASSERT_HANDLER}
Alternatively manually call kbmMWLog_InstallAssertionHandler and
kbmMWLog_UnInstallAssertionHandler.
Notice to have the new exception log handling mechanism enabled you
must define in kbmMWConfig.inc:
{$DEFINE KBMMW_INSTALL_EXCEPTION_HANDLER}
Alternatively manually call kbmMWLog_InstallExceptionHandler and
kbmMWLog_UnInstallExceptionHandler.
Check new sample "SimpleLogging" for examples of use of logging
system.
- Added new remote logging features
(TkbmMWClientLogManager/TkbmMWServerLogManager) based on the new
logging system. (Ent only). See "RemoteLogging" for examples of use.
- Added multiple features to TkbmMWDateTime:
- >=,<=,>,< comparison operators on TkbmMWDateTime and TkbmMWDuration
- inc/dec operators on TkbmMWDateTime
- properties FixedLocalDate, FixedLocalTime, FixedLocalDateTime,
FixedUTCDate, FixedUTCTime and FixedUTCDateTime.
Converts to/from fixed YYYYMMDD, HHNNSSmmm and YYYYMMDDHHNNSSmmm
formatted strings and replaces
kbmMWDateTimeToString/kbmMWStringToDateTime in kbmMWGlobal.pas
- function DayOfWeek:Word; Returns 1 (sunday) to 7 (saturday).
- function SystemLocalTimeOffsetSecs:integer; Returns UTC offset in
seconds for system local time.
- DecodeUTCDate, DecodeUTCTime, DecodeUTCDateTime, EncodeUTCDate,
EncodeUTCTime, EncodeUTCDateTime,
DecodeLocalDate, DecodeLocalTime, DecodeLocalDateTime,
EncodeLocalDate, EncodeLocalTime, EncodeLocalDateTime.
- functions DiffSecs, DiffHours and DiffDays which returns the
difference between this and given TkbmMWDateTime.
- function FromDayOfYear which creates a new TkbmMWDateTime based on
a day of year and a year.
- static class functions FixedLocal and FixedUTC which accepts a
date/time or datetime fixed string and returns a TkbmMWDateTime.
- Added new TkbmMWTimeNS with class methods: NowUTC, ToDateTime and
ToNSTime to convert to handle nanosecs time stamp.
Notice though that the resolution is not to the nsec level. An even
more precise timing is in TkbmMWTiming.
- Added support for interval based and forced flushing to
TkbmMWBufferedStream and all users of it like
TkbmMWFileStoreaMessageQueue, TkbmMWBufferedFileStream.
- Added AnonymousRoot property to TkbmMWJSONMarshal (default false). If
set to true, it will not put the marshalled object within another
object to ensure that the object is named.
Eg. AnonymousRoot=false -> { patient: {property1:10 }}
Eg. AnonymousRoot=true -> { property1:10 }
- Added OnEvent property to WIB transports. Can be used for hooking in
when an event message (like progress or log) is received. Changes/minor additions
=======================
- Removed kbmMWDateTimeToString, kbmMWStringToDateTime, kbmMWDayOfWeek,
kbmMWGetUTCOffset.
Use TkbmMWDateTime methods instead.
- Removed kbmMWGetCurrentTimeNS from kbmMWGlobal.pas.
Use TkbmMWTimeNS.NowUTC.
- Added support for SpecificSettings on TkbmMWUniDACQuery,
TkbmMWUniDACStoredProc and TkbmmWUniDACResolver.
- Removed standard specific options settings on UniDAC database. Notice
you must set these manually on the database template when relevant.
Previous settings which were automatically set were:
InterBase.BooleanDomainFields=False
InterBase.DescribeParams=True
- Updated FireMonkey sample. Fixes
=====
- Fixed pesky thread shutdown issue.
- Fixed XE4 compilation issues.
- Fixed CompareAndExchange 64 bit version for pre XE2 compilers.
- Fixed XML parser bugs in Typed:=true and FilterAllWhiteSpace:=true
scenarios.
- Fixed A/V due to lock not defined early enough in
TkbmMWThreadedCircularBuffer.
- Fixed JSON CR escaping bug.

KBMMW 4.82.00 发布的更多相关文章

  1. kbmmw 5.05.00 发布

    新年前最后几天,kbmmw 发布了新版本,增加一大波功能.we are happy to announce v5.05.50 of our popular middleware for Delphi ...

  2. KbmMW 4.30.00 发布

    今天早上,KbmMW发布了4.30.00 版,这个版本开始支持XE4 的WIN/WIN64/OSX. 暂时不支持ios开发,同时加强了通过JSON 的对象序列化.还有就是解决了我提交的几个有关 汉字处 ...

  3. KBMMW 4.92.00 发布

    We are happy to announce the release of kbmMW Professional and Enterprise Edition. Yet again kbmMW c ...

  4. KBMMW 4.90.00 发布

    kbmMW is a portable, highly scalable, high end application server andenterprise architecture integra ...

  5. KBMMW 4.84.00 发布

    kbmMW is a portable, highly scalable, high end application server and enterprise architecture integr ...

  6. KBMMW 4.83.00 发布

    新版本又来了,端午节都不让大家过好:) 这次终于支持ios 64了,不用我再手工改了. Components4Developers is a company established in 1999 w ...

  7. KBMMW 4.80.00 发布

    一大波更新来了. 4.80.00 March 30 2015 Important notes (changes that may break existing code)        ======= ...

  8. KBMMW 4.70.00 发布

    We are happy to announce the release of kbmMW v. 4.70.00 Professional and Enterprise Edition. kbmMW ...

  9. kbmmw 5.10.00 发布

    We are happy to announce v5.10.00 of the most complete development add on for Delphi and C++Builder ...

随机推荐

  1. 安装新操作系统 Windows 路径设置 节省C盘空间

    1.QQ个人文件夹设置到D盘,D:\ProgramData\QQ 2.IE收藏夹设置到D盘,IE缓存设置到D盘 例如我想把收藏夹默认的保存路径改到D:\study下.关闭Internet Explor ...

  2. 程序员必看:给你一份详细的Spring Boot知识清单

    在过去两三年的Spring生态圈,最让人兴奋的莫过于Spring Boot框架.或许从命名上就能看出这个框架的设计初衷:快速的启动Spring应用.因而Spring Boot应用本质上就是一个基于Sp ...

  3. J2SE 8的Lambda --- 语法

    语法例子 LambdaGrammarTest lambdaTest = new LambdaGrammarTest(); // 1. 能够推导出类型的,可以不写类型 String[] planets ...

  4. time 时间内置模块3种形态的转化

    import time print(time.time())  #获得时间戳 1526998642.877814 print(time.sleep(2))  #停止2秒 print(time.gmti ...

  5. EF时间模糊查询

    public List<Vote> SelectVoteByTime(string time) { return db.Vote.ToList().Where(x => x.V_Be ...

  6. YAML描述与Python的对应关系

    YAML是"YAML Ain't a Markup Language"的首字母缩写,其语法简单,结构通过空格来展示,(列表)项目使用"-"来代表,(字典)键值对 ...

  7. Cachefiled

    NFS不同共享客户端间的数据不同步 问题现象 当您用台ECS挂载同一个NFS文件系统,在ECS-A上append写文件,在ECS-B用tail -f观察文件内容的变化.在ECS-A写完之后,在ECS- ...

  8. How to Pronounce T and D between Consonants

    How to Pronounce T and D between Consonants Share Tweet Share Tagged With: Dropped T What happens to ...

  9. linux 杂

    set -e表示一旦脚本中有命令的返回值为非0,则脚本立即退出,后续命令不再执行; set -o pipefail表示在管道连接的命令序列中,只要有任何一个命令返回非0值,则整个管道返回非0值,即使最 ...

  10. jsp页面添加时间

    <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> <body& ...