Hi ALL, thanks for the information and I&#39;ll really appreciate it. &nbsp;At this time, I&#39;m looking to convert a Rails application to Seaside.<div><br></div><div>-Conrad<br><br><div class="gmail_quote">On Thu, Apr 17, 2008 at 1:52 PM, Michael Lucas-Smith &lt;<a href="mailto:mlucas-smith@cincom.com">mlucas-smith@cincom.com</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="Ih2E3d"><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8x;border-left:1px #ccc solid;padding-left:1ex">
self session currentRequest at: #beXml ifPresent: [ : it |  &nbsp; &nbsp;self session returnResponse:  &nbsp; &nbsp; &nbsp; &nbsp;(WAResponse new<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;contentType: &#39;text/xml&#39; ;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;contents: someObject sixxString readStream ;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;yourself)]<br>
 &nbsp;<br>
</blockquote></div>
If you make your own WACanvas subclass too you can do something like this:<br>
<br>
 &nbsp; response := Seaside.WAResponse new.<br>
 &nbsp; response contentType: &#39;application/atom+xml&#39;.<br>
 &nbsp; response nextPutAll: &#39;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&#39;.<br>
 &nbsp; atom := SeasideAtom.AtomCanvas new.<br>
 &nbsp; atom context: html context.<br>
 &nbsp; html context document stream: response stream.<br>
 &nbsp; ... do stuff with our new atom canvas ...<br>
 &nbsp; self session returnResponse: response.<div><div></div><div class="Wj3C7c"><br>
<br>
_______________________________________________<br>
seaside mailing list<br>
<a href="mailto:seaside@lists.squeakfoundation.org" target="_blank">seaside@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
</div></div></blockquote></div><br></div>