MVS is the name for the IBM OS/VS operating system released in the late 1970s, and the name was used through MVS/ESA 5.2. The name was replaced by OS/390 in the mid-1990s, which itself was replaced by z/OS in the early 2000s.
Questions tagged [mvs]
55 questions
0
votes
1 answer
MAC address for Mainframe ZOS machine
Is there any linux command or java code to find the MAC address of the Mainfrane machine? . I have tried to execute 'ifconfig' command from the OMVS region and it doesnot work. Any help would be much appreciated. Thanks in advance.

Vel
- 67
- 11
0
votes
2 answers
Possible to send email, with an attachment from the Mainframe?
I have the following code:
//******************************************
//PROC01 EXEC PGM=IEBGENER
//SYSIN DD DUMMY
//SYSPRINT DD SYSOUT=*
//SYSUT2 DD SYSOUT=(B,SMTP) …

F0l0w
- 243
- 5
- 15
0
votes
0 answers
Obtaining Input DDName from FTP (JES)
I have a job in JES on the mainframe that I want to retrieve or list directory via FTP.
I'm able to do so easily if I want one or all of the OUTPUT DDNames of my job
(In SDSF, with "INPUT OFF" command)
SDSF JOB DATA SET DISPLAY - JOB MYUSERUL…

ericmas001
- 603
- 6
- 12
0
votes
1 answer
Why does my application not translate to the local CurrentUICulture?
I have a winform, C# application that I would like to have run in localised languages. The target .Net is 3.0 as a lot of my users are still using XP.
The application is a system tray application.
I have put all the strings into a Resources.resx and…

Luke
- 1,077
- 13
- 33
0
votes
2 answers
Get File Listing ending with A or B using Jscape FTP
I am using FTP (com.jscape.inet.ftp.Ftp) in my java code to get file listing. I am using the following piece of code to get list of files.
Enumeration files= ftp.getNameListing("test*");
The above code lists all the files with test*…

Ani
- 328
- 1
- 3
- 17
0
votes
4 answers
Trapping All Batch Job from MVS
I'm trying to trap all the batch Job from MVS.
I want to transmit all the batch job information (start,end,error) to an external system in order to conduct further analysis.
Has anyone got any idea on how to do this ?

musecz
- 797
- 7
- 17
0
votes
4 answers
FTP exception 501 "pathname" more than 8 characters
I am trying to access a file via a URI using the FTP protocol. For obvious security reasons I had to make some changes but this is where the problems seem to be coming from.
My URI is as follows:
…

BigMac66
- 1,528
- 5
- 19
- 35
0
votes
2 answers
Can I make SST/Sysview notify me when job is completed?
I am monitoring a job using Sysview on our glorious IBM mainframe. Can I somehow make the tool or the mainframe just notify me once the job is done, or will I have to sit around and poll it for hours?

Anders Johansen
- 10,165
- 7
- 35
- 52
-1
votes
2 answers
& becomes & during FTP to MVS
I am using a java library (edtftpj) to FTP a file from a web app hosted of a tomcat server to an MVS system.
The FTP transfer mode is ASCII and transfer is done using FTP streams. The data from a String variable is stored into an MVS dataset.
The…

redDevil
- 1,909
- 17
- 25
-1
votes
1 answer
how to make routing in javascript express
const router = require('express').Router()
const songRouter=require("./song");
const labelRouter=require("./label");
router.use('/songs',songRouter);
router.use('/labels',labelRouter);
module.exports=router