Thank you for your answer. I will try to do that.
Pe
Lukas Renggli a écrit :
MessageNotUnderstood: UndefinedObject>>nextPutAll:
Debug Full Stack
• UndefinedObject(Object)>>doesNotUnderstand: #nextPutAll:
nil
temps aMessage nextPutAll: 'Welcome to Pier (formerly called SmallWiki
2), the next generation of a fully extensibl...etc...
• WAHtmlStreamDocument>>nextPutAll:
a WAHtmlStreamDocument
temps aString 'Welcome to Pier (formerly called SmallWiki 2), the next
generation of a fully extensible content ma...etc...
inst vars stream nil
htmlEncoder nil
urlEncoder nil
As the error says you are sending the message #nextPutAll: to nil,
the instance of UndefinedObject. So you need to properly setup
WAHtmlStreamDocument so that it references an instance of WriteStream.
Cheers,
Lukas