Re: Bye all
You will be missed. A lot. On Fri, 3 Jan 2025 15:14:50 + Peter Relson <056a472f7cb4-dmarc-requ...@listserv.ua.edu> wrote: :>Hi, IBM-Mainers. :>I am retired as of January 1. :>I'll likely lurk and occasionally chime in, but I won't have access to a system or source to check things out, so any contributions will be limited by whatever I remember. :>I trust that other IBMers will continue to help. :>Peter Relsonz/OS Core Technology Design (retired) -- Binyamin Dissen http://www.dissensoftware.com Director, Dissen Software, Bar & Grill - Israel -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
Re: Bye all
I knew this day would come, and I internally have braced myself for it. Good luck with your future plans, and please don’t be a stranger! Heck, there’s always the emeritus SHARE rate. Cheers, Ray Sent from Gmail Mobile On Fri, Jan 3, 2025 at 07:15 Peter Relson < 056a472f7cb4-dmarc-requ...@listserv.ua.edu> wrote: > Hi, IBM-Mainers. > I am retired as of January 1. > I'll likely lurk and occasionally chime in, but I won't have access to a > system or source to check things out, so any contributions will be limited > by whatever I remember. > I trust that other IBMers will continue to help. > Peter Relsonz/OS Core Technology Design (retired) > > -- > For IBM-MAIN subscribe / signoff / archive access instructions, > send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN > -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
Re: Bye all
Peter It has been a pleasure working with you over the years! I've always enjoyed our discussions. You've been a great contributor to IBM-MAIN also. Best regards, Al I.S. Management Strategies, LTD. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
Re: Bye all
Catching with the holidays and all. Mr Relson you are a true technician, architect and engineer. While at IBM I was in awe of your command of the knowledge and content that is z/OS. I appreciated you very much because of your love of the platform and your competence to make it better. Belatedly I would also acknowledge Gary Puchkoff’s contributions as well as because of the both of you the platform is powerful and fulfills the promise made 60+ years ago to preserve customer investment and engineering excellence. Well done sir, enjoy your time in retirement and I hope part of your retirement passion extends to continuing to educate, enrich and expand the platform as it seems to me that is part of your soul. Thanks for everything you’ve done over your long and distinguished career sir. Matt Hogstrom PGP key 0F143BC1 > On Jan 4, 2025, at 03:51, Farley, Peter > <031df298a9da-dmarc-requ...@listserv.ua.edu> wrote: > > Peter, > > I can only echo all the others who saw your message earlier than I did – > please go enjoy the rest of your life, and many, many thanks for all the > knowledge and support you provided to us all. You will be very sorely missed. > > Peter > > From: IBM Mainframe Discussion List On Behalf Of > Peter Relson > Sent: Friday, January 3, 2025 10:15 AM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Bye all > > > Hi, IBM-Mainers. > > I am retired as of January 1. > > I'll likely lurk and occasionally chime in, but I won't have access to a > system or source to check things out, so any contributions will be limited by > whatever I remember. > > I trust that other IBMers will continue to help. > > Peter Relsonz/OS Core Technology Design (retired) > > -- > > > > This message and any attachments are intended only for the use of the > addressee and may contain information that is privileged and confidential. If > the reader of the message is not the intended recipient or an authorized > representative of the intended recipient, you are hereby notified that any > dissemination of this communication is strictly prohibited. If you have > received this communication in error, please notify us immediately by e-mail > and delete the message and any attachments from your system. > > > -- > For IBM-MAIN subscribe / signoff / archive access instructions, > send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
Re: Bye all
Peter, I can only echo all the others who saw your message earlier than I did – please go enjoy the rest of your life, and many, many thanks for all the knowledge and support you provided to us all. You will be very sorely missed. Peter From: IBM Mainframe Discussion List On Behalf Of Peter Relson Sent: Friday, January 3, 2025 10:15 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Bye all Hi, IBM-Mainers. I am retired as of January 1. I'll likely lurk and occasionally chime in, but I won't have access to a system or source to check things out, so any contributions will be limited by whatever I remember. I trust that other IBMers will continue to help. Peter Relsonz/OS Core Technology Design (retired) -- This message and any attachments are intended only for the use of the addressee and may contain information that is privileged and confidential. If the reader of the message is not the intended recipient or an authorized representative of the intended recipient, you are hereby notified that any dissemination of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by e-mail and delete the message and any attachments from your system. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
Re: REXX and RESTAPI calls
Another example is REST using MQSeries in a stateless flow. 1. The content format is a black block, often a terse/Cobol/C structure, not XML or HTML 2. It is self contained, so if there is a business transaction in several parts( eg signon, query, take action) the request parts can go to any available server (which may be workload balanced). Each individual flow is self contained, there is no state saved in the back end server(s). For example your name and address may be sent in each flow. With a stateful transaction, the request has to go back to the same server to complete the work. The backend knows the status, so the data flow is just changes in state. Having to parse XML etc is relatively expensive, hence the advantages of terse/Cobol/C structure format when you are doing 1,000 transactions a second. Colin On Fri, 3 Jan 2025 at 21:03, Rupert Reynolds wrote: > It doesn't even have to be http(s), just a client-server setup, although > these days of course it generally is https. > > I'd say it's the details that make it truly RESTful or not, and I think > Dylan Beattie's presentation I mentioned makes a good job of explaining > those details. > > Roops > > On Sun, 22 Dec 2024, 07:32 Mike Beer, wrote: > > > REST is just a series of HTTP or preferably HTTPS calls. > > Usually you have to register and you will have some kind of access code. > > In the first call this access information is transformed into a session > > token that must be used for any further transaction. > > > > The data returned is very often in JSON, but could also be XML. > > > > The session token may expire and for longer transactions it must > therefore > > be renewed. > > > > REST-calls can be made directly or can be part of a call-back service > -then > > the URL of the function has to be registered as well. > > > > Here is a summary of the differences between SOAP and REST: > > https://smartbear.com/blog/soap-vs-rest-whats-the-difference/ > > > > Best regards > > Mike > > > > -Original Message- > > From: IBM Mainframe Discussion List On Behalf > > Of > > Binyamin Dissen > > Sent: Samstag, 21. Dezember 2024 20:53 > > To: IBM-MAIN@LISTSERV.UA.EDU > > Subject: Re: REXX and RESTAPI calls > > > > I have been looking at REST and do not see how it is different than a set > > of > > HTTP transactions. > > > > What am I missing? > > > > On Wed, 18 Dec 2024 19:04:56 + "Shumate, Scott" > > <0752f95efdcf-dmarc-requ...@listserv.ua.edu> wrote: > > > > :>Truist Data Risk Classification: [-Public-] > > > > :>Does anyone have any experience with REXX making a REST API call to > > service now? If so, could you point me in the right direction? > > > > -- > > Binyamin Dissen > http://www.dissensoftware.com > > > > Director, Dissen Software, Bar & Grill - Israel > > > > -- > > For IBM-MAIN subscribe / signoff / archive access instructions, send > email > > to lists...@listserv.ua.edu with the message: INFO IBM-MAIN > > > > -- > > For IBM-MAIN subscribe / signoff / archive access instructions, > > send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN > > > > -- > For IBM-MAIN subscribe / signoff / archive access instructions, > send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN > -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
Re: Bye all
Just the other day, I benefited from Peter's technical prowess on an IBM-MAIN discussion from 2015. And this is far from the first time. Thank you, Peter, for your participation here. It made a big difference for us all. Enjoy your retirement but keep on giving us tips here when you can. Best of luck! -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN