User Andrew Swan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T07:49:59Z http://stackoverflow.com/feeds/user/10433 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1780842/why-does-my-openid-app-receive-different-google-openids-from-different-client-mac 1 Why does my OpenID app receive different Google OpenIDs from different client machines for the same user? Andrew Swan 2009-11-23T02:35:55Z 2009-11-23T05:12:25Z <p>I'm adding OpenID login to a small web app using Spring Security 2.0.5. I want to be able to identify users within my application based on the OpenID identifier with which they logged in. This works fine when using Verisign as the provider; each identifier is a user-specific URI like <a href="http://jbloggs.pip.verisignlabs.com/" rel="nofollow">http://jbloggs.pip.verisignlabs.com/</a>, which is easily looked up in my user database to find "Joe Bloggs".</p> <p>However when a user enters the standard Google OpenID identifier (www.google.com/accounts/o8/id), the identifier sent by Google upon successful authentication (something like <a href="https://www.google.com/accounts/o8/id?id=AItOawnKrvwaGk9YU0q9STQGj9G7XIRlNmsjuiI" rel="nofollow">https://www.google.com/accounts/o8/id?id=AItOawnKrvwaGk9YU0q9STQGj9G7XIRlNmsjuiI</a>) varies from machine to machine <em>for the same user</em>. This makes it impossible (or at least impractical) to identify that user by looking up their identifier in my user database.</p> <p>How can I get Google to always send the same identifier for the same Google user?</p> <p>FWIW, the app runs in JBoss 3.2.7 with embedded Tomcat 5.0.28.</p> http://stackoverflow.com/questions/327328/any-real-world-experience-of-the-zk-ajax-framework 2 Any real-world experience of the "ZK" Ajax framework? Andrew Swan 2008-11-29T08:02:55Z 2009-11-04T03:18:10Z <p>Does anyone have real-world experience of <a href="http://www.zkoss.org" rel="nofollow">ZK</a> that they can pass on? The marketing blurb on their web site makes it all sound too good to be true. Any issues with performance, browser compatibility, tooling, widget availability, etc?</p> http://stackoverflow.com/questions/196721/how-to-get-cobertura-to-fail-m2-build-for-low-code-coverage 2 How to get Cobertura to fail M2 build for low code coverage Andrew Swan 2008-10-13T04:35:31Z 2009-10-28T03:12:06Z <p>I'm trying to configure my WAR project build to fail if the line or branch coverage is below given thresholds. I've been using the configuration provided on page 455 of the excellent book <a href="http://oreilly.com/catalog/9780596527938/" rel="nofollow">Java Power Tools</a>, but with no success. Here's the relevant snippet of my project's Maven 2 POM:</p> <pre><code>&lt;build&gt; ... &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt; &lt;artifactId&gt;cobertura-maven-plugin&lt;/artifactId&gt; &lt;version&gt;2.2&lt;/version&gt; &lt;configuration&gt; &lt;check&gt; &lt;!-- Per-class thresholds --&gt; &lt;lineRate&gt;80&lt;/lineRate&gt; &lt;branchRate&gt;80&lt;/branchRate&gt; &lt;!-- Project-wide thresholds --&gt; &lt;totalLineRate&gt;90&lt;/totalLineRate&gt; &lt;totalBranchRate&gt;90&lt;/totalBranchRate&gt; &lt;/check&gt; &lt;executions&gt; &lt;execution&gt; &lt;goals&gt; &lt;goal&gt;clean&lt;/goal&gt; &lt;goal&gt;check&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;execution&gt; &lt;id&gt;coverage-tests&lt;/id&gt; &lt;!-- The "verify" phase occurs just before "install" --&gt; &lt;phase&gt;verify&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;clean&lt;/goal&gt; &lt;goal&gt;check&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;instrumentation&gt; &lt;excludes&gt; &lt;exclude&gt;au/**/*Constants.*&lt;/exclude&gt; &lt;/excludes&gt; &lt;ignores&gt; &lt;ignore&gt;au/**/*Constants.*&lt;/ignore&gt; &lt;/ignores&gt; &lt;/instrumentation&gt; &lt;/configuration&gt; &lt;/plugin&gt; ... &lt;/plugins&gt; ... &lt;/build&gt; </code></pre> <p>As I say, the coverage report works fine, the problem is that the "install" goal isn't failing as it should if the line or branch coverage is below my specified thresholds. Does anyone have this working, and if so, what does your POM look like and which version of Cobertura and Maven are you using? I'm using Maven 2.0.9 and Cobertura 2.2.</p> <p>I've tried Googling and reading the Cobertura docs, but no luck (the latter are sparse to say the least).</p> http://stackoverflow.com/questions/81495/best-technology-for-adding-plugin-support-to-a-j2se-application 4 Best technology for adding plugin support to a J2SE application? Andrew Swan 2008-09-17T09:35:36Z 2009-10-23T14:00:06Z <p>I'm writing a J2SE desktop application that requires one of its components to be pluggable. I've already defined the Java interface for this plugin. The user should be able to select at runtime (via the GUI) which implementation of this interface they want to use (e.g. in an initialisation dialog). I envisage each plugin being packaged as a JAR file containing the implementing class plus any helper classes it may require.</p> <p>What's the best technology for doing this type of thing in a desktop Java app?</p> http://stackoverflow.com/questions/1541972/scalability-implications-of-converting-stateless-session-beans-to-pojos 1 Scalability implications of converting stateless session beans to POJOs Andrew Swan 2009-10-09T05:37:34Z 2009-10-16T21:03:43Z <p>Imagine a heavily-used service object that's implemented as an EJB 2.1 SLSB, and that also happens to be thread-safe in itself by virtue of having no state whatsoever.</p> <p>If I convert this SLSB to a genuine singleton POJO (e.g. using a DI framework), how will that affect the scalability of the application? When the service was a SLSB, the EJB container would manage a pool of instances from which each client would get its own copy, so I'm wondering whether turning it into a singleton POJO will introduce some kind of contention for that single instance.</p> <p>FWIW, none of this service's methods are <code>synchronized</code>.</p> <p>Clarification: my motivation for converting the SLSB to a POJO is simplicity of both the object's lifecycle (true singleton versus container-managed) and of the code itself (one interface and one annotated POJO, versus three interfaces, one bean class, and a bunch of XML in ejb-jar.xml).</p> <p>Also, FWIW, the service in question is one component of a collocated web app running on JBoss 3.x.</p> http://stackoverflow.com/questions/79829/why-pay-for-jira-when-i-can-use-bugzilla-for-free 8 Why pay for JIRA when I can use Bugzilla for free? Andrew Swan 2008-09-17T03:58:40Z 2009-10-16T08:52:32Z <p>We've always used Bugzilla for issue/bug/enhancement tracking, but I keep thinking about switching to JIRA. However I would need to convince the boss that it's worth paying for something when a seemingly equivalent product is free of charge.</p> <p>So sell me! What about JIRA makes it worth paying for, compared to a free system like Bugzilla? If you're an employee of Atlassian, please disclose that fact! :-)</p> http://stackoverflow.com/questions/1523220/how-to-find-static-method-calls-in-large-java-project 1 How to find static method calls in large Java project? Andrew Swan 2009-10-06T01:40:56Z 2009-10-08T03:45:54Z <p>I'm refactoring some Java code to be more decoupled by changing some static method calls to non-static calls, for example:</p> <pre><code>// Before: DAO.doSomething(dataSource, arg1, ..., argN) // After: dao.doSomething(arg1, ..., argN) </code></pre> <p>My problem is that in a large project, it can be hard to find where static method calls are being made. Is there an easy way to do this, either from the command line or in Eclipse?</p> <p>Such a tool would need to let me ignore "benign" static method calls such as these (either by not finding them in the first place, or by allowing them to be easily deleted from the search results):</p> <pre><code>String.valueOf(...) Integer.parseInt(...) MyClass.someBenignStaticMethod(...) </code></pre> <p>Some clarifications:</p> <ul> <li>I'm not interested in finding method calls made via reflection</li> <li>I don't know what static methods currently exist in this project, so it's not as simple as searching for their callers using Eclipse's "Open Call Hierarchy" command (Ctrl-Alt-H), although an easy way to search for non-private static methods would let me use this approach</li> <li>I'm also interested in finding calls to static methods located outside my project, e.g. javax.mail.Transport#send</li> <li>I'm looking for a free (as in beer) solution</li> </ul> http://stackoverflow.com/questions/1523220/how-to-find-static-method-calls-in-large-java-project/1535523#1535523 0 Answer by Andrew Swan for How to find static method calls in large Java project? Andrew Swan 2009-10-08T03:45:54Z 2009-10-08T03:45:54Z <p>I've written a small Java program that uses the excellent <a href="http://asm.objectweb.org/" rel="nofollow">ASM</a> library. It lets you exclude packages like java.lang, and produces output that looks like this:</p> <pre><code>+ java + io - File # createTempFile(java.lang.String, java.lang.String) + javax + imageio - ImageIO # read(java.io.InputStream) # write(java.awt.image.RenderedImage, java.lang.String, java.io.File) + mail - Transport # send(javax.mail.Message) + internet - InternetAddress # parse(java.lang.String, boolean) + xml + parsers - DocumentBuilderFactory # newInstance() </code></pre> <p>I'd prefer something that's more easily built into my existing build process, which uses CheckStyle, but this is the best solution I've come up with so far.</p> http://stackoverflow.com/questions/1377384/policy-on-maintenance-releases-vs-normal-releases 3 Policy on maintenance releases vs normal releases? Andrew Swan 2009-09-04T05:33:25Z 2009-09-13T21:22:10Z <p>My company is struggling with the question of maintenance releases versus "normal" releases, in the context of an application installed on-site at large organisations who pay for support. First let me define my terms:</p> <ul> <li>Imagine we've released versions 1.0, 1.1, and 1.2 of the product. These are what I call "<strong>normal</strong>" releases, i.e. they are the next release from the main branch of development, incorporating all the latest and greatest bug fixes and enhancements (possibly tens of each per release).</li> <li>Now imagine some bigshot customer on 1.0 reports a show-stopping issue that nobody's encountered before. The problem still exists in 1.2, and unfortunately 1.3 isn't due out for several weeks or months. So we branch our code at 1.0 to create a 1.0.1 "<strong>maintenance</strong>" release, containing just the one change that fixes the issue.</li> </ul> <p>This approach makes the customer happy because we fix their issue within a day or so, instead of making them wait weeks until the next normal release. Also, because the maintenance release only contains one small change, they don't need to go through an extensive UAT process, whereas if they upgrade to the next normal release, which could be several versions on, they would be receiving maybe 30 or 40 product changes that (in their risk-averse opinion) require extensive UAT.</p> <p>The problem is that:</p> <ul> <li>It's costly for us to create and support multiple versions of our software</li> <li>It allows stick-in-the-mud customers to fall too far behind the latest version</li> <li>It complicates the process of eventually upgrading those customers in the future, as their installation is subtly different from every other 1.0 customer (upgrading their database is particularly complicated if the maintenance release changed it somehow)</li> </ul> <p>So I was wondering what is everyone else's stance on this issue? How do you keep the customer happy without making a rod for your own back through a proliferation of maintenance releases? For example, do you allow some categories of fix to be done as a maintenance release, but insist that other types are done in the next normal release?</p> <p><em>Clarification: writing bug-free software isn't a total solution, because an "issue" in the above context could be an unforeseeable change to the behaviour of an external system upon which our product depends.</em></p> http://stackoverflow.com/questions/165846/best-enterprise-repository-tool-for-maven-2 7 Best enterprise repository tool for Maven 2? Andrew Swan 2008-10-03T05:57:20Z 2009-09-10T00:27:36Z <p>Some of the other questions and answers here on SO extol the virtues of using an enterprise repository tool like Archiva, Artifactory, or Nexus. What are the pros and cons of each? How do I choose between them?</p> <p>In case it helps:</p> <ul> <li>We use both Maven 1 and Maven 2 (at least for a while)</li> <li>We want to store both internally-generated artifacts, publicly-available ones (ibiblio, codehaus, etc.), and proprietary ones (e.g. Sun's licensed JARs like the Servlet API).</li> <li>We would like something that runs on Windows, Linux, or both.</li> <li>We use Luntbuild as our CI server (but intend moving to Hudson some time).</li> </ul> <p>N.B. this question is not a duplicate of either <a href="http://stackoverflow.com/questions/161819/what-are-mainbest-maven-respositories-to-use">this one</a> or <a href="http://stackoverflow.com/questions/157463/host-maven-repository">this one</a>.</p> http://stackoverflow.com/questions/1256769/jar-within-war-noclassdeffound-exception/1397488#1397488 0 Answer by Andrew Swan for Jar within War - NoClassDefFound Exception Andrew Swan 2009-09-09T04:14:18Z 2009-09-09T04:20:19Z <p>JBoss has its own version-dependent peculiarities when it comes to classloading. These links might help you:</p> <ul> <li><a href="http://www.jboss.org/community/wiki/ClassLoadingConfiguration" rel="nofollow">http://www.jboss.org/community/wiki/ClassLoadingConfiguration</a></li> <li><a href="http://www.devx.com/tips/Tip/29164" rel="nofollow">http://www.devx.com/tips/Tip/29164</a></li> <li><a href="http://www.jboss.org/community/wiki/JBossClassLoadingUseCases" rel="nofollow">http://www.jboss.org/community/wiki/JBossClassLoadingUseCases</a></li> </ul> <p>But if both your WARs require the same version of the common package, you could put the JAR for that package into the relevant server config's lib folder (e.g. server/default/lib) instead of having it in the WAR files.</p> http://stackoverflow.com/questions/1377670/version-controlling-version-specific-files 0 Version-controlling version-specific files Andrew Swan 2009-09-04T07:16:56Z 2009-09-05T10:40:49Z <p>Imagine an application with several released versions: V1.0, V1.1, and V1.2.</p> <p>Now imagine one or more associated files that are version-specific, for example a user manual, a functional test suite, or some technical documentation. Ideally these files would be checked into version together with the application itself, so that it's easy to view and/or check out all the files relating to a specific version (e.g. to run the functional tests as part of a continuous build).</p> <p>The problem is that any of these files might need to be updated even when the code is not. For example, we might discover errors in the V1.0 user manual that we want to fix for the benefit of customers still using that version. Or we might want to improve the coverage of the functional tests for V1.2 in order to discover bugs in that version before our customers do. Having changed those files accordingly, how do we commit them to version control? We're not releasing new versions of the software, just new versions of the files that go with them.</p> <p>FWIW, we're using SVN.</p> http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions/1377577#1377577 0 Answer by Andrew Swan for Testing and Managing database versions against code versions Andrew Swan 2009-09-04T06:36:28Z 2009-09-04T06:36:28Z <p>Define your schema objects and your reference data in version-controlled text files. For example, you can define the schema in <a href="http://db.apache.org/torque/" rel="nofollow">Torque</a> format, and the data in <a href="http://dbunit.sourceforge.net/" rel="nofollow">DBUnit</a> format (both use XML). You can then use tools (we wrote our own) to generate the DDL and DML that take you from one version of your app to another. Our tool can take as input either (a) the previous version's schema &amp; data XML files or (b) an existing database, so you are always able to get a database of any state into the correct state.</p> http://stackoverflow.com/questions/79733/best-automated-testing-tool-for-web-applications 9 Best automated testing tool for web applications? Andrew Swan 2008-09-17T03:42:24Z 2009-08-19T13:17:45Z <p>Having repeatable automated tests of web applications lets one detect regression with very little ongoing labour cost (the main cost being writing the test scripts up front). However there seems to be a bewildering array of such tools available. We used <a href="http://www.soft.com/eValid/" rel="nofollow">eValid</a> in the past but now use <a href="http://sahi.co.in/w/" rel="nofollow">Sahi</a>.</p> <p>Ideally we'd like a tool for which IT-literate but non-development staff can write and maintain the scripts.</p> <p>What product do you recommend, and how much experience of that product is your recommendation based on?</p> http://stackoverflow.com/questions/1122479/unit-testing-with-multiple-collaborators/1122676#1122676 2 Answer by Andrew Swan for Unit testing with multiple collaborators Andrew Swan 2009-07-13T23:27:33Z 2009-07-13T23:27:33Z <p>zielaj's answer is sound, but you could also create a PostMethodFactory with the following signature:</p> <pre><code>PostMethod getInstance(String url, String message, String contentType); </code></pre> <p>... then use DI to inject both it and the HttpClient. Then you'd only have two things to mock.</p> <p>The PostMethodFactory could be implemented thus:</p> <pre><code>public PostMethod getInstance(String url, String content, String contentType, String charset) { PostMethod post = new PostMethod(url); RequestEntity entity = new StringRequestEntity(message, contentType, charset); post.setRequestEntity(entity); return post; } </code></pre> http://stackoverflow.com/questions/985010/easiest-way-to-obtain-database-metadata-in-java 0 Easiest way to obtain database metadata in Java? Andrew Swan 2009-06-12T04:33:14Z 2009-06-16T19:12:44Z <p>I'm familiar with the <code>java.sql.DatabaseMetaData</code> interface, but I find it quite clunky to use. For example, in order to find out the table names, you have to call <code>getTables</code> and loop through the returned <code>ResultSet</code>, using well-known literals as the column names.</p> <p>Is there an easier way to obtain database metadata?</p> http://stackoverflow.com/questions/985010/easiest-way-to-obtain-database-metadata-in-java/985019#985019 1 Answer by Andrew Swan for Easiest way to obtain database metadata in Java? Andrew Swan 2009-06-12T04:36:50Z 2009-06-12T05:51:12Z <p>It's easily done using <a href="http://db.apache.org/ddlutils/" rel="nofollow">DdlUtils</a>:</p> <pre><code>import javax.sql.DataSource; import org.apache.ddlutils.Platform; import org.apache.ddlutils.PlatformFactory; import org.apache.ddlutils.model.Database; import org.apache.ddlutils.platform.hsqldb.HsqlDbPlatform; public void readMetaData(final DataSource dataSource) { final Platform platform = PlatformFactory.createNewPlatformInstance(dataSource); final Database database = platform.readModelFromDatabase("someName"); // Inspect the database as required; has objects like Table/Column/etc. } </code></pre> http://stackoverflow.com/questions/290163/is-there-a-database-modelling-library-for-java/984944#984944 2 Answer by Andrew Swan for Is there a database modelling library for Java? Andrew Swan 2009-06-12T04:13:45Z 2009-06-12T04:13:45Z <p><a href="http://db.apache.org/ddlutils/" rel="nofollow">DdlUtils</a> has what you're looking for. You can read/write schemas to/from XML (in Torque format) or a live database, or even define the database schema in pure Java. Better yet, read the on-line doco, it's quite good.</p> http://stackoverflow.com/questions/963860/how-do-i-automate-a-report-on-variance-in-the-same-sql-table-fields-on-monthly-ba/963882#963882 1 Answer by Andrew Swan for How do I automate a report on variance in the same SQL table fields on monthly basis? Andrew Swan 2009-06-08T08:21:37Z 2009-06-08T08:21:37Z <p>Can you add a UserCount table that stores each office's user count for each month? It could have columns like:</p> <ul> <li>id</li> <li>date</li> <li>user_count</li> <li>office_id</li> </ul> <p>You would insert a new row each month based on what the view tells you that month for each office. Then it's as simple as exporting that table to Excel and graphing it using Excel's built-in graphing tools.</p> http://stackoverflow.com/questions/875983/how-to-compartmentalise-an-outward-facing-bugzilla 2 How to compartmentalise an outward-facing Bugzilla? Andrew Swan 2009-05-18T02:02:53Z 2009-05-18T23:02:02Z <p>We're an ISV with ~65 customers. When they call with a support issue, we log it in our internal Bugzilla instance (there is a handful of specially trained super-users at each customer site from whom we allow calls).</p> <p>We're considering making this Bugzilla instance available via the Internet so that customers can log their own issues and track their progress. However, we do not want any customer to see another customer's issues, not least because each issue can contain commercially sensitive information.</p> <p>As far as I can tell, Bugzilla controls bug visibility using "Products" and "Groups". In our case, we'd have to set up over 60 of each, which would seriously complicate our usage and administration of Bugzilla (e.g. searching and reporting).</p> <p>Is there another way to provide compartmentalised access to Bugzilla? Do any other issue-tracking systems have features that solve this problem?</p> http://stackoverflow.com/questions/872153/how-to-build-a-java-web-application/872237#872237 1 Answer by Andrew Swan for How to build a java web application Andrew Swan 2009-05-16T11:29:53Z 2009-05-16T11:29:53Z <p>Definitely use Spring for the back end; there's an excellent community on their free support forum (you can also pay for more formal support).</p> <p>Regarding your decision to use Hibernate, you might want to code against JPA in order to decouple your app from Hibernate (which is one of several JPA implementations).</p> <p>If you want an Ajax front-end, it's worth taking a look at the <a href="http://www.zkoss.org/" rel="nofollow">ZK</a> framework; it'svery easy to use without having to learn JavaScript, and avoids having to use plumbing libraries like DWR.</p> http://stackoverflow.com/questions/866346/easiest-way-to-compare-two-excel-files-in-java 1 Easiest way to compare two Excel files in Java? Andrew Swan 2009-05-14T23:16:18Z 2009-05-15T07:26:13Z <p>I'm writing a JUnit test for some code that produces an Excel file (which is binary). I have another Excel file that contains my expected output. What's the easiest way to compare the actual file to the expected file?</p> <p>Sure I could write the code myself, but I was wondering if there's an existing method in a trusted third-party library (e.g. Spring or Apache Commons) that already does this.</p> http://stackoverflow.com/questions/866346/easiest-way-to-compare-two-excel-files-in-java/867390#867390 1 Answer by Andrew Swan for Easiest way to compare two Excel files in Java? Andrew Swan 2009-05-15T07:26:13Z 2009-05-15T07:26:13Z <p>Here's what I ended up doing (with the heavy lifting being done by <a href="http://dbunit.sourceforge.net/" rel="nofollow">DBUnit</a>):</p> <pre><code>/** * Compares the data in the two Excel files represented by the given input * streams, closing them on completion * * @param expected can't be &lt;code&gt;null&lt;/code&gt; * @param actual can't be &lt;code&gt;null&lt;/code&gt; * @throws Exception */ private void compareExcelFiles(InputStream expected, InputStream actual) throws Exception { try { Assertion.assertEquals(new XlsDataSet(expected), new XlsDataSet(actual)); } finally { IOUtils.closeQuietly(expected); IOUtils.closeQuietly(actual); } } </code></pre> <p>This compares the data in the two files, with no risk of false negatives from any irrelevant metadata that might be different. Hope this helps someone.</p> http://stackoverflow.com/questions/866346/easiest-way-to-compare-two-excel-files-in-java/866432#866432 0 Answer by Andrew Swan for Easiest way to compare two Excel files in Java? Andrew Swan 2009-05-14T23:48:49Z 2009-05-14T23:48:49Z <p>Just found out there's something in commons-io's <a href="http://commons.apache.org/io/api-release/org/apache/commons/io/FileUtils.html#contentEquals%28java.io.File,%20java.io.File%29" rel="nofollow">FileUtils</a>. Thanks for the other answers.</p> http://stackoverflow.com/questions/388460/can-you-run-ejb-2-1-beans-in-osgi 0 Can you run EJB 2.1 beans in OSGi? Andrew Swan 2008-12-23T09:14:44Z 2009-05-07T09:30:51Z <p>I have a J2EE 1.3 app that uses EJB 2.1 session and entity beans. Currently this app runs as an EAR file on JBoss. I'd like to switch to the SpringSource dm Application Server because of all the benefits that OSGi provides.</p> <p>Does anyone know if there's an OSGi bundle that can act as an EJB container? Can <a href="http://openejb.apache.org/" rel="nofollow">OpenEJB</a> do this?</p> http://stackoverflow.com/questions/791897/getting-the-absolute-path-of-a-file-within-a-jar-within-an-ear 1 Getting the absolute path of a file within a JAR within an EAR? Andrew Swan 2009-04-27T00:32:22Z 2009-04-27T01:30:30Z <p>I have a J2EE app deployed as an EAR file, which in turn contains a JAR file for the business layer code (including some EJBs) and a WAR file for the web layer code. The EAR file is deployed to JBoss 3.2.5, which unpacks the EAR and WAR files, but not the JAR file (this is not the problem, it's just FYI).</p> <p>One of the files within the JAR file is an MS Word template whose absolute path needs to be passed to some native MS Word code (using <a href="http://danadler.com/jacob/" rel="nofollow">Jacob</a>, FWIW).</p> <p>The problem is that if I try to obtain the File like this (from within some code in the JAR file):</p> <pre><code>URL url = getClass().getResource("myTemplate.dot"); File file = new File(url.toURI()); // &lt;= fails! String absolutePath = file.getAbsolutePath(); // Pass the absolutePath to MS Word to be opened as a document </code></pre> <p>... then the <code>java.io.File</code> constructor throws the IllegalArgumentException "URI is not hierarchical". The URL and URI both have the same toString() output, namely:</p> <pre><code>jar:file:/G:/jboss/myapp/jboss/server/default/tmp/deploy/tmp29269myapp.ear-contents/myapp.jar!/my/package/myTemplate.dot </code></pre> <p>This much of the path is valid on the file system, but the rest is not (being internal to the JAR file):</p> <pre><code>G:/jboss/myapp/jboss/server/default/tmp/deploy/tmp29269myapp.ear-contents </code></pre> <p>What's the easiest way of getting the absolute path to this file?</p> http://stackoverflow.com/questions/790466/is-it-possible-to-use-muliple-ajax-libraries-on-one-page/791910#791910 0 Answer by Andrew Swan for Is it possible to use muliple AJAX libraries on one page? Andrew Swan 2009-04-27T00:41:49Z 2009-04-27T00:41:49Z <p>If you're using Java on the back end, the <a href="http://www.zkoss.org/" rel="nofollow">ZK framework</a> claims to provide full AJAX capabilities, i.e. no need to mix and match a bunch of different libraries. From the testing I've done so far, they seem to be right.</p> http://stackoverflow.com/questions/791897/getting-the-absolute-path-of-a-file-within-a-jar-within-an-ear/791908#791908 3 Answer by Andrew Swan for Getting the absolute path of a file within a JAR within an EAR? Andrew Swan 2009-04-27T00:38:13Z 2009-04-27T00:38:13Z <p>My current solution is to copy the file to the server's temporary directory, then use the absolute path of the copy:</p> <pre><code>File tempDir = new File(System.getProperty("java.io.tmpdir")); File temporaryFile = new File(tempDir, "templateCopy.dot"); InputStream templateStream = getClass().getResourceAsStream("myTemplate.dot"); IOUtils.copy(templateStream, new FileOutputStream(temporaryFile)); String absolutePath = temporaryFile.getAbsolutePath(); </code></pre> <p>I'd prefer a solution that doesn't involve copying the file.</p> http://stackoverflow.com/questions/779825/why-doesnt-java-have-constants-for-well-known-system-property-names 5 Why doesn't Java have constants for well-known system property names? Andrew Swan 2009-04-23T00:32:17Z 2009-04-23T02:12:57Z <p>The <strong>java.lang.System</strong> class defines a number of <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/System.html#getProperties%28%29" rel="nofollow">well-known properties</a>.</p> <p>For example, you can obtain the JVM's temporary directory by looking up the "java.io.tmpdir" property:</p> <pre><code>... = System.getProperty("java.io.tmpdir"); </code></pre> <p>What I don't understand is why these properties aren't defined as constants (e.g. in the java.lang.System class). This would be a lot less error-prone than using literal Strings. In other words, I would like to be able to do this:</p> <pre><code>... = System.getProperty(System.JAVA_IO_TMPDIR); </code></pre> <p>Any ideas why this wasn't done? It could even be added in a future release of Java without breaking backward compatibility. Or am I missing something obvious?</p> http://stackoverflow.com/questions/100372/good-tool-to-generate-dependency-diagram/767484#767484 1 Answer by Andrew Swan for Good tool to generate dependency diagram? Andrew Swan 2009-04-20T09:01:48Z 2009-04-20T09:01:48Z <p>Would <a href="http://www.headwaysoftware.com/products/structure101/index.php" rel="nofollow">Structure101</a> be any use?</p> http://stackoverflow.com/questions/70689/efficient-way-to-implement-singleton-pattern-in-java/71574#71574 Comment by Andrew Swan on Efficient way to implement singleton pattern in Java Andrew Swan 2009-11-24T00:00:00Z 2009-11-24T00:00:00Z Downvoted because? http://stackoverflow.com/questions/1780842/why-does-my-openid-app-receive-different-google-openids-from-different-client-mac/1781211#1781211 Comment by Andrew Swan on Why does my OpenID app receive different Google OpenIDs from different client machines for the same user? Andrew Swan 2009-11-23T22:20:44Z 2009-11-23T22:20:44Z Point #1 solved it for me. When I tested my app from the server, I used the URL <a href="http://localhost/myapp" rel="nofollow">localhost/myapp</a>, but from a 2nd machine I used <a href="http://server_name/my" rel="nofollow">server_name/my</a> app. What I didn't realise was that Google would see this as two different realms and therefore return different identities for the same Google user. When I switched my app to use SSL, I had to use &quot;server_name&quot; in the URL even from the server itself because of the SSL certificate, and when it then started working I wrongly assumed it was thanks to SSL, not because of using the same host name from both machines. Thanks for your help! http://stackoverflow.com/questions/58640/great-programming-quotes/120446#120446 Comment by Andrew Swan on Great programming quotes Andrew Swan 2009-11-23T21:52:13Z 2009-11-23T21:52:13Z Yes, his contribution to programming is definitely worth more than a nickel. http://stackoverflow.com/questions/992682/janrains-php-openid-and-google-yahoo/1662734#1662734 Comment by Andrew Swan on Janrain's PHP-OpenID and Google/Yahoo Andrew Swan 2009-11-22T23:42:00Z 2009-11-22T23:42:00Z Because this site is in Question/Answer format, rather than being an open discussion forum, you should probably post this as a new question in its own right rather than an answer to someone else's question. Otherwise people will either down-vote it or simply ignore it. http://stackoverflow.com/questions/1726115/performing-an-action-when-an-jmenuitem-is-clicked/1726309#1726309 Comment by Andrew Swan on Performing an action when an JMenuItem is clicked? Andrew Swan 2009-11-13T00:16:53Z 2009-11-13T00:16:53Z It's best to ask this as a separate question than as the &quot;answer&quot; to an existing question. http://stackoverflow.com/questions/1625028/in-http-what-is-rest/1625479#1625479 Comment by Andrew Swan on In HTTP, what is REST? Andrew Swan 2009-10-28T23:21:51Z 2009-10-28T23:21:51Z Actually a better URL in that case would be <a href="http://myhost/pictures/3" rel="nofollow">myhost/pictures/3</a> http://stackoverflow.com/questions/196721/how-to-get-cobertura-to-fail-m2-build-for-low-code-coverage/1618213#1618213 Comment by Andrew Swan on How to get Cobertura to fail M2 build for low code coverage Andrew Swan 2009-10-28T03:26:19Z 2009-10-28T03:26:19Z I replicated your success using your config, so now I just have to integrate it into my real projects. BTW, there are several differences between my config and yours, e.g. my &quot;executions&quot; tag is a child of my &quot;configuration&quot; tag, whereas yours is a sibling (as in the book; I don't know why I deviated from that). http://stackoverflow.com/questions/81495/best-technology-for-adding-plugin-support-to-a-j2se-application Comment by Andrew Swan on Best technology for adding plugin support to a J2SE application? Andrew Swan 2009-10-28T02:59:27Z 2009-10-28T02:59:27Z I haven't used it yet, but will post back here once I do. http://stackoverflow.com/questions/76595/soap-or-rest/76811#76811 Comment by Andrew Swan on SOAP or REST Andrew Swan 2009-10-19T03:28:04Z 2009-10-19T03:28:04Z The only allowed verbs are &quot;get&quot;, &quot;put&quot;, and &quot;delete&quot;? What about POST and OPTIONS? http://stackoverflow.com/questions/1541972/scalability-implications-of-converting-stateless-session-beans-to-pojos Comment by Andrew Swan on Scalability implications of converting stateless session beans to POJOs Andrew Swan 2009-10-16T21:06:47Z 2009-10-16T21:06:47Z @Jim: I've updated the question. But your comment seems to imply that a singleton couldn't service multiple threads - is this really the case? This gets to the heart of my question; how will using one POJO compare in scalability terms to using a pooled SLSB? Will some threads have to wait to use the POJO until others have finished? http://stackoverflow.com/questions/1051449/ideas-on-database-design-for-capturing-audit-trails/1051494#1051494 Comment by Andrew Swan on Ideas on database design for capturing audit trails Andrew Swan 2009-10-13T22:44:49Z 2009-10-13T22:44:49Z Nitpick: you mean &quot;from&quot; and &quot;to&quot;, not &quot;from&quot; and &quot;too&quot;. http://stackoverflow.com/questions/1541972/scalability-implications-of-converting-stateless-session-beans-to-pojos Comment by Andrew Swan on Scalability implications of converting stateless session beans to POJOs Andrew Swan 2009-10-09T05:45:22Z 2009-10-09T05:45:22Z This answer: <a href="http://stackoverflow.com/questions/134791/why-pool-stateless-session-beans/135840#135840" rel="nofollow" title="why pool stateless session beans">stackoverflow.com/questions/134791/&hellip;</a> claims there would be &quot;a lot of contention and blocking&quot;, but there's no corroboration, citation, or even up-voting of that statement, so I don't know how much weight to give it (no offence to Mwanji intended). http://stackoverflow.com/questions/1523220/how-to-find-static-method-calls-in-large-java-project/1524024#1524024 Comment by Andrew Swan on How to find static method calls in large Java project? Andrew Swan 2009-10-07T00:45:27Z 2009-10-07T00:45:27Z Thanks, but I'm looking for a non-commerical solution; I've updated the question accordingly. http://stackoverflow.com/questions/1523220/how-to-find-static-method-calls-in-large-java-project Comment by Andrew Swan on How to find static method calls in large Java project? Andrew Swan 2009-10-06T06:22:54Z 2009-10-06T06:22:54Z If you'd care to add that idea as an answer, I'll give you an up vote! :) http://stackoverflow.com/questions/1523220/how-to-find-static-method-calls-in-large-java-project Comment by Andrew Swan on How to find static method calls in large Java project? Andrew Swan 2009-10-06T03:43:25Z 2009-10-06T03:43:25Z No, having found an undesirable static method call, I would refactor to remove it, e.g. by using DI to inject an instance of the class containing the static method. But that's all outside the scope of the question; right now I just want to be able to find such static method calls.