Okay, so I have a raw data filter that I'm trying to port over to IIS
6. I'm going with the recommended wildcard extension rather than a
filter this time.
Problem: When ssinc processes includes, my wildcard extension doesn't
get called for the included files.
Now I know what you're thinking... "How picky can you be? Your
extension will get called BEFORE ssinc, so you can do whatever you
want, right?"
Well, not exactly. What I WANT is to be able to act on each included
file in turn before ssinc tries to spit it out to the browser. In a
good ol' raw data filter, I could just subscribe to url map
notifications and I could act on each path before ssinc got its grubby
little hands on it.
As it is, I'm stuck having to parse the file(s) myself (recursively, I
might add) looking for server side includes before I ever even pass the
request off to ssinc using HSE_REQ_EXEC_URL.
Now I realize that this is a feature, not bug. That's just how it
works. I understand that I'm probably the only person in the world who
cares about this. But in the remote case that I'm not, is there anyone
out there who knows a nifty way for me to be able to act on the paths
as ssinc gets to them (in an extension, not a filter mind you) rather
than doing all the parsing myself.
Thanks in advance for any help,
Doug