1
vote
1answer
26 views
How to create multiple components of a service with c’tor dependencies
I'd like to create several similar services which can be destinguished and accessed by their names (=keys).
For the service implementation I want to use classes with c'tor depende …
0
votes
1answer
23 views
Activate profile in depended-on POM?
My company writes companion products for project management software that uses that software's Java API. They release new API versions with new releases of their products, and als …
1
vote
2answers
45 views
How to Identify a Missing Dependency
We have a legacy 3rd party program that is failing with the error "Class Not Registered" when it tries to execute certain functionality. Is there a way to tell what class it's loo …
0
votes
2answers
24 views
Specifying a subproject’s Configuration in XCode
I have an XCode project (A) referencing another project (B). By default (as far as I understand it) XCode will implicitly build the configuration for the B dependency that matches …
4
votes
4answers
68 views
find pom dependencies by classname
How can I found the dependency by classname?
In particular, I want to include this class org.mortbay.jetty.testing.ServletTester in my project, how do I do that? And how did you f …
0
votes
0answers
40 views
Resolving missing dependency libexif.so.9 while trying to Yum install Mono on CentOS 5.3.3
Hey guys,
I'm trying to install Mono on CentOS 5.3.3 through Yum.
According to the instructions I found elsewhere I grabbed a copy of mono.repo from the Mono site and placed …
0
votes
1answer
56 views
Cache and SqlCacheDependency (ASP.NET MVC)
We need to return subset of records and for that we use the following command:
using (SqlCommand command = new SqlCommand(
"SELECT ID, Name, Flag, IsDefault FR …
0
votes
2answers
74 views
Can somone give example of Dependency Property in ViewModel
Can somone give example of Dependency Property in ViewModel in WPF passed as datacontext to view. Will this require inheriting from DependencyObject?
Lets say I want ListBox Sel …
3
votes
3answers
207 views
Depedency injection: injecting partially-initialized objects
Hi!
This question is about Unity Container but I guess it is applicable to any dependency container.
I have two classes with circular dependencies:
class FirstClass
{
[Depen …
28
votes
16answers
3k views
How should I detect unnecessary #include files in a large C++ project?
I am working on a large C++ project in Visual Studio 2008, and there are a lot of files with unnecessary #include's. Sometimes the #include's are just artifacts and everything wil …
1
vote
3answers
109 views
resolving circular dependencies with dependency injection
I've seen several articles on various websites that propose resolving circular dependencies between .NET assemblies by using dependency injection. This may resolve the build error …
1
vote
3answers
169 views
WPF Custom Control and exposing properties thru DependencyProperty
Ok - I'm pulling my hair out over what I thought was a simple scenario: create a custom Label for bilingual use that contained two additional properties (EnglishText, FrenchText). …
1
vote
1answer
33 views
spring ioc and JSR168 Portlets
Is it possible to do dependency injection using spring into a jsr168 Portlet?
2
votes
7answers
242 views
What’s the simplest and most efficient data structure for building acyclic dependencies?
I'm trying to build a sequence that determines the order to destroy objects. We can assume there are no cycles. If an object A uses an object B during its (A's) construction, then …
2
votes
5answers
267 views
How do you document your database code to see dependencies between database objects?
I want to write documentation on my pet project.
I have 30 tables and almost 50 views and about 30 functions (stored procedures) in my PostgreSQL database.
I would like to see wh …
