Re: JAVA Support for a Novice

2007-03-22 Thread Taylor, Clarence B
Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Howard Brazee Sent: Wednesday, March 21, 2007 10:29 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: JAVA Support for a Novice I am still not getting this Hello World Java JCL to work. I've tries some others I have found

Re: JAVA Support for a Novice

2007-03-21 Thread Veilleux, Jon L
Return code 6F states that permission is denied. Make sure that you have access to the file in STDOUT. Jon L. Veilleux [EMAIL PROTECTED] (860) 636-2683 BPXM009I BPXBATCH FAILED BECAUSE OPEN (BPX1OPN) FOR STDOUT FAILED WITH RETURN CODE 006F REASON CODE 0004 IEF142I ZHBHELLO JESSTEP

Re: JAVA Support for a Novice

2007-03-21 Thread Howard Brazee
I am still not getting this Hello World Java JCL to work. I've tries some others I have found on the web.If someone has the time to look at my input and output, please let me know at [EMAIL PROTECTED] I'll send it to them off of the listserver. Thanks.

JAVA Support for a Novice

2007-03-20 Thread Robert Pelletier
Hi All. Would anyone have a batch example of a JAVA compile and run of HELLO WORLD (or anything simple) they would be willing to share with me or point me to a manual I could find it in? Thanks once again all. Have a Nice Day ! Bob Pelletier Connecticut Student Loan Foundation Rocky Hill, Ct.

Re: JAVA Support for a Novice

2007-03-20 Thread Scott Barry
This Google (advanced) search revealed several IBM.COM pages (one link provided below): +z/os +java +example site:ibm.com Sincerely, Scott Barry SBBWorks, Inc. Java batch jobs on z/OS and OS/390 http://ibm.com/developerworks/eserver/library/es-java-batchz.html

Re: JAVA Support for a Novice

2007-03-20 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Robert Pelletier Sent: Tuesday, March 20, 2007 8:57 AM To: IBM-MAIN@BAMA.UA.EDU Subject: JAVA Support for a Novice Hi All. Would anyone have a batch example of a JAVA compile and run

Re: JAVA Support for a Novice

2007-03-20 Thread Robert Pelletier
@BAMA.UA.EDU Subject: Re: JAVA Support for a Novice -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Robert Pelletier Sent: Tuesday, March 20, 2007 8:57 AM To: IBM-MAIN@BAMA.UA.EDU Subject: JAVA Support for a Novice Hi All. Would anyone

Re: JAVA Support for a Novice

2007-03-20 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Robert Pelletier Sent: Tuesday, March 20, 2007 10:23 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: JAVA Support for a Novice Thanks John and all. Will JZOS require a higher operating system

Re: JAVA Support for a Novice

2007-03-20 Thread Veilleux, Jon L
Try this...the java translations for [] will need to be fixed. One of the problems of E-Mail and cut and paste. Also you will need to be at a level of z/OS that supports SYSOUT for STDIN STDERR, or you could change those DDs to use HFS files: //COPY1 EXEC PGM=IKJEFT01,REGION=4M

Re: JAVA Support for a Novice

2007-03-20 Thread Robert Pelletier
: JAVA Support for a Novice Try this...the java translations for [] will need to be fixed. One of the problems of E-Mail and cut and paste. Also you will need to be at a level of z/OS that supports SYSOUT for STDIN STDERR, or you could change those DDs to use HFS files: //COPY1 EXEC PGM=IKJEFT01

Re: JAVA Support for a Novice

2007-03-20 Thread Howard Brazee
On 20 Mar 2007 08:41:25 -0700, [EMAIL PROTECTED] (Veilleux, Jon L) wrote: Try this...the java translations for [] will need to be fixed. One of the problems of E-Mail and cut and paste. Also you will need to be at a level of z/OS that supports SYSOUT for STDIN STDERR, or you could change those

Re: JAVA Support for a Novice

2007-03-20 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Howard Brazee Sent: Tuesday, March 20, 2007 11:00 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: JAVA Support for a Novice On 20 Mar 2007 08:41:25 -0700, [EMAIL PROTECTED] (Veilleux, Jon L

Re: JAVA Support for a Novice

2007-03-20 Thread Veilleux, Jon L
John is correct. You must have CAPS OFF on your edit profile. Jon Jon L. Veilleux [EMAIL PROTECTED] (860) 636-2683 -- - This e-mail may contain confidential or privileged information. If you think you have received this e-mail in error, please advise

Re: JAVA Support for a Novice - square bracket translation

2007-03-20 Thread Veilleux, Jon L
Here is a REXX ISPF Edit Macro that will translate square brackets [] to the correct hex codes. Put it in your CLIST concatination and from he ISPF edit command line enter 'BRACK' (or whatever you choose to call it): /*REXX*/ /***

Re: JAVA Support for a Novice - square bracket translation

2007-03-20 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Veilleux, Jon L Sent: Tuesday, March 20, 2007 12:19 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: JAVA Support for a Novice - square bracket translation Here is a REXX ISPF Edit Macro

Re: JAVA Support for a Novice - square bracket translation

2007-03-20 Thread Howard Brazee
On 20 Mar 2007 10:25:05 -0700, [EMAIL PROTECTED] (Veilleux, Jon L) wrote: Here is a REXX ISPF Edit Macro that will translate square brackets [] to the correct hex codes. Put it in your CLIST concatination and from he ISPF edit command line enter 'BRACK' (or whatever you choose to call it): It's

Re: JAVA Support for a Novice - square bracket translation

2007-03-20 Thread Veilleux, Jon L
I'm not sure what you mean. You just copy the exec into a PDS in your SYSPROC concatination, I used member name 'brack'. Then when you edit the JAVA source code enter 'brack' on the command line. I'm not sure where you are getting the loop. If all else fails, then add 'TRACE ?R' at the start of

Re: JAVA Support for a Novice - square bracket translation

2007-03-20 Thread Howard Brazee
On 20 Mar 2007 10:49:19 -0700, [EMAIL PROTECTED] (Veilleux, Jon L) wrote: I'm not sure what you mean. You just copy the exec into a PDS in your SYSPROC concatination, I used member name 'brack'. Then when you edit the JAVA source code enter 'brack' on the command line. I'm not sure where you are

Re: JAVA Support for a Novice - square bracket translation

2007-03-20 Thread Jon Brock
PA1 should get you out of that, I believe. Jon snip I may need to kill my session. I can work elsewhere for a while until then. I just have a blank screen except for the prompt(s): ENTER DATA SET TYPE - ENTER DATA SET TYPE - /snip

Re: JAVA Support for a Novice - square bracket translation

2007-03-20 Thread Lesseg, Jon
Subject: Re: JAVA Support for a Novice - square bracket translation On 20 Mar 2007 10:49:19 -0700, [EMAIL PROTECTED] (Veilleux, Jon L) wrote: I'm not sure what you mean. You just copy the exec into a PDS in your SYSPROC concatination, I used member name 'brack'. Then when you edit the JAVA source code

Re: JAVA Support for a Novice - square bracket translation

2007-03-20 Thread Howard Brazee
On 20 Mar 2007 11:03:17 -0700, [EMAIL PROTECTED] (Lesseg, Jon) wrote: You need to hit the Attention Key (CNTL-F1 on my reflection 3270 emulator) to interrupt the Rexx. My PA-1 emulation moves me between mainframe accounts (IDMS test, CA-7, ISPF, etc). Checking my emulator, attention is CTL-A

Re: JAVA Support for a Novice - square bracket translation

2007-03-20 Thread Howard Brazee
I edited the [] to two letters and did a TSO change command to x'ad' and x'bd' respectively. I still got: FSUM1009 Unable to execute the shell. Options Report for Enclave main 03/20/07 12:46:02 PM Language Environment V01 R07.00 My keyboard emulator said

Re: JAVA Support for a Novice

2007-03-20 Thread Howard Brazee
On 20 Mar 2007 09:03:04 -0700, [EMAIL PROTECTED] (McKown, John) wrote: /TMP should have been /tmp (lowercase). There is not likely to be a /TMP subdirectory. The original message had it in lowercase, so you edit session is likely set to CAPS ON. UNIX work pretty much demands CAPS OFF to not mess

Re: JAVA Support for a Novice

2007-03-20 Thread Veilleux, Jon L
PROTECTED] (860) 636-2683 -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Howard Brazee Sent: Tuesday, March 20, 2007 3:05 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: JAVA Support for a Novice On 20 Mar 2007 09:03:04 -0700, [EMAIL PROTECTED] (McKown

Re: JAVA Support for a Novice

2007-03-20 Thread Veilleux, Jon L
Sent: Tuesday, March 20, 2007 1:00 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: JAVA Support for a Novice On 20 Mar 2007 09:35:19 -0700, [EMAIL PROTECTED] (Veilleux, Jon L) wrote: John is correct. You must have CAPS OFF on your edit profile. Jon That got rid of the JCL error: IEF376I JOB/ZHBHELLO

Re: JAVA Support for a Novice

2007-03-20 Thread Howard Brazee
On 20 Mar 2007 12:24:46 -0700, [EMAIL PROTECTED] (Veilleux, Jon L) wrote: You can use OCOPY to send it to SYSOUT similar to this job which issues 'java fullversion' then copies the output to SYSOUT: //JESSTEP EXEC PGM=BPXBATCH,REGION=8M, // PARM='SH java

Re: JAVA Support for a Novice

2007-03-20 Thread Howard Brazee
On 20 Mar 2007 12:33:04 -0700, [EMAIL PROTECTED] (Veilleux, Jon L) wrote: Are you on z/OS 1.7 or above? If not then make sure that STDOUT and STDERR are pointing to HFS files: Yes. //STDOUT DD PATH='/tmp/test2.out',PATHOPTS=(OWRONLY,OCREAT) //STDERR DD

Re: JAVA Support for a Novice - square bracket translation

2007-03-20 Thread Ted MacNEIL
enter 'BRACK' Sounds like something Opus (Bloom County) would say. (8-{} - Too busy driving to stop for gas! -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the