New: Universal File Mover v1.0.3

Capitalware is pleased to announce the release of Universal File Mover v1.0.3. It is a free open source project.

Universal File Mover is more than a simple tool to manage the transfer of files. It allows the user to combine business processes into a workflow. The user combines a series of Action commands to create the UFM Workflow XML file. UFM is supported on AIX, HP-UX, IBM i (OS/400), Linux, Mac OS X, Solaris and Windows.

    Changes:

  • Fixed an issue with the Action’s checkObject not setting the error text in the GlobalErrorText.

For more information on Universal File Mover, please go to:
https://www.capitalware.com/ufm_overview.html

Regards,
Roger Lacroix
Capitalware Inc.

Capitalware, IBM i (OS/400), IBM MQ, Java, Linux, macOS (Mac OS X), Open Source, Universal File Mover, Unix, Windows Comments Off on New: Universal File Mover v1.0.3

New: MQ File Mover v4.1.8

Capitalware is pleased to announce the release of MQ File Mover v4.1.8. It is a free open source project.

MQ File Mover is a managed file transfer solution that facilitates the transfer of files using IBM’s WebSphere MQ (aka MQSeries). MQFM processes “Action” commands which are controlled through an MQFM Workflow XML file. The user combines a series of Action commands to create the MQFM Workflow XML file.

    Changes:

  • Fixed an issue with the Action’s checkObject not setting the error text in the GlobalErrorText.

For more information on MQ File Mover, please go to:
http://www.capitalware.biz/mqfm_overview.html

Regards,
Roger Lacroix
Capitalware Inc.

Capitalware, IBM i (OS/400), IBM MQ, Java, Linux, macOS (Mac OS X), MQ File Mover, Open Source, Unix, Windows Comments Off on New: MQ File Mover v4.1.8

Mozilla Firefox 19.0 Released

Mozilla Firefox has just released Mozilla Firefox v19.0.
http://www.mozilla.com/firefox/

Mozilla Firefox is a free and open source web browser descended from the Mozilla Application Suite and managed by Mozilla Corporation. To display web pages, Firefox uses the Gecko layout engine, which implements most current web standards in addition to several features that are intended to anticipate likely additions to the standards

Regards,
Roger Lacroix
Capitalware Inc.

Linux, macOS (Mac OS X), Open Source, Windows Comments Off on Mozilla Firefox 19.0 Released

RFE: Generating MQ Stats for Puts on Remote Queues

Peter Potkay has created an RFE (Request For Enhancement) for generating MQ Statistics for MQPUTs on Remote Queues.

MQ provides statistics for # of PUTs and GETs, and last date/time of PUTs and GETs for Local Queues. It would be real helpful to have these statistics available for individual remote queues. Since XMITQs are often used by multiple Remote Queues, its not feasible to look at the Put statistics for a XMITQ to understand how many puts an individual remote queue had.

Here is the link to vote:
http://www.ibm.com/developerworks/rfe/execute?use_case=viewRfe&CR_ID=31297

Regards,
Roger Lacroix
Capitalware Inc.

IBM MQ Comments Off on RFE: Generating MQ Stats for Puts on Remote Queues

Emergency Broadcast System Hacked

I’m sorry but I can’t stop laughing when I read this article. I especially like the police’s response.
http://www.informationweek.com/security/attacks/zombie-alert-hoax-emergency-broadcast-sy/240148355?cid=nl_IW_daily_2013-02-12_html&elq=f2fe05f4fed74f9eac66c2cababa620e

Regards,
Roger Lacroix
Capitalware Inc.

General, Security Comments Off on Emergency Broadcast System Hacked

dlsym and dlerror Weirdness on Solaris

Lately, I have been complaining about Microsoft’s Visual C++, so I figured I better write about some recent Solaris weirdness.

A customer installed MQAUSX on Solaris v10 that has WebSphere MQ v7.0.1.9 installed. They configured MQAUSX to authenticate the incoming MQ client connections against a remote LDAP server. Everything was working perfectly fine. Here’s what the calling sequence looks like:

MCA (amqrmppa) -> mqausx -> mqausxldap64.so -> client LDAP libraries ———> remote LDAP server

The customer decided to install WebSphere MQ v7.5 along side WebSphere MQ v7.0.1.9 (multi-installation) which is perfectly fine because MQAUSX can work with any version of MQ. Once they configured the WMQ v7.5 queue manager to use MQAUSX, for the first connection, MQAUSX would successfully connect to the LDAP server for authentication but for any other connection, MQAUSX would log the following dlsym error:

ld.so.1: amqrmppa: fatal: _ex_unwind: can't find symbol

I have absolutely no idea what “_ex_unwind” is. The same MQAUSX code runs on AIX, HP-UX, Linux and Solaris but it is only Solaris that has this issue.

If the customer restarts the queue manager then the first connection was fine but all others would get the same dlsym error. My first thought was now what is different in WMQ v7.5 compared to WMQ v7.0.1.9. I did a bunch of searches but found nothing related to WMQ.

After I banged my head against the wall for a while, I decided to do some generic searches about Solaris, dlsym and _ex_unwind. I got a lot of hits but not a lot of information until I found some hits related to an application called “brltty”. brltty had the same issue, worked on the first load of the shared library but failed on all the others. The developer determined that the “if” statement with the dlerror function after the dlsym call was giving a false result.

handle = dlopen ("/var/mqm/exits64/mqausxldap64.so", RTLD_NOW | RTLD_GLOBAL);
if (handle == NULL)
{
   /* log dlopen error */
}
else
{
   myFunc = dlsym(handle, "AuthLDAP");
   if ((error = dlerror()) != NULL)
   {
      /* log dlsym error */
   }
   else
   {
      rcode = (*myFunc)(pFuncParms);
   }

   dlclose(handle);
}

The solution they gave was to add a call to dlerror before dlsym to clear any errors from a previous call (unrelated to the current call sequence). They said that if you do not clear dlerror then it may give a false result because dlerror holds the “last error” and not the “error from last dl*** call”.

handle = dlopen ("/var/mqm/exits64/mqausxldap64.so", RTLD_NOW | RTLD_GLOBAL);
if (handle == NULL)
{
   /* log dlopen error */
}
else
{
   dlerror();    /* Clear any existing error */
   myFunc = dlsym(handle, "AuthLDAP");
   if ((error = dlerror()) != NULL)
   {
      /* log dlsym error */
   }
   else
   {
      rcode = (*myFunc)(pFuncParms);
   }

   dlclose(handle);
}

I do not know if this is true (need to call dlerror before dlsym) for all Unix/Linux platforms but it does appear to be true for Solaris. Anyway, I implemented the solution, gave the update to the customer and now the customer is happy. 🙂

Regards,
Roger Lacroix
Capitalware Inc.

C, Capitalware, IBM MQ, MQ Authenticate User Security Exit, Programming, Unix Comments Off on dlsym and dlerror Weirdness on Solaris

Ooka Island Adventure – Very Interesting!

I was watching an episode of Dragons’ Den and Lowell MacPhee & Joelle MacPhee were on pitching Ooka Island Adventure. Ooka Island Adventure is an online educational web site designed to increase literacy skills for children.

99% of the “educational” web sites out there use the standard “do section 1 and when you pass, move to section 2”, so on and so on. This is fine for most kids but my wife and I know from from personal experience that some kids just don’t learn properly from the standard methods. My wife and I have 5 kids and 4 of them learned how to read without much issue but for 1 son, it was worst than pulling teeth. He would be on section 20 of a web site or book and say “I don’t know what they are talking about” and my wife would say “you did that in section 12 last week”. He would then (if the web site would allow it) redo section 12, “pass it” and go back to section 20 but the next day we would go through the same problem with another issue. The problem was that he was passing the sections but “not learning” the concepts. It was years and YEARS of a lot of frustration getting him to learn how to read.

So, what does my son’s issues have to do with Ooka Island Adventure? Well, they claim that their software uses “adaptive learning algorithm” and this is what caught my attention. They claim that no 2 children go on the same path in learning how to read using their software. If true, children with difficulty learning how to read could greatly improve using Ooka Island Adventure (and parents wouldn’t go crazy during the process).

Note: I am not affiliated or any way associated with Ooka Island Adventure and what I know of it is from the episode of Dragons’ Den.

Food for thought for parents with children having trouble learning how to read.

Regards,
Roger Lacroix
Capitalware Inc.

Education Comments Off on Ooka Island Adventure – Very Interesting!

New: Universal File Mover v1.0.2

Capitalware is pleased to announce the release of Universal File Mover v1.0.2. It is a free open source project.

Universal File Mover is more than a simple tool to manage the transfer of files. It allows the user to combine business processes into a workflow. The user combines a series of Action commands to create the UFM Workflow XML file. UFM is supported on AIX, HP-UX, IBM i (OS/400), Linux, Mac OS X, Solaris and Windows.

    Changes:

  • Fixed an issue with the MQReceive action when the same file is received again but is smaller than the original.

For more information on Universal File Mover, please go to:
https://www.capitalware.com/ufm_overview.html

Regards,
Roger Lacroix
Capitalware Inc.

Capitalware, IBM i (OS/400), IBM MQ, Java, Linux, macOS (Mac OS X), Open Source, Universal File Mover, Unix, Windows Comments Off on New: Universal File Mover v1.0.2

New: MQ File Mover v4.1.7

Capitalware is pleased to announce the release of MQ File Mover v4.1.7. It is a free open source project.

MQ File Mover is a managed file transfer solution that facilitates the transfer of files using IBM’s WebSphere MQ (aka MQSeries). MQFM processes “Action” commands which are controlled through an MQFM Workflow XML file. The user combines a series of Action commands to create the MQFM Workflow XML file.

    Changes:

  • Fixed an issue with the Receive action when the same file is received again but is smaller than the original.

For more information on MQ File Mover, please go to:
http://www.capitalware.biz/mqfm_overview.html

Regards,
Roger Lacroix
Capitalware Inc.

Capitalware, IBM i (OS/400), IBM MQ, Java, Linux, macOS (Mac OS X), MQ File Mover, Open Source, Unix, Windows Comments Off on New: MQ File Mover v4.1.7

LibreOffice 4.0 Released

Document Foundation has just released LibreOffice v4.0.0.
http://blog.documentfoundation.org/2013/02/07/the-document-foundation-announces-libreoffice-4-0/

LibreOffice is a comprehensive, professional-quality productivity suite that you can download and install for free. There is a large base of satisfied LibreOffice users worldwide, and it’s available in more than 30 languages and for all major operating systems, including Microsoft Windows, Mac OS X and Linux (Debian, Ubuntu, Fedora, Mandriva, Suse, …).

Regards,
Roger Lacroix
Capitalware Inc.

Linux, macOS (Mac OS X), Open Source, Windows Comments Off on LibreOffice 4.0 Released