| Author | 
		  Message
		 | 
		
		  | ksilpaa | 
		  
		    
			  
				 Posted: Tue Jan 08, 2002 9:42 am    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		    Novice
 
 Joined: 17 Dec 2001 Posts: 10
  
  | 
		  
		    
			  
				hi all,
 
	i am working with mqftp. i want to automate this process by writing a script(bat) file.Is there any way to send all the input such as domain name ,userid ,password to mqftp from the file.
 
 
FTP has the option that is FTP :s|filename
 
 
Once i get into mqftp i am not able to pass any value from the script file.
 
 
 
_________________
 
Silpa
 
 
[ This Message was edited by: ksilpaa on 2002-01-08 09:43 ] | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | vanvught | 
		  
		    
			  
				 Posted: Sun Mar 03, 2002 2:17 am    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		    Apprentice
 
 Joined: 02 Jul 2001 Posts: 35 Location: The Netherlands 
  | 
		  
		    
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | gflives | 
		  
		    
			  
				 Posted: Mon May 27, 2002 5:23 am    Post subject: MQFTP | 
				     | 
			   
			 
		   | 
		
		
		   Newbie
 
 Joined: 27 May 2002 Posts: 3
  
  | 
		  
		    
			  
				Can someone supply the link to get this program/fix ?
 
 
Thanks
 
Brian | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | kirani | 
		  
		    
			  
				 Posted: Mon May 27, 2002 9:46 am    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		   Jedi Knight
 
 Joined: 05 Sep 2001 Posts: 3779 Location: Torrance, CA, USA 
  | 
		  
		    
			  
				Brian,
 
 
You can download this SupportPac from following URL,
 
http://www-3.ibm.com/software/ts/mqseries/txppacs/txpm2.html
 
 
The supportPac number is MA0P. _________________ Kiran
 
 
 
IBM Cert. Solution Designer & System Administrator - WBIMB V5
 
IBM Cert. Solutions Expert - WMQI
 
IBM Cert. Specialist - WMQI, MQSeries
 
IBM Cert. Developer - MQSeries
 
 
 | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | jc_squire | 
		  
		    
			  
				 Posted: Wed Aug 21, 2002 1:25 pm    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		    Centurion
 
 Joined: 14 Apr 2002 Posts: 105 Location: New Zealand 
  | 
		  
		    
			  
				Kiran,
 
 
does mqftp perform any logging of files coming in/out ?
 
 
Cheers _________________ J C Squire
 
IBM Certified Specialist - MQSeries | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | kirani | 
		  
		    
			  
				 Posted: Wed Aug 21, 2002 4:19 pm    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		   Jedi Knight
 
 Joined: 05 Sep 2001 Posts: 3779 Location: Torrance, CA, USA 
  | 
		  
		    
			  
				Jc,
 
 
I never worked with mqftp SupportPac, so I am not sure whether there is any file logging feature available. 
 
Probably other people who have used this SupportPac can answer your question. _________________ Kiran
 
 
 
IBM Cert. Solution Designer & System Administrator - WBIMB V5
 
IBM Cert. Solutions Expert - WMQI
 
IBM Cert. Specialist - WMQI, MQSeries
 
IBM Cert. Developer - MQSeries
 
 
 | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | vanvught | 
		  
		    
			  
				 Posted: Sun Sep 29, 2002 7:48 am    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		    Apprentice
 
 Joined: 02 Jul 2001 Posts: 35 Location: The Netherlands 
  | 
		  
		    
			  
				There is an updated release on the Internet - http://www-3.ibm.com/software/ts/mqseries/txppacs/ma0p.html
 
 
This release supports now the use of an input script file like:
 
 
   
	| Quote: | 
   
  
	E:\MA0P\Release>mqftp -n aix.ibm.com < mqftp.txt
 
mqftp: IBM MQSeries ftp client (Build: Jul 19 2002)
 
Available on: Windows NT/2000, AIX, Sun Solaris, HP-UX, Linux and OS/400
 
IBM Copyright 2001,2002 (c), Category 2 SupportPac, MA0P
 
 
Connected to default queue manager NLRG119
 
Queue SYSTEM.DEFAULT.LOCAL.QUEUE opened
 
Message persistence set to MQPER_PERSISTENT.
 
Connected to aix.ibm.com
 
220 aix FTP server (Version 4.1 Tue May 15 16:38:46 CDT 2001) ready.
 
mqftp> 331 Password required for userid.
 
230 User userid logged in.
 
200 Type set to A; form set to N.
 
mqftp> 200 PORT command successful.
 
150 Opening data connection for .profile (1121 bytes).
 
226 Transfer complete.
 
mqftp: [.profile] 1169 bytes received
 
Putted on queue
 
mqftp> 221 Goodbye.
 
 
E:\MA0P\Release>
 
 
mqftp.txt ======================================
 
user userid password
 
get .profile
 
quit
 
mqftp.txt ======================================
 
 | 
   
 
 
 
Regards,
 
   Arjan van Vught
 
   e-business Hosting Services, IGS
 
 
http://edi.services.ibm.com/mqseries/spec_sheets.shtml | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | LearnMQSI | 
		  
		    
			  
				 Posted: Fri Feb 14, 2003 10:15 am    Post subject: mqftp | 
				     | 
			   
			 
		   | 
		
		
		    Centurion
 
 Joined: 20 Aug 2002 Posts: 137
  
  | 
		  
		    
			  
				Hi ksilpaa,
 
 
I know you have been working with mqftp. 
 
Can you tell me how much amount of data I can send usinf mqftp?
 
 
Is there any limit of data you can send over mqftp?
 
 
I'm interested using it but not sure if it is reliable and if there is any limited amount of data can be send over using mqftp.
 
 
I appreciate your help and comments.
 
 
 
Thank you | 
			   
			 
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | vanvught | 
		  
		    
			  
				 Posted: Mon Feb 17, 2003 12:28 am    Post subject:  | 
				     | 
			   
			 
		   | 
		
		
		    Apprentice
 
 Joined: 02 Jul 2001 Posts: 35 Location: The Netherlands 
  | 
		  
		    
		   | 
		
		
		  | Back to top | 
		  
		  	
		   | 
		
		
		    | 
		
		
		  | 
		    
		   |