Voting

: three plus five?
(Example: nine)

The Note You're Voting On

j dot romero dot 1214 at gmail dot com
12 years ago
There might be some error codes missing from the package depending on the MQ client version you are using. To prevent further versions from returning an empty error message simply use a function such as:

<?php
//... wrapper class ...

public function getErrorMessage ($errorCode) {
$errorString = mqseries_strerror($errorCode);
if (!empty(
$errorString)) {
return
$errorString;
} else {
switch (
$errorCode) {
// insert missing codes here
case 2537:
return
"Channel is not available.";
case
2538:
return
"Host is not available.";
case
2539:
return
"Channel configuration error.";
case
2540:
return
"Channel name is unknown.";
default:
return
"Unexpected error ({$errorCode})";
}
}
}

// ... wrapper class ...
?>

<< Back to user notes page

To Top