Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!caip!nike!ucbcad!ucbvax!CITHEX.CALTECH.EDU!carl From: carl@CITHEX.CALTECH.EDU (Carl J Lydick) Newsgroups: mod.computers.vax Subject: Re: DECnet task-to-tasking between Ultrix & VMS Message-ID: <860726094912.078@CitHex.Caltech.Edu> Date: Sat, 26-Jul-86 12:49:29 EDT Article-I.D.: CitHex.860726094912.078 Posted: Sat Jul 26 12:49:29 1986 Date-Received: Sat, 26-Jul-86 22:14:08 EDT References: <8607261157.AA10373@csvax.caltech.edu> Sender: daemon@ucbvax.BERKELEY.EDU Organization: The ARPA Internet Lines: 47 Approved: info-vax@sri-kl.arpa > However, VAX to Ultrix won't work at all. The FORTRAN open statement > > OPEN(UNIT=10,FILE='ULTNOD"user passw"::"TASK=remfil") > returns: > > %FOR-F-OPEFAI, open failure > unit 10 file ULTNOD"user password"::"TASK=remfil" > user PC 00000611 > -RMS-E-CRE, ACP file create failed > -SYSTEM-F-NOSUCHOBJ, network object is unknown at remote node > > and > OPEN(UNIT=10,FILE='ULTNOD"user passw"::"remfil") > returns: > > %FOR-F-OPEFAI, open failure > unit 10 file ULTNOD"user password"::"remfil" > user PC 00000611 > -RMS-F-SUPPORT, network operation not supported > -FAL-F-RAT, record attributes field rejected > > In other works, VMS TASK is not supported under Ultrix, and the Ultrix > default isn't supported under VMS. Is there any way to get around, under > or through this? I suspect that the problem is that you're misinterpreting both error messages, and therefore not taking appropriate action in response. First, be aware that VMS doesn't believe in lowercase filenames; That means, for a VMS machine, that by the time the remote task is set up, the name of the task has been converted to uppercase, and I suspect that this happens on the local, not the remote, node. If this is the case, and if the name of the task on the ULTRIX node contains lowercase characters, then when the message says "network object is unknown at remote node", the task it is referring to is "remfil", not TASK". The solution in this case would be to rename "remfil" to "REMFIL" on the ULTRIX node. Similarly, for the second error message, I suspect that the reason RMS is complaining is that "remfil" has the executable bit set on the ULTRIX node. Note that you were not talking to "the Ultrix default", whatever the hell you meant by that; you were talking to FAL, the File Access Listener, on the Ultrix node, and the complaint is that there's something in the way the file on the Ultrix node is set up that makes it impossible to make a "reasonable" copy of it on a VMS system. At any rate, the fact that you can't copy whatever file "remfil" might be to the VMS system is probably unrelated to your inability to execute the task. Oh, by the way, another solution to the first problem MIGHT be to use the task specification "TASK=""remfil""". This should force it to preserve lowercase; VMS doesn't like it, but it's the remote node that objects, so presumably the extra quotes are working.