KBMMW 4.82.00 发布

作者最近加紧了更新进度,赞一个。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.
时间: 2024-08-05 21:15:29

KBMMW 4.82.00 发布的相关文章

KBMMW 4.90.00 发布

kbmMW is a portable, highly scalable, high end application server andenterprise architecture integration (EAI) development framework forWin32, ..Net and Linux with clients residing on Win32, .Net, Linux,Unix, Mainframes, Minis, Embedded and many othe

KBMMW 4.70.00 发布

We are happy to announce the release of kbmMW v. 4.70.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! New stuff ========= - Added support for marshalling and dema

KBMMW 4.83.00 发布

新版本又来了,端午节都不让大家过好:) 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 4.84.00 发布

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 o

KBMMW 4.80.00 发布

一大波更新来了. 4.80.00 March 30 2015 Important notes (changes that may break existing code)        ======================================================        * Changed messaging transport event OnServerRequestException to OnServerException.        * Rem

kbmmw 5.10.00 发布

We are happy to announce v5.10.00 of the most complete development add on for Delphi and C++Builder for building native modular and fast multi-tier solutions. The release includes: NEW! SmartBind now fully supports VCL, FMX, including image/graphics

KBMMW 4.81.00 发布

这次更新的速度非常快. 4.81.00 May 9 2015 Important notes (changes that may break existing code) ====================================================== * Changed TkbmMWOnFileAccess event to allow rewriting Path. TkbmMWOnFileAccess = procedure (Sender:TObject; v

KbmMW 4.50.00 测试版发布

We are happy to announce the release of kbmMW v. 4.50.00 Beta Professional and Enterprise Edition with XE6 support. 4.50.00 Beta 1 May 12 2014        New stuff         =========         - Added XSD parser support and code generator. A demo is        

kbmmw 5.0 beta1 发布

经过大半年的等待,kbmmw 的新版终于来了.经过近5年的打磨, kbmmw 的版本号升级到5了. 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, L