× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



CGIDEV2 normally uses a template file, also called externally described HTML, for sending HTML to the browser.

The code you referenced is used in the sample program STATE when the program is unable to read the externally described HTML. In this case, it uses the WrtNoSection subprocedure to build a message for the browser without using a named section (portion) of any template file(s).

WrtNoSection is able to send large quantities of data by using a pointer to the data and the data's length. In this case, the variable 'out' is varying, so its first two bytes are its length. Therefore the two parameters are %addr(out) + 2 and %len(out).

WrtSection(*fini) is a special use of WrtSection that tells the service program to write all the HTML that has been buffered to standard output.

There is no CGIDEV2 function like the one you requested. Normally, it is not needed because all the standard HTML is contained in the template file(s).

I recommend that you spend some time with the CGIDEV2 tutorials at IBM's Easy400 site: http://www-922.ibm.com/cgidev2o/tutorial.htm.

Also, you might want to join the Yahoo Easy400Group at http://groups.yahoo.com/group/Easy400Group/. This group's purpose is thus:

"Site Easy400 (www.ibm.com/iseries/easy400) provides tools for IBM e-server iSeries400 RPG and COBOL programmers. Easy400 tools allow to easily develop web sites on iSeries 400. Easy400 tools are downloadable at no charge and include sources."


Mel Rothman, CGIDEV2 Author Mel Rothman, Inc.

Hatzenbeler, Tim wrote:
This might be a web400 question... since it's rpg, I wasn't sure...

I found this section, of code, if I wanted to write html straight to the
browser without using the substitute functions.  I was wondring if there was
a better routine?

c eval out = 'Content-type: text/html' + c newline + newline + '<html><body><head> - c <title>State Demonstration</title></head> - c <body title="State"><h1 align="center"> - c State Demonstration - c </h1><p>Error(s) ocurred. Programmer has - c been notified. Please try again later. - c </p></body></html>' c callp WrtNoSection(%addr(out)+2: c %len(out)) c callp WrtSection('*fini')

I would like a routine that does a simple out &  does the *fini... ie:

c                   callp     wrtweb('<td>name</td>')

Is there a function that does this? Or would I need to write a procedure to
combine the above functions?  Also, in the previous section, why would they
offset the %addr(out) by +2 (it was like this in the sample programs??)

Thanks, for your time, tim
This e-mail message, including any attachments, is for the sole use of the
intended recipient(s) and may contain confidential or privileged
information.  Any unauthorized review, use, disclosure or distribution is
prohibited.  If you are not the intended recipient, please contact the
sender by reply e-mail and destroy the message.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 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.