IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

EDI Mailbox Access Via FTP


IBM Mainframe Forums -> All Other Mainframe Topics
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
yogeshpawar

New User


Joined: 01 Mar 2006
Posts: 37
Location: Sussex-UK

PostPosted: Tue Oct 14, 2008 9:57 pm
Reply with quote

Hi, We have a requirement to use FTP rather than IEBASE/TRBATCH protocol for EDI mailbox data transfer and need to convert current JCL using IEBASE/TRBATCH to FTP.

Existing step which send data to mailbox ABC is

Code:
//STEP200  EXEC PGM=IEBASE,COND=(4,LT)
//INMSG    DD DSN=EXPEDITE.EXPPROF(SENDCMD),
//            DISP=SHR
//INPRO    DD DSN=EXPEDITE.EXPPROF(ABC),
//            DISP=SHR
//QUALTBL  DD DSN=EXPEDITE.EXPPROF(IBMMBOX),
//            DISP=SHR
//IBMMBOX  DD DSN=EDI.IBMMBOX.RWLS.DISK,
//            DISP=SHR
//EDIDATA  DD DSN=TRADA.F1338.LIVEAIS.IBM.DISK,
//            DISP=SHR
//ERRORMSG DD DSN=SYS1.HQK6450.SEXXMSGS(EXXMSG),
//            DISP=SHR
//ERRORTXT DD DSN=SYS1.HQK6450.SEXXMSGS(EXXTXT),
//            DISP=SHR
//OUTPRO   DD DSN=EDI.IEOUTPRO.IBMRWL.FILE,
//            DISP=OLD
//OUTMSG   DD DSN=EDI.IEOUTMSG.IBMRWL.FILE,
//            DISP=OLD
//SYSIN    DD DSN=LIVE.BATCH.DATALIB(EDIREN3A),
//            DISP=SHR

In above
Code:
EXPEDITE.EXPPROF(SENDCMD)
has enry as
Code:
SENDEDI    FILEID(DD:EDIDATA);

and
Code:
EXPEDITE.EXPPROF(IBMMBOX)
has entry as
Code:
TTABLE(DD:IBMMBOX);

and
Code:
LIVE.BATCH.DATALIB(EDITRAN)
has entry as,
Code:
TRANSMIT AUTOSTART(N) AUTOEND(N);                     
START ACCOUNT(GBBPI) USERID(ABC) IEPASSWORD(ABC)
END;                                                 

What would be corresponding FTP step? Are there different FTP syntax for TRADANET Service for FTP?

When should I use following dataset in Steplib for PGM=FTP?
Code:
 DD DSN=EDC.V2R2M0.SEDCLINK,DISP=SHR
 DD DSN=SYS1.PLILINK,DISP=SHR       
 DD DSN=SYS1.COMMON.LINKLIB,DISP=SHR
 DD DSN=SYS1.COB2LIB,DISP=SHR       

Can you please let me know about above?


Edited: Please learn to use BBcode..Anuj
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Oct 15, 2008 1:59 am
Reply with quote

Hello,

Quote:
When should I use following dataset in Steplib for PGM=FTP?
Have you tried to run an ftp with no steplib? What happens?

On "this" system, i need no steplib.
Back to top
View user's profile Send private message
yogeshpawar

New User


Joined: 01 Mar 2006
Posts: 37
Location: Sussex-UK

PostPosted: Wed Oct 15, 2008 2:10 am
Reply with quote

Actually we have few existing FTP jobs with above dataset and few without it. I will try to run without it and see.

Can you please let me know about equivalent FTP job and any considerations from Tradanet FTP point of view?
Back to top
View user's profile Send private message
yogeshpawar

New User


Joined: 01 Mar 2006
Posts: 37
Location: Sussex-UK

PostPosted: Fri Oct 17, 2008 3:26 pm
Reply with quote

I have confirmed with System Programmers and those NONLE overrides are not required now.

Can you please let me know about FTP mentioned above?
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Fri Oct 17, 2008 5:13 pm
Reply with quote

Have you contacted the remote site to find out what is being expected? This sounds like a very specific application so you might want to contact the vendor to discuss how to use FTP in this circumstance. Considering you've gotten no responses on your issue in 3 days, I suspect there's nobody else on this forum that is using the same software you are.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> All Other Mainframe Topics

 


Similar Topics
Topic Forum Replies
No new posts Access to non cataloged VSAM file JCL & VSAM 18
No new posts How to access web services/website? Mainframe Interview Questions 4
No new posts access the last host command CLIST & REXX 2
No new posts CICS Access to RACF CICS 2
No new posts Access library name in REXX CLIST & REXX 6
Search our Forums:

Back to Top