User alexmcchessers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T13:14:32Z http://stackoverflow.com/feeds/user/998 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/132409/jaxb-2-in-an-oracle-10g-webapp 1 JAXB 2 in an Oracle 10g Webapp alexmcchessers 2008-09-25T09:56:01Z 2009-10-07T00:46:52Z <p>I have a web application that uses JAXB 2. When deployed on an Oracle 10g app server I get errors as soon as I try to marshal an XML file. It turns out that Oracle includes JAXB 1 in a jar sneakily renamed "xml.jar". Does anyone know how I can force my webapp to use the version of the jaxb jars that I deployed in web-inf/lib over that which Oracle has forced into the classpath, ideally through configuration rather than having to mess about with classloaders in my code.</p> http://stackoverflow.com/questions/133993/loader-constraints-violated-when-linking-javax-xml-namespace-qname-class-from-w 3 "loader constraints violated when linking javax/xml/namespace/QName class" from webapp on Oracle 10g alexmcchessers 2008-09-25T15:28:00Z 2009-10-07T00:46:00Z <p>We have a web application that can be deployed on many application servers, including Oracle 10g. On that platform, however, we are having classpath issues. The webapp uses JAXB 2, but Oracle 10g ships with JAXB 1, and this was causing errors. To get around those we configured Oracle to prefer classes in our webapp, but now we are getting the above error when attempting to instantiate a JAXB context.</p> <p>Looking up the "loader constraints violated" exception - it seems to be thrown when a class that has been loaded with one classloader attempts to access something that is package private in the same package but loaded by a different classloader. I have tried removing any jars in our webapp that include javax.xml.namespace.QName, and have verified that it is the instance included in Oracle that is being picked up, but the error still occurs. Any ideas?</p> <p>(This is a follow-on from an <a href="http://stackoverflow.com/questions/132409/jaxb-2-in-an-oracle-10g-webapp">earlier question</a> regarding 10g and JAXB 2.)</p> http://stackoverflow.com/questions/7720/packaging-java-apps-for-the-windows-linux-desktop 14 Packaging Java apps for the Windows/Linux desktop. alexmcchessers 2008-08-11T12:37:50Z 2009-09-14T15:52:59Z <p>I am writing an application in Java for the desktop using the Eclipse SWT library for GUI rendering. I think SWT helps Java get over the biggest hurdle for acceptance on the desktop: namely providing a Java application with a consistent, responsive interface that looks like that belonging to any other app on your desktop. However, I feel that packaging an application is still an issue. </p> <p>OS X natively provides an easy mechanism for wrapping Java apps in native application bundles, but producing an app for Windows/Linux that doesn't require the user to run an ugly batch file or click on a .jar is still a hassle. Possibly that's not such an issue on Linux, where the user is likely to be a little more tech-savvy, but on Windows I'd like to have a regular .exe for him/her to run.</p> <p>Has anyone had any experience with any of the .exe generation tools for Java that are out there? I've tried JSmooth but had various issues with it. Is there a better solution before I crack out Visual Studio and roll my own?</p> <p><strong>Edit:</strong> I should perhaps mention that I am unable to spend a lot of money on a commercial solution.</p> http://stackoverflow.com/questions/273711/swt-image-concatenation-or-tiling-mosaic/287468#287468 0 Answer by alexmcchessers for SWT Image concatenation or tiling / mosaic alexmcchessers 2008-11-13T16:45:20Z 2008-11-13T16:45:20Z <p>Presumably not every image is visible on screen at any one time? Perhaps a better solution would be to only load the images when they become (or are about to become) visible, disposing of them when they have been scrolled off the screen. Obviously you'd want to keep a few in memory on either side of the current viewport in order to make a smooth transition for the user.</p> http://stackoverflow.com/questions/247442/polymorphism-in-jax-rpc-web-services/249684#249684 1 Answer by alexmcchessers for Polymorphism in JAX-RPC web services alexmcchessers 2008-10-30T09:44:57Z 2008-10-30T12:53:11Z <p>I don't think JAX-RPC supports polymorphism in that way. I had a similar problem, and had to work around it by creating a class that had just two members - one for each of the two classes that could possibly be returned - and only populating one depending on the type I wanted to return. So in your case:</p> <pre><code>class Child { private Section section; private Question question; // Constructor, etc... } class Question { private String name; // other fields, getters, and setters } class Section { private String label; private Child[] children; // getters and setters } class Quiz { private Child[] elements; // getter and setter } </code></pre> <p>Which requires the client to check which member of child is populated, and is horribly ugly, I know.</p> http://stackoverflow.com/questions/239395/activex-from-java-application/239507#239507 7 Answer by alexmcchessers for Activex from java application? alexmcchessers 2008-10-27T10:26:01Z 2008-10-27T11:18:28Z <p>I don't think there's a way to do this without resorting to a third party library. (Or rolling your own, but you did say "easily".)</p> <p><a href="http://www.eclipse.org/swt" rel="nofollow">SWT</a> (The "Standard Widget Toolkit") contains support for embedding ActiveX controls. SWT is an alternative to Swing, though there is a degree of interoperability between them.<br /> <a href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet265.java?view=co" rel="nofollow">Here's</a> an example of embedding Windows Media Player in an SWT window.</p> <p>Alternatively there's the <a href="http://jacob-project.wiki.sourceforge.net/" rel="nofollow">Jacob</a> project, though I haven't used that myself.</p> <p>As for "is it worth it?" Well, I can say from experience that SWT makes it relatively easy, but unless your application can gracefully deal with not having them available, by relying on COM components you are losing the ability to run on multiple platforms that makes Java attractive in the first place.</p> http://stackoverflow.com/questions/35123/prevent-swt-scrolledcomposite-from-eating-part-of-its-children/152324#152324 0 Answer by alexmcchessers for Prevent SWT scrolledComposite from eating part of it's children alexmcchessers 2008-09-30T09:10:12Z 2008-09-30T09:10:12Z <p>Try setting .setMinWidth and .setMinHeight on the ScrolledComposite once the layout has been done, passing it the size of the main composite.</p> http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132545#132545 39 Answer by alexmcchessers for Good excuses NOT to use version control alexmcchessers 2008-09-25T10:39:33Z 2008-09-25T10:39:33Z <p>Visual SourceSafe ate my dog.</p> http://stackoverflow.com/questions/48249/is-there-a-way-to-embed-a-browser-in-java/49532#49532 4 Answer by alexmcchessers for Is there a way to embed a browser in Java? alexmcchessers 2008-09-08T11:51:25Z 2008-09-22T15:31:32Z <p>You could use <a href="http://www.eclipse.org/swt" rel="nofollow">SWT</a> for your GUI. Its Browser control allows you to embed IE, Mozilla or Safari (depending on the platform you're running in) with little pain. </p> http://stackoverflow.com/questions/43842/how-would-you-programmatically-create-a-pattern-from-a-date-that-is-stored-in-a-s/43849#43849 2 Answer by alexmcchessers for How Would You Programmatically Create a Pattern from a Date that is Stored in a String? alexmcchessers 2008-09-04T14:19:29Z 2008-09-04T14:19:29Z <p>I'm not sure there's any easy way to parse a date and work out its pattern, but I would have thought that the pattern for the one you posted would be:</p> <p>EEE MMM dd HH:mm:ss zzz yyyy</p> http://stackoverflow.com/questions/39194/do-i-need-a-mac-to-to-make-a-java-application-bundle/39309#39309 3 Answer by alexmcchessers for Do I need a Mac to to make a Java application bundle? alexmcchessers 2008-09-02T11:48:56Z 2008-09-02T11:48:56Z <p>A Java application bundle on OS X is nothing more than a directory containing your .jars and a number of configuration files. The SetFile tool sets a custom HFS filesystem property on the directory to tell finder that it is an app, but giving it a ".app" extension serves the same purpose. I don't think there's anything stopping you from building one on, say, Windows, though of course you have no way of testing that it works, but if you are able to test it at least once on a real Mac, you could then conceivably update the .jars within it on Windows to reflect code changes without too much difficulty.</p> <p>Have a look at the <a href="http://developer.apple.com/documentation/CoreFoundation/Conceptual/CFBundles/CFBundles.html" rel="nofollow">Bundle Programming Guide</a> for more info.</p> http://stackoverflow.com/questions/18034/how-do-i-create-a-self-signed-ssl-certificate-to-use-while-testing-a-web-app/18055#18055 1 Answer by alexmcchessers for How do I create a self signed SSL certificate to use while testing a web app. alexmcchessers 2008-08-20T14:09:15Z 2008-08-20T14:09:15Z <p>Various tools exist that can generate SSLs. Try <a href="http://www.openssl.org/" rel="nofollow">OpenSSL</a> for example. Alternatively, there's one in the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=56fc92ee-a71a-4c73-b628-ade629c89499&amp;DisplayLang=en" rel="nofollow">IIS 6 resource kit</a>, if you're on Windows. </p> http://stackoverflow.com/questions/9913/java-file-io-compendium/9935#9935 0 Answer by alexmcchessers for Java File IO Compendium alexmcchessers 2008-08-13T15:18:35Z 2008-08-13T15:18:35Z <p>Read a file one line at a time using a BufferedReader and the .readLine method, similar to @warren-taylor's answer for part 1.</p> <pre><code>public static void readFromFile( String filename ) throws FileNotFoundException, IOException { StringBuffer readBuffer = new StringBuffer(); BufferedReader fileReader = new BufferedReader( new FileReader( filename ) ); String sRead = null; do { sRead = fileReader.readLine(); if(sRead!=null) { System.out.println(sRead); } } while(sRead!=null); } } </code></pre> http://stackoverflow.com/questions/8747/learning-version-control-and-learning-it-well/8759#8759 2 Answer by alexmcchessers for Learning Version Control, and learning it well alexmcchessers 2008-08-12T12:32:38Z 2008-08-13T08:06:29Z <p>There are a couple of free ebooks on the subject. Try:</p> <p>Version Control With Subversion: <a href="http://svnbook.red-bean.com/" rel="nofollow">http://svnbook.red-bean.com/</a></p> <p>Subversion Version Control (PDF): <a href="http://www.informit.com/content/images/0131855182/downloads/Nagel_book.pdf" rel="nofollow">http://www.informit.com/content/images/0131855182/downloads/Nagel_book.pdf</a></p> <p>I have read and would recommend the former. Haven't read "Subversion Version Control", but it looks pretty in-depth.</p> http://stackoverflow.com/questions/7720/packaging-java-apps-for-the-windows-linux-desktop/8620#8620 0 Answer by alexmcchessers for Packaging Java apps for the Windows/Linux desktop. alexmcchessers 2008-08-12T08:55:33Z 2008-08-12T08:55:33Z <p>Another option I was considering: rather than writing a native launcher from scratch, Eclipse comes with the source code for its own launcher, and this could perhaps be repurposed for my app.</p> <p>It's a shame that Sun never included anything similar in the JDK.</p> http://stackoverflow.com/questions/7720/packaging-java-apps-for-the-windows-linux-desktop/7754#7754 0 Answer by alexmcchessers for Packaging Java apps for the Windows/Linux desktop. alexmcchessers 2008-08-11T13:06:26Z 2008-08-11T13:06:26Z <p>Thanks for that, but it seems a little out of my price range. I'm really looking for something free or, at least, cheap. Hence, rolling my own is definitely an option.</p> http://stackoverflow.com/questions/239560/when-should-i-use-primitives-instead-of-wrapping-objects/239580#239580 Comment by alexmcchessers on When should I use primitives instead of wrapping objects? alexmcchessers 2008-10-27T12:00:09Z 2008-10-27T12:00:09Z There are many features of the Java language that I require only occasionally. That's not to say that they are not useful or that they should not have been added. Autoboxing is a useful feature in certain circumstances, but I think it unnecessary to use wrappers just for the sake of having them. http://stackoverflow.com/questions/239560/when-should-i-use-primitives-instead-of-wrapping-objects/239580#239580 Comment by alexmcchessers on When should I use primitives instead of wrapping objects? alexmcchessers 2008-10-27T11:39:03Z 2008-10-27T11:39:03Z I disagree. Why wait for performance to become a problem when you can write efficient code in the first place? 9 times out of 10 you don't need the extra functionality that the wrapper class offers, so why use one? http://stackoverflow.com/questions/133993/loader-constraints-violated-when-linking-javax-xml-namespace-qname-class-from-w/134012#134012 Comment by alexmcchessers on "loader constraints violated when linking javax/xml/namespace/QName class" from webapp on Oracle 10g alexmcchessers 2008-09-25T15:34:48Z 2008-09-25T15:34:48Z 1.5.0_06 That would appear to include it. I don't know how to work around that, though. Removing it from both the webapp and oracle itself clearly isn't an option. http://stackoverflow.com/questions/132409/jaxb-2-in-an-oracle-10g-webapp/132434#132434 Comment by alexmcchessers on JAXB 2 in an Oracle 10g Webapp alexmcchessers 2008-09-25T15:30:05Z 2008-09-25T15:30:05Z Ok, to contradict myself, I have tried configuring 10g to prefer my webapp classes, and now get a different error - see this question: <a href="http://stackoverflow.com/questions/133993/loader-constraints-violated-when-linking-javaxxmlnamespaceqname-class-from-weba" rel="nofollow" title="loader constraints violated when linking javaxxmlnamespaceqname class from weba">stackoverflow.com/questions/133993/&hellip;</a> http://stackoverflow.com/questions/132409/jaxb-2-in-an-oracle-10g-webapp/132434#132434 Comment by alexmcchessers on JAXB 2 in an Oracle 10g Webapp alexmcchessers 2008-09-25T10:31:11Z 2008-09-25T10:31:11Z A good answer that would probably solve my problem in any sane world. Turns out that we used to have that setting for (I didn't realise that 10g was based on Weblogic), but one of my team tells me that it was taken out because it broke something else. DLL hell all over again. Sigh. Thanks anyway. http://stackoverflow.com/questions/132409/jaxb-2-in-an-oracle-10g-webapp/132421#132421 Comment by alexmcchessers on JAXB 2 in an Oracle 10g Webapp alexmcchessers 2008-09-25T10:02:12Z 2008-09-25T10:02:12Z Don't think that's really an option - the webapp is deployed within the Oracle 10g application container, and so is tied to that JVM. http://stackoverflow.com/questions/7720/packaging-java-apps-for-the-windows-linux-desktop/76548#76548 Comment by alexmcchessers on Packaging Java apps for the Windows/Linux desktop. alexmcchessers 2008-09-16T20:42:26Z 2008-09-16T20:42:26Z I have considered the Eclipse RCP, but it's a little heavy for my project, which is intended to be a lightweight desktop blog-posting tool.