Tagged Questions
The policy-injection tag has no wiki summary.
8
votes
3answers
3k views
Policy based design and best practices - C++
struct InkPen
{
void Write()
{
this->WriteImplementation();
}
void WriteImplementation()
{
std::cout << "Writing using a inkpen" << std::endl;
}
};
struct BoldPen
...
3
votes
2answers
360 views
Where can I get a simple explanation of policy injection?
I'd like a dead simple explanation of policy injection for less-informed co-workers. Where is a good resource for this? I learned about policy injection from the entlib help files, which I'm sure ...
2
votes
3answers
329 views
Applying policy based design question
I've not read the Modern C++ Design book but have found the idea of behavior injection through templates interesting. I am now trying to apply it myself.
I have a class that has a logger that I ...
2
votes
3answers
1k views
Logging using policy injection application block
Hi All
I want to ask, how to use policy injection application block to log methods entry and exit in these cases :
Case1 : in case of logging events handlers of a web form controls, you know the ...
1
vote
0answers
100 views
Specify policy for an interceptable type
Suppose I have the following code:
class Program
{
static void Main(string[] args)
{
IUnityContainer container = new UnityContainer();
container.AddNewExtension<Interception>();
...
1
vote
1answer
409 views
Security and Policy Injection Application Block
I have a mixed UI (Win App, WPF App, and soon an ASP.NET MVC App) setup, so far I'm using Client Application Services for security. I know how to programmatically get a user authenticated and doing ...
1
vote
3answers
451 views
What's the best way to tell if a method is a property from within Policy Injection?
I've got a custom handler applied to a class (using the Policy Injection Application Block in entlib 4) and I would like to know whether the input method is a property when Invoke is called. ...
0
votes
1answer
28 views
How to configure the NamespaceMatchingRule(IEnumerable<MatchingInfo>) in unity 2.0 xml configuration file?
How should I pass the IEnumerable<MatchingInfo> to one of the overloaded constructor of the NamespaceMatchingRule using the unity 2.0 configuration file?
0
votes
1answer
74 views
How do I configure Unity 2.0 Policy Injection to use custom attribute matching rule in configuration file?
How do I configure Unity 2.0 Policy Injection to use custom attribute matching rule in configuration file?
What I want is to translate the following code snippet in the unity configuration file.
...
0
votes
2answers
57 views
asp.net mvc controller factory
I would like to achieve something to this extent:
I want to audit all of my controllers participating in serving http requests to the view files.
I would like to audit each and every method on that ...
0
votes
1answer
50 views
How to apply PIAB in WCF with MEF?
I have my service layer serving as a facade over my domain model layer to orchestrate calls to domain objects. I wrote a custome instance provider for my WCF services to harness MEF for instance ...
0
votes
1answer
85 views
How to add custom context data to be logged with Policy Injection in WCF?
We all know it's perfectly ok to marry up WCF with PIAB to address cross cutting concerns like logging, validation, auditing etc (visit http://msdn.microsoft.com/en-us/magazine/cc136759.aspx).
But ...
0
votes
1answer
112 views
Unity Interception in Derived Class
I've got a situation where policy injection no longer works when I'm using a derived class.
The classes involved look like this (basically an interface, an abstract base class, and an implementation ...
0
votes
1answer
105 views
Transparent logging in ASP.NET with EntLib
I'm modifying legacy asp.net project. I want include transparent logging for some namespaces, classes and methods.
I use EntLib. Can I configured Police Injection Settings for transparent logging my ...
0
votes
1answer
113 views
How to add policy injection to a private method
I'am having the following situation.
We have a private method where I want to add policyinjection by using a handlerAttribute. This method is called by a few different public methods which are ...
0
votes
1answer
104 views
Microsoft PolicyInjection Create too slow
Our project is using PolicyInjection (from Microsoft EnterpriseLibrary) for some reason.
Problem is, that PolicyInjection.Create(params) takes about 30 ms. This is WAY too much since it is called over ...
0
votes
0answers
345 views
Policy Injection with Performance Counter Handler - How to get PI counters using Perform.exe?
I am going through an example in which I am using Unity and PI (PolicyInjection).
My project consists of a simple console application. Unity and PI are all in the app.config.
At first run, I have ...
0
votes
0answers
134 views
Is Policy Injection Evil
I'm in a situation where the default solution is to use Policy Injection (PI) (well - that's how it sometimes seems).
I'm not against PI, but I do wonder if people are going overboard and trying to ...
0
votes
1answer
385 views
Enterprise Library Policy Injection Logging Managed Security Context Information in ASP.NET
I am using The Policy Injection Application Block to log methods that are called in my ASP.NET application. I would like these log entries to include information like the current user identity, ...
0
votes
2answers
558 views
Policy Injection with ASP.NET MVC Controllers
I'm running into an issue with the Policy Injection Application Block from Enterprise Library in conjunction with ASP.NET MVC.
In my ControllerFactory, I'm creating the controller and then calling ...
0
votes
1answer
83 views
Effective Policy Viewer for Ent Lib 4
I can't find the effective policy viewer tool for enterprise library 4. All the links I find on the net point to source I have to compile against entlib 3 dll's.
Does anyone know where I can find ...
0
votes
1answer
298 views
Policy Injection Application Block in real world apps?
The PIAB of the Microsoft Enterprise Library looks like it could be used for some pretty cool things. Many people were questioning how it would perform in real world applications, due to its use of ...
0
votes
2answers
140 views
Errors in Aspect Oriented Programming with Policy Injection
When using Aspect Oriented Programming with Policy injection, how do you deal with policy errors gracefully in your design?
In Aspect Oriented Programming the objects should be unconcerned with how a ...