I've just tried to convert one of my smaller NT6 apps to NT8 just to dip a toe into the water.
The app is a effectively a small soap server.
The app keeps crashing when it tries to serve xml files.
The code in question is this:
! finally send result
p_web.ParseHTML(Xml.XmlData,1,Xml.XmlDataLen,Net:NoHeader)
I understand that ParseHTML is now expecting to be passed a StringTheory object so i've changed the code to be:
Packet.append(xml.XmlData)
p_web.ParseHTML(packet,1,0,Net:NoHeader)
The packet.append statement now crashes
I'm seeing this in Example 42 as well, and wondered if anyone else is seeing this, or has found a work around?
Regards,
Neil.