User Mauli - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T22:50:13Zhttp://stackoverflow.com/feeds/user/917http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1920718/swt-and-blinking2SWT and blinkingMauli2009-12-17T10:16:24Z2009-12-17T23:55:20Z
<p>I need the ability to have a blinking (red, maybe more colors) background for rows in a TableViewer/TreeViewer. What are the best options?</p>
<p>There may be more than one row blinking, the blinking <strong>MUST</strong> be synchron and I need two blinking modes, fast and slow.</p>
http://stackoverflow.com/questions/51470/how-do-i-reset-a-sequence-in-oracle6How do I reset a sequence in Oracle?Mauli2008-09-09T09:36:39Z2009-12-11T04:06:00Z
<p>In postgresql I can do something like this:</p>
<pre><code>ALTER SEQUENCE serial RESTART WITH 0;
</code></pre>
<p>Is there a oracle equivalent?</p>
http://stackoverflow.com/questions/1869036/is-there-a-queue-priorityqueue-implementation-which-is-also-a-set1Is there a Queue (PriorityQueue) implementation which is also a Set?Mauli2009-12-08T18:46:36Z2009-12-10T13:48:52Z
<p>I'm looking for a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/PriorityQueue.html" rel="nofollow">PriorityQueue</a> implementation which is also a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Set.html" rel="nofollow">Set</a>.</p>
<p>The <code>compareTo</code> implementation if its elements must not have the requirement to be consistent with the implementation of <code>equals</code>.</p>
<p>Is there somewhere such a implementation for java?</p>
<p><strong>Update:</strong> I implemented it now using a SortedSet as the internal collection. So I only had to implement the missing methods to satisfy the queue interface. I also forgot to mention that it also had to be a bounded queue, so it features a capacity and discards the last element of the set if capacity is reached.</p>
http://stackoverflow.com/questions/1289402/how-to-debug-http-proxy-problems-with-artifactory1How to debug HTTP Proxy problems with artifactory?Mauli2009-08-17T17:49:26Z2009-12-04T14:29:18Z
<p>I have an artifactory within a corporate network. I configured a http proxy for each remote repository. It doesn't work. How could I possibly find out why it doesn't work? Are there any log settings which I could tweak?</p>
<p>Using the same proxy within Firefox works just fine.</p>
http://stackoverflow.com/questions/228992/is-an-ssh-tunnel-through-citrix-client-possible0Is an SSH tunnel through Citrix Client possible?Mauli2008-10-23T08:47:40Z2009-11-27T03:41:05Z
<p>I know it is not strictly a programmer question, on the other hand, I would really like to be able to do a simple <code>svn up</code> on the production servers, which would save us a lot of hassle.</p>
<p>Or production servers are within a corporate network, and access is only allowed through a gateway server. From that we can access the actual servers via Remote Desktop. Because of this maintenance unfriendly setup we use a sftp server to get our files to the production server (where the ftp server alwys resets last modified date), so it is complicated to determine which files have changed.</p>
<p>So if it would be possible to setup a ssh tunnel from the actual server through the citrix connection, it would ease the whole update process.</p>
<p>(On further option which I consider is to use bazaar to push our updates to the sftp server and then pull the updates from there, but unfortunately there is no working svn plugin for bazaar available [on windows])</p>
http://stackoverflow.com/questions/882782/how-to-delete-hudson-workspace-before-build2How to delete Hudson workspace before build?Mauli2009-05-19T13:33:16Z2009-11-23T23:51:27Z
<p>I want to have a way to teach hudson to delete the complete workspace before doing a checkout & build. Is there a plugin which enables that?</p>
http://stackoverflow.com/questions/1738979/is-there-a-modbus-implementation-which-uses-mina-2-x0Is there a modbus implementation which uses Mina 2.x?Mauli2009-11-15T21:51:32Z2009-11-16T07:35:29Z
<p>Is there a open source modbus implementation <strong>which uses Apache Mina 2.x</strong>?</p>
http://stackoverflow.com/questions/1735283/python-message-oriented-middleware-i-e-jms-for-python/1735515#17355151Answer by Mauli for Python message oriented middleware (i.e. JMS for Python)Mauli2009-11-14T20:36:10Z2009-11-14T20:36:10Z<p>I remember that some people supposedly used spread for message queues <a href="http://www.spread.org/" rel="nofollow">http://www.spread.org/</a>, but I don't have any personal experience with it.</p>
http://stackoverflow.com/questions/1703351/how-to-call-a-oracle-function-from-hibernate-with-return-parameter0How to call a Oracle function from hibernate with return parameter?Mauli2009-11-09T19:56:06Z2009-11-10T22:26:05Z
<p>My question is very much like <a href="http://stackoverflow.com/questions/1068974/getting-the-return-value-of-a-pl-sql-function-via-hibernate">http://stackoverflow.com/questions/1068974/getting-the-return-value-of-a-pl-sql-function-via-hibernate</a></p>
<p>I have a function which does some modifications internally and it returns a value.</p>
<p>The original idea was to do something like this:</p>
<pre><code>protected Integer checkXXX(Long id, Long transId)
throws Exception {
final String sql = "SELECT MYSCHEMA.MYFUNC(" + id + ", "
+ transId + ") FROM DUAL";
final BigDecimal nr = (BigDecimal) this.getHibernateTemplate()
.getSessionFactory().getCurrentSession().createSQLQuery(sql)
.uniqueResult();
return nr.intValue();
}
</code></pre>
<p>Unfortunately this doesn't work with Oracle. What is the recommended way to do something like this?</p>
<p>Is there a way to extract declared variables from within my statement?</p>
http://stackoverflow.com/questions/1667826/how-to-inhibit-start-of-war-file-within-ear-file-configuratively0How to inhibit start of WAR file within EAR file configuratively?Mauli2009-11-03T14:53:21Z2009-11-06T16:40:41Z
<p>I have an ear file which contains 4 war files. The main reason we put those together is, that the order of startup is important, and it is easier from a deployment perspective (the customer only gets one file and does not have to worry about which versions works together).</p>
<p>The ear files are going to be deployed on 4 different systems, which are a bit different, so on two of the servers one of the war apps doesn't even need to be started.</p>
<p>The runtime environment is JBOSS 4.2.2.</p>
<p>Therefore my question is: What are my options to prevent the war file to be started, if I want to configure it via properties defined in properties-service.xml?</p>
<p>Another option, because the applications are actually spring applications, would be to prevent starting the ContextLoaderListener, but here I also haven't any idea how to do this via configuration.</p>
http://stackoverflow.com/questions/1632396/what-is-the-best-approach-for-having-some-kind-of-lazy-iterator-where-the-return1What is the best approach for having some kind of lazy iterator where the return is evaluated only on request?Mauli2009-10-27T17:28:39Z2009-11-04T01:28:48Z
<pre><code>import java.util.Collection;
import example.Event;
public interface Query
{
public boolean hasMore ();
public Collection<Event> getNext ( long count ) throws Exception;
}
</code></pre>
<p>This is the interface I have, which I want to implement.</p>
<p>The implementation is supposed to be like this:</p>
<pre><code>import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import example.Event;
import example.Query;
public class ListQuery implements Query {
public ListQuery(List<Event> events, String filter)
throws FilterParseException {
// events is the list of given events
// filter is a string representation of the filter to apply
}
public Collection<Event> getNext(long count) throws Exception {
// returns max. count next entries which match given filter
}
public boolean hasMore() {
// returns if there are more elements matching the given filter
}
}
</code></pre>
<p>What I'm thinking about, is the relationship between hasMore() and getNext(). In both cases I have to evaluate if the filter matches an element of the list. Possibly I don't know the implementation of the given list, so it could be an expensive operation. Obviously I cant just use hasNext() from an iterator, because I have to check if the Event matches the given criteria. In my current implementation I have two different iterators and the current position, where the one for hasMore() is moved up if the position of the iterator for getNext() is larger than the one for hasMore().</p>
<p>What I actually would like to do, is to clone the current iterator which I in turn would use for hasMore(), but this is not possible obviously.</p>
<p>Is there a more elegant solution for this problem?</p>
http://stackoverflow.com/questions/1646260/psyco-complains-about-unsupported-opcode-54-what-is-it0psyco complains about unsupported opcode 54, what is it?Mauli2009-10-29T20:13:49Z2009-10-29T20:35:50Z
<p>The Psyco log output look like this:</p>
<pre><code>21:08:47.56 Logging started, 10/29/09 %%%%%%%%%%%%%%%%%%%%
21:08:47.56 unsupported opcode 54 at create_l0:124 % %
21:08:47.56 unsupported opcode 54 at create_lx:228 % %
</code></pre>
<p>the lines in question</p>
<pre><code>class File:
def __init__(self, path, header):
self.path = path
self.header = header
self.file = path + '/' + header.to_filename()
self.pfile = None
def add_entry(self, entry): # line 124
self.pfile.write(entry.to_binary())
def open(self):
self.pfile = open(self.file, 'wb')
self.pfile.write(self.header.to_binary())
def close(self):
self.pfile.close()
def write(self, data):
self.pfile.write(data)
</code></pre>
<p>next one:</p>
<pre><code>nat_file = File(target + '/' + name, nat_header)
nat_file.open()
# add first value
nat_file.add_entry(DataBlock(t, q, 0.0, 1, v))
# add all others
while True:
try:
t, v, q = f.next()
except StopIteration:
break
nat_file.add_entry(DataBlock(t, q, 0.0, 1, v))
nat_file.close() # line 228
</code></pre>
<p>I'm a bit at loss what the problem may be. Any ideas?</p>
http://stackoverflow.com/questions/1221758/does-the-maven-dependency-plugin-use-some-other-kind-of-artifact-resolution-than1Does the maven-dependency-plugin use some other kind of artifact resolution than the rest of maven?Mauli2009-08-03T11:09:01Z2009-10-28T03:24:16Z
<p>If I use the maven-dependency-plugin plugin, than I can't use a version range. Also it seems the version of a there defined artifact doesn't get updated though a newer version is in the remote repository.</p>
<p>Why is that so?</p>
<p>Uses the maven-dependency-plugin some other mechanism than the rest of maven to resolve dependencies? And if that is the case, why?</p>
<p><strong>Here a example:</strong></p>
<p>I have created a project <em>org.example:org.example.simple.project1:jar</em> and put it in the repository using the versions <em>1.0.0-SNAPSHOT, 1.0.0, 1.0.1</em> and <em>1.1.0-SNAPSHOT</em></p>
<p>I have now configured the dependency plugin in the following way:</p>
<pre><code><plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-stuff<id>
<phase>initialize</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.example</groupId>
<artifactId>org.example.simple.project1.</artifactId>
<version>[1.0,1.1)</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>target/stuff</outputDirectory>
<includes>**/*.*</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</code></pre>
<p>If the dependency resolution would be the same as in the other dependencies, the version shoud resolve (at least in my opinion) to <strong>1.0.1</strong>.</p>
<p>Instead I get the following exception:</p>
<pre><code>[ERROR] FATAL ERROR
[INFO] ------------------------------------------------------------------------
[INFO] version was null for org.example:org.example.simple.project1.
[INFO] ------------------------------------------------------------------------
[INFO] Trace
java.lang.NullPointerException: version was null for org.example:org.example.simple.project1.
at org.apache.maven.artifact.DefaultArtifact.getBaseVersion(DefaultArtifact.java:362)
at org.apache.maven.artifact.repository.layout.DefaultRepositoryLayout.pathOf(DefaultRepositoryLayout.java:47)
at org.apache.maven.artifact.repository.DefaultArtifactRepository.pathOf(DefaultArtifactRepository.java:110)
at org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:125)
at org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:74)
at org.apache.maven.plugin.dependency.fromConfiguration.AbstractFromConfigurationMojo.getArtifact(AbstractFromConfigurationMojo.java:242)
at org.apache.maven.plugin.dependency.fromConfiguration.AbstractFromConfigurationMojo.getProcessedArtifactItems(AbstractFromConfigurationMojo.java:143)
at org.apache.maven.plugin.dependency.fromConfiguration.UnpackMojo.getProcessedArtifactItems(UnpackMojo.java:138)
at org.apache.maven.plugin.dependency.fromConfiguration.UnpackMojo.execute(UnpackMojo.java:88)
at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:453)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:559)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:500)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:479)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:331)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:292)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:142)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:336)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:129)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:301)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4 seconds
[INFO] Finished at: Mon Aug 03 17:21:41 CEST 2009
[INFO] Final Memory: 13M/133M
[INFO] ------------------------------------------------------------------------
</code></pre>
<p>WTF?!</p>
http://stackoverflow.com/questions/1581683/how-do-i-change-in-an-eclipse-web-project-the-webcontent-folder-to-something-diff1How do I change in an eclipse web project the WebContent folder to something different?Mauli2009-10-17T07:52:35Z2009-10-17T12:53:31Z
<p>With the Galileo release it is finally possible to convert a normal Java project to a dynamic web project. Unfortunately it assumes that the Web stuff is located in a folder WebContent, which is not necessarily the case for an existing project. How can I change it? In MyEclipse it is quite easy, but with a stock eclipse I don't find such an option!</p>
http://stackoverflow.com/questions/1233204/are-there-any-other-java-libraries-for-bonjour-zeroconf-apart-from-jmdns2Are there any other Java libraries for bonjour/zeroconf apart from JMDNS?Mauli2009-08-05T13:17:07Z2009-10-14T05:57:51Z
<p>Are there any other Java libraries for bonjour/zeroconf apart from JMDNS?</p>
http://stackoverflow.com/questions/1532192/is-there-a-prefabricated-magnifying-glass-cursor-for-swt-somewhere-available0Is there a prefabricated magnifying glass cursor for SWT somewhere available?Mauli2009-10-07T15:00:17Z2009-10-07T15:00:17Z
<p>I would like to use a "magnifying glass" (with + and -) cursor in my SWT application. I'm aware <a href="http://www.eclipse.org/articles/Article-SWT-images/graphics-resources.html" rel="nofollow">that it is pretty easy to create a cursor for oneself</a>, I just don't want to invest the time right now. Has anyone a link, or a codesnippet with a "zoom in" and "zoom out" cursor which I could use?</p>
http://stackoverflow.com/questions/1211463/simple-non-web-based-bug-tracker/1508002#15080020Answer by Mauli for Simple non-web based bug trackerMauli2009-10-02T06:30:43Z2009-10-02T06:30:43Z<p>Maybe <a href="http://www.fossil-scm.org/" rel="nofollow">Fossil</a> is of any use to you?</p>
<p>It is actually a DVCS but it also integrates a bugtracker and wiki, very much like trac (although I like trac, don't get me wrong). And its webbased, on the other hand the installation is supossedly dead simple.</p>
http://stackoverflow.com/questions/1085791/does-sphinx-run-on-jython1Does sphinx run on Jython?Mauli2009-07-06T07:20:24Z2009-09-28T14:33:51Z
<p>I'm still looking for a usable documentation tool chain. Working in the Java environment but also a Python user, I wondered if <a href="http://sphinx.pocoo.org/" rel="nofollow">Sphinx</a> would run on <a href="http://www.jython.org/" rel="nofollow">Jython</a> 2.5?</p>
http://stackoverflow.com/questions/7173/very-slow-merge-with-subversion-1-5-and-1-4-server7Very slow merge with Subversion 1.5 (and 1.4 Server)Mauli2008-08-10T12:11:24Z2009-09-25T14:04:38Z
<p>I switched locally from subversion 1.4 to 1.5, our server still runs 1.4. Since then every merge takes ages to perform. What took only a couple of seconds is now in the area of 5-10 minutes (or more). There is no difference between the command line client and tortoise (so we talk about the windows versions).</p>
<p>Has anybody else this strange phenomenon?</p>
http://stackoverflow.com/questions/686635/is-it-possible-to-have-multiple-propertyplaceholderconfigurer-in-my-applicationco0Is it possible to have multiple PropertyPlaceHolderConfigurer in my applicationContext?Mauli2009-03-26T16:50:45Z2009-09-24T18:20:28Z
<p>I need to load a specific applicationContext.xml file according to a given system property. This itself loads a file with the actual configuration. Therefore I need 2 PropertyPlaceHolderConfigurer, one which resolves the system param, and the other one within the actual configuration.</p>
<p>Any ideas how to do this?</p>
http://stackoverflow.com/questions/607338/ant-filter-fileset-which-is-referenced-by-refid0Ant filter fileset which is referenced by refidMauli2009-03-03T17:29:01Z2009-09-17T13:42:52Z
<p>I have a fileset (which is returned from the maven ant task), and it contains all jars I need to repack. This fileset is referenced by a refid. I only want to include our own jars, so I would like to filter that. But ant doesn't support any further attributes or nested tags if a refid is used.</p>
<p><strong>Example:</strong></p>
<p>fileset is:</p>
<p>org.foo.1.jar, org.foo.2.jar, log4j.jar</p>
<p>I now want to have a fileset which contains only org.foo*.jar</p>
<p>How do I do that?</p>
http://stackoverflow.com/questions/709126/jboss-has-too-many-libs-a-problem-with-m2eclipse1JBOSS has too many libs! (a problem with m2eclipse)Mauli2009-04-02T10:10:22Z2009-09-14T14:33:17Z
<p>I admit it is not the best title, but I don't know how to prase it without having a title of three lines.</p>
<p>I have a project with the (for instance) dependency JTA, using the scope "provided" (JBOSS brings its own JTA implementation). If I use m2eclipse it resolves all dependencies just fine. My problem is, if I deploy this project to jboss (within eclipse) those provided dependencies are put in the war file as well, but this is just wrong.</p>
<p>Any ideas how to solve that?</p>
<p><strong>EDIT:</strong></p>
<p>I guess it is following bug: <a href="https://bugs.eclipse.org/bugs/show%5Fbug.cgi?id=242476" rel="nofollow">https://bugs.eclipse.org/bugs/show_bug.cgi?id=242476</a></p>
<p>but it seems, the fix will only get included in the next eclipse version</p>
http://stackoverflow.com/questions/709126/jboss-has-too-many-libs-a-problem-with-m2eclipse/1421943#14219430Answer by Mauli for JBOSS has too many libs! (a problem with m2eclipse)Mauli2009-09-14T14:33:17Z2009-09-14T14:33:17Z<p>As I mentioned in the question, it is fixed in Eclipse 3.5.</p>
<p>I tested it, and it finally works.</p>
http://stackoverflow.com/questions/1347474/has-anybody-used-waf-to-build-java-applications0Has anybody used waf to build Java Applications?Mauli2009-08-28T14:47:09Z2009-09-09T11:10:08Z
<p>Has anybody used successfully <a href="http://code.google.com/p/waf/" rel="nofollow">waf</a> for building java applications? Preferably on Jython? Maybe with ivy integration?</p>
http://stackoverflow.com/questions/1378310/performance-concurrenthashmap-vs-hashmap1Performance ConcurrentHashmap vs HashMapMauli2009-09-04T10:00:19Z2009-09-04T12:14:31Z
<p>How is the performance of ConcurrentHashMap compared to HashMap, especially .get() operation (I'm especially interested for the case of only few items, in the range between maybe 0-5000)?</p>
<p>Is there any reason not to use ConcurrentHashMap instead of HashMap?</p>
<p>(I know that null values aren't allowed)</p>
<p><strong>Update</strong></p>
<p>just to clarify, obviously the performance in case of actual concurrent access will suffer, but how compares the performance in case of no concurrent access?</p>
http://stackoverflow.com/questions/7596/how-to-structure-a-java-application-in-other-words-where-do-i-put-my-classes12How to structure a java application, in other words: where do I put my classes?Mauli2008-08-11T07:45:20Z2009-08-29T17:41:21Z
<p>First of all, I know how to build a java application. But I was always puzzled where to put my classes. There are proponents for organizing the packages strictly domain oriented, others separate by tier.</p>
<p>I for myself have always problems a) with naming, b) with placing</p>
<p>Where do you put your domain specific constants (and what is the best name for such a class)? Where do you put classes for stuff which is both infrastructural and domain specific (for instance I have a FileStorageStrategy class, which stores the files either in the database, or alternatively in database)? Where to put Exceptions?</p>
<p>Are there any standards to which I can refer?</p>
http://stackoverflow.com/questions/1148034/examples-of-object-dictionaries-in-application-protocols/1348257#13482570Answer by Mauli for Examples of "object dictionaries" in application protocols.Mauli2009-08-28T16:56:23Z2009-08-28T16:56:23Z<p>Maybe you can use the <a href="http://www.openscada.org/" rel="nofollow">OpenSCADA</a> Project (written in Java). Itself it doesn't have any implementations for 8 bit micro controllers, but there is a clear separation of the network protocol itself and the interfaces which build on it. So it is quite possible to create a implementation which speaks the default GMPP Protocol. The advantage of that would be, you could easily use the available OpenSCADA libraries and integrate it with the rest of your systems.</p>
<p>If you need any help, just drop a line to Juergen DOT Rose AT inavare DOT net</p>
<p><a href="http://www.openscada.org/" rel="nofollow">http://www.openscada.org/</a></p>
http://stackoverflow.com/questions/1127523/java-interface-to-windows-communications-ole-opc-dde/1348211#13482110Answer by Mauli for Java interface to Windows communications? (OLE, OPC, DDE)Mauli2009-08-28T16:48:52Z2009-08-28T16:48:52Z<p>If you want to access OPC Servers, the <a href="http://www.openscada.org/" rel="nofollow">OpenSCADA - Utgard</a> Project might just be what you need.</p>
<p>Itself it uses <a href="http://sourceforge.net/projects/j-interop/" rel="nofollow">j-interop</a> to access COM.</p>
<p>If you need any help, just drop a line to Juergen DOT Rose AT inavare DOT net</p>
<p><a href="http://www.openscada.org/" rel="nofollow">http://www.openscada.org/</a></p>
http://stackoverflow.com/questions/1119551/looking-for-opc-da-client-library/1348186#13481860Answer by Mauli for Looking for OPC DA client libraryMauli2009-08-28T16:43:32Z2009-08-28T16:43:32Z<p>It is Java, but the OpenSCADA - Utgard Project might just be what you need.</p>
<p>If you need any help, just drop a line to Juergen DOT Rose AT inavare DOT net</p>
<p><a href="http://www.openscada.org/" rel="nofollow">http://www.openscada.org/</a></p>
http://stackoverflow.com/questions/1027307/is-there-a-standalone-java-library-which-provides-ldap-style-parsing2Is there a standalone Java library which provides LDAP style parsing?Mauli2009-06-22T13:48:14Z2009-08-27T11:00:23Z
<p>I'm looking for a standalone Java library which allows me to parse LDAP style filter expressions Is such thing available, or is it advisable to use ANTLR instead and build it by one self?</p>
<p>As background: the filter itself is submitted through a network, and I want to create say, the appropriate hibernate Criteria. <strong>I'm not doing anything with LDAP!</strong></p>
<p>Any other ideas for a technology independent solution to transfer and transform user defined queries are also appreciated.</p>
http://stackoverflow.com/questions/1920718/swt-and-blinking/1921483#1921483Comment by Mauli on SWT and blinkingMauli2009-12-17T13:57:00Z2009-12-17T13:57:00ZSo far I haven't tried anything, I'm looking for some inspiration of somebody who already did such a thing.http://stackoverflow.com/questions/1920718/swt-and-blinkingComment by Mauli on SWT and blinkingMauli2009-12-17T11:00:24Z2009-12-17T11:00:24ZHey, its not my decision :-)http://stackoverflow.com/questions/1869036/is-there-a-queue-priorityqueue-implementation-which-is-also-a-set/1869146#1869146Comment by Mauli on Is there a Queue (PriorityQueue) implementation which is also a Set?Mauli2009-12-10T08:31:50Z2009-12-10T08:31:50ZThats one possibility I thought of. I just thought that somebody maybe already implemented such a collection.http://stackoverflow.com/questions/1869036/is-there-a-queue-priorityqueue-implementation-which-is-also-a-set/1869159#1869159Comment by Mauli on Is there a Queue (PriorityQueue) implementation which is also a Set?Mauli2009-12-10T08:29:23Z2009-12-10T08:29:23Zno, the PriorityQueue doesn't have the consistency constraints, but a sorted set does. And I really doen't want to have two collections holding the same elements.http://stackoverflow.com/questions/1869036/is-there-a-queue-priorityqueue-implementation-which-is-also-a-set/1869132#1869132Comment by Mauli on Is there a Queue (PriorityQueue) implementation which is also a Set?Mauli2009-12-10T08:27:30Z2009-12-10T08:27:30ZThat doesn't make much sense to me. A priority queue is already sorted, so you would need only a normal set. Further I think that in my case the overhead for having two collections would be to high, my objects are relatively small, but I have a lot of them.http://stackoverflow.com/questions/1738979/is-there-a-modbus-implementation-which-uses-mina-2-x/1739065#1739065Comment by Mauli on Is there a modbus implementation which uses Mina 2.x?Mauli2009-11-16T07:36:52Z2009-11-16T07:36:52ZI know that there are modbus implementations out there, my question was if specifically one <b>which utilizes apache mina</b> - is available!http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1733489#1733489Comment by Mauli on RegEx match open tags except XHTML self-contained tagsMauli2009-11-15T21:47:32Z2009-11-15T21:47:32ZNo, the question is: Did actually someone ask Paris Hilton to write an OS?http://stackoverflow.com/questions/1703351/how-to-call-a-oracle-function-from-hibernate-with-return-parameter/1703398#1703398Comment by Mauli on How to call a Oracle function from hibernate with return parameter?Mauli2009-11-10T10:22:39Z2009-11-10T10:22:39Zgreat, it works fine now!http://stackoverflow.com/questions/1703351/how-to-call-a-oracle-function-from-hibernate-with-return-parameter/1703398#1703398Comment by Mauli on How to call a Oracle function from hibernate with return parameter?Mauli2009-11-09T20:07:47Z2009-11-09T20:07:47Zwould you mind to provide an example? I'm a bit lost how to get the result from the function. Do I need to use a out parameter?http://stackoverflow.com/questions/1632396/what-is-the-best-approach-for-having-some-kind-of-lazy-iterator-where-the-return/1671214#1671214Comment by Mauli on What is the best approach for having some kind of lazy iterator where the return is evaluated only on request?Mauli2009-11-04T10:21:47Z2009-11-04T10:21:47ZIt looks very much like the easiest solution for my problem.http://stackoverflow.com/questions/1646260/psyco-complains-about-unsupported-opcode-54-what-is-it/1646379#1646379Comment by Mauli on psyco complains about unsupported opcode 54, what is it?Mauli2009-10-30T07:33:44Z2009-10-30T07:33:44Zwith that information I found <a href="http://thomas.apestaart.org/log/?p=927" rel="nofollow">thomas.apestaart.org/log/?p=927</a>
so the problem is obviously that STORE_MAP is new in Python 2.6 and probably not supported by Psyco. I guess I will try to run my program with python 2.5, than this shouldn't happen anymore.http://stackoverflow.com/questions/1646260/psyco-complains-about-unsupported-opcode-54-what-is-it/1646352#1646352Comment by Mauli on psyco complains about unsupported opcode 54, what is it?Mauli2009-10-29T20:35:44Z2009-10-29T20:35:44Znot that I'm aware of. I installed psyco with the ubuntu package manager.http://stackoverflow.com/questions/1632396/what-is-the-best-approach-for-having-some-kind-of-lazy-iterator-where-the-return/1632526#1632526Comment by Mauli on What is the best approach for having some kind of lazy iterator where the return is evaluated only on request?Mauli2009-10-28T08:39:56Z2009-10-28T08:39:56ZSomehow I didn't think this far, but thats a simple and for my case a totally appropriate solution.
@ChssPly76 Why do you think the interface is sub optimal? In the standard case it is a database operation, the data itself is transmitted over the network via other means. The count option just a way to request a complete block in one request instead of doing a network request for each single entry. In this way the GUI for the user can already display some data even if there is still more to come. My question on the other hand targets a in memory dummy implementation I use for tests.http://stackoverflow.com/questions/1027307/is-there-a-standalone-java-library-which-provides-ldap-style-parsing/1340328#1340328Comment by Mauli on Is there a standalone Java library which provides LDAP style parsing?Mauli2009-10-28T07:03:50Z2009-10-28T07:03:50ZI finally came around to try it, and it works quite fine.http://stackoverflow.com/questions/1221758/does-the-maven-dependency-plugin-use-some-other-kind-of-artifact-resolution-than/1635038#1635038Comment by Mauli on Does the maven-dependency-plugin use some other kind of artifact resolution than the rest of maven?Mauli2009-10-28T07:01:34Z2009-10-28T07:01:34ZHah! I knew it! This explains it quite clearly. I will have a look at maven 3, but I'm not very hopeful, since my builds don't work with any maven version other than 2.0.10 (so much to compatibility promises).