<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 8.00.6001.18975">
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2 face=Arial>I found a solution to my previous request on how to 
fetch the parameters in a call</FONT></DIV>
<DIV><FONT size=2 face=Arial>to a Seaside component. I found the solution by 
reading the FAQ at seaside.st.</FONT></DIV>
<DIV><FONT size=2 face=Arial>By overiding the method #initialRequest in my 
component I can get what I needed.</FONT></DIV>
<DIV><FONT size=2 face=Arial>My version of #initialRequest is as 
follows:</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>initialRequest: aRequest</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>super initialRequest: aRequest.<BR>time:=aRequest 
fields at: #time.<BR>Transcript cr; show: time</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>There appears to be a lot more information that can 
be extracted from the "request"</FONT></DIV>
<DIV><FONT size=2 face=Arial>object. Other good examples can be found on the 
net.</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>Tom McCune</FONT></DIV></BODY></HTML>