active questions tagged dependency - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T11:54:20Z http://stackoverflow.com/feeds/tag/dependency http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1823245/using-maven-to-distribute-a-swing-application-that-can-have-each-dependency-indiv 1 Using maven to distribute a swing application that can have each dependency individually tracked tms 2009-11-30T23:57:52Z 2009-12-03T01:58:08Z <p>I'm moving my project to Maven and eventually OSGi. I currently distribute the project is a large Zip file with all the dependencies. Although my projects code is only 20% of the total package I have to redistribute all the dependency. With smaller independent modules this may be even less.</p> <p>Looking <a href="http://stackoverflow.com/questions/1792763/with-maven-how-can-i-build-a-distributable-that-has-my-projects-jar-and-all-of">here on stack overflow</a> it seems that to keep my current plan the maven-assembly-plugin should do the trick.</p> <p>I was considering having a base installer that would look at a XML manifest, then collect all the libraries that needed to be updated. This would mean that libraries that change occasionally would be downloaded less often. This also makes since for something like OSGi plugins (which could have independent release schedules). In essence I want my software to look and manage individual libraries, and download on demand (based on the manifest).</p> <p>I was wondering if there is a "maven way" of generating this Manifest and publishing all the libraries to a website? I believe the deploy life-cycle would do the second step. </p> <p>As an alternative, is there a OpenSource Java library that does this type of deployment? I don't want to embed Maven or something larger with the distributed code. The application is not for coders, the simpler the better, and the smaller the installer the better.</p> http://stackoverflow.com/questions/487493/ivy-how-do-i-remove-transitive-dependencies 0 Ivy: how do I remove transitive dependencies ? Leonel 2009-01-28T12:48:21Z 2009-11-29T02:42:01Z <p>I'm using <a href="http://ant.apache.org/ivy" rel="nofollow">Ivy</a> to manage the dependencies on my project.</p> <p>So far, I've specified a dependency on Hibernate and servlet-api. However, the hibernate jar itself has a lot of dependencies that aren't really needed, such as <a href="http://en.wikipedia.org/wiki/Java_Authentication_and_Authorization_Service" rel="nofollow">jaas</a> and <a href="http://java.sun.com/j2ee/javaacc/" rel="nofollow">jacc</a>.</p> <p>This becomes a show-stopper because jaas and jaac are Sun libraries and therefore their licenses forbid to place them in the Maven repos, so Ivy can't find them there.</p> <ul> <li>How do I make Ivy download Hibernate but not these two ?</li> <li>As a bonus, if I actually needed those and downloaded their Jars from Sun, in which folder in my machine would Ivy look for them ?</li> </ul> http://stackoverflow.com/questions/1807031/how-do-you-enforce-dependencies-among-java-folders-in-netbeans 0 How do you enforce dependencies among java folders in Netbeans? videoguy 2009-11-27T06:06:24Z 2009-11-28T04:35:31Z <p>Hi<br> I am new to Netbeans. I am wondering if someone can help me with project setup in netbeans. I am moving half million lines of Java code from a different IDE to Netbeans. I was able to get the code build and run in Netbeans easily. I have a project with many folders with dependencies among those folders. They have to be built in specific order. This is to enforce layering so that a module in lower layer cannot call into higher layers. I couldn't get that configured in Netbeans. Below is how my project looks like <br></p> <pre> project/ libA/ libB/ libC/ libD/ libE/ appA/ ... </pre> <p>I have one project that builds all the libs and appA. The project build xml is stored under project/ folder. But the libs have dependencies among them. libB should be built after libA. libC after libA. libE depends on libD and libB etc. <br> I tried to change the order of source folders for libs in project properties. That didn't seem to make any difference. Even if I move libA after libB, it was building everything fine. I expected it to fail because libA didn't build yet. <br> Iam lost. Just wondering what the trick is to enforce this kind of dependencies. I created my project using "Java project using existing sources" wizard. <br></p> <p>I appreciate your help <br> Thanks <br> Video guy.</p> http://stackoverflow.com/questions/1797384/draw-dependency-graph-for-a-java-class 2 draw dependency graph for a java class mj 2009-11-25T14:45:19Z 2009-11-27T08:29:12Z <p>Heyho, I'm searching for a tool like JDepend to draw a graph for a java classfile. JDepend seams to be fine, but it's not resolving the deps from the deps (maybe I'm just missing some special options?). A direct output into .dot format or an image would be nice to have. Thanks</p> http://stackoverflow.com/questions/1779984/header-dependency-in-automake 1 Header dependency in automake viraptor 2009-11-22T21:00:32Z 2009-11-25T12:33:58Z <p>I'd like to create a <code>Makefile.am</code> file which generates one header file mentioned in a <code>xxx.c</code> file.</p> <p>Let's say that <code>xxx.c</code> contains:</p> <pre><code>#include &lt;version.h&gt; ... </code></pre> <p>and that I have a rule to create it at the end of <code>Makefile.am</code>:</p> <pre><code>version.h: echo '#define VERSION "'`hg id`'"' &gt; version.h.tmp cmp version.h.tmp version.h || mv version.h.tmp version.h </code></pre> <p>What do I have to change to make the <code>xxx.c</code> compilation depend on <code>version.h</code>? I tried <code>nodist_progname_SOURCES=version.h</code>, but that doesn't seem to do it.</p> http://stackoverflow.com/questions/719051/how-would-you-describe-dsm-in-simple-terms 1 How would you describe DSM in simple terms? MikeNereson 2009-04-05T14:56:17Z 2009-11-24T04:00:03Z <p>How would you describe DSM in simple terms?</p> http://stackoverflow.com/questions/1775633/running-jar-from-different-directory-cannot-find-required-dependency 0 Running jar from different directory cannot find required dependency Alexandru 2009-11-21T14:35:22Z 2009-11-21T16:48:57Z <p>I'm trying to run a jar <code>ec/mobat/MOBAT.jar</code> which depends on some jars located in <code>ec/mobat/lib/</code>. It works if I do:</p> <pre><code>ec/mobat/$ java -jar MOBAT.jar </code></pre> <p>However I want to be able to run the jar from another directory</p> <pre><code>ec/$ java -jar mobat/MOBAT.jar </code></pre> <p>But I get an exception</p> <pre><code>java.lang.NoClassDefFoundError: ibis/io/Serializable ... </code></pre> <p>I tried to pass the required jars in the classpath</p> <pre><code>ec/$ CLASSPATH=... java -jar mobat/MOBAT.jar ec/$ java -jar -cp ... mobat/MOBAT.jar </code></pre> <p>but I get exactly the same exception. Any fix?</p> <p><strong>Update</strong>: MANIFEST.INF contains the following:</p> <pre><code>Manifest-Version: 1.0 Ant-Version: Apache Ant 1.7.0 Created-By: Selmar Kagiso Smit Main-Class: mobat.Launcher Implementation-Version: 1.3.4 </code></pre> http://stackoverflow.com/questions/951614/makefile-query 0 makefile query unknown (google) 2009-06-04T16:22:07Z 2009-11-14T06:00:02Z <p>Hi,</p> <p>I have a few questions about makefiles. I have defined my own version of a dependency file (.d) by creating it in code and called it say .dd(Looks just like a normal .c dependency file except that this is for some internal file format). Now this file I have included in the makefile with the include statement. (There are a whole bunch of these files so I've defined this as a rule which uses subst to replace the extension as required.)</p> <p>Now suppose that file X depends on file Y i.e. X.dd contains a reference to file Y. Now from my understanding, whenever I run make and the program goes through the include and finds that Y has been updated, it somehow recompiles this so as to reflect the changes in X.</p> <p>My question and problem is when this timestamp change in Y is noticed, does make restart itself so as to include the changes. How exactly are dependency files of this sort resolved. Also file X is not a typical .c or .cc file. So how would the file be treated when its dependency changes.</p> <p>The problem I'm facing is that if file Y is changed/touched, file X does not recompile. Also if I touch file X, it recompiles just fine. Also as expected, if the makefile is touched, everything recompiles appopriately.</p> <p>This bug has me scratching my head for a few days now so any help whatsoever would be appreciated.</p> <p>Please let me know if you need any additional information.</p> <h2>Regards</h2> <p>Shishir</p> http://stackoverflow.com/questions/1728629/table-function-dependency-via-a-virtual-column-not-in-alldependencies 2 Table -> Function dependency via a virtual column not in all_dependencies? thecoop 2009-11-13T11:20:48Z 2009-11-13T12:48:14Z <p>I've got the following objects:</p> <pre><code>CREATE FUNCTION CONSTFUNC RETURN INT DETERMINISTIC AS BEGIN RETURN 1; END; CREATE TABLE "FUNCTABLE" ( "ID" NUMBER(*,0) NOT NULL, "VIRT" NUMBER GENERATED ALWAYS AS ("CONSTFUNC"()) NULL ); </code></pre> <p>however, the functable => constfunc dependency is not listed in all_ or user_ dependencies. Is there anywhere I can access this dependency information in the dictionary?</p> http://stackoverflow.com/questions/1680928/how-to-create-multiple-components-of-a-service-with-ctor-dependencies 1 How to create multiple components of a service with c'tor dependencies apollo 2009-11-05T14:32:09Z 2009-11-07T17:32:33Z <p>I'd like to create several similar services which can be destinguished and accessed by their names (=keys).</p> <p>For the service implementation I want to use classes with c'tor dependencies like this:</p> <pre><code>public interface IXYService { string Tag { get; set; } } public class _1stXYService : IXYService { public _1stXYService(string Tag) { this.Tag = Tag; } public string Tag { get; set; } } </code></pre> <p>What I tried was to use 'AddComponentWithProperties' to have a concrete instance created which is accessible via a given key:</p> <pre><code>... IDictionary l_xyServiceInitParameters = new Hashtable { { "Tag", "1" } }; l_container.AddComponentWithProperties ( "1st XY service", typeof(IXYService), typeof(_1stXYService), l_xyServiceInitParameters ); l_xyServiceInitParameters["Tag"] = "2"; l_container.AddComponentWithProperties ( "2nd XY service", typeof(IXYService), typeof(_1stXYService), l_xyServiceInitParameters ); ... var service = l_container[serviceName] as IXYService; </code></pre> <p>However, the dependencies were not resolved and hence the services are not available. </p> <p>Using IWindsorContainer.Resolve(...) to populate the parameters is not desired.</p> <p>Construction by XML works, but is not in all cases sufficient.</p> <p>How could I achieve my goals?</p> http://stackoverflow.com/questions/602905/how-do-i-implement-maven-source-dependency-among-sibling-projects 0 How do I implement maven source dependency among sibling projects? flybywire 2009-03-02T16:09:46Z 2009-11-05T18:08:59Z <p>I have a java project that is composed of 3 sub projects that generate a .jar artifact each (and have sub-dependencies among them). In addition there is a web projects that depends on the first 3 projects and generate a war file. The war file is my final artifact, i.e. what I ship my customers.</p> <p>Additionally I have a parent module that encompasses all the other projects:</p> <pre><code>&lt;modules&gt; &lt;module&gt;../core&lt;/module&gt; &lt;module&gt;../commons&lt;/module&gt; &lt;module&gt;../api&lt;/module&gt; &lt;module&gt;../web&lt;/module&gt; &lt;/modules&gt; </code></pre> <p>I generate eclipse files (mvn eclipse:eclipse) and work with eclipse. The problem is if I modify one of the non-web projects I must manually install it before deploying the web project to my web container. How can I make that the web project depends directly on the source code of the others and not on the version installed in the repository.</p> http://stackoverflow.com/questions/1371986/find-pom-dependencies-by-classname 4 find pom dependencies by classname flybywire 2009-09-03T07:48:13Z 2009-11-05T17:33:44Z <p>How can I found the dependency by classname?</p> <p>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 find the answer?</p> http://stackoverflow.com/questions/1650247/oraclecommand-execution-blocks-if-has-oracledependency 0 OracleCommand execution blocks if has OracleDependency Alexandra 2009-10-30T14:48:39Z 2009-10-30T14:48:39Z <p>I have the following code:</p> <pre><code>OracleConnection conn = new OracleConnection(connString); OracleCommand command = new OracleCommand("select * from testtable", conn); conn.Open(); OracleDependency.Port = 2010; OracleDependency dependency = new OracleDependency(command); command.AddRowid = true; command.Notification.IsNotifiedOnce = false; dependency.OnChange += new OnChangeEventHandler(dependency_OnChange); command.CommandTimeout = 1000; DataTable t = new DataTable(); OracleDataAdapter adapter = new OracleDataAdapter(command); adapter.Fill(t); conn.Close(); </code></pre> <p>This is a very straightforward code that uses Oracle Notification Service to receive notifications about particular table changes.</p> <p>My problem is that when I call <code>adapter.Fill(t);</code> the execution simply blocks. The command executes in an instance if there is no dependency attached to it so it's not the database or the data. I can see the call back registering with the database by querying the table <code>user_change_notification_regs</code> and have also opened the port specified (2010):</p> <pre><code>net8://(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST='myIp')(PORT=2010)))?PR=0 </code></pre> <p>I am at wits end and rand out of things to try.</p> http://stackoverflow.com/questions/1645108/activate-profile-in-depended-on-pom 0 Activate profile in depended-on POM? flowers 2009-10-29T16:54:38Z 2009-10-29T20:48:23Z <p>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 also point releases for bug fixes etc. We need to support clients using various versions of their software (and by extension, their API). In order to do this without unnecessary code duplication, we have defined profiles in our products that include the necessary dependencies for each API version.</p> <p>I have a war project built using this technique with the "api70" profile activated, and another project that depends on that war project with a type of pom, in order to pull in the war's dependencies. The problem is that when building this second project, the profile-specific dependencies are not being included, even though I'm defining -Papi70 on the maven command line when building the depending project.</p> <p>Is there any way to get this to work?</p> <p>In the war project:</p> <pre><code>&lt;!-- API 7.0 profile. --&gt; &lt;profile&gt; &lt;id&gt;api70&lt;/id&gt; &lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;com.bigcompany&lt;/groupId&gt; &lt;artifactId&gt;integrationlibrary&lt;/artifactId&gt; &lt;version&gt;7.0-a&lt;/version&gt; &lt;/dependency&gt; &lt;/dependencies&gt; &lt;properties&gt; &lt;apiversion&gt;api70&lt;/apiversion&gt; &lt;/properties&gt; &lt;/profile&gt; </code></pre> <p>In the depending project:</p> <pre><code>&lt;!-- Depend on war as type=pom for dependency mediation. --&gt; &lt;dependency&gt; &lt;groupId&gt;com.mycompany&lt;/groupId&gt; &lt;artifactId&gt;warproject&lt;/artifactId&gt; &lt;version&gt;${warVersion}&lt;/version&gt; &lt;type&gt;pom&lt;/type&gt; &lt;/dependency&gt; </code></pre> <p>Command line used for building depending project:</p> <pre><code>mvn -P api70 clean package </code></pre> <p>The resulting build does not include integrationlibrary or any of its transitive dependencies.</p> http://stackoverflow.com/questions/1615102/specifying-a-subprojects-configuration-in-xcode 0 Specifying a subproject's Configuration in XCode fbrereto 2009-10-23T18:16:29Z 2009-10-23T23:44:18Z <p>I have an XCode project (<code>A</code>) referencing another project (<code>B</code>). By default (as far as I understand it) XCode will implicitly build the configuration for the <code>B</code> dependency that matches the configuration of the <code>A</code>'s target (e.g., "Debug"). But what if I want, say, <code>A</code> to build as "Debug" and the <code>B</code> to build as "Release"? How would I go about specifying that in XCode?</p> http://stackoverflow.com/questions/1607402/how-to-identify-a-missing-dependency 1 How to Identify a Missing Dependency ssorrrell 2009-10-22T13:55:38Z 2009-10-22T20:33:02Z <p>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 looking for? Sometimes it says "Catastrophic error" instead.</p> <p>Tried Dependency Walker statically and profiling, Kernal32.exe errors. I'm guessing that's the instantiation failing. It didn't reveal any missing dependencies.</p> <p>The ProcessMon didn't reveal any failed attempts to access the registry or a particular filepath.</p> <p>Have spent several days with a debugger and tools trying to figure out what file it is. We have a running production system that we can access with a non-Admin user account.</p> <p>The 3rd party app was written in Delphi if that makes a difference. Our calling app is C++.</p> <p>Update: Using the <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Process Monitor</a> from Sysinternals and a filter to narrow the natural registry read failures from the unusual ones I was able to find the GUID that was missing and register the corresponding dll.</p> http://stackoverflow.com/questions/1552853/resolving-missing-dependency-libexif-so-9-while-trying-to-yum-install-mono-on-cen 0 Resolving missing dependency libexif.so.9 while trying to Yum install Mono on CentOS 5.3.3 miCRoSCoPiC_eaRthLinG 2009-10-12T05:24:57Z 2009-10-12T05:24:57Z <p>Hey guys, I'm trying to install Mono on CentOS 5.3.3 through Yum. </p> <p>According to the instructions I found elsewhere I grabbed a copy of <strong>mono.repo</strong> from the Mono site and placed it in the /etc/yum.repos.d directory.</p> <p>The file looks like this:</p> <pre><code>[mono] name=Mono for rhel-4-i386 (stable) baseurl=http://ftp.novell.com/pub/mono/download-stable/rhel-4-i386/ enabled=1 gpgcheck=0 </code></pre> <p>Next I ran <strong>yum install mono-complete</strong> and here's the log.</p> <pre><code>Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.5ninesolutions.com * updates: mirrors.usc.edu * centosplus: mirror.5ninesolutions.com * addons: mirror.5ninesolutions.com * extras: mirrors.usc.edu base | 1.1 kB 00:00 updates | 951 B 00:00 centosplus | 951 B 00:00 addons | 951 B 00:00 extras | 1.1 kB 00:00 Excluding Packages in global exclude list Finished Reducing CentOS-5 - Extras to included packages only Finished Setting up Install Process Parsing package install arguments Resolving Dependencies --&gt; Running transaction check ---&gt; Package mono-complete.i586 0:1.9.1-2.novell set to be updated --&gt; Processing Dependency: mono-nunit = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-extras = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-data = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-data-firebird = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: bytefx-data-mysql = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-locale-extras = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-data-oracle = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-data-sybase = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-winforms = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-data-sqlite = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-jscript = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-web = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-data-postgresql = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-devel = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: ibm-data-db2 = 1.9.1-2.novell for package: mono-complete --&gt; Processing Dependency: mono-core = 1.9.1-2.novell for package: mono-complete --&gt; Running transaction check ---&gt; Package mono-web.i586 0:1.9.1-2.novell set to be updated ---&gt; Package mono-data.i586 0:1.9.1-2.novell set to be updated ---&gt; Package mono-data-firebird.i586 0:1.9.1-2.novell set to be updated ---&gt; Package mono-core.i586 0:1.9.1-2.novell set to be updated --&gt; Processing Dependency: libgdiplus0 for package: mono-core ---&gt; Package mono-nunit.i586 0:1.9.1-2.novell set to be updated ---&gt; Package mono-devel.i586 0:1.9.1-2.novell set to be updated --&gt; Processing Dependency: glib2-devel for package: mono-devel ---&gt; Package mono-data-sybase.i586 0:1.9.1-2.novell set to be updated ---&gt; Package mono-data-postgresql.i586 0:1.9.1-2.novell set to be updated ---&gt; Package mono-jscript.i586 0:1.9.1-2.novell set to be updated ---&gt; Package mono-data-sqlite.i586 0:1.9.1-2.novell set to be updated ---&gt; Package bytefx-data-mysql.i586 0:1.9.1-2.novell set to be updated ---&gt; Package mono-data-oracle.i586 0:1.9.1-2.novell set to be updated ---&gt; Package ibm-data-db2.i586 0:1.9.1-2.novell set to be updated ---&gt; Package mono-locale-extras.i586 0:1.9.1-2.novell set to be updated ---&gt; Package mono-extras.i586 0:1.9.1-2.novell set to be updated ---&gt; Package mono-winforms.i586 0:1.9.1-2.novell set to be updated --&gt; Running transaction check ---&gt; Package libgdiplus0.i386 0:1.9-1.rhel4.novell set to be updated --&gt; Processing Dependency: libXrender.so.1 for package: libgdiplus0 --&gt; Processing Dependency: libungif.so.4 for package: libgdiplus0 --&gt; Processing Dependency: libexif.so.9 for package: libgdiplus0 ---&gt; Package glib2-devel.i386 0:2.12.3-4.el5_3.1 set to be updated --&gt; Running transaction check ---&gt; Package libXrender.i386 0:0.9.1-3.1 set to be updated ---&gt; Package libgdiplus0.i386 0:1.9-1.rhel4.novell set to be updated --&gt; Processing Dependency: libexif.so.9 for package: libgdiplus0 ---&gt; Package giflib.i386 0:4.1.3-7.1.el5_3.1 set to be updated --&gt; Finished Dependency Resolution libgdiplus0-1.9-1.rhel4.novell.i386 from mono has depsolving problems --&gt; Missing Dependency: libexif.so.9 is needed by package libgdiplus0-1.9-1.rhel4.novell.i386 (mono) Error: Missing Dependency: libexif.so.9 is needed by package libgdiplus0-1.9-1.rhel4.novell.i386 (mono) </code></pre> <p>According to <a href="http://www.centos.org/modules/newbb/viewtopic.php?viewmode=flat&amp;topic%5Fid=11944&amp;forum=38" rel="nofollow"><strong>this post on the CentOS forums</strong></a>, I even enabled the <strong>centosplus</strong> repo - but no avail.</p> <p>Can anyone guide me in resolving this missing dependency of <strong>libexif.so.9</strong> ? I cannot seem to find the rpm for this exact version...</p> <p>Thanks, m^e</p> http://stackoverflow.com/questions/396168/circular-dependencies-in-ruby 3 Circular Dependencies in Ruby Michael Williamson 2008-12-28T13:49:04Z 2009-10-10T02:25:02Z <p>Let's say we have two classes, Foo and Foo Sub, each in a different file, foo.rb and foo_sub.rb respectively.</p> <p>foo.rb:</p> <pre><code>require "foo_sub" class Foo def foo FooSub.SOME_CONSTANT end end </code></pre> <p>foo_sub.rb:</p> <pre><code>require "foo" class FooSub &lt; Foo SOME_CONSTANT = 1 end </code></pre> <p>This isn't going to work due to the circular dependency - we can't define either class without the other. There are various solutions that I've seen. Two of them I want to avoid - namely, putting them in the same file and removing the circular dependency. So, the only other solution I've found is a forward declaration:</p> <p>foo.rb:</p> <pre><code>class Foo end require "foo_sub" class Foo def foo FooSub.SOME_CONSTANT end end </code></pre> <p>foo_sub.rb</p> <pre><code>require "foo" class FooSub &lt; Foo SOME_CONSTANT = 1 end </code></pre> <p>Unfortunately, I can't get the same thing to work if I have three files:</p> <p>foo.rb:</p> <pre><code>class Foo end require "foo_sub_sub" class Foo def foo FooSubSub.SOME_CONSTANT end end </code></pre> <p>foo_sub.rb:</p> <pre><code>require "foo" class FooSub &lt; Foo end </code></pre> <p>foo_sub_sub.rb:</p> <pre><code>require "foo_sub" class FooSubSub &lt; FooSub SOME_CONSTANT = 1 end </code></pre> <p>If I require foo_sub.rb, then FooSub is an uninitialized constant in foo_sub_sub.rb. Any ideas how to get around this without putting them in the same file nor removing the circular dependency?</p> http://stackoverflow.com/questions/1540980/cache-and-sqlcachedependency-asp-net-mvc 0 Cache and SqlCacheDependency (ASP.NET MVC) Fabio Milheiro 2009-10-08T22:57:27Z 2009-10-09T14:47:28Z <p>We need to return subset of records and for that we use the following command:</p> <pre><code>using (SqlCommand command = new SqlCommand( "SELECT ID, Name, Flag, IsDefault FROM (SELECT ROW_NUMBER() OVER (ORDER BY @OrderBy DESC) as Row, ID, Name, Flag, IsDefault FROM dbo.Languages) results WHERE Row BETWEEN ((@Page - 1) * @ItemsPerPage + 1) AND (@Page * @ItemsPerPage)", connection)) </code></pre> <p>I set a SqlCacheDependency declared like this:</p> <pre><code>SqlCacheDependency cacheDependency = new SqlCacheDependency(command); </code></pre> <p>But immediately after I run the command.ExecuteReader() instruction, the <b>hasChanged</b> base property of the SqlCacheDependency object becomes true although I did not change the result of the query in any way! And, because of this, the result of this query is not kept in cache.</p> <pre><code>HttpRuntime.Cache.Insert( cacheKey, list, cacheDependency, Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(AppConfiguration.CacheExpiration.VeryLowActivity)); </code></pre> <p>Is it because the command has 2 SELECT statements? Is it ROW_NUMBER()? If yes, is there any other way to paginate results?</p> <p>Please help! After too many hours, a little will be greatly appreciated! Thank you</p> http://stackoverflow.com/questions/392781/maven-for-net 2 maven for .net oo 2008-12-25T12:28:46Z 2009-10-08T00:42:24Z <p>what do people use instead of maven for C# winforms projects. We have developers all over the world and are trying to come up with some dependency management system that is clean simple and fast</p> http://stackoverflow.com/questions/1500669/can-somone-give-example-of-dependency-property-in-viewmodel 0 Can somone give example of Dependency Property in ViewModel TheMar 2009-09-30T21:07:00Z 2009-09-30T23:15:57Z <p>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 SelectedItem bound to a Dependency Property CurrentItem in ViewModel. I have it working from window object but same thing donnt work with ViewModel . In ViewModel I use GetProperty and SetProperty and not CLR property.</p> <pre><code>public partial class Window1 : Window { ObservableCollection&lt;Person&gt; persons; public ObservableCollection&lt;Person&gt; Persons { get { return persons; } set { persons = value; } } public static readonly DependencyProperty InfoTextProperty = DependencyProperty.Register( "InfoText", typeof(Person), typeof(Window1), new FrameworkPropertyMetadata( new PropertyChangedCallback(ChangeText))); public Window1() { InitializeComponent(); this.DataContext = this; List&lt;Person&gt; people = new List&lt;Person&gt;(); people.Add(new Person("Makeda Wilde")); people.Add(new Person(" Rosamaria Becnel")); people.Add(new Person("Jarrett Bernstein")); people.Add(new Person(" Leopoldo Palmer")); people.Add(new Person("Tyron Fisher")); people.Add(new Person(" Elba Kilpatrick")); people.Add(new Person("Ivory Lavender")); persons = new ObservableCollection&lt;Person&gt;(people); //persons.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler(persons_CollectionChanged); } void persons_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { } public ListBoxItem InfoText { get { return (ListBoxItem)GetValue(InfoTextProperty); } set { SetValue(InfoTextProperty, value); } } private static void ChangeText(DependencyObject source, DependencyPropertyChangedEventArgs e) { Person newPerson = (Person)e.NewValue; newPerson.IsSelected = true; Person oldPerson = (Person)e.OldValue; if (oldPerson != null) { oldPerson.IsSelected = false; } } // #region INotifyPropertyChanged Members // event PropertyChangedEventHandler PropertyChanged; // // Create the OnPropertyChanged method to raise the event //protected void OnPropertyChanged(string name) //{ // PropertyChangedEventHandler handler = PropertyChanged; // if (handler != null) // { // handler(this, new PropertyChangedEventArgs(name)); // } //} // #endregion } public class Person : INotifyPropertyChanged { private bool isselected = false; public Person(string name) { this.Name = name; this.IsSelected = false; } public string Name { get; set; } public bool IsSelected { get { return isselected; } set { isselected = value; OnPropertyChanged("IsSelected"); } } #region INotifyPropertyChanged Members public event PropertyChangedEventHandler PropertyChanged; // Create the OnPropertyChanged method to raise the event protected void OnPropertyChanged(string name) { PropertyChangedEventHandler handler = PropertyChanged; if (handler != null) { handler(this, new PropertyChangedEventArgs(name)); } } #endregion } &lt;Grid&gt; &lt;ListBox Height="500" Width="500" ItemsSource="{Binding Persons}" Margin="104,46,212,0" VerticalAlignment="Top" SelectedItem="{Binding InfoText}" &gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;TextBlock Margin="2,2,2,2" x:Name="tb" TextWrapping="Wrap" Text="{Binding Path=Name}" /&gt; &lt;DataTemplate.Triggers&gt; &lt;DataTrigger Binding="{Binding Path=IsSelected}" Value="true"&gt; &lt;Setter Property="Background" TargetName="tb" Value="Red"/&gt; &lt;/DataTrigger&gt; &lt;/DataTemplate.Triggers&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; &lt;/Grid&gt; </code></pre> http://stackoverflow.com/questions/1450997/resolving-circular-dependencies-with-dependency-injection 1 resolving circular dependencies with dependency injection BostonCoder 2009-09-20T13:16:19Z 2009-09-20T13:33:02Z <p>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 errors but it's not really resolving the circular dependency, is it? To me, there seems to still be a logical error in the architecture. Am I crazy or do others agree 1) this is a less than stellar use of DI, and 2) not the appropriate way to solve circular dependency issues?</p> http://stackoverflow.com/questions/1377608/depedency-injection-injecting-partially-initialized-objects 3 Depedency injection: injecting partially-initialized objects Konstantin 2009-09-04T06:52:29Z 2009-09-18T11:09:53Z <p>Hi!</p> <p>This question is about Unity Container but I guess it is applicable to any dependency container.</p> <p>I have two classes with circular dependencies:</p> <pre><code>class FirstClass { [Dependency] public SecondClass Second { get; set; } } class SecondClass { public readonly FirstClass First; public SecondClass(FirstClass first) { First = first; } } </code></pre> <p>Technically it's possible to instantiate and correctly inject dependencies for both of them if treat them as singletons:</p> <pre><code>var firstObj = new FirstClass(); var secondObj = new SecondClass(firstObj); firstObj.Second = secondObj; </code></pre> <p>When I try to do the same with Unity, I get StackOverflowException:</p> <pre><code>var container = new UnityContainer(); container.RegisterType&lt;FirstClass&gt;(new ContainerControlledLifetimeManager()); container.RegisterType&lt;SecondClass&gt;(new ContainerControlledLifetimeManager()); var first = container.Resolve&lt;FirstClass&gt;(); // StackOverflowException here! var second = container.Resolve&lt;SecondClass&gt;(); // StackOverflowException here too! </code></pre> <p>I understand that Unity tries to protect me from using partially initialized objects but I want to have this protection as an option, not an obligation.</p> <p>Question: is current behavior disabable?</p> http://stackoverflow.com/questions/1166032/how-do-you-document-your-database-code-to-see-dependencies-between-database-objec 2 How do you document your database code to see dependencies between database objects? Luc M 2009-07-22T15:14:59Z 2009-09-17T20:51:20Z <p>I want to write documentation on my pet project.</p> <p>I have 30 tables and almost 50 views and about 30 functions (stored procedures) in my PostgreSQL database.</p> <p>I would like to see where tables ( which views and which functions ) are used.</p> <p>I would like to see where views ( which views and which functions ) are used.</p> <p>I would like to see if a function is used by another function.</p> <p>I would like also to write a description of each objects ( tables, views and functions )</p> <p>and a short description of fields.</p> <p>Shortly, I want to be able to see what use a specific object and which objects use a specific object.</p> <p>I thought to use a text file and for every object. I might list objects that use the current one and which ones are used by the current one.</p> <pre><code>&lt;pre&gt; Table aaaa A short description used by : view v_aaaa id int primary key name varchar(30) name of a... ================================ view v_aaaa A short description list of fields... used by function f_aaaa Depends on table aaaa ============================== function f_aaaa A short description Parameters ( description, IN/OUT ) Depends on view v_aaaa function fbbbb ============================== function f_bbbb A short description Parameters Called by function f_aaaa </code></pre> <p>I'm afraid that my documentation will be unsynchronize quickly Imagine I add a function f_cccc that calls f_aaaa and f_bbbb. I'll have to modify doc on f_aaaa and f_bbbb</p> <p>I know that UML describes relations about entities (It does that, right ???). But I want something simple and I don't want to follow a 75 hours training... And I'm not sure that you can have a "link" between entities and function as I want.</p> <p>Do you have something to suggest me ?</p> <p>I use PostgreSQL on Linux (Fedora). If you propose a tool that do this, it must be compatible with PostgreSQL :-)</p> <p>For my code documentation, I use Doxygen.</p> <p>Thank you</p> http://stackoverflow.com/questions/1439550/spring-ioc-and-jsr168-portlets 1 spring ioc and JSR168 Portlets ccdugga 2009-09-17T15:21:52Z 2009-09-17T18:46:47Z <p>Is it possible to do dependency injection using spring into a jsr168 Portlet? </p> http://stackoverflow.com/questions/781494/how-do-a-specify-a-library-file-dependency-for-qmake-in-qt 1 How do a specify a library file dependency for qmake in Qt? Derick 2009-04-23T12:31:00Z 2009-09-15T23:13:10Z <p>Have a SomeLib.pro file that contains:</p> <pre><code>CONFIG += debug TEMPLATE = lib TARGET = SomeLib .. </code></pre> <p>Then in a dependent SomeApp.pro:</p> <pre><code>.. debug:LIBS += -lSomeLib_debug .. </code></pre> <p>How can I force SomeApp to build if I touched SomeLib in qmake?</p> http://stackoverflow.com/questions/1365967/change-the-dll-dependency-on-windows 0 Change the dll dependency on windows. learner 2009-09-02T05:28:48Z 2009-09-07T13:34:01Z <p>I have to rename some dlls which are used by some xyz.dll. For xyz.dll I don't have the source code is there a way to change xyz.dll to point to renamed dlls, </p> <p>For DYlibs on Mac I used Install_name_tool. For windows still looking for something, Please suggest.</p> http://stackoverflow.com/questions/362830/circular-dependencies-between-dlls-with-visual-studio 3 circular dependencies between dlls with visual studio Kris Steegmans 2008-12-12T13:59:39Z 2009-09-04T01:04:28Z <p>I have a circular dependency between two functions. I would like each of these functions to reside in its own dll. Is it possible to build this with visual studio?</p> <p>foo(int i) { if (i > 0) bar(i -i); } -> should compile into foo.dll</p> <p>bar(int i) { if (i > 0) foo(i - i); } -> should compile into bar.dll</p> <p>I have created two projects in visual studio, one for foo and one for bar. By playing with the 'References' and compiling a few times, I managed to get the dll's that I want. I would like to know however whether visual studio offers a way to do this in a clean way.</p> <p>If foo changes, bar does not need to be recompiled, because I only depend on the signature of bar, not on the implementation of bar. If both dll's have the lib present, I can recompile new functionality into either of the two and the whole system still works.</p> <p>The reason I am trying this is that I have a legacy system with circular dependencies, which is currently statically linked. We want to move towards dll's for various reasons. We don't want to wait until we clean up all the circular dependencies. I was thinking about solutions and tried out some things with gcc on linux and there it is possible to do what I suggest. So you can have two shared libraries that depend on each other and can be built independent of each other.</p> <p>I know that circular dependencies are not a good thing to have, but that is not the discussion I want to have.</p> http://stackoverflow.com/questions/1371048/wpf-custom-control-and-exposing-properties-thru-dependencyproperty 1 WPF Custom Control and exposing properties thru DependencyProperty Gatmando 2009-09-03T01:44:55Z 2009-09-03T02:02:56Z <p>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). Currently its structured like this:</p> <pre><code>Public Class myCustomLabel Inherits System.Windows.Controls.Label Public myEnglishTextProperty As DependencyProperty = DependencyProperty.Register("myEnglishText", GetType(String), GetType(myCustomLabel), New PropertyMetadata("English", New PropertyChangedCallback(AddressOf TextChanged))) Public myFrenchTextProperty As DependencyProperty = DependencyProperty.Register("myFrenchText", GetType(String), GetType(myCustomLabel), New PropertyMetadata("Francais", New PropertyChangedCallback(AddressOf TextChanged))) Public Sub New() 'This OverrideMetadata call tells the system that this element wants to provide a style that is different than its base class. 'This style is defined in themes\generic.xaml DefaultStyleKeyProperty.OverrideMetadata(GetType(myCustomLabel), New FrameworkPropertyMetadata(GetType(myCustomLabel))) End Sub Public Property myEnglishText() As String Get Return MyBase.GetValue(myFrenchTextProperty) End Get Set(ByVal value As String) MyBase.SetValue(myFrenchTextProperty, value) End Set End Property Public Property myFrenchText() As String Get Return MyBase.GetValue(myFrenchTextProperty) End Get Set(ByVal value As String) MyBase.SetValue(myFrenchTextProperty, value) End Set End Property Private Sub TextChanged(ByVal d As DependencyObject, ByVal e As DependencyPropertyChangedEventArgs) If DesignerProperties.GetIsInDesignMode(Me) = True Then Me.Content = myEnglishText Else If myUser.Language = "E" Then Me.Content = myEnglishText Else Me.Content = myFrenchText End If End If End Sub End Class </code></pre> <p>My test window grid xaml is simple:</p> <pre><code>&lt;Grid&gt; &lt;my:myCustomLabel myEnglishText="English Text" myFrenchText="English Text" Height="25" Width="100" Background="Aqua" Foreground="Black"/&gt; &lt;/Grid&gt; </code></pre> <p>This seems to work in the development environment - changing the English and French texts change the in the design preview and it works when the app runs and the test window is opened. But only the first time - if I open the test window a second time I receive the following message:</p> <blockquote> <p>'myEnglishText' property was already registered by 'myCustomLabel'.</p> </blockquote> <p>I understand now that if I change the dependency property declarations to shared then this problem goes away - but that leads to a host of other problems like the callback function being required to be shared as well - and thus unable to update the Content (which needs to be instantiated with the class). <strong>All I really want is the content property to be updated in design time when the english and french labels are changed.</strong></p> <p>Is there a way around this? Or maybe are dependency properties overkill for what I need?</p> http://stackoverflow.com/questions/1353567/cache-dependancy-off-causing-exception 0 Cache Dependancy Off causing exception.. Paul 2009-08-30T10:20:39Z 2009-08-31T11:51:04Z <p>Im getting an exception in my data tier when I try to disable cache dependancy in SQL server..</p> <pre><code>System.Exception: TblSettings::Insert::Error occured. ---&gt; System.Data.SqlClient.SqlException: Could not find stored procedure 'dbo.AspNet_SqlCacheUpdateChangeIdStoredProcedure'. The statement has been terminated. </code></pre> <p>Enabling cache dependancy, everything is fine..Disabling, the above exception gets thrown. How do I turn this off conclusively? I've checked the code and can't seem to find where it is referenced, apart from the web config, of which I've removed the cache block..From what I can see this seems to be caused via SQL server itself..Anyone any ideas of things to check?</p> <p>.....The following is console output I'm trying to turn on and off </p> <pre><code>C:\Windows\Microsoft.NET\Framework\v2.0.50727&gt; aspnet_regsql -S JDAWG\SQLEXPRESS -U sa -P password -d DB -dd Disabling the database for SQL cache dependency. . Finished. C:\Windows\Microsoft.NET\Framework\v2.0.50727&gt; aspnet_regsql -S JDAWG\SQLEXPRESS -U sa -P password -d DB -ed Enabling the database for SQL cache dependency. . Finished. </code></pre>