Hi Casey,
You can add new properties to the class at the moment, but unfortunately it's not that easy to _use_ them. Let me explain.
Firstly, on the NetTalk extension, on the WebHandler procedure, on the Classes tab you can declare extra properties and methods for the class. So that takes care of that bit, and extra embed points are not really needed.
However, the WebHandler object is then passed off to all the other procedures creating the familiar p_web object.
In other words, p_web exists in all those browses and forms, because it is passed in as a parameter. The parameter declaration looks like this;
(NetWebServerWorker p_web)
The important thing there is that the NetWebServerWorker class is explicitly mentioned, so that the receiving function (the browse, form, whatever) knows what it is. Since this is the _parent_ class (ie the shipping nettalk class) not the _derived_ object you've created in WebHandler, the browse or form doesn't know about your addions and hence can't use them.
But wait there's more.
Another point that comes into play here is that the WebHandler object is very short lived. When a request comes into the server a new handler object is created (on a new thread). It exists for a fraction of a second, doing whatever it has to do, then the thread ends, and the object is discarded. So even if you have an extra property, it only lasts for a very short time. It's not tied to a session or a user.
There is an approach you can use though if you really really want to add properties, and you understand the issues involved. You can create a derived class, in the libsrc folder, which derives from the NetWebServerWorker class, and adds a couple properties to it. It's not hard to do, but is a little finicky if you haven't used classes before. If done right the new class will appear in the drop-down on the nettalk extension (in the web handler) and you can use that class. You will then however need to change the prototype in all your web procedures to reflect the new class.
I think you'll find the threading issue is the fundamental break though. So before you go to all the trouble of creating a derived class, simply add a property to the existing class definition (in netweb.inc) and see if it actually does help you at all.
Cheers
Bruce