FILETAG error message?

General discussion on the JZOS batch launcher and toolkit
Post Reply
orr94

FILETAG error message?

Post by orr94 »

I'm setting up JZOS to run on my z/OS 1.4 system, using Java 1.3.1. The example seems to run okay (I get the "Hello world" message at the end, and an RC=0), but I'm getting an error message at the top of my output:

Code: Select all

CEE3627I The following messages pertain to the programmer default run-time options
CEE3611I The run-time option FILETAG was an invalid run-time option or is not supported in this release of Language
         Environment.

Here is the section detailing my environment setup:

Code: Select all

JZOSVM13(N): Copyright (C) 2004 Dovetailed Technologies LLC. All rights reserved.
JZOSVM13(N): JZOS Version 1.1.1                                               
JZOSVM13(N): Java Virtual Machine created.  Version information follows:       
java version "1.3.1"                                                           
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1)                 
Classic VM (build 1.3.1, J2RE 1.3.1 IBM OS/390 Persistent Reusable VM build cm131s-20031114 (JIT enabled: jitc))

Any thoughts about what could be causing this? I haven't been able to find anything significant about the FILETAG property in any of the JCL, so I'm not sure if this is a problem with my environment or not.
dovetail
Site Admin
Posts: 2025
Joined: Thu Jul 29, 2004 12:12 pm

Post by dovetail »

There seems to be some problem with the "FILETAG" LE options in your environment. We don't set this option in the JZOSVM13 program, so I'm confused by the message that seems to indicate that it was set by the "programmer".

To diagnose this, please rerun the job with the LE RPTOPTS(ON) setting, like this:

//JAVA EXEC PROC=EXJZOSVM,VERSION='13',
// LOGLVL='+I',
// LEPARM='RPTOPTS(ON)',
// JAVACLS='HelloWorld'

An LE options report should be written to the SYSOUT DD that shows all of the options, and where they were set (default, installation default, programmer, invocation command). See what the offending option (FILETAG) is set to and -where- it is set. If you need more help, please post the LE options report here for us to look at.
orr94

Post by orr94 »

Hmm... well, I've looked at it some more, and I've narrowed down the problem a bit.

First off, I was mistaken when I said I was running it on a z/OS 1.4 system; in fact, I had installed it on our old OS/390 2.10 system. When I tried it out on z/OS 1.4, I did NOT get the FILETAG error message.

But back to the error message... when I used the RPTOPTS(ON) parameter, it successfully listed all the LE options. However, FILETAG was nowhere in the list. In fact, even with RPTOPTS(ON) and using the '+T' loglvl option, the only occurance of the word FILETAG in the entire output was the error message itself. Very strange...

At any rate, I suppose it's not that important, since our 2.10 system is only around to support customers who haven't upgraded yet; all our applications run under z/OS 1.4. If anyone knows off-hand what the problem may be, I'd love to hear it, but this isn't really a pressing concern, and I'm not going to worry too much about it.

Thanks for your help!
dovetail
Site Admin
Posts: 2025
Joined: Thu Jul 29, 2004 12:12 pm

Post by dovetail »

Also, I see no hits in IBM link for: "CEE3611I FILETAG".
I guess if it causes no problems, I would ignore the message.
Post Reply