<HTML>
<HEAD>
<TITLE>[Q] help with requesting a html page</TITLE>
</HEAD>
<BODY>
<FONT SIZE="4"><FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'>Friends:<BR>
<BR>
I have this code<BR>
<BR>
login<BR>
| fields aPassword userName logged |<BR>
fields := self request propertyAt: &nbsp;#postFields ifAbsent: [].<BR>
fields ifNotNil:[ userName := (fields at: 'username').<BR>
&nbsp;&nbsp;&nbsp;&nbsp;aPassword := (fields at: 'password').<BR>
&nbsp;&nbsp;&nbsp;&nbsp;logged := HVNaughtieUsers new verifyPassword: aPassword forUser: userName &nbsp;].<BR>
self halt.<BR>
<BR>
When I hit in the web browser , fields become nil.<BR>
But if into Squeak I restart the method and do step by step, fields become populated with the right values.<BR>
<BR>
How I should do for the right values and avoid nil ?<BR>
<BR>
Thanks in advance<BR>
<BR>
Edgar</SPAN></FONT></FONT>
</BODY>
</HTML>