Bob, you were 100% right; thanks a lot...
Florin Todor
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Bob P. Roche
Sent: Monday, August 25, 2008 4:14 PM
To: RPG programming on the AS400 / iSeries
Subject: RE: CGIDEV2
If you changed the section delimiters as you stated earlier you need to
make the same changes in your RGP program. I still believe the problem
is
spaces before the headers. because you are indenting the section
headings.
To CGIDEV2 '<-- $top$ -->' is different from ' <-- $top$ -->'. the extra
will cause what you are seeing.
From:
"Florin Todor - YYZ Concord" <ftodor@xxxxxxxxxxxxxxxx>
To:
"RPG programming on the AS400 / iSeries" <rpg400-l@xxxxxxxxxxxx>
Date:
08/25/2008 03:09 PM
Subject:
RE: CGIDEV2
Scott, I run again the program and now I got the error for 'top'
section, too (probably I miss it to enclose in my post at the first
time...)
I don't use the ClrHtmlBuf() at all; is it possibly to run somehow in
the background?
I call GetHtml only once at beginning of the program (see below)
I checked the lines with the section names; I cannot see anything before
or after....
Hdftactgrp(*no)
*
/copy cgidev2/qrpglesrc,hspecs
/copy cgidev2/qrpglesrc,hspecsbnd
*
FED204D03WKIF E K DISK
*
/copy qrpglesrc,prototypeb
/copy cgidev2/qrpglesrc,usec
*
/Free
Gethtml('HTMLSRC':'INTRANET':'MAD204HTM1':
'<!-- $':'$ -->':'/%':'%/');
Wrtsection('top');
Wrtsection('HeaderPO');
Read ED204D03WK;
Dow not %eof(ED204D03WK);
UpdHTMLvar('Stop' :%char(D3snum));
UpdHTMLvar('PO' :D3po#);
UpdHTMLvar('SellerID':D3selid);
Wrtsection('DetailPO');
Read ED204D03WK;
Enddo;
WrtHtmlToStmf('/Reporting/Table.html':819);
Wrtsection('end');
*inlr = *on;
Return;
/End-Free
I post again the HTML Source, maybe I cannot see something...
<!-- $TOP$ -->
Content-type: text/html
<html>
<head>
<title>Bills information</title>
</head>
<BODY>
<!-- $HEADERPO$ -->
<TABLE BORDER=4 WIDTH=100%>
<TR ALIGN="Center">
<TH>Stop#</TH>
<TH>P.O.#</TH>
<TH>Seller ID #</TH>
</TR>
<!-- $DETAILPO$ -->
<TR ALIGN="Center">
<TD>/%Stop%/</TD>
<TD>/%PO%/</TD>
<TD>/%SellerID%/</TD>
</TR>
<!-- $END$ -->
</TABLE>
</BODY>
</html>
Florin Todor
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Scott Klement
Sent: Monday, August 25, 2008 2:34 PM
To: RPG programming on the AS400 / iSeries
Subject: Re: CGIDEV2
Hi Florin,
Florin Todor - YYZ Concord wrote:
WrtSection: Section HEADERPO not found.
WrtSection: Section DETAILPO not found.
---------------------------------------
WrtSection: Section END not found.
Hmmm... we know a little more, now. We know that it's unable to find
those sections.
Interestingly, there's no error for the 'top' section -- yet, your code
clearly shows you writing the 'top' section. You say that your output
file is blank -- how would that be if you're writing the 'top' section
successfully?
Do you use ClrHtmlBuf() at all, that it might be wiping out that 'top'
section before populating the IFS file?
You aren't calling GetHtml or GetHtmlIfs again after the initial time,
are you?
Do you do anything between the wrtsection('top') and the
wrtsection('headerpo')?
Are there any special characters on the line before or after the <!--
$HeaderPo$ --> that might cause it to fail?
As an Amazon Associate we earn from qualifying purchases.