Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

46
votes
1answer
5k views

Delegate OpenID to Google (NOT Google Apps)

OK, I searched this question on SO but no good answer. After spent some time I figured out how to do it. I'm going to answer this myself as a way to share it.
12
votes
3answers
251 views

delegating into private parts

Sometimes, C++'s notion of privacy just baffles me :-) class Foo { struct Bar; Bar* p; public: Bar* operator->() const { return p; } }; struct Foo::Bar { void ...
11
votes
8answers
2k views

Why aren't Python's superclass __init__ methods automatically invoked?

Why did the Python designers decide that subclasses' __init__() methods don't automatically call the __init__() methods of their superclasses, as in some other languages? Is the Pythonic and ...
11
votes
1answer
1k 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 use the same ...
10
votes
3answers
2k views

Can I use OpenID delegation with a standard Google account?

I'm currently using ClaimID and have the following data on my website to allow delegation: <link rel="openid.server" href="http://openid.claimid.com/server" /> <link rel="openid.delegate" ...
9
votes
1answer
123 views

Interface delegation on Win64

Documentation states that interface delegation is available for Win32 only. Currently I can't test it, is it documentation bug or interface delegation is discontinued in 64-bit compiler?
8
votes
3answers
2k views

Objective-c asynchronous communication: target/action or delegation pattern?

I'm dealing with some asynchronous communication situations (Event-driven XML parsing, NSURLConnection response processing, etc.). I'll try to briefly explain my problem: In my current scenario, ...
7
votes
6answers
885 views

What patterns do you use to decouple interfaces and implementation in C++?

One problem in large C++ projects can be build times. There is some class high up in your dependency tree which you would need to work on, but usually you avoid doing so because every build takes a ...
7
votes
4answers
2k views

Objective-C Delegation Explained to a Java Programmer

I am fairly new to Objective-C, but experienced in Java. Is there the equivalent concept of Objective-C "delegation" in Java, so that I may understand this notion better? Would there be a way to ...
6
votes
2answers
116 views

Any good Resources for WCF Delegation?

I'm trying to setup WCF Delegation, without success (the scenario is Client > Frontend Server > Backend Server). In theory, this should be straight forward using Kerberos (I do have a Windows ...
6
votes
3answers
450 views

How to properly deal with a deallocated delegate of a queued nsoperation

In my current project, several view controllers (like vc) spawn NSOperation objects (like operation) that are executed on a static NSOperationQueue. While the operation is waiting or running, it will ...
5
votes
1answer
222 views

Cascading delegates and “Code That Doesn't Do What It Says”

I've been searching around Apple's delegation and protocol documentation for an answer to this, but after more than a day I've decided to give up and let you guys have a shot at it. I have three ...
5
votes
2answers
1k views

Delphi: How delegate interface implementation to child object?

i have an object which delegates implementation of a particularly complex interface to a child object. This is exactly i think is the job of TAggregatedObject. The "child" object maintains a weak ...
4
votes
4answers
80 views

jQuery delegateing inside div > divs > a also :(

html: <div id="a"> <a id="a0" href="#"></a> <div id="b"><a id="b0" href="#"></a><div> <div> jQuery: $('#a').delegate('a', 'click', function(){ ...
4
votes
2answers
384 views

Perl OO using Moose - best way to code delegation example?

Perl's Moose is different from other object systems, so it's not always clear how to translate an example known from other languages into Moose lingo. Consider the following Java example of Rectangle ...
4
votes
3answers
334 views

Implementing multiple interfaces with Java - is there a way to delegate?

I need to create a base class that implements several interfaces with lots of methods, example below. Is there an easier way to delegate these method calls without having to create a horde of ...
4
votes
3answers
710 views

How do I configure IIS so that the user's domain credentials are used when connecting to SQL server?

We've recently released the latest version of our intranet application, which now uses windows authentication as standard, and needs to be able to connect to a configured SQL server with the ...
4
votes
1answer
229 views

Is it possible to automatically coerce parameters passed to delegated methods (from the Array trait) using Moose/MooseX::Declare for Perl?

I'm creating a class which will contain a list of IP addresses, as Net::IP objects. I've wrapped the Net::IP object as a subtype (IPAddress), and defined a coercion from a string to IPAddress. Then ...
4
votes
2answers
220 views

How can a method's Javadoc be copied into other method's Javadoc?

I know that there is @inheritDoc, but it's only for methods which override others. I have several classes with many delegate methods (which do not override others). Can their Javadoc be "inherited" ...
4
votes
5answers
1k views

When to use delegation instead of inheritance?

Could someone please explain when would I want to use delegation instead of inheritance?
4
votes
1answer
993 views

How can i start a console application using the 'network service' account

I have a console application that i would like to run as 'NT AUTHORITY\NetworkService', but i cant remember how to do so - the only reason is that i will be hosting my service in a windows service, ...
3
votes
1answer
78 views

I want to stop using OOP in javascript and use delegation instead

After dabbling with javascript for a while, I became progressively convinced that OOP is not the right way to go, or at least, not extensively. Having two or three levels of inheritance is ok, but ...
3
votes
1answer
51 views

Difference between @Delegate and @Mixin AST transformations in Groovy

What's the difference between @Delegate and @Mixin AST transformations in Groovy. Maybe my question has to do with OO and when apply different patterns, but I use both and I can achieve the same ...
3
votes
4answers
100 views

What does delegation do versus a plain on('click',…)?

What is the different in performance and the handling of these two different jQuery statements: Number One: $('#selector1, #selector2, .class1').on('click', function () { //stuff }); ...
3
votes
3answers
55 views

What's the way to communicate a set of Core Data objects stored in the background to the main thread?

Part of my iOS project polls a server for sets of objects, then converts and saves them to Core Data, to then update the UI with the results. The server tasks happens in a collection of NSOperation ...
3
votes
2answers
160 views

What is the purpose of a delegation pattern?

I was looking through the source to SensorManager in android and found that when you register a SensorEventListener the SensorManager the SensorManager passes control of the listener to a ...
3
votes
3answers
54 views

Is it bad programming design to delegate information from Class A to Class B to Class C instead of directly from Class A to C?

I'm planning on making an app that contains a piano keyboard. There will be a custom class that represents an individual key, and the keys will be the subviews of another custom class, the piano ...
3
votes
3answers
83 views

Data provider calling a delegate: specifics or generic?

I have a XML parser which will parse 17 different XML documents (I'm simplifying this). When the parser has finished its job, it calls the object that did the request. First way A single method that ...
3
votes
1answer
107 views

delegate() in PrototypeJS

I am used to jQuery, which has a delegate() method. So let's say I have HTML like this: <div id="covers"> <a href="#"><img ... /></a> <a href="#"><img ... ...
3
votes
4answers
84 views

Typesafe delegation without instanceof

I have a service routine: filter(List<Criterion> criteria); Is there a good way to internally dispatch the method call to a typesafe implementation of a specific Criteria without involving ...
3
votes
1answer
110 views

C++ question: feature similar to Obj-C protocols?

I'm used to using Objective-C protocols in my code; they're incredible for a lot of things. However, in C++ I'm not sure how to accomplish the same thing. Here's an example: Table view, which has ...
3
votes
1answer
483 views

UIView layoutSubviews delegation

I find myself wanting support for delegating the responsibility of layoutSubviews for a UIView. This to avoid having to make a specific subclass just to implement the layoutSubviews method. I'm ...
3
votes
3answers
1k views

Composition vs. Delegation

Is there any difference in terms of implementation as how a composition design can be different from delegation. For example the code below seems to be doing delegation since the user cannot access ...
3
votes
2answers
776 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 successfully run ...
3
votes
3answers
1k views

difference between strategy pattern and delegation pattern

What is the difference between strategy pattern and delegation pattern (not delegates)?
3
votes
1answer
603 views

Emulating membership-test in Python: delegating __contains__ to contained-object correctly

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 luck, when I want to ...
2
votes
2answers
46 views

How do you delegate class methods?

I would like to make a class which delegates all instance and class methods to another class. My aim is to be able to give a class which is set in the app options a name which appears to fit in with ...
2
votes
1answer
95 views

jQuery Mobile .delegate( ) not triggered

I'm quite new to jQuery and I'm struggling a bit on an issue related to delegation. In my code I have a dynamic page loaded by: $("#results").delegate('li', 'click', function(evt){ var ...
2
votes
1answer
52 views

Routing sub-paths with Guice servlets

I'm using Guice to route requests in my web app, and I'd like to modularize the routing of some of the URL patterns I'll be handling. Ideally, I'd like to be able to do something like this in my ...
2
votes
1answer
84 views

C# how to remove delegation [closed]

Possible Duplicate: Unsubscribe anonymous method in C# I have some Panels that when created they are delegated to become clickable: int z2 = z; PicBx[z].Click += delegate { clicked(z2, ...
2
votes
3answers
585 views

jQuery's delegate() does not bind events for AJAX loaded content

I want to use jQuery's .delegate() method as I've read it performs much better than .live(). However, when I use .delegate() it doesn't bind events to the ajax loaded content. Can anyone help me get ...
2
votes
1answer
412 views

iPhone Google Analytics SDK delegate and multiple accounts problem

I am implementing google Analytics SDK in my iPhone application. I had it working with following code: AppDelegate .m : [[GANTracker sharedTracker] startTrackerWithAccountID:@"UA-xxxxxxx-1" ...
2
votes
2answers
94 views

How to use delegate method for more than two associations?

Let's say that I'm retrieving the name of the sport by calling the following chain of associations: pick.event.league.sport.name How can I use the delegate method so that I can just call ...
2
votes
1answer
102 views

What is delegation? When would I want to use it?

In OOP, a term delegation is mentioned. How is this modelled in a class? I searched on yahoo etc but got links to delegates.
2
votes
1answer
886 views

Steps to enable double-hop delegation in IIS7 windows 2008

my ASP.NET web application uses windows authentication on our intranet. I want it to be able to make a server-side http request to another server on the same domain that also requires windows ...
2
votes
4answers
167 views

Pattern for delegation to sub-component

In the product I am working, one of very basic scenario is serialization of classes. Typically a class to be serialized calls serialization on its sub-component e.g. if there is a class s.t. class ...
2
votes
3answers
2k views

What is mean by .delegate=self?

Could anyone explain the meaning of someViewController.delegate = self and self.delegate? Where do they help us?
2
votes
1answer
2k views

ASP.Net web application trying to use Impersonation and Delegation to connect to SQL Server

I'm trying to use Impersonation and Delegation in an intranet ASP.Net web-app in order to pass authenticated users' credentials onto a SQL Server. The web server and SQL server are two separate ...
2
votes
3answers
957 views

Objective-C Delegates: Have another class I call that parses XML. Need to know when its done externally

I have a class that calls another class to parse (NSXMLParse) from a URL. Now I would like for the class calling this one to know when it has finished, so that I can populate the UI. I am guessing a ...
2
votes
1answer
1k 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 accounting application. ...

1 2 3 4