Author |
Message
|
arifndc |
Posted: Mon Sep 28, 2009 10:17 pm Post subject: Transferring File through MQ6.0 in AIX |
|
|
Novice
Joined: 15 Sep 2009 Posts: 24
|
I m using MQ 6.0 in AIX Environment. I want to setup File Transfer Environment. As File Transfer Appplication is only available for windows and Linux so what is the better and quick option for me.
Regards,
Arif |
|
Back to top |
|
 |
mqjeff |
Posted: Tue Sep 29, 2009 1:54 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
|
Back to top |
|
 |
arifndc |
Posted: Tue Sep 29, 2009 2:07 am Post subject: |
|
|
Novice
Joined: 15 Sep 2009 Posts: 24
|
mqjeff wrote: |
http://www.ibm.com/software/integration/wmq/filetransfer/index.html |
This is a different product (i think) i have to install , configure and etc.
but for windows and linux i have an option to user default file transfer application application. is these a way to uses builtin feature of mq to setup file transfer rather then using a seprate product.
regards,
arif |
|
Back to top |
|
 |
mqjeff |
Posted: Tue Sep 29, 2009 2:23 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
What you get with MQ on Windows and Linux is not a solution.
It's a sample application.
It is not part of the installation media for AIX.
You can probably use it from windows and linux to talk to your AIX queue manager, in a client form.
It's not a solution to your needs to transfer files.
You are far better off buying and trying to learn and use WebSphere MQ File Transfer Edition. It is a much easier learning curve than WebSphere MQ in the first place, and you do not appear to have a firm grasp of that at all.
WebSphere MQ is Message Oriented Middleware.
It is NOT a tool to transfer files. It's a tool to send data as messages.
WebSphere MQ File Transfer Edition Is a File Transfer Environment. It IS a tool to transfer files. |
|
Back to top |
|
 |
arifndc |
Posted: Tue Sep 29, 2009 3:02 am Post subject: |
|
|
Novice
Joined: 15 Sep 2009 Posts: 24
|
I want to download MQ file transfer edition. can any one share link for that
regards,
arif |
|
Back to top |
|
 |
exerk |
Posted: Tue Sep 29, 2009 3:15 am Post subject: |
|
|
 Jedi Council
Joined: 02 Nov 2006 Posts: 6339
|
arifndc wrote: |
I want to download MQ file transfer edition. can any one share link for that
regards,
arif |
As far as I am aware, there is no trial version of the product, so speak to your IBM rep to obtain it. _________________ It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys. |
|
Back to top |
|
 |
RogerLacroix |
Posted: Wed Sep 30, 2009 12:13 pm Post subject: |
|
|
 Jedi Knight
Joined: 15 May 2001 Posts: 3264 Location: London, ON Canada
|
arifndc wrote: |
I want to download MQ file transfer edition. can any one share link for that |
exerk wrote: |
As far as I am aware, there is no trial version of the product, so speak to your IBM rep to obtain it. |
Have you or your boss thought about using a different solution? I have a (free) open source project called MQ File Mover that can do exactly what you are looking for.
Here's a sample MQFM Workflow XML file that will send a file (via MQ) then delete the file after it is sent:
Code: |
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE MQFM_Workflow SYSTEM "MQFM_Workflow.dtd">
<MQFM_Workflow>
<Actions>
<Send delete="Y">
<File>data/test.txt</File>
<MQ>
<QMgrName>MQWT1</QMgrName>
<QueueName>TEST.Q1</QueueName>
</MQ>
<Remote>
<Directory>C:\temp</Directory>
</Remote>
</Send>
</Actions>
</MQFM_Workflow>
|
For more information about MQ File Mover, please visit:
http://www.capitalware.biz/mqfm_overview.html
Regards,
Roger Lacroix
Capitalware Inc. _________________ Capitalware: Transforming tomorrow into today.
Connected to MQ!
Twitter |
|
Back to top |
|
 |
|