1
vote
3answers
137 views
OpenID Delegation
I have tried all the possible options to use openID delegation on my site, but none of the methods are working for me.
I'm having the "link rel" tags in the head section of the …
1
vote
1answer
38 views
Powershell v2 remoting and delegation
I have installed Powershell V2 on 2 machines and run Enable-PsRemoting on both of them. Both machines are Win 2003 R2 and are joined to the same active directory domain and I can s …
1
vote
3answers
128 views
How to implement delegation the right way?
I'm trying to implement delegation for a class which should call it's delegate (if any), when special things happen.
From Wikipedia I have this code example:
@implementation TCS …
1
vote
1answer
36 views
Kerberos, delegation and how to do this correctly?
I've got two separate homemade applications that need to communicate among themselves. One is a frontend application (asp.net actually), the other is a backend interface to an acco …
2
votes
1answer
65 views
ASP.net kerberos dropping down to NTLM sporadically
Background (just the relevant pieces):
We have a large intranet asp.net 2.0/3.5 app.
Web servers are Windows Server 2003 on an AD domain.
Clients are on Windows, IE 6-8.
Windows Au …
5
votes
1answer
62 views
ASP.NET passing along Windows Authentication credentials
I've got an ASP.NET web application which uses Windows Authentication. This application needs to connect to another ASP.NET web service (which also uses Windows Authentication) and …
0
votes
0answers
30 views
PInvoke LogonUser and Delegation with Integrated Windows Authentication (IWA)
Hi all,
There are lots of examples of using the LogonUser Win 32 API for impersonation/delegation. What I can't seem to extrapolate from all of this is what sort of security token …
0
votes
0answers
40 views
How to configure a system-wide package in osgi?
I need to made available a library to some bundles. This library makes use of RMI, so it needs (as far as I know, at least) to use the system class loader in order to work (I tried …
0
votes
6answers
83 views
Delegation, some example of code? How object delegate to other
I would like to gain a better understanding about the delegation. Can somebody please paste a good code sample of delegation and explain how it works?
0
votes
1answer
96 views
Is there any term by the name ‘consultation’ in software engineering?
Is there any term by the name 'consultation' in UML? If yes please explain or point to some resource.
(Am writing the the paragraph below because may be you know it by some other …
1
vote
5answers
2k views
Need to Impersonate user forAccessing Network resource, Asp.Net Account
Hi,
I need to access a network resource on which only a given Domain Account has access.
I am using the LogonUser call, but get a "User does not have required priviliege" exceptio …
0
votes
1answer
44 views
Tool to generate interface implementation by delegation ?
I often need to implement an interface by delegating the implementation to a member of my class. This task is quite tedious because, even though Visual Studio generates stubs for t …
2
votes
2answers
189 views
difference between strategy pattern and delegation pattern
What is the difference between strategy pattern and delegation pattern (not delegates)?
0
votes
2answers
236 views
LogonUser and delegation
I'm using the LogonUser win32 api:
token = LogonUser(...)
WindowsIdentity newId = new WindowsIdentity(token);
WindowsImpersonationContext impersonatedUser = newId.Impe …
3
votes
1answer
150 views
Emulating membership-test in Python: delegating __contains__ to contained-object correctly
Hi, I am used to that Python allows some neat tricks to delegate functionality to other objects. One example is delegation to contained objects.
But it seams, that I don't have lu …
