ekaranto-rubywmq 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. data/.document +4 -0
  2. data/LICENSE.txt +201 -0
  3. data/README.md +408 -0
  4. data/Rakefile +87 -0
  5. data/examples/each_a.rb +16 -0
  6. data/examples/each_b.rb +25 -0
  7. data/examples/each_header.rb +22 -0
  8. data/examples/files_to_q.cfg +24 -0
  9. data/examples/files_to_q.rb +31 -0
  10. data/examples/get_a.rb +19 -0
  11. data/examples/get_client.rb +35 -0
  12. data/examples/put1_a.rb +9 -0
  13. data/examples/put1_b.rb +17 -0
  14. data/examples/put1_c.rb +16 -0
  15. data/examples/put_a.rb +19 -0
  16. data/examples/put_b.rb +27 -0
  17. data/examples/put_dlh.rb +25 -0
  18. data/examples/put_dynamic_q.rb +22 -0
  19. data/examples/put_group_a.rb +35 -0
  20. data/examples/put_group_b.rb +37 -0
  21. data/examples/put_rfh.rb +51 -0
  22. data/examples/put_rfh2_a.rb +27 -0
  23. data/examples/put_rfh2_b.rb +27 -0
  24. data/examples/put_xmit_q.rb +17 -0
  25. data/examples/q_to_files.cfg +17 -0
  26. data/examples/q_to_files.rb +32 -0
  27. data/examples/request.rb +44 -0
  28. data/examples/server.rb +81 -0
  29. data/ext/decode_rfh.c +348 -0
  30. data/ext/decode_rfh.h +45 -0
  31. data/ext/extconf.rb +30 -0
  32. data/ext/extconf_client.rb +24 -0
  33. data/ext/generate/generate_const.rb +140 -0
  34. data/ext/generate/generate_reason.rb +233 -0
  35. data/ext/generate/generate_structs.rb +82 -0
  36. data/ext/generate/wmq_structs.erb +341 -0
  37. data/ext/wmq.c +90 -0
  38. data/ext/wmq.h +371 -0
  39. data/ext/wmq_message.c +671 -0
  40. data/ext/wmq_mq_load.c +217 -0
  41. data/ext/wmq_queue.c +1411 -0
  42. data/ext/wmq_queue_manager.c +1570 -0
  43. data/lib/rubywmq.rb +1 -0
  44. data/lib/wmq/message.rb +70 -0
  45. data/lib/wmq/queue_manager.rb +110 -0
  46. data/lib/wmq/version.rb +3 -0
  47. data/lib/wmq.rb +16 -0
  48. data/nbproject/project.properties +11 -0
  49. data/nbproject/project.xml +17 -0
  50. data/tests/test.rb +318 -0
  51. metadata +115 -0
data/.document ADDED
@@ -0,0 +1,4 @@
1
+ ext/wmq.c
2
+ ext/wmq_queue_manager.c
3
+ ext/wmq_message.c
4
+ ext/wmq_queue.c
data/LICENSE.txt ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2006 - 2012 J. Reid Morrison
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,408 @@
1
+ ## rubywmq
2
+
3
+ RubyWMQ is a high performance native Ruby interface into WebSphere MQ.
4
+
5
+ * http://github.com/reidmorrison/rubywmq
6
+
7
+ ### Features
8
+
9
+ The Ruby WMQ interface currently supports the following features:
10
+
11
+ High performance
12
+
13
+ * Able to read over 2000 messages per second from a Queue
14
+ * (Non-persistent messages, < 4K each, MQ V6, running on Windows Laptop)
15
+
16
+ Full support for the entire MQ Administration interface (MQAI)
17
+
18
+ * Create Queues
19
+ * Query Queue Depths
20
+ * etc…
21
+
22
+ Full support for all WebSphere MQ Headers
23
+
24
+ * Rules and Format Header 2 (RFH2)
25
+ * Rules and Format Header (RFH)
26
+ * Name Value pairs returned as a Hash
27
+ * Dead Letter Header
28
+ * Transmission Queue Header
29
+ * IMS, CICS, …..
30
+
31
+ Conforms with the Ruby way. Implements:
32
+
33
+ * each
34
+ * Code blocks
35
+
36
+ Relatively easy interface for reading or writing messages
37
+
38
+ * MQ Headers made easy
39
+
40
+ Single Ruby WMQ auto-detection library that concurrently supports:
41
+
42
+ * WebSphere MQ Server Connection
43
+ * WebSphere MQ Client Connection
44
+
45
+ Includes latest client connection options such as SSL
46
+
47
+ Tested with WebSphere MQ V5.3, V6, V7, and V7.5
48
+
49
+ Is written in C to ensure easier portability and performance
50
+
51
+ ### Compatibility
52
+
53
+ Ruby
54
+
55
+ * RubyWMQ only works on Ruby MRI on with Ruby 1.8.7, Ruby 1.9.3, or greater
56
+ * For JRuby, see http://github.com/reidmorrison/jruby-jms
57
+
58
+ WebSphere MQ
59
+
60
+ * RubyWMQ parses the header files that come with WebSphere MQ so always
61
+ stays up to date with the latest structures and return codes
62
+ * RubyWMQ has been tested against WebSphere MQ 5, 6, and 7.5
63
+
64
+ ## Example
65
+
66
+ ```ruby
67
+ require 'rubygems'
68
+ require 'wmq'
69
+
70
+ # Connect to a local queue manager called 'TEST' and put a single message
71
+ # on the queue 'TEST.QUEUE'
72
+ WMQ::QueueManager.connect(:q_mgr_name=>'TEST') do |qmgr|
73
+ qmgr.put(:q_name=>'TEST.QUEUE', :data => 'Hello World')
74
+ end
75
+ ```
76
+
77
+ ## More Examples
78
+
79
+ There are many examples covering many of the ways that RubyWMQ can be used. The examples
80
+ are installed as part of the Gem under the 'examples' sub-directory. The examples can
81
+ also be be viewed at https://github.com/reidmorrison/rubywmq/tree/master/examples
82
+
83
+ Put one message to a Queue (Without opening the queue)
84
+
85
+ * put1_a.rb
86
+ * put1_b.rb
87
+ * put1_c.rb
88
+
89
+ Put messages to a Queue
90
+
91
+ * put_a.rb
92
+ * put_b.rb
93
+
94
+ Read one message from a queue
95
+
96
+ * get_a.rb
97
+
98
+ Reading Several messages from a Queue:
99
+
100
+ * each_a.rb
101
+ * each_b.rb
102
+ * each_header.rb
103
+
104
+ Connect using MQ Client connection
105
+
106
+ * get_client.rb
107
+
108
+ Put Messages to a Queue as a group
109
+
110
+ * put_group_a.rb
111
+ * put_group_b.rb
112
+
113
+ Put Messages to a Queue, including message headers
114
+
115
+ * put_dlh.rb
116
+ * put_dynamic_q.rb
117
+ * put_rfh.rb
118
+ * put_rfh2_a.rb
119
+ * put_rfh2_b.rb
120
+ * put_xmit_q.rb
121
+
122
+ Writing multiple files to a queue, where each file is a separate message:
123
+
124
+ * files_to_q.rb, files_to_q.cfg
125
+
126
+ Writing the contents of a queue to multiple files, where each message is a separate file:
127
+
128
+ * q_to_files.rb, q_to_files.cfg
129
+
130
+ Sample “client” and “server” side applications for sending or processing requests
131
+
132
+ * request.rb
133
+ * server.rb
134
+
135
+ ## Documentation
136
+
137
+ Documentation for the RubyWMQ Gem is generated automatically when the gem is installed.
138
+ It is also available [online](http://rubywmq.rubyforge.org/doc/index.html)
139
+
140
+ ## Installation
141
+
142
+ ### Installing on UNIX/Linux
143
+
144
+ Install a 'C' Compiler, GNU C++ is recommended
145
+
146
+ Install Ruby using the package manager for your platform
147
+
148
+ Also install RubyGems and ruby-dev or ruby-sdk packages if not already installed
149
+
150
+ Install the [WebSphere MQ Client and/or Server](http://www.ibm.com/developerworks/downloads/ws/wmq/)
151
+
152
+ * Note: Install the Development Toolkit (SDK) and Client
153
+
154
+ Install RubyWMQ Gem
155
+
156
+ gem install rubywmq
157
+
158
+ If no errors appear RubyWMQ is ready for use
159
+
160
+ #### Installation Errors
161
+
162
+ Use this command to find the directory in which the gems are installed
163
+
164
+ gem env
165
+
166
+ When WebSphere MQ is not installed in the default location, call the build
167
+ command directly and supply the location explicitly:
168
+
169
+ ruby extconf.rb --with-mqm-include=/opt/mqm/inc --with-mqm-lib=/opt/mqm/lib
170
+ make
171
+
172
+ For platforms such as AIX and HP-UX it may be necessary to statically link in
173
+ the WebSphere MQ client library when the auto-detection build above does not work.
174
+ This build option is a last resort since it will only work using a client connection
175
+
176
+ ruby extconf_client.rb --with-mqm-include=/opt/mqm/inc --with-mqm-lib=/opt/mqm/lib
177
+ make
178
+
179
+ ### Installing on Windows
180
+
181
+ #### Install Ruby and DevKit
182
+
183
+ Download and install the Ruby installer from http://rubyinstaller.org/downloads/
184
+
185
+ * Select "Add Ruby executables to your PATH" during the installation
186
+
187
+ Download and install the Development Kit from the same site
188
+
189
+ * Extract files into c:\DevKit
190
+
191
+ Open a command prompt and run the commands below:
192
+
193
+ cd c:\DevKit
194
+ ruby dk.rb init
195
+
196
+ If you experience any difficulties, see https://github.com/oneclick/rubyinstaller/wiki/Development-Kit
197
+
198
+ #### Install WebSphereMQ
199
+
200
+ Install the [WebSphere MQ Client and/or Server](http://www.ibm.com/developerworks/downloads/ws/wmq/)
201
+
202
+ * Note: Install the Development Toolkit (SDK) and Client
203
+
204
+ #### Install the RubyWMQ Gem
205
+
206
+ call "c:\DevKit\devkitvars.bat"
207
+ gem install rubywmq --platform=ruby
208
+
209
+ #### Installation Errors
210
+
211
+ Use this command to find the directory in which the gems are installed
212
+
213
+ gem env
214
+
215
+ The path to the rubywmq gem will be something like
216
+
217
+ C:\Ruby193\lib\ruby\gems\1.9.1\gems\rubywmq-2.0.0\ext
218
+
219
+ When WebSphere MQ is not installed in the default location, change to the directory
220
+ above and call the build command directly while supplying the location explicitly:
221
+
222
+ call "C:\DevKit\devkitvars.bat"
223
+ ruby extconf.rb --with-mqm-include="C:\Program Files\IBM\WebSphere MQ\Tools\c\include"
224
+ nmake
225
+
226
+ ## Verifying the build
227
+
228
+ ### Verifying a local WebSphere MQ Server installation
229
+
230
+ Create a local Queue Manager called TEST. Select the option to create the server
231
+ side channels.
232
+
233
+ Create a local queue called TEST.QUEUE
234
+
235
+ Run the following Ruby Code in an irb session:
236
+
237
+ ```ruby
238
+ require 'rubygems'
239
+ require 'wmq'
240
+ WMQ::QueueManager.connect(:q_mgr_name=>'TEST') do |qmgr|
241
+ qmgr.put(:q_name=>'TEST.QUEUE', :data => 'Hello World')
242
+ end
243
+ ```
244
+
245
+ ## Rails Installation
246
+
247
+ After following the steps above to compile the source code, add the following
248
+ line to Gemfile
249
+
250
+ gem 'rubywmq'
251
+
252
+ ## Architecture
253
+
254
+ RubyWMQ uses an automatic detection library to figure out whether a Client or Server
255
+ is installed locally. This prevents issues with having to statically link with
256
+ both the client and server libraries and then having to select the "correct"
257
+ one on startup.
258
+
259
+ Additionally, this approach allows RubyWMQ to be simultaneously connect to both a local
260
+ Queue Manager via server bindings and to a remote Queue Manager using Client bindings.
261
+
262
+ Instead of hard coding all the MQ C Structures and return codes into RubyWMQ, it
263
+ parses the MQ 'C' header files at compile time to take advantage of all the latest
264
+ features in new releases.
265
+
266
+ ## FAQ
267
+
268
+ ### Programs fail with: `require': no such file to load -- wmq (LoadError)
269
+
270
+ After successfully installing RubyWMQ using the command “gem install rubywmq”,
271
+ program fails with output similar to the following:
272
+
273
+ rubywmq-0.3.0/tests/test.rb:4:in `require': no such file to load -- wmq (LoadError)
274
+ from rubywmq-0.3.0/tests/test.rb:4
275
+
276
+ Answer: Add the following line to the top of your Ruby program
277
+
278
+ require 'rubygems'
279
+
280
+ ### Program fails to connect with MQRC2059, MQRC_Q_MGR_NOT_AVAILABLE
281
+
282
+ When connecting to either a local or remote WebSphere MQ Queue Manager, a very common
283
+ error returned is that the Queue Manager is not available. This error can occur
284
+ under any of the following circumstances:
285
+
286
+ #### MQ Server Connections (Local Queue Manager)
287
+
288
+ Possible Configuration Issues:
289
+
290
+ * Ensure that :connection_name is not being supplied to the connect method.
291
+ Even if it is supplied with a nul or empty value, it will cause a client connection attempt to be made.
292
+
293
+ Is the Queue Manager active?
294
+
295
+ * Try running the following command on the machine running the Queue Manager
296
+ and check that the Queue Manager is marked as ‘Running’:
297
+
298
+ ```
299
+ dspmq
300
+
301
+ Expected output:
302
+ QMNAME(REID) STATUS(Running)
303
+ ```
304
+
305
+ * Check that the :q_mgr_name supplied to QueueManager::connect matches the Queue Manager name above.
306
+ * Note: Queue Manager names are case-sensitive
307
+
308
+ #### MQ Client Connections (Remote Queue Manager)
309
+
310
+ Possible Client Configuration Issues:
311
+
312
+ * Incorrect host name
313
+ * Incorrect port number
314
+ * Incorrect Channel Name
315
+
316
+ For example, the channel being used does not exist on the remote Queue Manager.
317
+
318
+ * Note: The channel name is case-sensitive
319
+
320
+ Incorrect Queue Manager Name
321
+
322
+ * :q_mgr_name is optional for Client Connections. It does however ensure that the program connects to the expected Queue Manager.
323
+
324
+ For example when the wrong Queue Manager listener is now running on the expected port.
325
+
326
+ * Is the MQ listener program running on the port supplied above?
327
+
328
+
329
+ On UNIX/Linux, try the following command on the machine running the Queue Manager:
330
+
331
+ ps -ef | grep runmqlsr
332
+
333
+ * The Queue Mananger name and port number should be displayed
334
+
335
+ * If no port number is specified on the command line for an instance of runmqlsr, it means that it is using port 1414.
336
+
337
+ Is the Queue Manager active?
338
+
339
+ * Try running the following command on the machine running the Queue Manager and check that the Queue Manager is marked as ‘Running’:
340
+
341
+ ```
342
+ dspmq
343
+
344
+ Expected output:
345
+ QMNAME(REID) STATUS(Running)
346
+ ```
347
+
348
+ * Check that the :q_mgr_name supplied to QueueManager::connect matches the Queue Manager name above. Note: Queue Manager names are case-sensitive
349
+ * Check if the Channel being used is still defined on the Queue Manager
350
+
351
+ On the machine running the Queue Manager, run the following commands (may need to run them under the 'mqm' userid):
352
+
353
+ ```
354
+ runmqsc queue_manager_name
355
+ dis channel(*) chltype(SVRCONN)
356
+ ```
357
+
358
+ * Replace queue_manager_name above with the actual name of the Queue Manager being connected to
359
+ * Look for the channel name the application is using.
360
+ * Note: the channel name is case-sensitive.
361
+
362
+ ## Support
363
+
364
+ Ruby WMQ Community Support Mailing List: <http://rubyforge.org/mailman/listinfo/rubywmq-misc>
365
+
366
+ Feature and Bug Reports: <http://github.com/reidmorrison/rubywmq/issues>
367
+
368
+ ## Contributing
369
+
370
+ Once you've made your great commits:
371
+
372
+ 1. [Fork](http://help.github.com/forking/) rubywmq
373
+ 2. Create a topic branch - `git checkout -b my_branch`
374
+ 3. Push to your branch - `git push origin my_branch`
375
+ 4. Create an [Issue](http://github.com/reidmorrison/rubywmq/issues) with a link to your branch
376
+ 5. That's it!
377
+
378
+ ## Meta
379
+
380
+ * Code: `git clone git://github.com/reidmorrison/rubywmq.git`
381
+ * Home: <http://github.com/reidmorrison/rubywmq>
382
+ * Bugs: <http://github.com/reidmorrison/rubywmq/issues>
383
+ * Gems: <http://rubygems.org/gems/rubywmq>
384
+
385
+ This project uses [Semantic Versioning](http://semver.org/).
386
+
387
+ ## Author
388
+
389
+ Reid Morrison :: reidmo@gmail.com :: @reidmorrison
390
+
391
+ Special thanks to Edwin Fine for the RFH parsing code and for introducing me to
392
+ the wonderful world of Ruby
393
+
394
+ ## License
395
+
396
+ Copyright 2006 - 2012 J. Reid Morrison
397
+
398
+ Licensed under the Apache License, Version 2.0 (the "License");
399
+ you may not use this file except in compliance with the License.
400
+ You may obtain a copy of the License at
401
+
402
+ http://www.apache.org/licenses/LICENSE-2.0
403
+
404
+ Unless required by applicable law or agreed to in writing, software
405
+ distributed under the License is distributed on an "AS IS" BASIS,
406
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
407
+ See the License for the specific language governing permissions and
408
+ limitations under the License.