Here's an example of my test method.  Maybe you can tell me what I'm doing wrong:

<dtml-call "RESPONSE.setHeader('content-type','multipart/x-mixed-replace;boundary=ThisRandomString')">

<dtml-call "RESPONSE.write('--ThisRandomString')">
<dtml-call "RESPONSE.setHeader('content-type','text/plain')">
<dtml-call "RESPONSE.write('this is a message')">
<dtml-call "RESPONSE.write('--ThisRandomString')">

<dtml-call "RESPONSE.setHeader('content-type','text/plain')">
<dtml-call "RESPONSE.write('this is another message')">
<dtml-call "RESPONSE.write('--ThisRandomString--')">

It returns all the text (including the boundary string) on one page.  I also tried using RESPONSE.appendHeader for the message portions but that didn't work either.

thanks for your help,
Shawn


Jerome Alet wrote:
On Fri, Jun 15, 2001 at 01:17:32PM -0700, shawn grant wrote:
I have been unable to get this method to work.  I went to the Netscape page and tried their example.  It didn't work with Netscape 4.75 on windows or linux (as well as IE and mozilla).  Is this still a supported mimetype?  Has anyone gotten this to work in or outside of zope?

Works fine here on my Debian potato with Netscape 4.75.

I can send you a very long python CGI script if you want to see the
code, but it's not easily readable because it's an SQL CGI frontend to
PostgreSQL, slightly specialised for a particular application.

bye,

Jerome Alet