On Mon, 3 Aug 2009 15:31:40 -0500, Ron Wells <[email protected]> wrote:
>Kirk >What I recv'd back from Pgm'r.. >>>> > >yep, the 8 char limit would be a huge limitation to building a class >structure, but then again, we've been working with 4 char program names on >SCORE for who knows how long... i'm sure we would come up with a nice >convention for naming. > >my desire is to execute everything solely within the TSO environment. > >so rather than writing my code and putting it in a jar file on HFS, and >then in my batch job doing something like this: >//XA344JVA JOB (6000),'AARON DUNLAP',CLASS=B,MSGCLASS=S, >// MSGLEVEL=(1,1),NOTIFY=&SYSUID >//********************************************************************* >//SA20 EXEC PROC=JZOS, >// JAVACLS='jabs.replication.upload.TASUploadMF', >// ARGS='file:/u/eeepc/apps/config/mf/upload.properties' >//STDENV DD * >... > > I want to do something like this: > >//XA344JVA JOB (6000),'AARON DUNLAP',CLASS=B,MSGCLASS=S, >// MSGLEVEL=(1,1),NOTIFY=&SYSUID >//********************************************************************* >//SA20 EXEC PROC=JZOS, >// JAVACLS='XA344.PDS.JAVA(TESTCODE)', >// ARGS='A.P1.CM.ZZ.BRCH.PARMLIB(MYPARM)' >//STDENV DD * >... > >within the context of the class structure of java, this might not make >much sense though... > Hum, instead of storing the .class files as members of the PDS, perhaps it would be easier to equate the member to a .jar file. Again, I think that a class loader could accomplish this. However, there is still a problem of doing the Java compiles and where to put the output until it is jar'ed together. I guess that output to a sequential file would be possible. But that would require rewriting the Java compiler. That is not likely to happen. So your programmers would still need to mess around with UNIX files, unless you do all the development on a PC and just upload the jar file to a PDS library. -- John -- John ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

