Author |
Message
|
jhoninck |
Posted: Thu Jul 14, 2005 4:40 am Post subject: JText and set quote |
|
|
Novice
Joined: 20 Jun 2005 Posts: 11
|
Trying to do the following:
1. configure JText in standalone mode to read a message queue, with messages generated by WBI on AIX
2.After all the messages are generated I want JText to pick these messages up and transfer them to OS/390 Mainframe
3. I have been provided with a valid FTP account on the Mainframe, the only problem is that after I logon I need to issue the command:
Code: |
quote site BLK=7400 LR=100 CY PRI=20 SEC=2 REC=FB U=SYSDA
|
Have looked all over the manuals but I cannot figure out how to set this automatically inside JText ?? as a parameter.
Does anybody have some ideas on how to do this ??? |
|
Back to top |
|
 |
jefflowrey |
Posted: Thu Jul 14, 2005 5:09 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
Does JText do any FTP?
Isn't there an FTP adapter, anyway? _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
jhoninck |
Posted: Thu Jul 14, 2005 5:21 am Post subject: |
|
|
Novice
Joined: 20 Jun 2005 Posts: 11
|
JText does FTP, only the manuals are really thin when it come to defining some of the parameters I need to set using the "set quote" command |
|
Back to top |
|
 |
jefflowrey |
Posted: Thu Jul 14, 2005 5:49 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
That looks like what FTP knows as a "site" command. I'm wondering if you are suffering from some miscommunication from the mainframe team.
I would think it would just be "site BLK=7400 LR=100 CY PRI=20 SEC=2 REC=FB U=SYSDA".
And it needs to be issued in the FTP command processing.
It doesn't look like the JText adapater supports SITE commands. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
jhoninck |
Posted: Thu Jul 14, 2005 6:17 am Post subject: |
|
|
Novice
Joined: 20 Jun 2005 Posts: 11
|
Is there maybe a way to attach this site command to the defaults of the userid ?? |
|
Back to top |
|
 |
jefflowrey |
Posted: Thu Jul 14, 2005 8:11 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
jhoninck wrote: |
Is there maybe a way to attach this site command to the defaults of the userid ?? |
I don't think so.
What I know of SITE commands is that they need to occur as individual FTP commands.
So a very generic view of an FTP transmission might look like:
<connect>
USER user
PASSWORD password
SITE ....
PUT ....
SITE is basically a way to issue extra commands to the remote host. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
Jose Manuel |
Posted: Wed Aug 10, 2005 12:30 am Post subject: FTP.DATA |
|
|
Newbie
Joined: 06 May 2004 Posts: 1
|
The default values for the local site parameters are hardcoded in the FTP client module. You can change these default values by creating an FTP.DATA configuration data set.
You need create a "userid.FTP.DATA" data set in the HOST. More information in
z/OS Communications Server(IP User's Guide and Commands)
Bye |
|
Back to top |
|
 |
|