Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Farley, Peter x23353
SRST will do it nicely. From the instruction samples in Appendix A of the PoOP: SRST Example 2 Following is an example program that determines the address of the first character equal to C1 hex in the string A whose length is known. The program is not written for execution in the access-register

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread J O Skip Robinson
Yes, a one qualifier data set can be cataloged. We have one. SRST looks very cool. Thanks for the pointer! A simple loop searching for '.' works but is not something to put on your resume. ;-) TRT is snazzier but requires TLC for registers, especially R2. I imagine that TRT was invented back

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Itschak Mugzach
The main difference between srtr and trt is that trt looks for one or more delimitets and srtr for a single on and requires less storage (the translate table). Itschak בתאריך 13 במרץ 2015 20:52, ‏J O Skip Robinson jo.skip.robin...@sce.com כתב: Yes, a one qualifier data set can be cataloged. We

accounting packages

2015-03-13 Thread Benjamin Huntsman
Pardon the dumb question, but I'm just curious... Does anyone know of any financial accounting packages available on the market for z/OS (or VSE), that may be small(ish)-business friendly? Or do pretty much all mainframe customers roll their own? Many thanks! -Ben

Missing something obvious...

2015-03-13 Thread Phil Smith
I'm trying to test something that requires running with a (user) key other than 8. In my program: XRR2,R2 IPK , DC X'00' I have a PARMLIB member, SCHED01: PPT PGMNAME(TESTKEYX) KEY(E) PRIV I've done a SET SCH=01 TESTKEYX is in an

Re: Missing something obvious...

2015-03-13 Thread Leonardo Vaz
Are you on z/OS 2.1? Can you do a D PPT? -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Phil Smith Sent: Friday, March 13, 2015 2:12 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Missing something obvious... I'm trying to test something

Re: Missing something obvious...

2015-03-13 Thread Phil Smith
Leonardo Vaz wrote: I believe your problem is that the decimal KEY has to be specified in SCHEDxx: KEY(14) instead of KEY(E) should do it. We have a winnah! First try, too! Thank you sir. Happy Friday. ...phsiii (muttering about lack of parameter validation...)

Re: FW: valid ftp address

2015-03-13 Thread Bonno, Tuco
Well, ftp.emea.ibm.com is a valid address for FTP and //ftp.emea.ibm.com is a valid URL for your browser, but ftp.emea.ibm.comftp://ftp.emea.ibm.com is neither. believe me, that ( the string beginning w/ 'ftp' and INCLUDING ftp and ending with '' ) is NOT how it went out when i

Fw: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Sri h Kolusu
Oops I noticed that you need both second and third qualifier. use the following JCL //STEP0100 EXEC PGM=SORT //SYSOUT DD SYSOUT=* //SORTIN DD * FIRST.SECOND.THIRD SYS1.PARMLIB SYS2.NPLEX1.FILE.NODE4 IBM.MAIN.LIST.PARSE.EXAMPLE SYS1.GDG.CONLEY.TEST.G0005V00 //SORTOUT DD SYSOUT=*

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Barkow, Eileen
You can code something like this: L TABREG,=A(TRANTAB) LA9,DATA TRL TRT 0(9,8),0(TABREG) FIND DELIM in 8 bytes BZNODELIM NO DELIM LR9,1 ADDRESS OF . LA9,1(9) POINT AFTER .

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Charles Mills
The classic approach is TRT, which is a little bit of a PITA (R2 anyone?) but does the job. It is a single machine instruction but that does not mean it's fast! There is a new instruction (new relative to a lot of us LOL) search string (as I recall) that is more straightforward and might be

Re: Missing something obvious...

2015-03-13 Thread Leonardo Vaz
I believe your problem is that the decimal KEY has to be specified in SCHEDxx: KEY(14) instead of KEY(E) should do it. Leo -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Phil Smith Sent: Friday, March 13, 2015 2:12 PM To:

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Sri h Kolusu
Tom, It is not assembler but it is quite simple with DFSORT to extract the node names. //STEP0100 EXEC PGM=SORT //SYSOUT DD SYSOUT=* //SORTIN DD * FIRST.SECOND.THIRD SYS1.PARMLIB SYS2.NPLEX1.FILE.NODE4 IBM.MAIN.LIST.PARSE.EXAMPLE SYS1.GDG.CONLEY.TEST.G0005V00 //SORTOUT DD SYSOUT=*

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Steve Thompson
On 03/13/2015 01:43 PM, Charles Mills wrote: The classic approach is TRT, which is a little bit of a PITA (R2 anyone?) but does the job. It is a single machine instruction but that does not mean it's fast! There is a new instruction (new relative to a lot of us LOL) search string (as I

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread John McKown
I sometimes did a TRT to scan the string for one, or more, characters. Initialize GPR1 to point to the end of the string. But TRT is sometimes slow. Looping is not necessarily bad. The following code will likely run quite fast: LA R3,STRING LA R4,1 LA

Re: valid ftp address

2015-03-13 Thread Nims,Alva John (Al)
I think most places block PING and TRACERT from a Denial of Service attack using PING, that was done A LONG TIME AGO Al Nims Systems Admin/Programmer 3 Information Technology University of Florida (352) 273-1298 -Original Message- From: IBM Mainframe Discussion List

Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Pinnacle
I have a dataset FIRST.SECOND.THIRD, and I want to get SECOND.THIRD. Normally I would loop to one character at a time to get to the '.', but I need performance here. I sure some of you assembler gurus could give me some inscrutable assembler to get there in like one or two instructions.

Re: valid ftp address

2015-03-13 Thread Charles Mills
My point was not whether or not the ping succeeded. My point was whether or not ping was able to resolve the URL, which is way independent of sites blocking ping to avoid various security problems. Charles -Original Message- From: IBM Mainframe Discussion List

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Paul Gilmartin
On Fri, 13 Mar 2015 10:43:34 -0700, Charles Mills wrote: Watch out for the no second qualifier special case. FOOBAR is a valid dataset name. Can it be catalogued? Is it copacetic to SMS? (I think SMPMCS is prevalent on SMP/E installation tapes, and the OP didn't require that the data set was

Re: accounting packages

2015-03-13 Thread Benjamin Huntsman
Is there a reason that it needs to be on the mainframe? If it's a small business, there are plenty of suitable accounting packages such as QuickBooks available at a low price. No, no reason at all. I'm just not aware of any such products that do run on the Mainframe, and didn't find any with

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Shmuel Metz (Seymour J.)
In 55031e32.7030...@rochester.rr.com, on 03/13/2015 at 01:28 PM, Pinnacle pinnc...@rochester.rr.com said: I have a dataset FIRST.SECOND.THIRD, Do you also want to validate the input as well? What if an index level is empty or longer than 8? What if there are more than 3 levels? I need

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Shmuel Metz (Seymour J.)
In cy1pr0101mb076377151f6a78639bf43e6cce...@cy1pr0101mb0763.prod.exchangelabs.com, on 03/13/2015 at 06:51 PM, J O Skip Robinson jo.skip.robin...@sce.com said: I imagine that TRT was invented back in the day because so many routines needed to parse on delimiters. It's kind of clunky if you're

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Charles Mills
TRT does more which makes me guess that it is slower. TRT looks up each byte in a table, checks whether the table value is zero or not, and if not, inserts the value into R2. SRST just compares each byte to a particular value. Charles -Original Message- From: IBM Mainframe Discussion

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Tom Marchant
On Fri, 13 Mar 2015 21:19:03 +0200, Itschak Mugzach wrote: The main difference between srtr and trt is that trt looks for one or more delimitets and srtr for a single on and requires less storage (the translate table). I suspect that SRST is also considerably faster. TRT is notoriously slow.

Re: accounting packages

2015-03-13 Thread Gord Tomlin
On 2015-03-13 14:04, Benjamin Huntsman wrote: Pardon the dumb question, but I'm just curious... Does anyone know of any financial accounting packages available on the market for z/OS (or VSE), that may be small(ish)-business friendly? Or do pretty much all mainframe customers roll their own?

Re: accounting packages

2015-03-13 Thread Charles Mills
I suppose any Linux-based accounting software might be available for and/or could be ported to z Linux. Charles -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Scott Barry Sent: Friday, March 13, 2015 3:43 PM To:

Re: Clarification On SDUMPX

2015-03-13 Thread Dno
Man, you write some wicked code. They have that much asm at emblem? Sent from my iPhone On Mar 8, 2015, at 4:18 PM, esst...@juno.com esst...@juno.com wrote: Binyamin wrote Use the hardware instructions for primary and secondary, Home can be obtained from PSAAOLD. For te Hardware

slightly OT: Analysis: What's behind the White House's claim of 545,000 unfilled IT jobs

2015-03-13 Thread Ed Gould
http://www.computerworld.com/article/2896517/behind-the-white-house-s- claim-of-545-000-unfilled-it-jobs.html? phint=newt=computerworld_daily_sharkphint=idg_eid=0fcfb2f14826bbc9d194a d02238b4ff8#tk.CTWNLE_nlt_shark_2015-03-13 Earlier this week, the White House announced a plan to use $100

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Tom Marchant
On Fri, 13 Mar 2015 18:50:44 -0500, Mike Schwab wrote: Maybe the z13 will execute multiple bytes in parallel? One byte being looked up per core. A core is a CPU. You are proposing running two tasks (or SRBs). Then a cycle to check the condition codes and how many to accept. And you want to

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Robert A. Rosenberg
At 16:09 -0400 on 03/13/2015, Shmuel Metz (Seymour J.) wrote about Re: Need assembler trick to quickly get second and third DS: I imagine that TRT was invented back in the day because so many routines needed to parse on delimiters. It's kind of clunky if you're only searching for one

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Shane Ginnane
On Fri, 13 Mar 2015 15:12:50 -0700, Ed Jaffe edja...@phoenixsoftware.com wrote: Poor TRT has become a casualty of modern hardware economics. It's a complex instruction, with no analog on other platforms, that is no longer used often enough to rate prime-location silicon chip real-estate. It was

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Mike Schwab
Maybe the z13 will execute multiple bytes in parallel? One byte being looked up per core. Then a cycle to check the condition codes and how many to accept. On Fri, Mar 13, 2015 at 5:12 PM, Ed Jaffe edja...@phoenixsoftware.com wrote: On 3/13/2015 11:51 AM, J O Skip Robinson wrote: SRST looks

Re: Sample JCL to alter sideinfo - APPCPM00

2015-03-13 Thread milton sano
Try //APPC EXEC PGM=ATBSDFMU //SYSSDLIB DD DISP=SHR,DSN=sys1.sideinfo == VSAM //SYSSDOUT DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SYSIN DD * SIMODIFY DESTNAME() TPNAME() MODENAME(modename) PARTNER_LU(partner) Milton A. Sano On 13/03/2015 09:58, Elardus Engelbrecht

Re: Need assembler trick to quickly get second and third DS qualifiers

2015-03-13 Thread Ed Jaffe
On 3/13/2015 11:51 AM, J O Skip Robinson wrote: SRST looks very cool. Thanks for the pointer! A simple loop searching for '.' works but is not something to put on your resume. ;-) TRT is snazzier but requires TLC for registers, especially R2. I imagine that TRT was invented back in the day

Re: accounting packages

2015-03-13 Thread Scott Barry
Consider Nicus' M-PWR software solution for multi-platform (and non-computing metrics) accounting/chargeback (show-back, cost-allocation, your term goes here) as part of an IT Financial Management strategy. Agents collect metrics from various sources / OS platforms, forwards the data to a

Re: Dump Defaults (Was: SLIP IF Trap?)

2015-03-13 Thread Barbara Nitz
For HVCOMMON, I would think that SDUMP should be turning on the common storage bit in the dump record prefix, and IPCS should be respecting that and allowing you to access the storage via any ASID. Big thanks (again) to Jim Mulder for looking at this. SDUMP does indeed everything it should and

Migrating z/os version and increase of cpu usage

2015-03-13 Thread Hilario G.
We have migrated from Z / os 1.7 to Z / os 1.13. Applications that run on mainframe are the same. We detected a significant increase in CPU usage both transactions Cics and processes batch. I understand the code of the operating system and software products has increased to provide added

Re: Migrating z/os version and increase of cpu usage

2015-03-13 Thread Anthony Thompson
That's a big upgrade. From an unsupported release of z/OS to a version of z/OS that isn't the latest anyway. You don't say how you measure CPU usage (your 'detection' methodology). Are they standardized RMF reports? Has there been an associated hardware upgrade (i.e. any change in MSU's)?

SMPE LINK LMOD

2015-03-13 Thread Mainframe Mainframe
Hello Group, I tried looking at LINK LMODS utility for CALLIBS, but I didn't understand exact usages . I also referred couple of IBM link for this and one of them is below. http://www-01.ibm.com/support/knowledgecenter/SSLTBW_2.1.0/com.ibm.zos.v2r1.gim3000/rlmtuc.htm

Re: Migrating z/os version and increase of cpu usage

2015-03-13 Thread Itschak Mugzach
Did u reconfigured LE? ITschak בתאריך 13 במרץ 2015 10:06, ‏Hilario G. fjand...@cesce.es כתב: We have migrated from Z / os 1.7 to Z / os 1.13. Applications that run on mainframe are the same. We detected a significant increase in CPU usage both transactions Cics and processes batch. I

Re: Economics of Mainframe Technology

2015-03-13 Thread Linda
Hi Art, Your recollection of the figures from the keynote matches mine. Linda Sent from my iPhone On Mar 10, 2015, at 1:36 PM, Art Gutowski arthur.gutow...@gm.com wrote: If my notes are accurate from Ross' Keynote address to SHARE attendees in Seattle, mainframes account for 68% of

Re: Migrating z/os version and increase of cpu usage

2015-03-13 Thread Vernooij, CP (ITOPT1) - KLM
Did you notice the increase in Service units or in CPU seconds? In the period that you traversed with the upgrade, the MSU calculation has changed, search the archives. Kees. -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Hilario

Re: Economics of Mainframe Technology

2015-03-13 Thread Itschak Mugzach
so what are you saying? those IT managers that cut the mainframe market by 50%+ in few years by migration to WUL platforms didn't know to calculate? The numbers in the webcast can be explained. There is a high-cost entry level to the mainframe market, which only those who are already there (or

Secure FTP

2015-03-13 Thread Richards, Robert B.
Kurt, Speaking of FTP. What is the best way to customize my batch SMP/E JCL to execute Secure FTP every time I submit a RECEIVEFROMNETWORK? I know I need to change from standard FTP to secure FTP and am looking for the *best* way to provide this, either for myself, or better yet, all of

Re: Sample JCL to alter sideinfo - APPCPM00

2015-03-13 Thread Vernooij, CP (ITOPT1) - KLM
Not possible via JCL, only via the APPC Administration dialog (ICQASRM0). There you have: - TP Profile Administration - Side Information Administration - Database Token Administration Kees. -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf

Re: valid ftp address

2015-03-13 Thread Bonno, Tuco
yes, i did read up the two links you were kind enough to provide and in the midst got sidetracked here. there were a several alternate addresses mentioned therein thank you. and thanks to EVERYBODY who responded !! -Original Message- From: IBM Mainframe Discussion List

NTP in danger?

2015-03-13 Thread John McKown
From Slashdot: http://developers.slashdot.org/story/15/03/12/2218259/ntps-fate-hinges-on-father-time referencing http://www.informationweek.com/it-life/ntps-fate-hinges-on-father-time/d/d-id/1319432 quote ... Not all is well within the NTP open source project. The number of volunteer

Re: Sample JCL to alter sideinfo - APPCPM00

2015-03-13 Thread Peter
Hi Alan, Thank you so much. Peter On Fri, Mar 13, 2015 at 7:23 PM, Field, Alan alan.fi...@bluecrossmn.com wrote: Like this: //APPCUTIL EXEC PGM=ATBSDFMU,PARM='TYPRUN=RUN' //SYSSDLIB DD DISP=SHR,DSN=SYS1.APPCSI //SYSSDOUT DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SYSIN DD *

Re: SMPE LINK LMOD

2015-03-13 Thread Tom Marchant
On Fri, 13 Mar 2015 15:26:38 +0530, Mainframe Mainframe wrote: (quote from SMP/E User's Guide snipped) //SMPOUT DD SYSOUT=* //SMPRPT DD SYSOUT=* //SMPLOG DD SYSOUT=* //SMPLOGA DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SMPCNTL DD * SET BDY(CIC52T) OPTIONS(CICSOPT). LINK CHECK LMODS

FW: valid ftp address

2015-03-13 Thread Bonno, Tuco
i've got a pmr open w/ ibm . subject, issue, at this point, for this thread is irrelevant the commo i'm having w/ ibm requests me to ftp stuff to an address ftp.emea.ibm.comftp://ftp.emea.ibm.com i am unable to do so – browser says firewall issue when i discuss the issue w/ the

Sample JCL to alter sideinfo - APPCPM00

2015-03-13 Thread Peter
Hello Group, I am trying to find a sample JCL to alter the information from SIDEINFO VSAM file. Does anyone have a sample JCL on how to ? I don't see any sample to modify the Sideinfo dataset in Samplib. Peter -- For IBM-MAIN

Re: valid ftp address

2015-03-13 Thread Pommier, Rex
Tuco, I just tried to ftp to ftp.emea.ibm.com both from within a browser and straight from a command prompt, and got domain name does not exist. Rex -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Bonno, Tuco Sent: Friday, March

Re: Knowledgecentre versus the library server

2015-03-13 Thread Staller, Allan
Agreed! snip From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Ed Finnell ISTM it's not the software but the management of the software that's sorely lacking. Seems to be no concept of service levels or availability, Other than us yakking about it, it's

Re: Sample JCL to alter sideinfo - APPCPM00

2015-03-13 Thread Peter
Hi, Using UTILITY ATBSDFMU with SIMODIFY selectively modifying a entry ? For example Modifying DESTNAME(ZONE23) to DESTNAME(ZONE24) ? Can we do this similarly ? Peter On Fri, Mar 13, 2015 at 6:28 PM, Elardus Engelbrecht elardus.engelbre...@sita.co.za wrote: Peter wrote: I am trying to

Re: SMPE LINK LMOD

2015-03-13 Thread Kurt Quackenbush
//SMPCNTL DD * SET BDY(CIC52T) OPTIONS(CICSOPT). LINK CHECK LMODS CALLLIBS(SCEELKED). I never used this before. Can you please help me understand that what this JCL will be doing. In this example, SMP/E will relink load modules in the CIC52T target zone that have SCEELKED in their

Re: FW: valid ftp address

2015-03-13 Thread Kurt Quackenbush
... ftp.emea.ibm.com can anybody out there ftp to this thing? Not me, not even from within the IBM firewall. I'm guessing a typo on the server name. Kurt Quackenbush -- IBM, SMP/E Development -- For IBM-MAIN subscribe /

Re: FW: valid ftp address

2015-03-13 Thread Elardus Engelbrecht
Bonno, Tuco wrote: i've got a pmr open w/ ibm . subject, issue, at this point, for this thread is irrelevant the commo i'm having w/ ibm requests me to ftp stuff to an address ftp.emea.ibm.comftp://ftp.emea.ibm.com Old recurring problem. And big blue tried to tell all that the

Re: Sample JCL to alter sideinfo - APPCPM00

2015-03-13 Thread Elardus Engelbrecht
Peter wrote: Using UTILITY ATBSDFMU with SIMODIFY selectively modifying a entry ? Look in book 'MVS Planning: APPC/MVS Management '. There is a JCL sample. For example Modifying DESTNAME(ZONE23) to DESTNAME(ZONE24) ? Can we do this similarly ? I'm not sure, perhaps you can RTFM that book?

Re: Migrating z/os version and increase of cpu usage

2015-03-13 Thread Tom Marchant
On Fri, 13 Mar 2015 02:55:49 -0500, Hilario G. wrote: We have migrated from Z / os 1.7 to Z / os 1.13. Applications that run on mainframe are the same. This has me wondering what you mean. Are applications that run on some other hardware different? Do those applications interface to

Re: Secure FTP

2015-03-13 Thread Staller, Allan
Use the TCPIP Policy Agent (Now contained within z/OSMF). snip What is the best way to customize my batch SMP/E JCL to execute Secure FTP every time I submit a RECEIVEFROMNETWORK? I know I need to change from standard FTP to secure FTP and am looking for the *best* way to provide this, either

OT: IBM could adopt Bitcoin tech

2015-03-13 Thread Elardus Engelbrecht
Yet another speculation about big blue... http://www.itweb.co.za/index.php?option=com_contentview=articleid=141875:IBM-could-adopt-Bitcoin-tech True? False? Yet another [early] April 1 joke? Groete / Greetings Elardus Engelbrecht

Mass downloads of IBM docs

2015-03-13 Thread David Boyes
If you use Firefox, there is a wonderful plugin called DownThemAll that you can use to automate the whole process. Once you get to the page Barbara described in your browser, you go to tools in Firefox, select downthemall. It shows you a list of all the page elements in that page. Unclick the

Re: valid ftp address

2015-03-13 Thread Charles Mills
I do not; that's why I ran this test. Yes, EMEA is fairly standard for Europe, Middle East and Africa. Charles -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Paul Gilmartin Sent: Friday, March 13, 2015 8:30 AM To:

Re: Migrating z/os version and increase of cpu usage

2015-03-13 Thread Lizette Koehler
To reiterate what others have stated: 1) What hardware (zSeries Server) are you running on? 2) How do measure the increase? 3) What tools are you using to measure your usage? 4) Were any applications recompiled for the upgrade? 5) Any other changes done at the time of the upgrade? Network

Re: valid ftp address

2015-03-13 Thread Paul Gilmartin
On Fri, 13 Mar 2015 06:44:36 -0700, Charles Mills wrote: C:\Users\Charlesftp ftp.emea.ibm.com Unknown host ftp.emea.ibm.com. C:\Users\Charlesping ftp.emea.ibm.com Ping request could not find host ftp.emea.ibm.com. Please check the name and try again. Ping may tell little. For example, I work

Re: valid ftp address

2015-03-13 Thread Elardus Engelbrecht
Paul Gilmartin wrote: Ping may tell little. For example, I work behind a filrewall that blocks ICMP. Indeed. At some places ping and tracert are disabled or blocked. Go figure... emea=Europe, the Middle East and Africa? Yup. Groete / Greetings Elardus Engelbrecht

Re: Sample JCL to alter sideinfo - APPCPM00

2015-03-13 Thread Field, Alan
Like this: //APPCUTIL EXEC PGM=ATBSDFMU,PARM='TYPRUN=RUN' //SYSSDLIB DD DISP=SHR,DSN=SYS1.APPCSI //SYSSDOUT DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SYSIN DD * SIDELETE

Re: valid ftp address

2015-03-13 Thread Jim Ladouceur
We had the same issue in one of our SRs in December and got this for a reply: Our apologies, the new process is to use the following FTP server instead of ftp.emea.ibm.com:

Re: valid ftp address

2015-03-13 Thread Barkow, Eileen
I do not think that you can ftp directly to IBM any more. You have to use the upload attachment function of SR to submit the documentation. -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Charles Mills Sent: Friday, March 13, 2015

Re: valid ftp address

2015-03-13 Thread Bonno, Tuco
yeah !!! when i click on the link, it works. thanks !! -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Jim Ladouceur Sent: Friday, 13 March, 2015 10:03 To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: valid ftp address We had the same

Re: valid ftp address

2015-03-13 Thread Elardus Engelbrecht
Bonno, Tuco wrote: yeah !!! when i click on the link, it works. thanks !! Excellent. Did you also read up the two links from IBM I posted for you? That address was also mentioned there. Groete / Greetings Elardus Engelbrecht

Re: valid ftp address

2015-03-13 Thread Charles Mills
C:\Users\Charlesftp ftp.emea.ibm.com Unknown host ftp.emea.ibm.com. C:\Users\Charlesping ftp.emea.ibm.com Ping request could not find host ftp.emea.ibm.com. Please check the name and try again. C:\Users\Charles Charles -Original Message- From: IBM Mainframe Discussion List

Re: valid ftp address

2015-03-13 Thread Bonno, Tuco
that may well be a true statement, but the commo i get from the guy ( downstream from when you open a PMR/SR with them at the very start ) says (in my paticular case ) in effect, produce a CEEDUMP for me, and send it to this ftp address and then it gives that url ; i'm waiting back other

Re: Mass downloads of IBM docs

2015-03-13 Thread Kevin Minerley
We do have each of the old shelves in a container (PKIT) that is downloadable from IBM Publications Center. Most of these were Advanced Linguistic Search (ALS) indexed which means the shelf and the contents basically have the the BookManager Index embedded in them. All of the should have an

Re: FW: valid ftp address

2015-03-13 Thread Shmuel Metz (Seymour J.)
In by2pr09mb064e8b4878b57b0cb984267fc...@by2pr09mb064.namprd09.prod.outlook.com, on 03/13/2015 at 12:49 PM, Bonno, Tuco t...@cio.sc.gov said: address ftp.emea.ibm.comftp://ftp.emea.ibm.com Well, ftp.emea.ibm.com is a valid address for FTP and //ftp.emea.ibm.com is a valid URL for your