|
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. -- [ Picked text/plain from multipart/alternative ] Only one of the fields is input capable. I can get by with putting the fields elsewhere. I just thought it would have been better looking and easier to use the other way . I appriciate all of the help and Ideas. Griz -----Original Message----- From: rpg400-l-request@midrange.com [mailto:rpg400-l-request@midrange.com] Sent: Tuesday, October 02, 2001 12:01 PM To: rpg400-l@midrange.com Subject: RPG400-L digest, Vol 1 #122 - 5 msgs Send RPG400-L mailing list submissions to rpg400-l@midrange.com To subscribe or unsubscribe via the World Wide Web, visit http://lists.midrange.com/cgi-bin/listinfo/rpg400-l or, via email, send a message with subject or body 'help' to rpg400-l-request@midrange.com You can reach the person managing the list at rpg400-l-admin@midrange.com When replying, please edit your Subject line so it is more specific than "Re: Contents of RPG400-L digest..." Today's Topics: 1. RE: Subfile Question (Buck Calabro) 2. RE: Subfile Question (Mark A. Manske) 3. Re: Doing a HTTP Post from rpg program (Brad Stone) 4. Re: Sending Email With RPG (Brad Stone) 5. Re: Sending Email With RPG (Andrew.Lutz@abbott.com) --__--__-- Message: 1 From: Buck Calabro <Buck.Calabro@commsoft.net> To: rpg400-l@midrange.com Subject: RE: Subfile Question Date: Tue, 2 Oct 2001 10:22:46 -0400 Reply-To: rpg400-l@midrange.com >I have a subfile that has 3 fields. I want to place additional >non-subfile >fields on the same rows as the subfile but keep them outside >of the subfile. >In other words I want to place fields just to the right of the >subfile. Sounds like turning a web-based app into a green screen app! You can use a pop-up window and position it over the right-hand "empty" subfile record, but that won't allow the user to type in the subfile record area. Are these extra fields input capable? --buck --__--__-- Message: 2 From: "Mark A. Manske" <mmanske@minter-weisman.com> To: <rpg400-l@midrange.com> Subject: RE: Subfile Question Date: Tue, 2 Oct 2001 09:34:53 -0500 Reply-To: rpg400-l@midrange.com That is not possible, a subfile takes position 1-80 of each line, you can only have "non-subfile" fields on record formats either below or above the subfile. A windowed subfile will work, but you did not say "how" these extra fields are being used; so this may not be an option. The way around this is "ugly", but I used to work on a S/34 and S/36(pre-subfile days). So do not code this as a subfile, then you can layout your screen just how you want it to look - its not pretty, and can be a lot of extra work; you have to control everything, and have different field names for all the "records" in your fake subfile. HTH Mark A. Manske Fleming CSD - Plymouth Division Sr. Project Lead http://www.minter-weisman.com mailto:mmanske@minter-weisman.com -----Original Message----- From: rpg400-l-admin@midrange.com [mailto:rpg400-l-admin@midrange.com]On Behalf Of Malchow, Grizzly Sent: Tuesday, October 02, 2001 9:09 AM To: 'rpg400-l@midrange.com' Subject: Subfile Question This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. -- [ Picked text/plain from multipart/alternative ] I have a subfile that has 3 fields. I want to place additional non-subfile fields on the same rows as the subfile but keep them outside of the subfile. In other words I want to place fields just to the right of the subfile. I first tried putting the fields in my subfile control, but I got compile errors because the Control overlapped the subfile. I then put the fields into a different record Format. I can get everything to compile, but the fields that are supposed to be to the right of the subfile are not being displayed. My guess is the subfile is overlapping the record format. Does anyone know if I can specify the subfile size horizontally so I can put non-subfile fields on the same rows that the subfile is using? Grizzly Malchow - Programmer/Analyst Gross-Given Mfg./Automatic Products International Direct (651) 290-6185 Fax (651) 224-5559 gmalchow@automaticproducts.com http://www.automaticproducts.com/ Visit The St. Paul Pigs Rugby Football Club Website! http://www.saintpaulrugby.com _______________________________________________ This is the RPG programming on the AS400 / iSeries (RPG400-L) mailing list To post a message email: RPG400-L@midrange.com To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/cgi-bin/listinfo/rpg400-l or email: RPG400-L-request@midrange.com Before posting, please take a moment to review the archives at http://archive.midrange.com/rpg400-l. --__--__-- Message: 3 From: "Brad Stone" <brad@bvstools.com> Subject: Re: Doing a HTTP Post from rpg program To: rpg400-l@midrange.com Date: Tue, 02 Oct 2001 11:13:20 -0500 Reply-To: rpg400-l@midrange.com And it's refreshing to have someone say that it's refreshing! And not get any negative replies! I've worked for companies that have their own data tagging system. They work great. Brad On Tue, 2 Oct 2001 08:51:38 +1200 Peter Connell <peterc@baycorp.co.nz> wrote: > Brad, > Refreshing to see someone else who doesn't think that > everything now has use > XML protocol just because "it's there". > Peter > > -----Original Message----- > From: Brad Stone [mailto:brad@bvstools.com] > Sent: Saturday, September 29, 2001 1:33 AM > To: rpg400-l@midrange.com > Subject: Re: Doing a HTTP Post from rpg program > > > Depends on what you mean. For the data that is returned, > most definatly yes. (or, it could be your companie's own > proprietary method of data communication). > > But sending, I don't see why you'd use XML, except to > keep > the parms you can pass INTO the program as "unrestricted" > as > possible. It's like... > > /pgm/getdata?fname=brad&lname=stone > vs. > /pgm/getdata?data=<firstname>brad</firstname><lastname>stone</lastname> > > I prefer #1 because you can control the data sent, you > don't > have to parse XML, and there is less physical data moving > between machines. > > Brad > > On Thu, 27 Sep 2001 18:36:18 -0400 > "Alan Addison" <ahaddison@home.com> wrote: > > That is where xml really comes into play. > > > > -----Original Message----- > > From: rpg400-l-admin@midrange.com > > [mailto:rpg400-l-admin@midrange.com]On > > Behalf Of Joep Beckeringh > > Sent: Thursday, September 27, 2001 5:59 PM > > To: rpg400-l@midrange.com > > Subject: Re: Doing a HTTP Post from rpg program > > > > > > Brad, > > > > What I meant was that I can see the use of a program, > > like a web crawler, > > making GET requests to retrieve static pages. But when > > you make POST > > requests, or GET requests with parameters, you are > > effectively communicating > > with a program on the server, aren't you? That implies > > that you have to > > know which parameters that program is expecting; or in > > other words, you have > > define an interface between the two programs. And that > > is what made me > > think of APPC (I always wondered how anyone could call > > something like that > > 'advanced'). > > > > Joep Beckeringh > > > > ----- Original Message ----- > > From: "Brad Stone" <brad@bvstools.com> > > To: <rpg400-l@midrange.com> > > Sent: Thursday, September 27, 2001 7:45 PM > > Subject: Re: Doing a HTTP Post from rpg program > > > > > > > You don't have a choice on your end if it's is GET or > > POST, > > > really. It's the server side that lets you know if > one > > or > > > either or both will work. > > > > > > Making a POST request is not that different from > making > > a > > > GET request. Just a few more parms in the HTTP > header > > > portion of the request being made. > > > > > > Brad > > > > > > > > _______________________________________________ > > This is the RPG programming on the AS400 / iSeries > > (RPG400-L) mailing list > > To post a message email: RPG400-L@midrange.com > > To subscribe, unsubscribe, or change list options, > > visit: http://lists.midrange.com/cgi-bin/listinfo/rpg400-l > > or email: RPG400-L-request@midrange.com > > Before posting, please take a moment to review the > > archives > > at http://archive.midrange.com/rpg400-l. > > > > > > _______________________________________________ > > This is the RPG programming on the AS400 / iSeries > > (RPG400-L) mailing list > > To post a message email: RPG400-L@midrange.com > > To subscribe, unsubscribe, or change list options, > > visit: http://lists.midrange.com/cgi-bin/listinfo/rpg400-l > > or email: RPG400-L-request@midrange.com > > Before posting, please take a moment to review the > > archives > > at http://archive.midrange.com/rpg400-l. > > > > Bradley V. Stone > BVS.Tools > www.bvstools.com > _______________________________________________ > This is the RPG programming on the AS400 / iSeries > (RPG400-L) mailing list > To post a message email: RPG400-L@midrange.com > To subscribe, unsubscribe, or change list options, > visit: http://lists.midrange.com/cgi-bin/listinfo/rpg400-l > or email: RPG400-L-request@midrange.com > Before posting, please take a moment to review the > archives > at http://archive.midrange.com/rpg400-l. > > This communication is confidential and may be legally > privileged. > If it is not addressed to you, you are on notice of its > status. > Please immediately contact us at our cost and destroy it. > Please do not use, disclose, copy, distribute or retain > any of it > without our authority - to do so could be a breach of > confidence. > Thank you for your co-operation. > Please contact us on (09) 356 5800 if you need > assistance. > _______________________________________________ > This is the RPG programming on the AS400 / iSeries > (RPG400-L) mailing list > To post a message email: RPG400-L@midrange.com > To subscribe, unsubscribe, or change list options, > visit: http://lists.midrange.com/cgi-bin/listinfo/rpg400-l > or email: RPG400-L-request@midrange.com > Before posting, please take a moment to review the > archives > at http://archive.midrange.com/rpg400-l. > Bradley V. Stone BVS.Tools www.bvstools.com --__--__-- Message: 4 From: "Brad Stone" <brad@bvstools.com> Subject: Re: Sending Email With RPG To: rpg400-l@midrange.com Date: Tue, 02 Oct 2001 11:14:35 -0500 Reply-To: rpg400-l@midrange.com If Domino is using the AS/400 SMTP server, then yes. If not (ie you're using Domino's native SMTP server) you need to set up the AS/400 HTTP server. Either that or see if domino has some commands or APIs you can tap into. Brad On Tue, 2 Oct 2001 09:48:05 -0400 MWalter@hanoverwire.com wrote: > Hello all, > > Is is possible to send email from RPG or CL via a Domino > Server located in > the Same iSeries Box? If so would you use SNDDST, or are > there API's for > this? > > > Thanks, > > Mark > > > Mark Walter > Sr. Programmer/Analyst > Hanover Wire Cloth a div of CCX, Inc. > mwalter@hanoverwire.com > http://www.hanoverwire.com > 717.637.3795 Ext.3040 > > _______________________________________________ > This is the RPG programming on the AS400 / iSeries > (RPG400-L) mailing list > To post a message email: RPG400-L@midrange.com > To subscribe, unsubscribe, or change list options, > visit: http://lists.midrange.com/cgi-bin/listinfo/rpg400-l > or email: RPG400-L-request@midrange.com > Before posting, please take a moment to review the > archives > at http://archive.midrange.com/rpg400-l. > Bradley V. Stone BVS.Tools www.bvstools.com --__--__-- Message: 5 Subject: Re: Sending Email With RPG To: rpg400-l@midrange.com From: Andrew.Lutz@abbott.com Date: Tue, 2 Oct 2001 11:30:48 -0500 Reply-To: rpg400-l@midrange.com How is this done? regarding the e-mail function....... 'set up the AS/400 HTTP Server' "Brad Stone" <brad@bvstools.co To: rpg400-l@midrange.com m> cc: Sent by: Subject: Re: Sending Email With RPG rpg400-l-admin@mi drange.com 10/02/2001 11:14 AM Please respond to rpg400-l If Domino is using the AS/400 SMTP server, then yes. If not (ie you're using Domino's native SMTP server) you need to set up the AS/400 HTTP server. Either that or see if domino has some commands or APIs you can tap into. Brad On Tue, 2 Oct 2001 09:48:05 -0400 MWalter@hanoverwire.com wrote: > Hello all, > > Is is possible to send email from RPG or CL via a Domino > Server located in > the Same iSeries Box? If so would you use SNDDST, or are > there API's for > this? > > > Thanks, > > Mark > > > Mark Walter > Sr. Programmer/Analyst > Hanover Wire Cloth a div of CCX, Inc. > mwalter@hanoverwire.com > http://www.hanoverwire.com > 717.637.3795 Ext.3040 > > _______________________________________________ > This is the RPG programming on the AS400 / iSeries > (RPG400-L) mailing list > To post a message email: RPG400-L@midrange.com > To subscribe, unsubscribe, or change list options, > visit: http://lists.midrange.com/cgi-bin/listinfo/rpg400-l > or email: RPG400-L-request@midrange.com > Before posting, please take a moment to review the > archives > at http://archive.midrange.com/rpg400-l. > Bradley V. Stone BVS.Tools www.bvstools.com _______________________________________________ This is the RPG programming on the AS400 / iSeries (RPG400-L) mailing list To post a message email: RPG400-L@midrange.com To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/cgi-bin/listinfo/rpg400-l or email: RPG400-L-request@midrange.com Before posting, please take a moment to review the archives at http://archive.midrange.com/rpg400-l. --__--__-- _______________________________________________ This is the RPG programming on the AS400 / iSeries (RPG400-L) digest list To post a message email: RPG400-L@midrange.com To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/cgi-bin/listinfo/rpg400-l or email: RPG400-L-request@midrange.com Before posting, please take a moment to review the archives at http://archive.midrange.com/rpg400-l. End of RPG400-L Digest
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.