Tim Zielke of Aon will be speaking at MQ Technical Conference v2.0.1.8 (MQTC).
- Tim Zielke’s Session:
- MQ Data Conversion
For more information about MQTC, please go to:
http://www.mqtechconference.com
Regards,
Roger Lacroix
Capitalware Inc.
Tim Zielke of Aon will be speaking at MQ Technical Conference v2.0.1.8 (MQTC).
For more information about MQTC, please go to:
http://www.mqtechconference.com
Regards,
Roger Lacroix
Capitalware Inc.
We are looking for speakers on any product/service that uses IBM MQ (aka WebSphere MQ & MQSeries) for MQ Technical Conference v2.0.1.8 (MQTC). The sessions are to be technical in nature and on any subject so long as it relates to MQ (and you are a SME, Subject Matter Expert, on the topic you are presenting).
We offer speakers the conference fee for free and we also pay for your room at Kalahari Resorts. Note: Breakfast and lunch plus snacks & drinks during the breaks are included for all attendees and speakers.
If you are interested please contact me at callforspeakers@mqtechconference.com
MQTC is a premier event that brings together IBM MQ professionals from across the mid-west and the world. MQTC will offer 71 technical sessions and 15 vendor sessions that are designed to enhance the skills of IT professionals who are using IBM’s IBM MQ on AIX, HP-UX, IBM i (OS/400), Linux, Solaris, Windows and z/OS.
MQTC is the largest conference in the world solely dedicated to IBM MQ.
More information on MQTC can be found at http://www.mqtechconference.com
Regards,
Roger Lacroix
Capitalware Inc.
Capitalware would like to announce MQ Technical Conference v2.0.1.8 (MQTC). MQTC is an event that will educate attendees on current practices, methodologies, administration, problem determination, security best practices and technology trends for IBM MQ. MQTC will offer 71 technical sessions and 15 vendor sessions that are designed to enhance the skills of IT professionals who are using IBM MQ on AIX, HP-UX, IBM i (OS/400), Linux, Solaris, Windows and z/OS. Since we have 5 session rooms at MQTC, there will be 5 concurrent MQ sessions at any given time.
MQTC is the largest conference in the world solely dedicated to IBM MQ (aka WebSphere MQ & MQSeries).
| Date: | September 24 to September 26, 2018 |
| Location: | Kalahari Resorts in Sandusky, Ohio |
| Duration: | 3 Days |
| Early-bird Price: | $449.00 until June 24th, 2018 |
| Regular Price: | $499.00 from June 25th to September 9th, 2018 |
| Group Price (5+ people): | $449.00 until August 24th, 2018 |
| Late/Onsite Price: | $549.00 after September 9th, 2018 |
For more information, please go to: http://www.mqtechconference.com
Regards,
Roger Lacroix
Capitalware Inc.
In Canada, we have a Net Neutrality law, so the FCC Net Neutrality non-sense in the USA does not affect me. I’m not into politics but anyone can clearly see that Ajit Pai (FCC Chairman) motive for getting rid of Net Neutrality in the USA is all about the money. When he’s done at the FCC, he will want to be CEO of Verizon, AT&T, etc. and say to his boys “look at what I did, we can now charge BOTH the customers and the content providers for the same bandwidth or have fast, medium or slow lanes of the internet”.
This is truly a funny Burger King commercial and hopefully teaches everyone why Net Neutrality is important:
Regards,
Roger Lacroix
Capitalware Inc.
A potential bug was discovered in Capitalware’s logging framework, see here for more details, for commercial and “Licensed as Free” products for z/OS and IBM i.
To receive updates to the commercial products, please send an email to support@capitalware.com
The updates for the “Licensed as Free” z/OS products have been posted to Capitalware’s web site, so you can download them immediately.
Note: I am currently having issues with IBM Power Development Platform (PDP) for IBM i OS. All of the compile and link resources have been removed from my running image (maybe missing mount point!?!). As soon as this issue gets fixed, I’ll upload the updates for products for IBM i.
Regards,
Roger Lacroix
Capitalware Inc.
D. Richard Hipp has just released SQLite v3.22.0.
http://www.sqlite.org/news.html
SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. SQLite is the most widely deployed SQL database engine in the world. The source code for SQLite is in the public domain.
Regards,
Roger Lacroix
Capitalware Inc.
T.Rob Wyatt of IoPT Consulting has a new blog posting called “When deprecated != deprecated“. If you use SSL/TLS with IBM MQ then you should read it:
https://t-rob.net/2018/01/19/when-deprecated-deprecated/
Here is the current IBM MQ Depreciated Cipher page.
Regards,
Roger Lacroix
Capitalware Inc.
IBM MQ for HPE NonStop 8.0.1 is the first Continuous Delivery (CD) update for MQ NonStop. (WebSphere MQ NonStop 5.3.1 is the current Long Term Support option). The Continuous Delivery releases incrementally build on the MQ 8.0.0 features, providing early, supported access to the latest MQ capabilities.
https://developer.ibm.com/messaging/2018/01/19/ibm-mq-hpe-nonstop-v8-0-1-now-available/
Regards,
Roger Lacroix
Capitalware Inc.
If I was in a code walk-through of someone else’s code and found the bug that I just found in my code, I would say “that is some bad programming”. So, I’ll admit it – I’m a bad programmer! 😉
A long time ago, I created a nice logging framework (C code) for Capitalware’s products. I build it so that it would work on ALL platforms. i.e. AIX, HP-UX, IBM i (OS/400), Linux, Solaris, Windows and z/OS. I created it with various log modes: Quiet, Normal, Verbose and Debug.
For the log mode of verbose or debug, the output includes both the source filename (i.e. __FILE__) and source line number (i.e. __LINE__). If you’ve developed C code for awhile, you are probably aware of these C preprocessors.
My logging framework is made up of layers. The “application code” is 2 layers removed from the real logging code (just setting the mood).
For Linux, Unix and Windows, the __FILE__ preprocessor is just the path and file name. For IBM i and z/OS, it is the same concept except the source does not have a file extension and the member is surrounded by bracket. i.e. For z/OS, __FILE__ would be ‘ABC.TEST.C(XYZ)’ where “XYZ” is the source member.
For Linux, Unix and Windows, everything is fine. The code simply finds the last path delimiter (i.e. ‘\’ or ‘/’) and then sets the pointer to be +1 of the address (it points at the first of byte of the filename).
For IBM i and z/OS, the code finds the first bracket and sets the pointer to be +1 of the address. Next, it then finds the last bracket and as a quick and dirty thing that C programmers do, I just changed the right bracket “)” to a NULL. i.e. *p = ‘\0’;
Everything has worked fine for years (many, many years). Someone just deployed a beta of MQCCI for z/OS to their z/OS 2.2.0 LPAR and whenever they turned on debugging, the code would crash with:
+CSQX111E +MQQM CSQXDISP User channel exit error, TCB=007B1318 227 reason=0C4000-00000004 +CSQX599E +MQQM CSQXRESP Channel ORT.TO.HOST.MQCCI ended abnormally CSQY291E CSQXDMPS SDUMPX FAILED, RC=00000B08,MQQM,ABN= 0C4-00000004,LOC=MQCCI .????????+00852 +CSQX111E +MQQM CSQXDISP User channel exit error, TCB=007B1088 304 reason=0C4000-00000004 +CSQX599E +MQQM CSQXRESP Channel ORT.TO.HOST.MQCCI ended abnormally
When I ran MQCCI for z/OS on my LPAR and turned on debugging, everything worked as expected. 🙁
The “????????+00852” gave me a clue. I reviewed the compile map and that hex address (852) was located somewhere in my logging framework. I spent hours and hours trying to find something, anything that would explain the 0C4 (accessing wrong/invalid storage). Then it occurred to me, the pointer that was passed into the logging framework did not point to a copy of the value of “__FILE__” but the actual value of “__FILE__”. Hence, I was modifying a constant which clearly now on the newer z/OS LPAR is read-only storage. That is why my program crashed with an 0C4. 🙁
Hence, I’m a bad programmer!!! You got to call it like it is. 😉
Sooooooooooooooooooo. I need to do builds of all Capitalware products (commercial and ‘Licensed as Free’) for IBM i and z/OS platforms ASAP.
Regards,
Roger Lacroix
Capitalware Inc.