Tagged Questions

VMS is any operating system of the VMS family: OpenVMS, VAX/VMS, VAX-11/VMS, and VAX/VMS which run on the VAX, Alpha, and Itanium-based families of computers.

learn more… | top users | synonyms

6
votes
3answers
319 views

Simple CGI web server in Python on VMS

I am trying to run an extremely simple CGI server on VMS done in python. import sys from BaseHTTPServer import HTTPServer from CGIHTTPServer import CGIHTTPRequestHandler ...
5
votes
10answers
565 views

Moving from VMS to Unix

Dear Stackoverflow, Once upon a time, a team of guys sat down and wrote an application in C, running on VMS on a VAX. It was a rather important undertaking and runs a reasonably important back-end ...
5
votes
7answers
769 views

Java on OpenVMS?

We run batch files on our OpenVMS Alpha and Integrity servers. Up until now they have been written in COBOL. As you can imagine there are many reasons why will not be able to maintain that process. ...
4
votes
3answers
501 views

Error handling on sockets in SAS under OpenVMS

I'm using SAS 9.2 on OpenVMS to connect to an external data source over a socket specifed with a filename statement: filename extsrc SOCKET "extserver:port" recfm=v; data foo; infile extsrc; input; ...
3
votes
3answers
137 views

What's the correct regexp pattern to match a VMS filename?

The documentation at http://h71000.www7.hp.com/doc/731final/documentation/pdf/ovms_731_file_app.pdf (section 5-1) says the filename should look like this: ...
3
votes
7answers
2k views

Get dimensions of JPEG in C++

I need to get at the image dimensions of a JPEG in C++. I'm looking for either a fairly simple way to do it, or a smallish library that provides that functionality. I'm working in C++ on OpenVMS, so ...
3
votes
4answers
584 views

Is there a reasonable way to implement a cd command on VMS?

I would like to be able to say things like cd [.fred] and have my default directory go there, and my prompt change to indicate the full path to my current location.
2
votes
4answers
191 views

DCL syntax problem in OpenVms

I am really confused by some syntax in the dcl of openvms. For example, these are some lines which confused me: $ wo = "write sys$output" Does it create a symbol wo for write sys$output? $ ...
2
votes
5answers
2k views

How can I copy a file from VMS to Windows and back again?

I am trying to copy C source files from a vms alpha to a windows machine to allow easier editing of the code. (VMS editor is just a text editor and it would be nice to have syntax highlighting etc) I ...
2
votes
3answers
735 views

VMS EDT - How to select the complete content of the file?

I have been using VMS EDT for a while. I would be editing/ replacing large number of lines in the text files and saving it as a different version. As for as I am aware, the only way to delete the ...
1
vote
3answers
68 views

Read file fast (stream_lf format)

Looking for a way to speed up reading and processing a large text file (basically csv; stream_lf). Should I bypass RMS? Solution may be asynchronous or synchronous. Current implementation is ...
1
vote
2answers
113 views

Random record selection - VMS / RDB

I have been asked for a SQL statement to retrieve an arbitrary number of rows, randomly selected, from a data table in a database hosted on Oracle RDB on VMS. In MS SQL, it would simply be: SELECT ...
1
vote
2answers
189 views

How to assign the output of a program to a variable in a DCL com script on VMS?

For example, I have a perl script p.pl that writes "5" to stdout. I'd like to assign that output to a variable like so: $ x = perl p.pl ! not working code $ ! now x would be 5
1
vote
4answers
204 views

files opened by a process on VMS

I have a DCL script on VMS which calls a perl script. Is there a VMS/DCL command I can use that will tell me every file handle opened by the perl script?
1
vote
2answers
522 views

Is there a good freeware clone of the VMS editor EDT for unix or the pc?

I would like to have the same editor available on all of the platforms I frequent. Emacs and Vi are not desired solutions.
0
votes
0answers
46 views

Code generator for CLI based on CLD file

Although programming using the CLI$ routines is not very hard, it would be nice if there were a code generator for the basic stuff based on the CLD file. Does anyone have something like that, or is ...
0
votes
1answer
32 views

Changing f$mode() in an 'OTHER' session in openvms

I want to loggin in an openvms system using SSH progamatically then issue remote commands on the server. Putty will let me do that because f$mode() is 'BATCH' but with any SSH library I have used, the ...
0
votes
2answers
102 views

How to convert char pointer into char in C Open VMS

This is to convert from char pointer into char. I followed the codes from another topic but it seems like it's not working to me. I am using Open VMS Ansi C compiler for this. I don't know what's the ...
0
votes
3answers
94 views

EDT editor - a modern approach?

I used the EDT editor on VMS very long time ago. Is there modern implementation of this excellent text editor available? If so, are there source codes? Maybe it is circumvented by Emacs and Vim? ...
0
votes
2answers
122 views

Getting a driver for VMS to connect to SQL Server 2005

I want to connect from a COBOL/VMS system to an SQL Server 2005 instance. Could someone point me to a driver that works well?
0
votes
1answer
138 views

fatal: function name previously defined

For the listing below, I get an error: fatal: function name `myprint' previously defined $3 > 0 { myprint ($3) } function myprint(num) { printf "%6.3g\n", num }
0
votes
2answers
352 views

How can I script the body of a VMS mail?

I have a script that addresses and sends an email but I need a body in the message without creating a file and then inserting the file with the standard MAIL commandline. How can I do that?
0
votes
4answers
1k views

Why vim doesn't work correctly into a telnet session?

I use vim (7.1) on OpenVMS V7.3-2. I connect to VMS trough a telnet session with SmartTerm, a terminal emulator. It works fine. But when I start a telnet session from a VMS session (connected via ...
-1
votes
1answer
44 views

Simulate VMS FTP on Windows

All, Just wondering if it was possible to simulate the VMS functionality of FTP in Windows? VMS supports/ed versioning of files that are uploaded to a server using FTP. For example, if you upload ...
-1
votes
5answers
167 views

Recovering data from a VAX to an NTFS system

I've tried to find the answer on many different sites, but no luck as of yet. Our dilemma is: We have an old VAX system (I believe runs VMS) that we desperately need the data retrieved from. The ...