Sure, it's just an object.
But all the "global" stuff is done by the WebServer object, so you'll need that as well.
s_web NetWebServer
p_web NetWebServerWorker
Then the p_web needs to be set to point at the s_web;
This is usually done by priming a NetWebServerRequestDataType structure, and assigning it to the p_web.RequestData property;
RequestData Group(NetWebServerRequestDataType).
RequestData.WebServer &= s_web
Obviously the WebHandler is expecting a lot more in the way of data in the structure, so depending on what your methods do you may need to init more properties. but hopefully this will get you started.
cheers
Bruce