-
Posted to
IIS7 - Extensibility
by
DF_Frederic
on
10-29-2009, 10:22 PM
Thanks Anil. I will try it out.
-
Posted to
IIS7 - Extensibility
by
DF_Frederic
on
10-28-2009, 10:53 PM
We have a module that process every request on the web server. In that case, it seems that it could be useful to keep the configuration in a context.
If the context is saved only for the request state and the module doesn't do any sub request, I don't see much interest since it would be the same as to keep the loaded ...
-
Posted to
IIS7 - Extensibility
by
DF_Frederic
on
10-12-2009, 10:51 PM
Thanks again Anil for your answer. Now it's time to re-factor the affected code.
-
Posted to
IIS7 - Extensibility
by
DF_Frederic
on
10-09-2009, 12:51 AM
Regarding the static variable issue, I did some test and was able to figure out the answer: the static variable is seen in both request and this is bad. This mean if one modify the content while the other access it, the final result would be unpredictable. I had a feeling it would be that but was hoping it was not the case. I will fix ...
-
Posted to
IIS7 - Extensibility
by
DF_Frederic
on
10-07-2009, 12:50 AM
Edit: I decided to add another question since they're both related to the config retrieval in a way and didn't want to open another thread for it.
They may be a simple questions but it comes from the fact that my background is not C++.
First question:
IIS7 modules can allocate memory that can be managed by IIS ...
-
Posted to
IIS7 - Extensibility
by
DF_Frederic
on
10-05-2009, 10:01 PM
Thanks again Anil for the information provided.
For the current beta stage of the module, I will have to chose between the lesser of two evil. either:
- the module crash because of a programming error causing lost of analytic data. The crash cause the application pool to fail making the website(s) not available. Customer is not happy ...
-
Posted to
IIS7 - Extensibility
by
DF_Frederic
on
10-02-2009, 8:30 PM
Thanks again Anil for your answer.
I guess it's hard to ask a question clearly when you don't know about the subject. I may have found yesterday night what I was looking for after a lot of searching. I'm not sure yet if it's something common since, like mentioned above, I don't program in C/C++.
I have found on the project ...
-
Posted to
IIS7 - Extensibility
by
DF_Frederic
on
10-02-2009, 5:46 AM
I don't have experience making native module in C++ or experience in the language so I will try to explain as clearly as I can what I want to achieve.
We have a native module developed by an external programmer. Let say for some reason this module crash on a null pointer because of a programming error. For example, a structure was ...
-
Posted to
IIS7 - Extensibility
by
DF_Frederic
on
08-06-2009, 11:35 PM
Thanks for the answer. I will forward the answer to the developper. We will investigate and do more testing with the application pool users.
-
Posted to
IIS7 - Extensibility
by
DF_Frederic
on
08-05-2009, 5:32 AM
Let say you have a module that intercept all the request on the server. This module requires to write some debug logs in a file. Under what credential that module will be, Network service all the time? Or based on the request received, it will be the application pool of the targeted website?
I think it would be #2 but I need to ...