<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.2873" name=GENERATOR></HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>If you are using a zeo server&nbsp;and both server 
are zeo clients you could store the info on the zeo server, then do a redirect 
from serverA/methodA to serverB/methodB.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>If the servers do not have access to the same zeo 
server, then you are going to have to 'package-up' all the variables you need 
and send them to serverB/methodB</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Depending on what is happening in serverB/methodB 
you could just do some kind of rpc from serverA/methodA to serverB/methodB (ie. 
methodA just sends a request to methodB, which does some processing and sends 
the results back to methodA for final processing/display).</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>It's kind of hard to guess what would be best 
without knowing more about the application(s).</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Jonathan</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<BLOCKQUOTE 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=aluminum3458@yahoo.com href="mailto:aluminum3458@yahoo.com">Alric 
  Aneron</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A title=dev101@magma.ca 
  href="mailto:dev101@magma.ca">Jonathan</A> ; <A title=zope@zope.org 
  href="mailto:zope@zope.org">zope@zope.org</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Thursday, June 08, 2006 4:31 
  PM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> Re: [Zope] dtml forwarding 
  request</DIV>
  <DIV><BR></DIV>The dtml_method where I want to forward to is on another 
  server, so your may would be a little hard to do.&nbsp; Sorry, I didn't make 
  myself clear the first time.<BR><BR>Thanks, any 
  suggestions?<BR><BR><B><I>Jonathan &lt;<A 
  href="mailto:dev101@magma.ca">dev101@magma.ca</A>&gt;</I></B> wrote:
  <BLOCKQUOTE class=replbq 
  style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: rgb(16,16,255) 2px solid">
    <META content="MSHTML 6.00.2900.2873" name=GENERATOR>
    <STYLE></STYLE>

    <DIV><FONT face=Arial size=2>if you want to go straight from one dtml 
    routine to another just use dtml-var (</FONT><FONT face=Arial 
    size=2>ie.&nbsp; have dtml method A call dtml method B) - &nbsp;then in dtml 
    method A have:</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>&lt;dtml-var methodB&gt;</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>This will 'pass' control and the REQUEST space 
    from A to B.</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>Is this is not what you are looking for, then 
    provide some more info as to your use case.</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>Jonathan</FONT></DIV>
    <BLOCKQUOTE 
    style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: rgb(0,0,0) 2px solid; MARGIN-RIGHT: 0px">
      <DIV 
      style="FONT: 10pt arial; font-size-adjust: none; font-stretch: normal">----- 
      Original Message ----- </DIV>
      <DIV 
      style="BACKGROUND: rgb(228,228,228) 0% 50%; FONT: 10pt arial; font-size-adjust: none; font-stretch: normal; moz-background-clip: -moz-initial; moz-background-origin: -moz-initial; moz-background-inline-policy: -moz-initial"><B>From:</B> 
      <A title=aluminum3458@yahoo.com href="mailto:aluminum3458@yahoo.com">Alric 
      Aneron</A> </DIV>
      <DIV 
      style="FONT: 10pt arial; font-size-adjust: none; font-stretch: normal"><B>To:</B> 
      <A title=zope@zope.org href="mailto:zope@zope.org">zope@zope.org</A> 
</DIV>
      <DIV 
      style="FONT: 10pt arial; font-size-adjust: none; font-stretch: normal"><B>Sent:</B> 
      Thursday, June 08, 2006 4:22 PM</DIV>
      <DIV 
      style="FONT: 10pt arial; font-size-adjust: none; font-stretch: normal"><B>Subject:</B> 
      [Zope] dtml forwarding request</DIV>
      <DIV><BR></DIV>Hello,<BR>Is there a way in Zope to forward a request from 
      one page to another.&nbsp; When I say "forward" a request, I want to 
      retain all the GET and POST request parameters.&nbsp; So similar to 
      &lt;dtml-call expr="RESPONSE.redirect('...')"&gt; but response.redirect 
      loses all the request parameters.<BR>I've been looking around and couldn't 
      find it.<BR>Any ideas?<BR><BR>Thanks in advance!<BR>
      <DIV></DIV>
      <HR SIZE=1>
      Yahoo! Groups gets better. <A 
      href="http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=41142/*http://groups.yahoo.com/local/newemail.html">Check 
      out the new email design.</A> Plus there�s much more to come. 
      <DIV></DIV>
      <HR>

      <DIV></DIV>_______________________________________________<BR>Zope 
      maillist&nbsp; -&nbsp; 
      Zope@zope.org<BR>http://mail.zope.org/mailman/listinfo/zope<BR>**&nbsp;&nbsp; 
      No cross posts or HTML encoding!&nbsp; **<BR>(Related lists - 
      <BR>&nbsp;http://mail.zope.org/mailman/listinfo/zope-announce<BR>&nbsp;http://mail.zope.org/mailman/listinfo/zope-dev 
      )<BR></BLOCKQUOTE></BLOCKQUOTE><BR>
  <P>
  <HR SIZE=1>
  Sneak preview the <A 
  href="http://us.rd.yahoo.com/evt=40762/*http://www.yahoo.com/preview">all-new 
  Yahoo.com</A>. It's not radically different. Just radically better. 
</BLOCKQUOTE></BODY></HTML>