The problem here is that the page the remote browser renders and the user
signs is the a response, but the data that later contains the "signature"
is a request. The request doesn't contain the page HTML.

Do you want to save the page you've asked them to sign, or have a
printable record of the form they signed? (From an auditing standpoint I
would think you would want the latter).

If it is the former have a look at the "save output" command. You could
use this to save the entire response before it gets sent, then (in
pseudocode)

`All of your a4d page generation code is
... here ...

`Save the page HTML before sending it
save output($response)
end save output

`Save to Document
text to Blob(using $response)
BLOB TO DOCUMENT
SAVE DOCUMENT
`
`Send the response
write($response)

This would all occur within the A4D page and save the output before 4D's
web server sends the file. You might need to write some 4D Methods to
handle all of this. If your total form HTML is greater 32K you will have
to handle that. There may be other ways to do this. Look at the "Response
Buffer" section of the docs. A better solution may employ "get response
buffer".

In the latter case you might be able to use A4D Execute File to save your
form with the submitted values filled in. You'd need to employ the same
technique as when sending out the form.

hth,

Brad

> A4d v3.0
>
> 4D v2003.8r2
>
>
>
> For storing in a blob and later viewing, I need a simple way to capture
> the
> entire output of a page that the web user "Signs".
>
>
>
> Since there may be many simultaneous pages being output by the server, how
> to I capture the "one"?
>
>
>
> Suggestions please.
>
>
>
> TIA!!!
>
>
>
> David Ringsmuth
>
> _______________________________________________
> Active4D-dev mailing list
> [email protected]
> http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
> Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/
>

_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/

Reply via email to