<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML xmlns:st1 = "urn:schemas-microsoft-com:office:smarttags" xmlns:o = 
"urn:schemas-microsoft-com:office:office"><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.3059" name=GENERATOR></HEAD>
<BODY>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328354003-24022007>It's so strange..&nbsp; in:</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328354003-24022007></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328354003-24022007>BindingsAccessor&gt;&gt;bindingFor: anObject 
ifNotBound: absBlock</SPAN></FONT></DIV>
<DIV><FONT face="Trebuchet MS" color=#0000ff size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328354003-24022007>&nbsp;^self pvtBindings at: anObject ifAbsent: 
absBlock</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328354003-24022007></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328354003-24022007>the 'self pvtBindings' valued manually in the debugger 
returns some DynamicByndings, but in the 'runtime' it's like it is returning a 
nil because the next message #at:ifAbsent: is&nbsp;received by UndefinedObject 
instead of the DynamicBindigns.</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328354003-24022007></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328354003-24022007>To complete annoyance&nbsp;other services (seaside) 
based on tcp listener seems to work just fine in the same image. I've made a 
test of my service using just TcpListener instead of the custom I need and I 
have the same problem. I think I'missing something in the service but I don't 
know where to look at, so I'll appreciate any help.</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328354003-24022007></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328354003-24022007>&nbsp;&nbsp;&nbsp; thanks,</SPAN></FONT></DIV>
<DIV><FONT face="Trebuchet MS" color=#0000ff size=2></FONT>&nbsp;</DIV>
<DIV align=left><SPAN class=250542422-20122006>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt" align=left><st1:PersonName 
w:st="on" ProductID="Sebastian Sastre&#13;"><SPAN 
style="FONT-SIZE: 10pt; FONT-FAMILY: 'Trebuchet MS'">Sebastian 
Sastre<o:p></o:p></SPAN></st1:PersonName></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN 
style="FONT-SIZE: 10pt; FONT-FAMILY: 'Trebuchet MS'"><o:p>&nbsp;</o:p></SPAN></P></DIV></SPAN><BR>
<BLOCKQUOTE dir=ltr 
style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #0000ff 2px solid; MARGIN-RIGHT: 0px">
  <DIV class=OutlookMessageHeader lang=es dir=ltr align=left>
  <HR tabIndex=-1>
  <FONT face=Tahoma size=2><B>De:</B> 
  squeak-dev-bounces@lists.squeakfoundation.org 
  [mailto:squeak-dev-bounces@lists.squeakfoundation.org] <B>En nombre de 
  </B>Sebastian Sastre<BR><B>Enviado el:</B> Sábado, 24 de Febrero de 2007 
  01:23<BR><B>Para:</B> 'The general-purpose Squeak developers 
  list'<BR><B>Asunto:</B> Custom TcpListener can't reach it's dynamic 
  bindings<BR></FONT><BR></DIV>
  <DIV></DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN class=953051503-24022007>Hi 
  there,</SPAN></FONT></DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007>&nbsp;&nbsp;&nbsp; I'm making a subclass of 
  TcpListener to have a custom policy of socket acceptance for a service I'm 
  porting.</SPAN></FONT></DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007>&nbsp;&nbsp;&nbsp; When I start the service (subclass 
  of TcpService) it won't get the value of the #backlogSize wich the code 
  is:</SPAN></FONT></DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007>backlogSize</SPAN></FONT></DIV>
  <DIV>&nbsp;</DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007>&nbsp;^#'ROSocketListener-backlogSize' binding ifNil: 
  [10]</SPAN></FONT></DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007>&nbsp;&nbsp;&nbsp; In the debugger the manually 
  returned value is 10 but in the execution it trhows a walkback as beign nil. 
  Is like the Bindings var is not initialized. If I harcode the value there 
  other binds also fails.</SPAN></FONT></DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007>&nbsp;&nbsp;&nbsp; So I'm lost with this dynamic 
  bindings. What I could be missing? there is something I should initialize to 
  enable this to work as supoused? how can I debug it?</SPAN></FONT></DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face="Trebuchet MS" size=2><SPAN 
  class=953051503-24022007>&nbsp;&nbsp;&nbsp; thanks in 
  advance,</SPAN></FONT></DIV>
  <DIV><FONT face="Trebuchet MS" size=2></FONT>&nbsp;</DIV>
  <DIV align=left><SPAN class=250542422-20122006>
  <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt" align=left><st1:PersonName 
  w:st="on" ProductID="Sebastian Sastre&#13;"><SPAN 
  style="FONT-SIZE: 10pt; FONT-FAMILY: 'Trebuchet MS'">Sebastian 
  Sastre<o:p></o:p></SPAN></st1:PersonName></P>
  <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN 
  style="FONT-SIZE: 10pt; FONT-FAMILY: 'Trebuchet MS'"><o:p>&nbsp;</o:p></SPAN></P></DIV></BLOCKQUOTE></SPAN></BODY></HTML>