Actually, the scriptaculous issue was on an application running on a Squeak VM.&nbsp; I&#39;m now trying to move everything over to run on GemStone, so as of yet, I don&#39;t have it running on the GemStone VM.&nbsp; I&#39;ll keep reviewing the documentation and will read the multiple emails to see if the answer is in there somewhere.&nbsp; I don&#39;t believe seaside is up and running yet.&nbsp; I tried to run startSeaside_Hyper and got a lot of errors, so I&#39;ll need to review that script and the invocation documentation.<br>
<br>At a quick glance, it looks like this snippet from the startSeaside script might be worthwhile to play with.&nbsp; I am not sure how relevant the previous code is or whether this is enough for me for now.&nbsp; I&#39;ll let you know.<br>
<br>server := SwazooServer singleton.<br>server initialize.<br><br>site := (SeasideSite new)<br>&nbsp; name: &#39;Seaside&#39;;<br>&nbsp; initialize;<br>&nbsp; host: GsSocket getLocalHostName<br>&nbsp;&nbsp;&nbsp; ip: (GsSocket getHostAddressByName: GsSocket getLocalHostName)<br>
&nbsp;&nbsp;&nbsp; port: $1;<br>&nbsp; initializeResourceFromUriPattern: &#39;/&#39;, &#39;seaside&#39;.<br><br>server addSite: site.<br><br><br><br><div class="gmail_quote">On Wed, Jun 11, 2008 at 10:49 AM, Dale Henrichs &lt;<a href="mailto:dale.henrichs@gemstone.com">dale.henrichs@gemstone.com</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">Chris Dawson wrote:<br>
<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Dale,<br>
<br>
Thanks for the response. &nbsp;So, being new to GemStone and Seaside, what is<br>
the correct way to install a new application within topaz? &nbsp;I&#39;ve done<br>
this within the Seaside config webgui plenty of times and am a little<br>
lost as to where and what I should do within topaz. &nbsp;I ran printit on<br>
WADispatcher default and see this:<br>
<br>
topaz 1&gt; printit<br>
WADispatcher default<br>
%<br>
a WADispatcher<br>
&nbsp;parent &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nil<br>
&nbsp;name &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;seaside<br>
&nbsp;entryPoints &nbsp; &nbsp; a Dictionary<br>
&nbsp;defaultName &nbsp; &nbsp; browse<br>
&nbsp;lastUpdate &nbsp; &nbsp; &nbsp;a TimeStamp<br>
&nbsp;version &nbsp; &nbsp; &nbsp; &nbsp; 55<br>
<br>
I&#39;m now browsing the methods available within WADispatcher and see<br>
#register:. &nbsp;This only takes a name, however, so do I instantiate an<br>
instance of my webapp, and then what?<br>
<br>
Chris &nbsp;&nbsp;<br>
</blockquote></div>
Chris,<br>
<br>
I think you should follow the approaches suggested by John and Philippe. Following John and Philippes suggestion, you would add the #addLibrary: call to your application registration code (where the #register: method is used).<br>

<br>
Since you are already running your component, you had to have registered the component somewhere using #registerAsApplication: and as John suggests, you can change that statement to include the #addLibrary: call.<br>
<br>
Regarding using topaz for inspecting objects - here&#39;s a topaz pattern that I used. After the initial expression follow the &#39;obj @&#39; expressions:<br>
<br>
topaz 1&gt; display oops<br>
topaz 1&gt; level 2<br>
topaz 1&gt; run<br>
WADispatcher default<br>
%<br>
[43744513 sz:6 cls: 51895041 WADispatcher] a WADispatcher<br>
&nbsp;parent &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;name &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[44546561 sz:7 cls: 74753 String] seaside<br>
&nbsp;entryPoints &nbsp; &nbsp; [43802369 sz:26 cls: 101377 Dictionary] a Dictionary<br>
 &nbsp; count &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [66 sz:0 cls: 74241 SmallInteger] 8<br>
 &nbsp; tableSize &nbsp; &nbsp; &nbsp; [58 sz:0 cls: 74241 SmallInteger] 7<br>
 &nbsp; emptySlotHint &nbsp; [146 sz:0 cls: 74241 SmallInteger] 18<br>
 &nbsp; numEmptySlots &nbsp; [18 sz:0 cls: 74241 SmallInteger] 2<br>
 &nbsp; unused &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #1 [82 sz:0 cls: 74241 SmallInteger] 10<br>
 &nbsp; #2 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #3 [84601857 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #4 [84601601 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #5 [121945857 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #6 [130 sz:0 cls: 74241 SmallInteger] 16<br>
 &nbsp; #7 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #8 [84601089 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #9 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #10 [84600833 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #11 [66 sz:0 cls: 74241 SmallInteger] 8<br>
 &nbsp; #12 [84601345 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #13 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #14 [109039873 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #15 [98 sz:0 cls: 74241 SmallInteger] 12<br>
 &nbsp; #16 [121945601 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #17 [114 sz:0 cls: 74241 SmallInteger] 14<br>
 &nbsp; #18 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #19 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #20 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #21 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
<br>
&nbsp;defaultName &nbsp; &nbsp; [51892737 sz:6 cls: 74753 String] browse<br>
&nbsp;lastUpdate &nbsp; &nbsp; &nbsp;[121945345 sz:2 cls: 16989185 TimeStamp] a TimeStamp<br>
 &nbsp; seconds &nbsp; &nbsp; &nbsp; &nbsp; [11150921504588421894 sz:0 cls: 121345 SmallDouble] &nbsp;2.3489746597678900E+08<br>
 &nbsp; offset &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[18446744073709350018 sz:0 cls: 74241 SmallInteger] -25200<br>
<br>
&nbsp;version &nbsp; &nbsp; &nbsp; &nbsp; [442 sz:0 cls: 74241 SmallInteger] 55<br>
<br>
topaz 1&gt; obj @43802369<br>
[43802369 sz:26 cls: 101377 Dictionary] a Dictionary<br>
&nbsp;count &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [66 sz:0 cls: 74241 SmallInteger] 8<br>
&nbsp;tableSize &nbsp; &nbsp; &nbsp; [58 sz:0 cls: 74241 SmallInteger] 7<br>
&nbsp;emptySlotHint &nbsp; [146 sz:0 cls: 74241 SmallInteger] 18<br>
&nbsp;numEmptySlots &nbsp; [18 sz:0 cls: 74241 SmallInteger] 2<br>
&nbsp;unused &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#1 [82 sz:0 cls: 74241 SmallInteger] 10<br>
&nbsp;#2 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#3 [84601857 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [84590593 sz:8 cls: 74753 String] examples<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [84590337 sz:6 cls: 51895041 WADispatcher] a WADispatcher<br>
<br>
&nbsp;#4 [84601601 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [84590081 sz:6 cls: 74753 String] browse<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [84589825 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#5 [121945857 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [121944321 sz:7 cls: 74753 String] wizzard<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [121944065 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#6 [130 sz:0 cls: 74241 SmallInteger] 16<br>
&nbsp;#7 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#8 [84601089 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [84589057 sz:5 cls: 74753 String] tests<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [84588801 sz:6 cls: 51895041 WADispatcher] a WADispatcher<br>
<br>
&nbsp;#9 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#10 [84600833 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [84588545 sz:6 cls: 74753 String] config<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [84588289 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#11 [66 sz:0 cls: 74241 SmallInteger] 8<br>
&nbsp;#12 [84601345 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [84589569 sz:5 cls: 74753 String] tools<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [84589313 sz:6 cls: 51895041 WADispatcher] a WADispatcher<br>
<br>
&nbsp;#13 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#14 [109039873 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [109021697 sz:4 cls: 74753 String] pier<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [109021441 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#15 [98 sz:0 cls: 74241 SmallInteger] 12<br>
&nbsp;#16 [121945601 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [121943809 sz:9 cls: 74753 String] installer<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [121943553 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#17 [114 sz:0 cls: 74241 SmallInteger] 14<br>
&nbsp;#18 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#19 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#20 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#21 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
<br>
<br>
topaz 1&gt; obj @84590337<br>
[84590337 sz:6 cls: 51895041 WADispatcher] a WADispatcher<br>
&nbsp;parent &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[43744513 sz:6 cls: 51895041 WADispatcher] a WADispatcher<br>
 &nbsp; parent &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; name &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[44546561 sz:7 cls: 74753 String] seaside<br>
 &nbsp; entryPoints &nbsp; &nbsp; [43802369 sz:26 cls: 101377 Dictionary] a Dictionary<br>
 &nbsp; defaultName &nbsp; &nbsp; [51892737 sz:6 cls: 74753 String] browse<br>
 &nbsp; lastUpdate &nbsp; &nbsp; &nbsp;[121945345 sz:2 cls: 16989185 TimeStamp] a TimeStamp<br>
 &nbsp; version &nbsp; &nbsp; &nbsp; &nbsp; [442 sz:0 cls: 74241 SmallInteger] 55<br>
<br>
&nbsp;name &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[84590593 sz:8 cls: 74753 String] examples<br>
&nbsp;entryPoints &nbsp; &nbsp; [84581377 sz:40 cls: 101377 Dictionary] a Dictionary<br>
 &nbsp; count &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [90 sz:0 cls: 74241 SmallInteger] 11<br>
 &nbsp; tableSize &nbsp; &nbsp; &nbsp; [58 sz:0 cls: 74241 SmallInteger] 7<br>
 &nbsp; emptySlotHint &nbsp; [210 sz:0 cls: 74241 SmallInteger] 26<br>
 &nbsp; numEmptySlots &nbsp; [42 sz:0 cls: 74241 SmallInteger] 5<br>
 &nbsp; unused &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #1 [92514305 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #2 [82 sz:0 cls: 74241 SmallInteger] 10<br>
 &nbsp; #3 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #4 [93512961 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #5 [178 sz:0 cls: 74241 SmallInteger] 22<br>
 &nbsp; #6 [194 sz:0 cls: 74241 SmallInteger] 24<br>
 &nbsp; #7 [114 sz:0 cls: 74241 SmallInteger] 14<br>
 &nbsp; #8 [85320193 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #9 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #10 [85319937 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #11 [66 sz:0 cls: 74241 SmallInteger] 8<br>
 &nbsp; #12 [89705473 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #13 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #14 [90860289 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #15 [98 sz:0 cls: 74241 SmallInteger] 12<br>
 &nbsp; #16 [85320449 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #17 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #18 [87043073 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #19 [130 sz:0 cls: 74241 SmallInteger] 16<br>
 &nbsp; #20 [86753793 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #21 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #22 [89921793 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #23 [162 sz:0 cls: 74241 SmallInteger] 20<br>
 &nbsp; #24 [89933313 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; #25 [146 sz:0 cls: 74241 SmallInteger] 18<br>
 &nbsp; #26 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #27 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #28 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #29 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #30 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #31 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #32 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #33 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #34 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
 &nbsp; #35 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
<br>
&nbsp;defaultName &nbsp; &nbsp; [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;lastUpdate &nbsp; &nbsp; &nbsp;[20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;version &nbsp; &nbsp; &nbsp; &nbsp; [2 sz:0 cls: 74241 SmallInteger] 0<br>
<br>
topaz 1&gt; obj @84581377<br>
[84581377 sz:40 cls: 101377 Dictionary] a Dictionary<br>
&nbsp;count &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [90 sz:0 cls: 74241 SmallInteger] 11<br>
&nbsp;tableSize &nbsp; &nbsp; &nbsp; [58 sz:0 cls: 74241 SmallInteger] 7<br>
&nbsp;emptySlotHint &nbsp; [210 sz:0 cls: 74241 SmallInteger] 26<br>
&nbsp;numEmptySlots &nbsp; [42 sz:0 cls: 74241 SmallInteger] 5<br>
&nbsp;unused &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#1 [92514305 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [92500993 sz:11 cls: 74753 String] persistence<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [92500737 sz:6 cls: 51895041 WADispatcher] a WADispatcher<br>
<br>
&nbsp;#2 [82 sz:0 cls: 74241 SmallInteger] 10<br>
&nbsp;#3 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#4 [93512961 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [93507585 sz:8 cls: 74753 String] GemStone<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [93507329 sz:6 cls: 51895041 WADispatcher] a WADispatcher<br>
<br>
&nbsp;#5 [178 sz:0 cls: 74241 SmallInteger] 22<br>
&nbsp;#6 [194 sz:0 cls: 74241 SmallInteger] 24<br>
&nbsp;#7 [114 sz:0 cls: 74241 SmallInteger] 14<br>
&nbsp;#8 [85320193 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [85722369 sz:14 cls: 74753 String] examplebrowser<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [86754817 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#9 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#10 [85319937 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [85721857 sz:12 cls: 74753 String] multicounter<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [85721601 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#11 [66 sz:0 cls: 74241 SmallInteger] 8<br>
&nbsp;#12 [89705473 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [89696001 sz:7 cls: 74753 String] cssdock<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [89695745 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#13 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#14 [90860289 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [91317761 sz:7 cls: 74753 String] marquee<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [91282945 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#15 [98 sz:0 cls: 74241 SmallInteger] 12<br>
&nbsp;#16 [85320449 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [85722881 sz:7 cls: 74753 String] counter<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [85722625 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#17 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#18 [87043073 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [87011329 sz:8 cls: 74753 String] MenuDemo<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [87011073 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#19 [130 sz:0 cls: 74241 SmallInteger] 16<br>
&nbsp;#20 [86753793 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [86646529 sz:10 cls: 74753 String] treereport<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [86646017 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#21 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#22 [89921793 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [89916929 sz:16 cls: 74753 String] screenresolution<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [89916673 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#23 [162 sz:0 cls: 74241 SmallInteger] 20<br>
&nbsp;#24 [89933313 sz:2 cls: 67073 Association] an Association<br>
 &nbsp; key &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [89925377 sz:5 cls: 74753 String] store<br>
 &nbsp; value &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [89925121 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
<br>
&nbsp;#25 [146 sz:0 cls: 74241 SmallInteger] 18<br>
&nbsp;#26 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#27 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#28 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#29 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#30 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#31 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#32 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#33 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#34 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
&nbsp;#35 [20 sz:0 cls: 76289 UndefinedObject] nil<br>
<br>
topaz 1&gt; level 1<br>
topaz 1&gt; obj @85722625<br>
[85722625 sz:7 cls: 50808833 WAApplication] a WAApplication<br>
&nbsp;parent &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[84590337 sz:6 cls: 51895041 WADispatcher] a WADispatcher<br>
&nbsp;name &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[85722881 sz:7 cls: 74753 String] counter<br>
&nbsp;keysByHandler &nbsp; [85690113 sz:55 cls: 87297 RcKeyValueDictionary] a RcKeyValueDictionary<br>
&nbsp;handlersByKey &nbsp; [85689857 sz:55 cls: 87297 RcKeyValueDictionary] a RcKeyValueDictionary<br>
&nbsp;mutex &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [85689601 sz:1 cls: 17807105 TransientMutex] a TransientMutex<br>
&nbsp;configuration &nbsp; [85689345 sz:2 cls: 46347777 WAUserConfiguration] a WAUserConfiguration<br>
&nbsp;libraries &nbsp; &nbsp; &nbsp; [20 sz:0 cls: 76289 UndefinedObject] nil<br>
<br>
<br>
<br>
</blockquote></div><br>