Re: Sending a PDF file as MQ payload
Thanks to all who replied. I was relatively sure it was not a problem, but all of your tips on the format field of the MQMD header, and keeping the file size under control helped me help the developers side step a few land mines. thanks again to all Bill Anderson SITA Atlanta, GA Standard Messaging Engineering WebSphere MQ Service Owner 770-303-3503 (office) 404-915-3190 (cell) This e-mail contains information which is SITA - Company Confidential All sita.int addresses have changed to sita.aero [EMAIL PROTECTED] http://www.mconnect.aero/ Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive
Re: Sending a PDF file as MQ payload
MQ doesn't care. Data is data. As long as you don't try and send it with md.format=MQFMT_STRING and turn conversion on, you'll be fine. tonyB. -Original Message- From: MQSeries List [mailto:[EMAIL PROTECTED] On Behalf Of Bill Anderson Sent: Monday, November 22, 2004 12:10 PM To: [EMAIL PROTECTED] Subject: Sending a PDF file as MQ payload Our development team asked me if it was possible to send a PDF document as an MQ message. My gut feeling is yes, you can, but I have never done it. anyone out there ever done such a thing? any hints or tips on how to do it? Thanks Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive
Re: Sending a PDF file as MQ payload
No reason you can't but the following may/do apply. Use MQFMT_NONE to send the file in binary format. From a previous discusssion consider using the MQRFH2 header to deliver meta-data. Do NOT use MQGMO_CONVERT. Watch out for maximum message length MAXMSGL on Q, QMGR and channel definitions including the various transmit queues. If the files are going to consistently be big(1Mb) you might want to set up a separate set of channels so you don't interfere with high volume small message response times. Regards Tim A -Original Message- From: Bill Anderson [mailto:[EMAIL PROTECTED] Sent: Tuesday, 23 November 2004 7:10 AM To: [EMAIL PROTECTED] Subject: Sending a PDF file as MQ payload Our development team asked me if it was possible to send a PDF document as an MQ message. My gut feeling is yes, you can, but I have never done it. anyone out there ever done such a thing? any hints or tips on how to do it? Thanks Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive This email and any attachments may contain privileged and confidential information and are intended for the named addressee only. If you have received this e-mail in error, please notify the sender and delete this e-mail immediately. Any confidentiality, privilege or copyright is not waived or lost because this e-mail has been sent to you in error. It is your responsibility to check this e-mail and any attachments for viruses. No warranty is made that this material is free from computer virus or any other defect or error. Any loss/damage incurred by using this material is not the sender's responsibility. The sender's entire liability will be limited to resupplying the material. Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive
Re: Sending a PDF file as MQ payload
We do it, and do it a lot. Your MD's format must be set to NONE. If the messages can exceed 4M, make sure that the queue definition, xmit queue and channels all can handle it. Consider sending the big messages via their own channel, so as not to interfere with more normally sized traffic. Or, consider setting a low priority of these messages so as to send them to the back of the line. Bill Anderson [EMAIL PROTECTED] Sent by: MQSeries List [EMAIL PROTECTED] 11/22/2004 02:09 PM Please respond to MQSeries List [EMAIL PROTECTED] To [EMAIL PROTECTED] cc Subject Sending a PDF file as MQ payload Our development team asked me if it was possible to send a PDF document as an MQ message. My gut feeling is yes, you can, but I have never done it. anyone out there ever done such a thing? any hints or tips on how to do it? Thanks Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive
Re: Sending a PDF file as MQ payload
no problem, just take care that the file is less than 100 Meg. Date sent: Mon, 22 Nov 2004 15:09:38 -0500 Send reply to: MQSeries List [EMAIL PROTECTED] From: Bill Anderson [EMAIL PROTECTED] Subject:Sending a PDF file as MQ payload To: [EMAIL PROTECTED] Our development team asked me if it was possible to send a PDF document as an MQ message. My gut feeling is yes, you can, but I have never done it. anyone out there ever done such a thing? any hints or tips on how to do it? Thanks Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive -- Luc-Michel Demey - Freelance EAI Consultant Paris / France Tel. : +33 6 08 755 655 http://consulting.demey.org/ - lmd at demey dot org French WMQ forums : http://forums.mqseries.fr ;-) Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive
Re: Sending a PDF file as MQ payload
Hello Bill, Basically, use MQFMT_NONE in a message format field to avoid character conversions and maybe other smart moves of the beast.. Also, make sure your documents are less than 4 Mb; otherwise, use application-level segmentation or you will have to make sure some set of conditions is met -- to me, it seems easier to break the documents up.. Hope this will help, Pavel Bill Anderson [EMAIL PROTECTED]To: [EMAIL PROTECTED] TA.AERO cc: Sent by: MQSeriesSubject: Sending a PDF file as MQ payload List [EMAIL PROTECTED] n.AC.AT 11/22/2004 03:09 PM Please respond to MQSeries List Our development team asked me if it was possible to send a PDF document as an MQ message. My gut feeling is yes, you can, but I have never done it. anyone out there ever done such a thing? any hints or tips on how to do it? Thanks Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive -- This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden. Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive
Re: Sending a PDF file as MQ payload
If you're having a dull day, suggest they to convert it to XML first. -Original Message- From: Bill Anderson [mailto:[EMAIL PROTECTED] Sent: Monday, November 22, 2004 12:10 PM To: [EMAIL PROTECTED] Subject: Sending a PDF file as MQ payload Our development team asked me if it was possible to send a PDF document as an MQ message. My gut feeling is yes, you can, but I have never done it. anyone out there ever done such a thing? any hints or tips on how to do it? Thanks Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive
Re: Sending a PDF file as MQ payload
You can send anything you want, we send XML, PDF, JPEGs, GIFs and a host of proprietory formats. Sid -Original Message- From: Bill Anderson [mailto:[EMAIL PROTECTED] Sent: Tuesday, 23 November 2004 06:10 To: [EMAIL PROTECTED] Subject: Sending a PDF file as MQ payload Our development team asked me if it was possible to send a PDF document as an MQ message. My gut feeling is yes, you can, but I have never done it. anyone out there ever done such a thing? any hints or tips on how to do it? Thanks Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive Instructions for managing your mailing list subscription are provided in the Listserv General Users Guide available at http://www.lsoft.com Archive: http://vm.akh-wien.ac.at/MQSeries.archive