User Hanno Fietz - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:00:33Z http://stackoverflow.com/feeds/user/2077 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/58622/can-i-document-python-code-with-doxygen-and-does-it-make-sense 4 Can I document Python code with doxygen (and does it make sense)? Hanno Fietz 2008-09-12T10:26:40Z 2009-11-27T12:14:47Z <p>I like doxygen to create documentation of C or PHP code. I have an upcoming Python project and I think I remember that Python doesn't have /* .. */ comments and also has its own self-documentation facility which seems to be the pythonic way to document.</p> <p>Can I just use doxygen? Anything particular to be aware of?</p> <p>I have done some coding in Python but so far only on small projects where I was to lazy to document at all (yeah, I know ... but let's just pretend that's OK for now).</p> http://stackoverflow.com/questions/1798381/is-there-a-way-to-secure-access-to-bundles-in-osgi 2 Is there a way to secure access to bundles in OSGi? Hanno Fietz 2009-11-25T17:00:00Z 2009-11-26T17:51:33Z <p>I have an application consisting of several OSGi bundles. I would like to enforce that some of them only provide other bundles access to their services if a valid token (e. g. a license key) has been presented.</p> <p>Here's why I would want to restrict access to those bundles:</p> <ul> <li>Security: They don't have their own access policies because these depend on what application is using the bundle. This means they have to trust in the client bundle to have verified the permissions of the application or user they are representing. I would like to keep control over what access control schemes I trust.</li> <li>Reliability: I allow and encourage the development of third-party modules to add functionality to my system. To be able to guarantee some reliability, I want to control at which level those extensions interact with my system. Also, I want to make sure that my own bundles are only used in combinations that have been tested.</li> <li>Licensing: There might be functionality in some modules that can only be used with the proper license, or, I might want to ensure that customers can't swap bundles between different installations.</li> </ul> <p>I have read some about the <code>ServicePermission</code> class and related from the OSGi framework, but it appears to me that these let the site administrator control the access policy, as opposed to the bundle manufacturer, which is what I want.</p> http://stackoverflow.com/questions/1803465/how-do-i-implement-floating-licenses-in-a-distributed-environment 0 How do I implement floating licenses in a distributed environment? Hanno Fietz 2009-11-26T12:42:08Z 2009-11-26T12:42:08Z <p>I charge for my licenses by the capacity (how much data, how many users) of the software rather than by the number of instances that are installed. I'm aiming for a solution that customers can install on as many machines as their load balancing and failover scenarios require. What are strategies to implement that?</p> <p>I can think of:</p> <ul> <li>Non-technical strategy: have a lawyer get the license agreement right, trust in most customers not wanting to violate the terms, let the rest have their fun. If someone really pisses you off, go to court and hope to win. Disadvantage: may simply not work.</li> <li>License Server: have some central, lightweight piece of software that can <em>not</em> run on more than one machine, requires online activation, and needs to be contacted by the other nodes for certain permissions. Disadvantage: introduces single point of failure and maybe networking hassle.</li> </ul> <p>Is their something that's smarter than the second and more reliable than the first?</p> http://stackoverflow.com/questions/1614215/is-there-a-maven-build-for-eclipselink-that-makes-the-osgi-bundles-run-in-felix-a 5 Is there a Maven build for eclipselink that makes the OSGi bundles run in Felix and others? Hanno Fietz 2009-10-23T15:28:15Z 2009-11-22T01:45:01Z <p>The Eclipselink OSGi bundles seem have trouble working in some OSGi containers, notably Felix, because they fail to import packages (and that are exported by the system) that they actually require. One example is the missing import of <code>javax.xml.namespace</code> in the <code>core</code> bundle of the current 1.1.3 release.</p> <p>The eclipselink team has targeted this type of issues by using the BND tool for the build process in versions 1.2 and 2.0, so once these are out, we can expect this problem to be gone.</p> <p>In the meantime, has anybody set up and published a Maven build from the eclipselink sources that does the bundling right?</p> http://stackoverflow.com/questions/1742076/what-can-i-do-about-ambigous-wildcard-patterns-in-struts 0 What can I do about ambigous wildcard patterns in Struts? Hanno Fietz 2009-11-16T13:03:34Z 2009-11-17T12:44:58Z <p>I have a problem finding the right wildcard pattern to extract parts of my URL into action parameters in Struts.</p> <p>This is how I set up the action. The intent of the pattern is to capture the last two path elements and then everything that might precede them.</p> <pre><code>&lt;action name="**/*/*" class="com.example.ObjectAction"&gt; &lt;param name="filter"&gt;{1}&lt;/param&gt; &lt;param name="type"&gt;{2}&lt;/param&gt; &lt;param name="id"&gt;{3}&lt;/param&gt; &lt;/action&gt; </code></pre> <p>Calling it with the URL <code>channels/123/transmissions/456</code> I get the following result (the action just sets the input parameters on a POJO and returns that as XML):</p> <pre><code>&lt;result&gt; &lt;filter&gt;channels/123/transmissions&lt;/filter&gt; &lt;id/&gt; &lt;type&gt;456&lt;/type&gt; &lt;/result&gt; </code></pre> <p>It should be:</p> <pre><code>&lt;result&gt; &lt;filter&gt;channels/123&lt;/filter&gt; &lt;id&gt;456&lt;/id&gt; &lt;type&gt;transmissions&lt;/type&gt; &lt;/result&gt; </code></pre> <p>Now, because <code>**</code> matches all characters <em>including</em> the slash, I guess my pattern allows more than one way to match the URL, and Struts happens to pick one that leaves the <code>id</code> empty. Is the behaviour for multiple possible matches defined somewhere? Can I make the pattern less ambigous? Are there alternative ways of doing this?</p> <p>I'm running Struts 2.0.8. Upgrading to 2.1.9 would give me regex matching, but I got into trouble with Struts' dependencies and my OSGi environment when I went past 2.0.8, so I'd like to stick to that version for now.</p> http://stackoverflow.com/questions/1000163/can-i-create-server-side-java-classes-or-mapping-and-client-side-as-classes-fro 1 Can I create server-side Java classes, OR mapping, and client-side AS classes from a single model description? Hanno Fietz 2009-06-16T08:24:02Z 2009-11-16T03:27:47Z <p>I have a Java server application and a Flex client application. For my data model, I have typical objects, like User etc., that are basically the same in the database, the server-side Java code and the client-side AS code. I. e., the public fields of my AS and Java classes are named identically, and have the same types and values as the respective fields in the database table which has the same name as those classes.</p> <p>For the Java classes and the DB tables to match, I can use any ORM. Are there any tools to have the AS classes (and, ideally, the matching Remoting boilerplate code) autogenerated from the Java ones as well? I had a short look at <a href="http://opensource.adobe.com/wiki/display/blazeds/BlazeDS/" rel="nofollow">BlazeDS</a>, but it didn't seem to have tools like that, at least I couldn't find anything about it.</p> <p>Of course, in a perfect world, I'd describe my data items once and have the DDL, Java code and AS code all autogenerated. Does such a tool exist, and is it usable enough?</p> <p>Oh yeah, and it would be great if the source format could be protobuf files...</p> <p><strong><em>Note:</strong> This seems to be the same question as <a href="http://stackoverflow.com/questions/222359/generating-actionscript-value-objects-from-middle-tier-java-classes">this one</a>. The answers there seem to indicate that at least there's no common tool that "everybody uses" or that has a reputation for high quality.</em></p> http://stackoverflow.com/questions/1136298/whats-the-project-of-choice-for-compiling-gpb-to-as3 0 What's the project of choice for compiling GPB to AS3? Hanno Fietz 2009-07-16T08:56:46Z 2009-11-13T19:22:37Z <p>Inside a Java project I use <a href="http://code.google.com/p/protobuf/" rel="nofollow">Google Protocol Buffers</a> (GPB) for serializing my objects. I can use the same .proto files in auxiliary Python code, which is great. Now I'm adding a Flex client to the whole thing and I'd like to use the same .proto files once more.</p> <p>It seems there's a couple of projects out there which compile .proto files to Actionscript. From a few glances at the projects' homepages, it seems to me that <a href="http://code.google.com/p/protobuf-actionscript3/" rel="nofollow">protobuf-actionscript3</a> is actually the most advanced and most "alive" of these projects.</p> <p>Has anybody had practical experience with GPB to AS3 compilers and which one(s) can you recommend (or recommend against)?</p> http://stackoverflow.com/questions/1594337/how-do-i-deploy-a-webapp-into-apache-felix 1 How do I deploy a webapp into Apache Felix? Hanno Fietz 2009-10-20T12:43:08Z 2009-11-13T14:12:59Z <p>What bundles do I need to install? At least, this would have to be a servlet container / web server such as Jetty, but will the basic <code>org.apache.felix.http.jetty</code> bundle do, or is there anything else needed to discover the <code>web.xml</code> in other bundles?</p> <p>Do I put the webapp in a standard WAR, add OSGi headers and am done? Or are there any webapp specific headers required for the OSGi environment?</p> <p>What other configuration has to be done?</p> <p>What are options to automate these steps using Maven?</p> <p>I have tried deploying the <code>org.apache.felix.http.jetty</code> bundle, and I get a Jetty answering with 404 on localhost:8080. Next, I tried a simple webapp with nothing but a static HTML file configured as a <code>welcome-file</code>. As far as I can tell, Jetty doesn't even notice the deployment descriptor, at least deploying the test webapp into Felix doesn't change anything at all.</p> http://stackoverflow.com/questions/1711110/whats-a-good-and-simple-way-to-backup-an-svn-repo-to-an-ftp-server 2 What's a good and simple way to backup an SVN repo to an FTP server? Hanno Fietz 2009-11-10T20:53:51Z 2009-11-13T12:26:58Z <p>I'd like to make a backup of my SVN repo using tar and ftp from a cronjob once a day. This is quite easy, but I would like to make sure there's no commit etc. running while the backup is made. While there are times of the day / night where this is highly unlikely, but I'd rather not rely on that, because if I'm already up at night in some crunch, the last thing I need is my SVN or my backups getting messed up.</p> <p>I'm looking for some very simple but effective safeguard. It's OK if SVN clients get an error while the backup is running (it won't take that long). Should I use</p> <ul> <li>something on the filesystem level</li> <li>some SVN hook script</li> <li>something else entirely</li> </ul> <p>I started posting this over at serverfault, but then decided that it is slightly closer to programming than to sysadmin, especially if hooks are involved. Feel free to move it if you think otherwise.</p> http://stackoverflow.com/questions/1716325/is-collections-copy-broken-in-openjdk-6 1 Is Collections.copy broken (in OpenJDK 6)? Hanno Fietz 2009-11-11T16:26:51Z 2009-11-12T12:42:19Z <p><strong><em>Sometimes I seem to be quite inefficient. When I was nearly finished typing this, I managed to find the appropriate bug report at Sun. I then thought well, might as well post it, having the screenshot and all. Answer follows.</em></strong></p> <p>I know, "SELECT isn't broken", and it's always my fault. But here, I really don't get why it should be. My code snippet:</p> <pre><code>List&lt;IGraphEdge&gt; rgSrc = this._rgGetPath(); List&lt;IGraphEdge&gt; rgDst = new ArrayList&lt;IGraphEdge&gt;(rgSrc.size()); Collections.copy(rgDst, rgSrc); </code></pre> This throws an `IndexOutOfBoundException` with the message <blockquote> <pre>java.lang.IndexOutOfBoundsException: Source does not fit in dest at java.util.Collections.copy(Collections.java:548) </pre> <p></blockquote></p> <p>In the debugger, when I step into Collections.copy, the two <code>ArrayList</code> instances look like this:</p> <p><img src="http://static.theuprightape.net/ql/img/debugger.png" alt="Debugger view"></p> <p>So, there's the capacity in <code>dest</code> to hold that one element from <code>src</code>, although, naturally, the <code>size</code> of <code>dest</code> is still 0, after all, this is what I want to change by calling <code>copy()</code>.</p> <p>Looking at the source code of the OpenJDK implementation, it's clear why the error is thrown:</p> <pre><code>public static &lt;T&gt; void copy(List&lt;? super T&gt; dest, List&lt;? extends T&gt; src) { int srcSize = src.size(); if (srcSize &gt; dest.size()) throw new IndexOutOfBoundsException("Source does not fit in dest"); </code></pre> <p>So please tell me, is that a bug, or what am I doing wrong?</p> http://stackoverflow.com/questions/1716325/is-collections-copy-broken-in-openjdk-6/1716366#1716366 1 Answer by Hanno Fietz for Is Collections.copy broken (in OpenJDK 6)? Hanno Fietz 2009-11-11T16:30:54Z 2009-11-12T12:42:19Z <p>I wasn't the first to run into this, but it really is always your fault. According to the response to <a href="http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=6305513" rel="nofollow">this bug report</a> at Sun, <code>Collections.copy</code> is not intended to be used like this, you should use <code>List.appendAll()</code> instead.</p> <p>So I fixed my code to look like this and it worked:</p> <pre><code>List&lt;IGraphEdge&gt; rgSrc = this._rgGetPath(); List&lt;IGraphEdge&gt; rgDst = new ArrayList&lt;IGraphEdge&gt;(rgSrc.size()); rgDst.addAll(rgSrc); </code></pre> <p>Duh.</p> http://stackoverflow.com/questions/1675349/how-do-i-change-the-appearance-of-nodes-in-a-tree-control-in-flex-using-an-extend 1 How do I change the appearance of nodes in a Tree control in Flex using an extended TreeItemRenderer? Hanno Fietz 2009-11-04T17:21:51Z 2009-11-10T00:55:35Z <p>I'm using a tree control that I want to customize. The data items in the tree's <code>dataProvider</code> have a property <code>name</code> that should be used for labeling the node, and a property <code>type</code> that should be used to select one of several embedded images for use as an icon. The simplest way to do this is by using the <code>labelField</code> and <code>iconFunction</code> properties. </p> <p>However, I wanted to get started with item renderers and open the door for adding more complex customization later, so I tried making my own item renderer. I extended the <code>TreeItemRenderer</code> class as follows and used it in my tree control:</p> <pre><code>class DirectoryItemRenderer extends TreeItemRenderer { [Embed("assets/directory/DefaultIcon.png")] private static var _DEFAULT_ICON:Class; // ... some more icons ... override public function set data(value:Object):void { super.data = value; // let the base class take care of everything I didn't think of if (value is Node) { // only handle the data if it's our own node class switch ((value as Node).type) { // ... some case clauses ... default: this._vSetIcon(_DEFAULT_ICON); } this.label.text = (value as Node).name; } } private function _vSetIcon(icon:Class):void { if (null != this.icon &amp;&amp; this.contains(this.icon)) { this.removeChild(this.icon); } this.icon = new icon(); this.addChild(this.icon); this.invalidateDisplayList(); } } </code></pre> <p>This code has no effect whatsoever, icon and label in the tree control remain at their defaults. Using <code>trace()</code>, I verified that my code is actually executed. What did I do wrong?</p> http://stackoverflow.com/questions/510646/what-are-recommended-strategies-for-load-testing-i-e-simulating-large-numbers 4 What are recommended strategies for load-testing (i. e. simulating large numbers of clients) server applications in a small shop? Hanno Fietz 2009-02-04T09:29:44Z 2009-11-09T22:45:32Z <p>I develop a network based, multi-component software system that's designed to run on an arbitrary number of machines. I'm assuming a typical setup of 1 to 4 machines.</p> <p>I want to be serious about testing the system, and I have set up a network of virtual machines on a strong PC that I can use to simulate the network interaction. However, that setup is not quite sufficient.</p> <p>For example, because of the virtualization (I use qemu), each node always runs on one core only, so I can't test performance issues on code designed for multicore use. It would be nice if I could sometimes run any one of the virtual machines on the whole PC, to see what difference it makes, especially performance-wise, but also to check on some multithreading issues.</p> <p>Buying more boxes and using harddisk partitions instead of virtual disk images are options, but are there more elegant approaches? I'm bootstrapping a company here and can't really afford loads of hardware yet and having to deal with real physical media for each machine rather than just moving image files around is certainly more work.</p> <p><strong>ETA</strong>: The application is a middleware system and does not really have a user interface. Testing is done through dummy clients and by feeding data into the system that's extracted again on the other end. It's not a website and it is usually not used over the Internet but rather inside the local network. UI and Internet interfaces are going to be provided at a later stage by some of the components that are hooked up to the system.</p> http://stackoverflow.com/questions/1704010/need-to-use-body-onload-event-but-third-party-javascript-library-has-hijacked-it/1704081#1704081 0 Answer by Hanno Fietz for Need to use body onload event, but third party JavaScript library has hijacked it. Hanno Fietz 2009-11-09T21:45:49Z 2009-11-09T21:45:49Z <p>By hijacked, you mean, Simile loads after your code and overwrites <code>onload</code>? In that case, make sure you get behind it (as Justin <a href="http://stackoverflow.com/questions/1704010/need-to-use-body-onload-event-but-third-party-javascript-library-has-hijacked-it/1704056#1704056">says</a>), and before you overwrite it yourself, store the value of <code>onload</code> somewhere, so it still gets called (from your own handler).</p> <p>That is, if you don't use jQuery.</p> http://stackoverflow.com/questions/1559048/how-can-i-make-jdbc-drivers-pluggable-in-an-osgi-environment 0 How can I make JDBC drivers pluggable in an OSGi environment? Hanno Fietz 2009-10-13T09:05:26Z 2009-11-09T21:09:46Z <p>I have an OSGi project that, among others, contains one bundle with JPA annotated domain models and another which uses Eclipselink as persistency provider. The latter instantiates the <code>EntityManager</code> using a configuration parameter to determine the JDBC driver's class name.</p> <p>Now, the bundle with the models needs to be able to see the JDBC driver, I think, that is because eclipselink uses the classloader of the model classes to load it. This has the unwanted side effect that I need to explicitly declare an <code>Import-Package</code> directive in the model's bundle to pull in the driver. Swapping out the driver via OSGi then isn't easy anymore (I need to regenerate the manifest), which defeats the purpose of using OSGi in the first place.</p> <p>Since JDBC drivers all implement the same interface, what I would like to do is put database drivers in their own bundle, register them with the OSGi container under their common interface name and have eclipselink use whatever is available. But I can't see how to do that, because it seems the driver is instantiated by eclipselink, meaning I can't instatiate it elsewhere and have eclipselink be oblivious of the actual class name.</p> <p>This seems like a very typical thing to do. I guess there's already a solution out there?</p> <p><a href="http://dev.eclipse.org/mhonarc/lists/eclipselink-users/msg02013.html" rel="nofollow">This post</a> by Shaun Smith of Oracle from earlier this year suggests that there maybe isn't, but it also indicates that the demand for it seems to be quite real.</p> http://stackoverflow.com/questions/1024235/what-are-recommendable-data-modeling-tools-and-techniques-for-a-flex-java-web-a 0 What are recommendable data modeling tools and techniques for a Flex / Java web app? Hanno Fietz 2009-06-21T16:15:46Z 2009-11-09T20:49:02Z <p>I'm looking for a comprehensive setup that you've successfully used already. I've already loads of hints as to what building bricks I might use, but I'm not sure how to put it all together. Tools that need to be bought are OK, too.</p> <p>Details:</p> <p>I'm developing a Flex front end client for a Java server application and I have a set of model classes that represent objects in my business logic and should have the same properties and exhibit the same behaviour throughout all layers. These objects</p> <ul> <li>have form validation logic for user input</li> <li>are displayed in various forms (lists, detail views ...) throughout the UI</li> <li>are retrieved from and sent to the server using XML or AMF</li> <li>are validated again on the server</li> <li>are stored in a RDBM with tables and fields corresponding to the classes and fields</li> </ul> <p>This is a very common application structure, I guess. I'm already using:</p> <ul> <li>ORM for the Java backend (Eclipse persistency package)</li> <li>automatic mapping from XML to Action Script, using XML schema and the classes in mx.rpc.xml, as described <a href="http://blog.misprintt.net/?p=192" rel="nofollow">here</a>.</li> </ul> <p>Now, what I'd really like to do is define the objects once (I already have them in XSD) and have tools set up class stubs for the whole chain. What can I use?</p> <p>I've already heard of (but not evaluated):</p> <ul> <li>XMLBeans to generate Java classes from XML Schema</li> <li>Granite DS to generate AS classes from Java classes</li> </ul> http://stackoverflow.com/questions/424915/where-is-int-main-in-my-flex-application 2 Where is "int main()" in my Flex application? Hanno Fietz 2009-01-08T16:28:31Z 2009-11-09T20:31:29Z <p>Well, not literally, of course, but:</p> <p>I'm new to Flex and I'm trying to figure out where to put the code that I want to run when my app starts. In my example, I have a tree control defined in the markup, and I have AS code that can populate it from a local file or a webservice. How do I bind the one to the other such that when the control is created, the code is run?</p> <p>The examples I have found in the documentation all use event handlers, i. e. they put 'creationComplete="myInitFunction(evt)"' in the control's opening tag. That would mean I write a little glue function that initializes things.</p> <p>Now, as I have understood it, the Markup is really converted into AS classes internally. So can I not just define a class that is instantiated by the engine and put my startup code in the constructor? Maybe even like, extending the Tree class?</p> <p><strong>EDIT</strong>:</p> <p>Months later, I'm a lot wiser. After trying to abuse the constructors of extended component classes, I had to learn that Flex doesn't expect the constructors to do much - certainly not loading data off the network.</p> <p>The component life cycle explanation in "Programming Flex 3" was really helpful. Now, my constructors are all empty, and I'm overriding the life cycle methods, such as <code>createChildren</code> for a lot of things, and use events for anything that involves latency or depends on externalities, especially network stuff.</p> <p>For example, I use <code>creationComplete</code> to initiate an asynchronous network request (using <code>HTTPService</code>), when that returns there are ResultEvent and FaultEvent handlers, the ResultEvent updates a data model to which I data-bound my controls. This is seemingly very Flex-y and works great.</p> http://stackoverflow.com/questions/1144011/how-do-i-get-support-for-gpb-in-eclipse 2 How do I get support for GPB in Eclipse? Hanno Fietz 2009-07-17T15:28:30Z 2009-11-09T20:16:20Z <p>I'm trying to use Google Protocol Buffers in my project and I'd like to have some tooling support from Eclipse. In particular, I want Eclipse to call <code>protoc</code> every time I make changes to the <code>.proto</code> files and then rebuild all code that depends on the generated code.</p> <p>I tried to set up a Custom Builder but it keeps bugging me with errors I don't understand, most often it complains that the <code>.proto</code> file is not on the path given by <code>--proto-path</code>, which it should be by all I can tell. Also, because I use <code>${build_files}</code>, Eclipse passes all changed files to the compiler (instead of those that I have configured to trigger the build).</p> <p>NetBeans seems to have a protobuf-Plugin, but I can't find one for Eclipse. Is there one?</p> http://stackoverflow.com/questions/1144011/how-do-i-get-support-for-gpb-in-eclipse/1703472#1703472 0 Answer by Hanno Fietz for How do I get support for GPB in Eclipse? Hanno Fietz 2009-11-09T20:16:20Z 2009-11-09T20:16:20Z <p>In practice, syntax highlighting turned out to not be that important, I hardly edit these files, and they tend to be very small. Maven and the m2eclipse plugin handle the building side of things great.</p> http://stackoverflow.com/questions/1681263/using-gpb-how-do-i-make-my-wrapper-classes-stop-accepting-binary-messages-that-a 0 Using GPB, how do I make my wrapper classes stop accepting binary messages that aren't meant for them? Hanno Fietz 2009-11-05T15:25:11Z 2009-11-06T16:03:02Z <p>I'm using <a href="http://code.google.com/p/protobuf/" rel="nofollow">Google Protocol Buffers</a> to serialize some of my business objects (in a Java app). As recommended in the tutorials, I wrap the message builder in a class of my own that implements getter and setter methods to access the message's properties. Also, I declared all message fields <code>optional</code>, again following their recommendations.</p> <p>Now, I can give any of the wrapper classes any of the encoded messages and they will always parse and accept them. This leads to wrapper objects that represent a message type which they don't actually contain and a lot of bogus happens.</p> <p>When loading the binary content of a message into a wrapper class, how can I make it throw an error if it has been passed the wrong type?</p> <p>The solution I'm currently thinking of would have all messages extend a base message with a required type field (and maybe a version field). This would have the generated builder class throw an exception if those fields are missing, and if they are there, I can check in my own code. However, I'm not yet done evaluating what repercussions this has for my code, and I'm not sure this is going to be easy.</p> http://stackoverflow.com/questions/1681263/using-gpb-how-do-i-make-my-wrapper-classes-stop-accepting-binary-messages-that-a/1688534#1688534 0 Answer by Hanno Fietz for Using GPB, how do I make my wrapper classes stop accepting binary messages that aren't meant for them? Hanno Fietz 2009-11-06T16:03:02Z 2009-11-06T16:03:02Z <p>This seems to be what other people do, too, and it works fine for me:</p> <pre><code>message TypedMessage { required string type = 1; required bytes payload = 2; } </code></pre> <p>The actual message goes into the payload field in serialized form and the type is used to get the proper builder and wrapper class. The field could also be an enum, I'm currently using Java class names, which I will likely replace by a different system later, since this means refactoring breaks backwards compatibility of the parser.</p> http://stackoverflow.com/questions/1668455/how-can-i-extract-all-default-skins-styles-icons-etc-from-my-flex-app 0 How can I extract all default skins / styles / icons etc. from my Flex app? Hanno Fietz 2009-11-03T16:26:23Z 2009-11-03T21:52:14Z <p>I'm developing a Flex application. Since I'm not a very talented graphical designer, I leave all stylings etc. at their defaults. Once I finish the app, I would like to give it to a graphical designer, together with all the fonts, icons, styles etc. that Flex has put into my app, so she can swap them out and make my app pretty and theme it to my CI.</p> <p>Also, I'd like to use this approach as the foundation for interchangeable themes at a later stage.</p> <p>There's two parts to my question, really:</p> <p>a) how do I get all the assets <em>that are used in my app</em> (not simply all that the Flex framework has bundled) extracted, and</p> <p>b) how do I figure out which asset is used in which place, so the designer doesn't have to guess and reverse engineer.</p> <p>There's a third part (how do I repackage the assets to make them swappable at run / compile time), but I think I know how that works, roughly.</p> http://stackoverflow.com/questions/1661620/how-do-i-make-flex-create-one-element-arrays-from-xml-data 0 How do I make Flex create one-element arrays from XML data? Hanno Fietz 2009-11-02T14:29:55Z 2009-11-03T00:02:17Z <p>I retrieve XML data in Flex via HttpService. I have the <code>resultFormat</code> property on the HttpService instance set to <code>HTTPService.RESULT_FORMAT_OBJECT</code>. The result contains data similar to this:</p> <pre><code>&lt;!-- ... --&gt; &lt;children&gt; &lt;item&gt;&lt;!-- ... --&gt;&lt;/item&gt; &lt;item&gt;&lt;!-- ... --&gt;&lt;/item&gt; &lt;!-- ... --&gt; &lt;children&gt; &lt;!-- ... --&gt; </code></pre> <p>I get an array named item beneath the element children when there is more than one <code>item</code> sibling. If there's only one, the conversion can't distinguish it from a scalar.</p> <p>What do I need to change to have Flex convert all <code>item</code> elements to an array with 0 or more elements?</p> <p>What would I have to do to get an array member <code>children</code>, dropping the <code>item</code> wrappers altogether?</p> <p>The XML is generated by Struts on the server side. I always have the option to change the structure of the document there, but right now I'm interested in what I can do with Flex.</p> http://stackoverflow.com/questions/1555197/where-should-i-put-shared-testing-utilities-in-a-multi-module-maven-project 0 Where should I put shared testing utilities in a multi-module Maven project? Hanno Fietz 2009-10-12T15:21:29Z 2009-10-31T16:35:05Z <p>I probably sholdn't obsess about this too much, but my project has a very structured layout that I have become very fond of. Having that much structure has actually proven to be useful, this time, so I don't really want it to become messy again.</p> <p>To start with, each module consists of several Java packages:</p> <pre><code>com.mycompany.mysoftware.modulename com.mycompany.mysoftware.modulename.impl com.mycompany.mysoftware.modulename.osgi com.mycompany.mysoftware.modulename.test </code></pre> <p>The main code lives in <code>.impl</code>. Interfaces, some enums and some data container classes that are used by other modules live in the package with no suffix. There's OSGi specific code (<code>BundleActivator</code>s etc.) in the <code>.osgi</code> package and unit tests in the <code>.test</code> package.</p> <p>Now I have classes that fake a module to be used in testing others. I'm wondering whether I should put those in the <code>.test</code> package of a <code>common</code> module that already contains shared libraries for the main code, or whether I should have a new module <code>test</code> that I can set up a different dependency scope for in Maven.</p> <p><strong>ETA</strong>: One problem I'm having is that I get circular dependencies: if I have two modules and the unit tests in each require a fake of the other, the module containing the fake has a dependency on the module containing the interface, which is the same module that contains the unit test. So, the fake should be together with the test, but that leads to a lot of code duplication. Or, for each module I make a fake module, but that makes me feel it's getting out of hand...</p> http://stackoverflow.com/questions/1646805/are-flex-as3-metadata-tags-handled-differently-at-interface-definitions-than-at 1 Are Flex / AS3 metadata tags handled differently at interface definitions than at class definitions? Hanno Fietz 2009-10-29T21:53:11Z 2009-10-30T19:08:54Z <p>If I use metadata tags in front of an interface, is that the same as in front of a class? I. e., can I do</p> <pre><code>[Event(name="fooUpdate", type="com.acme.events.FooEvent") public interface IFoozer extends IEventDispatcher { } // ... now omit that metadata in the implementations ... public class Foozer extends EventDispatcher implements IFoozer { public function set bar(b:Bar):void { this.dispatchEvent(new FooEvent(FooEvent.FOO_UPDATE)); } } // ... and expect it to be known in MXML ... &lt;acme:Foozer fooUpdate="myUpdateHandler"&gt; &lt;!-- ... --&gt; &lt;/acme:Foozer&gt; </code></pre> <p>Or, similarly, with <code>[Bindable]</code>?</p> http://stackoverflow.com/questions/1644007/how-do-i-render-an-array-of-java-beans-to-xml-with-struts2 1 How do I render an array of Java beans to XML with struts2? Hanno Fietz 2009-10-29T14:10:14Z 2009-10-29T16:50:23Z <p>My output should be something like this:</p> <pre><code>&lt;result&gt; &lt;item&gt; &lt;id&gt;123&lt;/id&gt; &lt;src&gt;123&lt;/src&gt; &lt;dst&gt;123&lt;/dst&gt; &lt;/item&gt; &lt;item&gt; &lt;!-- ... --&gt; &lt;/item&gt; &lt;/result&gt; </code></pre> <p>And the action class would have a method <code>getFoos</code> which returns an array of uniform objects, e. g. like this:</p> <pre><code>class Foo { // ... public long getId() { ... } // ... } </code></pre> <p>I'm using the XSLTResult like this:</p> <pre><code>&lt;action name="channels" method="loadAll" class="com.econemon.suite.api.impl.FooAction"&gt; &lt;result name="success" type="xslt"&gt; &lt;param name="exposedValue"&gt;foos&lt;/param&gt; &lt;/result&gt; &lt;/action&gt; </code></pre> <p>Since I don't want to postprocess the XML, I didn't specify any template, after reading several tutorials that said this would work. Instead, it gives me this error:</p> <blockquote> <p>javax.xml.transform.TransformerException: Operation not supported. - [unknown location]</p> </blockquote> <p>So I tried using a template, but it never rendered a list at all. Instead I get</p> <ul> <li>all properties of the beans <code>toString()</code>ed together</li> <li>empty document</li> <li>empty <code>&lt;foo /&gt;</code> tag (not <code>&lt;foos /&gt;</code>, strangely)</li> </ul> <p>I couldn't find a tutorial that helped me, neither on Beans->XML rendering nor XSLT. One problem is that I have trouble coming up with good search terms: googling "struts xml" and similar returns a huge amount of completely irrelevant links about stuff in <code>struts.xml</code>, excluding "struts.xml" from the results is no good either, because pages I'm looking for would likely have example struts.xml snippets.</p> <p>I think I wouldn't really need the templates, so if it's possible to do without, great.</p> http://stackoverflow.com/questions/970268/can-someone-explain-how-the-struts2-xsl-resulttype-works/1644337#1644337 0 Answer by Hanno Fietz for Can someone explain how the struts2 XSL ResultType works? Hanno Fietz 2009-10-29T15:00:27Z 2009-10-29T15:00:27Z <p>The XSLTResult internally produces the XML to postprocess with the given template. If you use an XSLT file that doesn't actually transform anything, you get the raw result:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:template match="result"&gt; &lt;xsl:copy-of select="."&gt;&lt;/xsl:copy-of&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>I use this template for all my XML results. If this seems silly to you, I have to agree. I found a number of tutorials on the interwebs which said that you could just drop the <code>location</code>parameter from the result definition, but this led to the following error for me:</p> <blockquote> <p>javax.xml.transform.TransformerException: Operation not supported. - [unknown location]</p> </blockquote> http://stackoverflow.com/questions/56769/how-do-i-tell-a-multi-core-multi-cpu-machine-to-process-function-calls-in-a-loo 7 How do I tell a multi-core / multi-CPU machine to process function calls in a loop in parallel? Hanno Fietz 2008-09-11T14:54:59Z 2009-10-28T13:26:44Z <p>I am currently designing an application that has one module which will load large amounts of data from a database and reduce it to a much smaller set by various calculations depending on the circumstances.</p> <p>Many of the more intensive operations behave deterministically and would lend themselves to parallel processing.</p> <p>Provided I have a loop that iterates over a large number of data chunks arriving from the db and for each one call a deterministic function without side effects, how would I make it so that the program does not wait for the function to return but rather sets the next calls going, so they could be processed in parallel? A naive approach to demonstrate the principle would do me for now.</p> <p>I have read Google's MapReduce paper and while I could use the overall principle in a number of places, I won't, for now, target large clusters, rather it's going to be a single multi-core or multi-CPU machine for version 1.0. So currently, I'm not sure if I can actually use the library or would have to roll a dumbed-down basic version myself.</p> <p>I am at an early stage of the design process and so far I am targeting C-something (for the speed critical bits) and Python (for the productivity critical bits) as my languages. If there are compelling reasons, I might switch, but so far I am contented with my choice.</p> <p>Please note that I'm aware of the fact that it might take longer to retrieve the next chunk from the database than to process the current one and the whole process would then be I/O-bound. I would, however, assume for now that it isn't and in practice use a db cluster or memory caching or something else to be not I/O-bound at this point.</p> http://stackoverflow.com/questions/1574139/is-there-a-log4j-appender-that-connects-with-testng 0 Is there a log4j appender that connects with TestNG? Hanno Fietz 2009-10-15T18:17:10Z 2009-10-23T14:56:42Z <p>I use log4j and would like log messages that normally end up in my logging facility to appear in the test reports created by TestNG during my unit tests.</p> <p>I think that would mean a log4j <code>Appender</code> which outputs to a TestNG <code>Listener</code> and an appropriate log4j config in the src/test/resources directory of my Maven project. Is that correct?</p> <p>It seems fairly easy to write, but is there something I just can pull in via Maven?</p> http://stackoverflow.com/questions/1607220/how-can-i-merge-resource-files-in-a-maven-assembly 1 How can I merge resource files in a Maven assembly? Hanno Fietz 2009-10-22T13:31:05Z 2009-10-22T16:57:29Z <p>I'm using Maven and its assembly plugin to build a distribution package of my project like this:</p> <ul> <li>one project assembles a basic runtime (based on Felix), with the appropriate directories and bundles, in a ZIP file.</li> <li>third-party libraries are collected in one project each and either converted to OSGi bundles or, if they are already OSGi compatible, they are just copied</li> <li>my own project consists of several modules that are built into OSGi bundles, too.</li> </ul> <p>Now, I'm adding another project that unpacks the ZIP, drops all the other JARs into the proper directories, and repackages it for distribution. Now, my bundles might contain configuration files that I want to merge into, rather than replacing, identically named ones in the runtime assembly. How do I do that?</p> <p>The files are plain text (property files), but I might run into a similar situation with XML files later.</p> http://stackoverflow.com/questions/1742076/what-can-i-do-about-ambigous-wildcard-patterns-in-struts/1744145#1744145 Comment by Hanno Fietz on What can I do about ambigous wildcard patterns in Struts? Hanno Fietz 2009-11-18T19:07:21Z 2009-11-18T19:07:21Z Guvante, there is no error message. The URL is parsed, and, from a technical point of view, correctly. It just isn't working as I intend it to. http://stackoverflow.com/questions/1742076/what-can-i-do-about-ambigous-wildcard-patterns-in-struts/1744145#1744145 Comment by Hanno Fietz on What can I do about ambigous wildcard patterns in Struts? Hanno Fietz 2009-11-17T12:46:17Z 2009-11-17T12:46:17Z I rephrased my question almost completely after I got a clearer picture of what my problem is. Sorry if that made your answer look weird. http://stackoverflow.com/questions/1742076/what-can-i-do-about-ambigous-wildcard-patterns-in-struts/1744145#1744145 Comment by Hanno Fietz on What can I do about ambigous wildcard patterns in Struts? Hanno Fietz 2009-11-17T12:15:02Z 2009-11-17T12:15:02Z Yes, I checked that I'm calling the URL I think I am. Appending &quot;/&quot; leads to the whole path ending up in <code>filter</code>. I think my problem depends a lot on some details in how Struts handles this. http://stackoverflow.com/questions/1716325/is-collections-copy-broken-in-openjdk-6/1716370#1716370 Comment by Hanno Fietz on Is Collections.copy broken (in OpenJDK 6)? Hanno Fietz 2009-11-12T12:41:48Z 2009-11-12T12:41:48Z I took &quot;must be at least as long&quot; to mean &quot;must have at least the capacity to contain all items&quot;. http://stackoverflow.com/questions/1716325/is-collections-copy-broken-in-openjdk-6/1716379#1716379 Comment by Hanno Fietz on Is Collections.copy broken (in OpenJDK 6)? Hanno Fietz 2009-11-12T12:32:41Z 2009-11-12T12:32:41Z I took &quot;must be at least as long&quot; to mean &quot;must have at least the same capacity&quot;, which isn't what it <i>did</i> mean. <code>clone()</code>, as long as it's shallow, is what I want here, but for lists specifically, I can in fact use <code>addAll</code> or the <i>constructor of ArrayList</i> (duh). http://stackoverflow.com/questions/1716325/is-collections-copy-broken-in-openjdk-6/1716366#1716366 Comment by Hanno Fietz on Is Collections.copy broken (in OpenJDK 6)? Hanno Fietz 2009-11-11T16:43:51Z 2009-11-11T16:43:51Z Right, that's even better, thanks. http://stackoverflow.com/questions/1711110/whats-a-good-and-simple-way-to-backup-an-svn-repo-to-an-ftp-server/1711169#1711169 Comment by Hanno Fietz on What's a good and simple way to backup an SVN repo to an FTP server? Hanno Fietz 2009-11-10T21:18:35Z 2009-11-10T21:18:35Z Well, it's a buildin command, it probably doesn't get easier, so I'll just use it. Thanks, I wasn't aware of this. http://stackoverflow.com/questions/1711110/whats-a-good-and-simple-way-to-backup-an-svn-repo-to-an-ftp-server/1711154#1711154 Comment by Hanno Fietz on What's a good and simple way to backup an SVN repo to an FTP server? Hanno Fietz 2009-11-10T21:11:10Z 2009-11-10T21:11:10Z RedGlyph in his answer suggested using the hotcopy command, were you aware of that command and is there a reason why you would prefer <code>dump</code>? http://stackoverflow.com/questions/1711110/whats-a-good-and-simple-way-to-backup-an-svn-repo-to-an-ftp-server/1711169#1711169 Comment by Hanno Fietz on What's a good and simple way to backup an SVN repo to an FTP server? Hanno Fietz 2009-11-10T21:08:31Z 2009-11-10T21:08:31Z Why are you saying &quot;theoretical&quot;? http://stackoverflow.com/questions/1675349/how-do-i-change-the-appearance-of-nodes-in-a-tree-control-in-flex-using-an-extend/1688299#1688299 Comment by Hanno Fietz on How do I change the appearance of nodes in a Tree control in Flex using an extended TreeItemRenderer? Hanno Fietz 2009-11-09T22:54:12Z 2009-11-09T22:54:12Z I don'r really get the difference between <code>listData</code> and <code>data</code>, i. e. when to use what, do you? http://stackoverflow.com/questions/1704010/need-to-use-body-onload-event-but-third-party-javascript-library-has-hijacked-it/1704022#1704022 Comment by Hanno Fietz on Need to use body onload event, but third party JavaScript library has hijacked it. Hanno Fietz 2009-11-09T21:49:09Z 2009-11-09T21:49:09Z If you don't want to use jQuery, you could still use it as a reference to how it might be done. http://stackoverflow.com/questions/1704010/need-to-use-body-onload-event-but-third-party-javascript-library-has-hijacked-it/1704034#1704034 Comment by Hanno Fietz on Need to use body onload event, but third party JavaScript library has hijacked it. Hanno Fietz 2009-11-09T21:47:58Z 2009-11-09T21:47:58Z Now, you're hijacking the handler and Simile loses, right? Shouldn't he also store the value somewhere and call it from inside his handler? http://stackoverflow.com/questions/1311790/most-elegant-way-to-extract-data-from-multiple-lists-into-a-new-one-in-java/1311837#1311837 Comment by Hanno Fietz on Most elegant way to extract data from multiple lists into a new one in Java? Hanno Fietz 2009-11-09T21:05:00Z 2009-11-09T21:05:00Z Cool, but in my case, I didn't want to add yet another library just for that little perk. Went with the interfaces. http://stackoverflow.com/questions/1043109/why-cant-jaxb-find-my-jaxb-index-when-running-inside-apache-felix/1043807#1043807 Comment by Hanno Fietz on Why can't JAXB find my jaxb.index when running inside Apache Felix? Hanno Fietz 2009-11-09T20:56:34Z 2009-11-09T20:56:34Z This actually turns out to generally be a quite nasty problem in OSGi environments when you're using libraries that aren't designed for OSGi and make assumptions about the classloader they get. This issue is why people claim that Eclipselink is the only JPA provider that works in OSGi (don't know if that's still true). http://stackoverflow.com/questions/424915/where-is-int-main-in-my-flex-application/425066#425066 Comment by Hanno Fietz on Where is "int main()" in my Flex application? Hanno Fietz 2009-11-09T20:21:38Z 2009-11-09T20:21:38Z Months later, I'm somewhat wiser - using events all over now. creationComplete triggers a HTTP request, the returning result triggers update of a data model to which I data bound the control. This seems to be very Flex-y and works great.