User rcreswick - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:46:34Z http://stackoverflow.com/feeds/user/3446 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1717845/buliding-a-war-that-uses-axis2-rampart-for-tomcat 0 Buliding a WAR that uses Axis2 + Rampart for Tomcat rcreswick 2009-11-11T20:28:02Z 2009-11-13T01:01:28Z <p>I'm trying to build an axis-based web service with rampart for security, and I've been hoping to deploy a single war to tomcat, rather than installing axis and deploying within axis. (I'm not fixed on that though... this is all very new territory for me, so I could use any feedback that you might have.)</p> <p>I'm running into a few problems:</p> <ul> <li><p><code>mvn jetty:run</code> works fine -- I can use the web service, and retrieve wsdl by hitting the url for my services with a ?wsdl tacked on the end (eg: <a href="http://localhost:8080/webservice/services/ResultService?wsdl" rel="nofollow">http://localhost:8080/webservice/services/ResultService?wsdl</a> "webservice" is the name of this project), however, mvn jetty:run-war fails, <em>unless</em> I manually copy rampart-1.4.mar and rahas-1.4.mar into the WEB-INF/lib directory manually first. If that isn't done, then jetty:run-war produces a series of exceptions about rampart modules not being available, and hitting the same wsdl url as above returns an empty page. (no content at all, when it should be a good chunk of wsdl) Here are the stacktraces: <a href="http://hpaste.org/fastcgi/hpaste.fcgi/view?id=12058#a12058" rel="nofollow">http://hpaste.org/fastcgi/hpaste.fcgi/view?id=12058#a12058</a></p></li> <li><p>Regardless of the location of the mar files in the generated war, I have never been able to get tomcat to serve the web service properly. It does not issue anything of note to the log (just an INFO that the web application was deployed), and no wsdl is provided for the urls above. <a href="http://localhost:8180/infoassist/services/ResultService?wsdl" rel="nofollow">http://localhost:8180/infoassist/services/ResultService?wsdl</a> returns nothing. ('infoassist.war' is the name of the generated war, hence the different url than with jetty)</p></li> </ul> <p>If I query a url that does not end in ?wsdl, then I get an axis exception in the browser. This is probably fine -- it happens even when running the functional jetty:run server, and I don't expect "real" output in a browser yet, since everything I've done so far is just to test soap. It does indicate that axis is in use with Tomcat though, so at least <em>some</em> of the war dependencies are working:</p> <pre><code>org.apache.axis2.AxisFault: The service cannot be found for the endpoint reference (EPR) /infoassist/ at org.apache.axis2.engine.DispatchPhase.checkPostConditions(DispatchPhase.java:65) at org.apache.axis2.engine.Phase.invoke(Phase.java:334) at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:251) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:160) at org.apache.axis2.transport.http.util.RESTUtil.invokeAxisEngine(RESTUtil.java:135) at org.apache.axis2.transport.http.util.RESTUtil.processURLRequest(RESTUtil.java:130) at org.apache.axis2.transport.http.AxisServlet$RestRequestProcessor.processURLRequest(AxisServlet.java:838) at org.apache.axis2.transport.http.AxisServlet.doGet(AxisServlet.java:262) at javax.servlet.http.HttpServlet.service(HttpServlet.java:689) at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:874) at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528) at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689) at java.lang.Thread.run(Thread.java:595) </code></pre> <p>I'm really grasping at straws here -- any help would be greatly appreciated, and of course, I can provide many more details, I just don't know what will be of use.</p> http://stackoverflow.com/questions/1717845/buliding-a-war-that-uses-axis2-rampart-for-tomcat/1726482#1726482 0 Answer by rcreswick for Buliding a WAR that uses Axis2 + Rampart for Tomcat rcreswick 2009-11-13T01:01:28Z 2009-11-13T01:01:28Z <p>I figured it out, with significant help from various sources:</p> <p>First,</p> <p>Follow these instructions:</p> <ul> <li><a href="http://wso2.org/library/knowledge-base/run-rampart-samples-apache-tomcat" rel="nofollow">Running Rampart examples under Apache Tomcat</a></li> </ul> <p>However, when building the axis war, you must first tweak the build so that axis2-codegen-1.5.jar is <em>not</em> excluded from the archive, per the instructions <a href="http://www.ibm.com/developerworks/java/library/j-jws4/index.html" rel="nofollow">here</a>:</p> <blockquote> <p>To use the Rampart code in an Axis2 server installation, you need to create a new axis2.war file, one that includes the added Rampart .jar and .mar files. You can use the Ant build.xml provided in the webapp directory to create axis2.war, provided you make one change: delete the line &lt;exclude name="axis2-codegen*.jar"/&gt; near the end of the file. Then open a console to the Axis2 webapp directory and run <code>ant</code>. After the build.xml runs, you can find the created axis2.war Web application in the Axis2 installation dist directory.</p> </blockquote> <p>That should be sufficient to see rampart in the list of loaded modules from the axis admin page (which is probably at <a href="http://localhost:8080/axis2/axis2-admin/listModules" rel="nofollow">http://localhost:8080/axis2/axis2-admin/listModules</a>. However, if you're using the binary distributions of these libraries (axis/rampart) you must also take care that you compile your code to a java class spec. that is compatible with 1.5. I wasn't doing this, so I kept encountering <code>java.lang.UnsupportedClassVersionError</code> errors, but nothing made it clear what was actually causing the problem -- I suspected the axis2-codegen-1.5.jar, which was a red-herring--the issues was actually with the bytecode version of my complied classfiles. This also happened when I built the rampart samples from the distribution because they were distributed in source form, and my default compiler is java 1.6.</p> http://stackoverflow.com/questions/854808/using-maven-to-build-deploy-use-projects-with-jni 1 Using maven to build/deploy/use projects with JNI. rcreswick 2009-05-12T20:49:35Z 2009-11-06T17:55:03Z <p>I am trying to use maven to build a project that depends on a JNI wrapper around the OpenCV computer vision library. I've been able to "maven-ize" the OpenCV wrapper here: <a href="http://ubaa.net/shared/processing/opencv/" rel="nofollow">http://ubaa.net/shared/processing/opencv/</a> by using FreeHEP's NAR maven plugin, but the documentation for that plugin is somewhat lacking. </p> <p>I've been able to create a project (imagedetect) that depends on the OpenCV jni project (I'm calling that OpenCVJava). imagedetect will compile, however, any test, integration-test, or package target fails with an error about libraries missing from the java.library.path. </p> <pre><code>!!! required library not found : no OpenCV in java.library.path Verify that the java.library.path property is correctly set and 'libcxcore.so', 'libcv.so', 'libcvaux.so', 'libml.so', and 'libhighgui.so' are placed (or linked) in one of your system shared libraries folder </code></pre> <p>This is particularly frustrating -- the only way I know to resolve this is to somehow track down the .nar file for the opencv libraries, manually extract them, set the java.library.path, and then invoke the gnaraly java command to actually execute the tests/application with the proper classpath / library path. This isn't going to work--particularly if this problem persists to transitive dependencies. </p> <p>How can I make this build/test/execute system cleaner? I'm not set on FreeHEP, but I would like to stick with maven, since it makes our most common use-cases much simpler.</p> <p>FreeHEP Nar plugin: <a href="http://java.freehep.org/freehep-nar-plugin/intro.html" rel="nofollow">http://java.freehep.org/freehep-nar-plugin/intro.html</a></p> http://stackoverflow.com/questions/44135/project-design-fs-layout-for-large-django-projects 10 Project design / FS layout for large django projects rcreswick 2008-09-04T16:36:12Z 2009-11-06T17:40:26Z <p>What is the best way to layout a large django project? The tutuorials provide simple instructions for setting up apps, models, and views, but there is less information about how apps and projects should be broken down, how much sharing is allowable/necessary between apps in a typical project (obviously that is largely dependent on the project) and how/where general templates should be kept.</p> <p>Does anyone have examples, suggestions, and <em>explanations</em> as to why a certain project layout is better than another? I am particularly interested in the incorporation of large numbers of unit tests (2-5x the size of the actual code base) and string externalization / templates.</p> http://stackoverflow.com/questions/44135/project-design-fs-layout-for-large-django-projects/44152#44152 4 Answer by rcreswick for Project design / FS layout for large django projects rcreswick 2008-09-04T16:44:21Z 2009-11-06T17:40:26Z <p>This page does a good job of addressing some of my questions: <a href="http://www.b-list.org/weblog/2006/sep/10/django-tips-laying-out-application/" rel="nofollow">http://www.b-list.org/weblog/2006/sep/10/django-tips-laying-out-application/</a></p> <p>Specifically: </p> <blockquote> <ol> <li>To define custom template tags or filters, you must create a sub-directory in the application’s directory called templatetags, and it must contain a file named __init__.py so that it can be imported as a Python module.</li> <li>To define unit tests which will automatically be noticed by Django’s testing framework, put them in a module called tests (which can be either a file named tests.py or a directory called tests). The testing framework will also find any doctests in that module, but the preferred place for those is, of course, the docstrings of the classes or functions they’re designed to test.</li> <li>To provide custom SQL which will be executed immediately after your application is installed, create a sub-directory called sql inside the application’s directory; the file names should be the same as the names of the models whose tables they’ll operate on; for example, if you have an app named weblog containing a model named Entry, then the file sql/entry.sql inside the app’s directory can be used to modify or insert data into the entries table as soon as it’s been created. </li> </ol> </blockquote> <p>The note about tests.py and tests (the directory) also holds for models, which helps address the problem of having way to many tests (or models) for one file.</p> <p>I would still like to see some examples / suggestions for app/project break down, and big django sites that work well.</p> http://stackoverflow.com/questions/115977/using-pylint-with-django 10 Using Pylint with Django rcreswick 2008-09-22T16:39:34Z 2009-09-12T22:21:47Z <p>I would very much like to integrate <a href="http://www.logilab.org/857" rel="nofollow">pylint</a> into the build process for my python projects, but I have run into one show-stopper: One of the error types that I find extremely useful--:<code>E1101: *%s %r has no %r member*</code>--constantly reports errors when using common django fields, for example:</p> <pre><code>E1101:125:get_user_tags: Class 'Tag' has no 'objects' member </code></pre> <p>which is caused by this code:</p> <pre><code>def get_user_tags(username): """ Gets all the tags that username has used. Returns a query set. """ return Tag.objects.filter( ## This line triggers the error. tagownership__users__username__exact=username).distinct() # Here is the Tag class, models.Model is provided by Django: class Tag(models.Model): """ Model for user-defined strings that help categorize Events on on a per-user basis. """ name = models.CharField(max_length=500, null=False, unique=True) def __unicode__(self): return self.name </code></pre> <p>How can I tune Pylint to properly take fields such as objects into account? (I've also looked into the Django source, and I have been unable to find the implementation of <code>objects</code>, so I suspect it is not "just" a class field. On the other hand, I'm fairly new to python, so I may very well have overlooked something.)</p> <p><strong>Edit:</strong> The only way I've found to tell pylint to not warn about these warnings is by blocking all errors of the type (E1101) which is not an acceptable solution, since that is (in my opinion) an extremely useful error. If there is another way, without augmenting the pylint source, please point me to specifics :)</p> <p>See <a href="http://blog.ciscavate.org/2008/09/wrestling-python.html" rel="nofollow">here</a> for a summary of the problems I've had with pychecker and pyflakes -- they've proven to be far to unstable for general use. (In pychecker's case, the crashes originated in the pychecker code -- not source it was loading/invoking.)</p> http://stackoverflow.com/questions/42557/best-way-to-incorporate-spell-checkers-with-a-build-process 9 Best way to incorporate spell checkers with a build process rcreswick 2008-09-03T20:52:54Z 2009-09-10T06:33:07Z <p>I try to externalize all strings (and other constants) used in any application I write, for many reasons that are probably second-nature to most stack-overflowers, but one thing I would like to have is the ability to automate spell checking of any user-visible strings. This poses a couple problems:</p> <ul> <li>Not all strings are user-visible, and it's non-trivial to spearate them, and keep that separation in place (but it is <em>possible</em>)</li> <li>Most, if not all, string externalization methods I've used involve significant text that will not pass a spell checker such as aspell/ispell (eg: theStrName="some string." and comments)</li> <li>Many spellcheckers (once again, aspell/ispell) don't handle many words out of the box (generally technical terms, proper nouns, or just 'new' terminology, like metadata).</li> </ul> <p>How do you incorporate something like this into your build procedures/test suites? It is not feasible to have someone manually spell check all the strings in an application each time they are changed -- and there is <em>no chance</em> that they will all be spelled correctly the first time ;)</p> http://stackoverflow.com/questions/1396056/what-are-the-java-platform-defaults 2 What are the java platform defaults? rcreswick 2009-09-08T20:06:52Z 2009-09-09T00:10:53Z <p>Many parts of the Java API work differently depending on platform defaults, for example, creating a Sax parser from a SAXParserFactory uses a different Factory implementation based on the system property "javax.xml.parsers.SAXParserFactory". However, if that property is not defined, then the "platform default" is used.</p> <p>I've had very little luck finding out what the platform defaults actually <em>are</em> for any given JVM/platform. This would be very useful to know when you need to deploy to multiple platforms, or when you're debugging something and need to learn more about the specific implementation.</p> <p>Where can I find a list of these defaults (often system property names) and the default values for assorted platforms?</p> http://stackoverflow.com/questions/255370/automating-unit-tests-junit-for-eclipse-plugin-development 4 Automating unit tests (junit) for Eclipse Plugin development rcreswick 2008-11-01T01:20:41Z 2009-09-03T14:20:44Z <p>I am developing Eclipse plugins, and I need to be able to automate the building and execution of the test suite for each plugin. (Using Junit)</p> <p>Test are working within Eclipse, and I can break the plugins into the actual plugin and a fragment plugin for unit testing as described <a href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.test/testframework.html?view=co" rel="nofollow">here</a>, <a href="http://rcpquickstart.com/2007/08/06/running-automated-tests-with-pde-build/" rel="nofollow">here</a> and in a couple places <a href="http://eclipsenuggets.blogspot.com/2007/09/6-great-links-for-eclipse-build.html" rel="nofollow">here</a>.</p> <p>However, each of the approaches above results in the same issue: The java ant task/commandline command that issues the build or should trigger the test, generates no observable side effects, and returns the value "13". I've tried everything I can find, and I've learned a fair bit about how Eclipse starts up (eg: since v3.3 you can no longer use startup.jar -- it doesn't exist -- but you should use <a href="http://blog.ciscavate.org/2008/11/treat-your-mailing-lists-like-reference-documents-please.html" rel="nofollow">org.eclipse.equinox.launcher</a>). Unfortunately, while that is apparently necessary information, it is far from sufficient.</p> <p>I am working with Eclipse 3.4, Junit 4.3.1 (the org.junit4 bundle, but I would much rather use JUnit 4.4. See <a href="http://stackoverflow.com/questions/251791">here</a>.)</p> <p>So, my question is: How exactly do you automate the build and testing of Eclipse plugins? </p> <p><em>Edit:</em> To clarify, I <em>want</em> to use something like ant + cruise control, but I can't even get the unit tests to run <em>at all</em> outside of Eclipse. I say "something like" because there are other technologies that accomplish the same thing, and I am not so picky as to discard a solution that works just because it's using say, Maven or Buckminster, if those technologies make this substantially easier.</p> <p><em>Edit2:</em> The 'Java Result 13' mentioned above seems to be caused by the inability to find the coretestrunner. From the log:</p> <pre><code>java.lang.RuntimeException: Application "org.eclipse.test.coretestapplication" could not be found in the registry. The applications available are: org.eclipse.equinox.app.error, com.rcpquickstart.helloworld.application. at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:242) at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:29) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) at org.eclipse.core.launcher.Main.main(Main.java:30) !ENTRY org.eclipse.osgi 2 0 2008-11-04 21:02:10.514 !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists: !SUBENTRY 1 org.eclipse.osgi 2 0 2008-11-04 21:02:10.515 !MESSAGE Bundle update@plugins/org.eclipse.test_3.2.0/ [34] was not resolved. !SUBENTRY 2 org.eclipse.test 2 0 2008-11-04 21:02:10 http://stackoverflow.com/questions/880438/text-detection-location-libraries 2 Text detection / location libraries rcreswick 2009-05-19T00:26:14Z 2009-08-13T06:00:02Z <p>I need to detect the bounding box(es) around portions of text in an image, and while there are quite a number of scholarly articles describing algorithms, I haven't found any implementations. </p> <p>The specific problem I'm trying to solve is this:</p> <p>Given an image that may or may not contain text, determine if the image does contain text, and if so, output the bounding rectangle around each area of text. (where "area" is defined by the algorithm, and hopefully it will err on the side of smaller areas vs. larger ones.)</p> <p>Eventually, I'd like to turn the text into actual asci/unicode characters, but I think that is only tangentially related to this problem.</p> <p>There are a number of tools out there that do OCR, (tesseract, Gocr, etc..) but they seem to only work on text that more or less fills the image with no real "image" content. (Eg: tesseract generates garbage when run on an image with subtitles.)</p> <p>An implementation in java would be ideal, but I'm open to any cross-platform libraries/applications at this point.</p> <p><em>Edit:</em> I'm particularly interested in detecting <em>artificial text</em>, such as subtitles, or a HUD, which seems to be a simpler problem than detecting <em>scene text</em>, such as street signs. (Although scene text detection is even better.) </p> http://stackoverflow.com/questions/155601/what-is-the-best-way-to-learn-about-rdf-owl 7 What is the best way to learn about RDF / OWL? rcreswick 2008-09-30T23:41:53Z 2009-07-14T09:36:38Z <p>What references offer a good summary/tutorial for using RDF/OWL? There seem to be enough tools (Protege, Topbraid, Jena, etc.) that knowing the syntax of the markup languages is not necessary, but knowing the concepts is, of course, still critical. </p> <p>I'm working through the w3c documents (particularly the <a href="http://www.w3.org/TR/rdf-primer/" rel="nofollow">RDF Primer</a>) but I'd like to find other resources/techniques to use as well.</p> http://stackoverflow.com/questions/118062/how-do-you-design-a-website-to-make-the-best-use-of-ads 1 How do you design a website to make the best use of ads? rcreswick 2008-09-22T22:43:57Z 2009-07-11T03:36:43Z <p>Is anyone aware of general UI design guidelines for increasing ad revenue from web ads? Obviously many SO users use adblock, and probably find this type of question reprehensible, but I believe that it is possible to integrate advertising (and other revenue streams) into sites so that they are visually appealing, on-target, and functional. However, this is only a belief ;).</p> <p>Given the widespread use of advertising as a means of income, this seems like it must be an active area of research.</p> <p>I believe that any web design that is intended to generate income should take this into account, since the web designer (read: a sizable portion of the SO user base) should be trying to get the biggest return on their time/skills.</p> <p>(This question is a repost because there is <em>no</em>way* on SO to contest a 'closed question', and it only takes one person with enough rep to decide they don't like it.)</p> <p><strong>Edit:</strong> Just incase anyone goes looking, I deleted the initial question (which was closed) since it didn't make sense to pollute the search results.</p> http://stackoverflow.com/questions/567996/can-maven-collect-all-the-dependant-jars-for-a-project-to-help-with-application-d 7 Can maven collect all the dependant jars for a project to help with application deployment? rcreswick 2009-02-20T01:50:37Z 2009-07-09T19:43:27Z <p>I'm just starting to use Maven, (evaluating it, really) and I need to be able to quickly generate a jar for my app and a directory with all the dependencies (eg: lib) so that I can deploy those two to be run in a stand-alone manner. Generating the jar with the proper manifest is easy, but I do not know how to get maven to copy the dependencies for the current project into a <code>lib</code> directory that I can deploy. </p> <p>Since this is for stand-alone java applications, I am <em>not</em> interested in deploying to a maven repository, that is also fairly trivial, or at least easily googleable.</p> <p>I've found out how to do everything <em>except</em> copy the dependent jars into some specified directory. This is the workflow I'm looking for:</p> <pre><code>$ mvn clean $ mvn package $ cp -r target/{lib,myApp.jar} installLocation </code></pre> <p>Then, running <code>myApp.jar</code> from <code>installLocation</code> as a jar should "just work" regardless of my <code>$CLASSPATH</code>.</p> <p>To try and pre-empt some answers:</p> <ul> <li>I do have a Main-class: set, and it works fine.</li> <li>I've also set the classpath in the MANIFEST.MF, and that works fine too.</li> <li>I've found out how to use <code>&lt;classpathPrefix&gt;</code> and <code>&lt;classpathMavenRepositoryLayout&gt;</code> to make this work -- but only on my machine. (via: <code>&lt;classpathPrefix&gt;${settings.localRepository}&lt;/classpathPrefix&gt;</code>)</li> </ul> <p>Thanks!</p> http://stackoverflow.com/questions/1029462/unmarshaling-xml-with-html-entities-using-jaxb 0 Unmarshaling xml with html entities using JAXB rcreswick 2009-06-22T21:20:26Z 2009-06-23T16:14:28Z <p>I need to load wikipedia revision histories into POJOs, so I'm using JAXB to unmarshall the wikipeida data dump (well, individual pages of it). The problem is that the text nodes occasionally contain entities that are not defined in the wikipedia xml dump. eg: &deg; (`&amp;deg;' pleases keep in mind that I do not know the complete set of entities that I need to be able to read. My input file is 3tb, so let's just assume that everything html can render is in there.). </p> <p>How can I configure JAXB to handle entities that are not valid xml?</p> <p>Here is the SAX Exception that JAXB throws when it encounters an undefined entity:</p> <pre><code>Exception in thread "main" javax.xml.bind.UnmarshalException - with linked exception: [org.xml.sax.SAXParseException: The entity "deg" was referenced, but not declared.] at javax.xml.bind.helpers.AbstractUnmarshallerImpl.createUnmarshalException(AbstractUnmarshallerImpl.java:315) at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.createUnmarshalException(UnmarshallerImpl.java:481) at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:199) at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:168) at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:137) at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:184) at com.stottlerhenke.tools.wikiparse.WikipediaIO.readPage(WikipediaIO.java:73) at com.stottlerhenke.tools.wikiparse.WikipediaIO.main(WikipediaIO.java:53) Caused by: org.xml.sax.SAXParseException: The entity "deg" was referenced, but not declared. at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source) at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown Source) at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source) at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source) at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEntityReference(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.XMLParser.parse(Unknown Source) at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source) at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:195) </code></pre> <p><em>Edit:</em> The input that triggered that exception is the complete revision history for the wikipedia article on the <a href="http://en.wikipedia.org/wiki/Artic%5FCircle" rel="nofollow">Arctic Circle</a>. The XSD used to generate the JAXB classes is here: <a href="http://www.mediawiki.org/xml/export-0.3.xsd" rel="nofollow">http://www.mediawiki.org/xml/export-0.3.xsd</a></p> <p><strong>Edit:</strong> The source of this problem was an error on my part -- I was using an initial extractor that did not maintain encoded entities properly. However, I did find a way around this, should anyone have the problem I <em>thought</em> I had. See below.</p> http://stackoverflow.com/questions/1029462/unmarshaling-xml-with-html-entities-using-jaxb/1033625#1033625 0 Answer by rcreswick for Unmarshaling xml with html entities using JAXB rcreswick 2009-06-23T16:14:28Z 2009-06-23T16:14:28Z <p>This is a hack, but it works in a pinch.</p> <p>I downloaded the html entity definitions from w3.org, and set the doctype of the input xml file to xhtml-transitional, but directed the doctype url to a local dtd:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "xhtml1-transitional.dtd"&gt; </code></pre> <p>xhtml1-transitional.dtd, in turn, requires:</p> <ul> <li>xhtml-lat1.ent</li> <li>xhtml-special.ent</li> <li>xhtml-symbol.ent</li> </ul> <p>which I sucked down and put along side xhtml1-transitional.dtd</p> <p>(All files are available at: <a href="http://www.w3.org/TR/xhtml1/DTD/" rel="nofollow">http://www.w3.org/TR/xhtml1/DTD/</a> )</p> <p>Like I said, ugly as hell, but it <em>did</em> seem to do the job.</p> http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de 13 Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? rcreswick 2008-10-30T21:10:11Z 2009-06-22T21:05:58Z <p>I need to use JUnit 4.4 (or newer) in a set of eclipse plugin tests, but I've run into the following problem:</p> <p>Tests are not detected when running with the junit 4.4 or 4.5 bundles from springsource ([junit44] and [junit45]). The org.junit4 bundle that can be obtained with eclipse supplies junit 4.3 (as of Ganymead / Eclipse 3.4). The org.junit4 bundle <em>does</em> work in that it identifies and runs the tests, but it is not compatible with the latest versions of JMock, and I need to use a mocking library.</p> <p>Here is a sample test:</p> <pre><code>package testingplugin; import static org.junit.Assert.*; import org.junit.Test; public class ActivatorTest { @Test public final void testDoaddTest() { fail("Not yet implemented"); } } </code></pre> <p>When running this test, I receive the following exception:</p> <pre><code>java.lang.Exception: No runnable methods at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:33) at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42) at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34) at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:45) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:62) at org.eclipse.pde.internal.junit.runtime.CoreTestApplication.run(CoreTestApplication.java:23) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.internal.app.EclipseAppContainer.callMethodWithException(EclipseAppContainer.java:574) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:195) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) </code></pre> <p>However, if I switch the project dependencies from com.springsource.org.junit to org.junit4, then the test runs and fails (as expected).</p> <p>I am running the test as a JUnit Plug-in Test in Eclipse, with the following program arguments:</p> <p>-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl}</p> <p>The following plug-ins selected during launch (selected by me, then I used "add required plugins" to get the rest of the dependencies.):</p> <pre><code>Workspace: testingPlugin Target Platform: com.springsource.org.hamcrest.core (1.1.0) com.springsource.org.junit (4.5.0) ....and a bunch of others... (nothing related to testing was auto-selected) </code></pre> <p>Here is my MANIFEST.MF:</p> <pre><code>Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: TestingPlugin Plug-in Bundle-SymbolicName: testingPlugin Bundle-Version: 1.0.0 Bundle-Activator: testingplugin.Activator Import-Package: org.osgi.framework;version="1.3.0" Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Require-Bundle: com.springsource.org.junit;bundle-version="4.5.0" </code></pre> <p>Switching the last line to:</p> <pre><code>Require-Bundle: org.junit4;bundle-version="4.3.1" </code></pre> <p>And updating the selected plugins at launch to:</p> <pre><code>Workspace: testingPlugin Target Platform: org.junit4 (4.3.1) ...bunches of auto-selected bundles... (again, nothing else test related) </code></pre> <p>Causes the test to run properly (but with the wrong version of junit).</p> http://stackoverflow.com/questions/35528/canonical-problems-list/35536#35536 7 Answer by rcreswick for canonical problems list rcreswick 2008-08-30T01:07:50Z 2009-06-19T07:43:07Z <p><a href="http://portal.acm.org/citation.cfm?id=578533" rel="nofollow">"Computers and Intractability: A guide to the theory of NP-Completeness"</a> by Garey and Johnson is a great reference for this sort of thing, although the "solved" problems (in P) are obviously not given much attention in the book.</p> <p>I'm not aware of any good on-line resources, but Karp's seminal paper <a href="http://en.wikipedia.org/wiki/Karp%27s%5F21%5FNP-complete%5Fproblems" rel="nofollow">Reducibility among Combinatorial Problems (1972)</a> on reductions and complexity is probably the "canonical" reference for Hard Problems.</p> http://stackoverflow.com/questions/220313/what-xml-xslt-libraryies-currently-work-well-for-java 4 What xml/xslt library(ies) currently work well for java? rcreswick 2008-10-20T23:34:22Z 2009-06-15T13:55:04Z <p>I need to apply some xml templates to various streams of xml data (and files, on occasion) and there seem to be a large number of xml libraries for java out there -- enough that it's difficult to quickly determine which libraries are still active, how they differ from the other options that are also active, and what criteria should be considered when choosing one.</p> <p>What libraries do you use for manipulating xml in java, and why is it better than the alternatives?</p> http://stackoverflow.com/questions/809646/libraries-tutorials-for-manipulating-video-in-java 0 Libraries / tutorials for manipulating video in java rcreswick 2009-04-30T23:55:19Z 2009-05-01T00:15:17Z <p>I need to do some simple video editing within a Java application, but the frameworks I've found (<a href="http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/download.html" rel="nofollow">JMF</a> and <a href="http://fmj-sf.net/index.php" rel="nofollow">FMJ</a>) appear to be quite stale, and thus far I haven't found any evidence that either can actually edit video. The type of operations I need are: cropping, redacting sections, and extracting clips.</p> <p>I've never worked with video in any real capacity before, so I may just be misunderstanding what FMJ/JMF do, but I am still concerned by the age of the most recent releases of those tools. </p> <p>What do people use to do this sort of thing? What keywords should I be using to get more relevant results?</p> <p>(The specific format of video is not particularly important to me -- anything common is just fine.)</p> http://stackoverflow.com/questions/88889/recommend-a-java-wizard-library/809658#809658 0 Answer by rcreswick for Recommend a Java wizard library? rcreswick 2009-05-01T00:00:16Z 2009-05-01T00:05:40Z <p>I ran into the same problem about a year ago, and developed <a href="http://code.google.com/p/cjwizard/" rel="nofollow">CJWizards</a> to fit my need. It's more general-purpose than the other wizards I've found. </p> <p>The project is a bit stale because I haven't needed it recently, but I'd be happy to help anyone who uses it get going.</p> <p>It supports bi-directional navigation (so the user can go back, fix something, then move forward again, maintaining the answers they provided on the first pass), and makes it substantially easier to design wizards that branch (when compared with other wizard frameworks I've seen).</p> <p>The dialog layout is separated into a few layers, so you can add wrapper content, such as the navigation bar on the left of this <a href="http://cjwizard.googlecode.com/files/cjwizard1.png" rel="nofollow">screenshot</a> to all the steps, or stick in a logo, move the buttons, etc. according to your needs.</p> <p>Each page of the dialog is essentially a JPanel that you add named widgets to -- the framework looks for named widgets, and monitors them for data which is stored in a map of (widgetName, value).</p> http://stackoverflow.com/questions/104960/are-threre-any-orm-tools-for-haskell 9 Are threre any ORM tools for Haskell? rcreswick 2008-09-19T19:50:12Z 2009-03-01T00:05:14Z <p>What is the best way to interact with a database using Haskell? I'm accustomed to using some sort of ORM (Django's ORM, hibernate, etc.) and something similar would be nice when creating apps with <a href="http://www.happs.org/" rel="nofollow">HAppS</a>.</p> <p><strong>Edit:</strong> I'd like to be free to choose from Postgresql MySql and SQLite as far as the actual databases go. </p> http://stackoverflow.com/questions/188266/how-are-ssl-certificates-verified 7 How are ssl certificates verified? rcreswick 2008-10-09T17:16:29Z 2009-02-05T02:16:53Z <p>What is the series of steps needed to securely verify a ssl certificate? My (very limited) understanding is that when you visit an https site, the server sends a certificate to the client (the browser) and the browser gets the certificate's issuer information from that certificate, then uses that to contact the issuerer, and somehow compares certificates for validity. </p> <ul> <li>How exactly is this done? </li> <li>What about the process makes it immune to man-in-the-middle attacks?</li> <li>What prevents some random person from setting up their own verification service to use in man-in-the-middle attacks, so everything "looks" secure?</li> </ul> http://stackoverflow.com/questions/452635/how-does-java-method-dispatch-work-with-generics-and-abstract-classes 3 How does Java method dispatch work with Generics and abstract classes? rcreswick 2009-01-17T01:35:30Z 2009-01-17T01:42:33Z <p>I ran into a situation today where Java was not invoking the method I expected -- Here is the minimal test case: (I'm sorry this seems contrived -- the 'real world' scenario is substantially more complex, and makes much more sense from a "why the hell would you do <em>that</em>?" standpoint.)</p> <p>I'm specifically interested in why this happens, I don't care about redesign suggestions. I have a feeling this is in Java Puzzlers, but I don't have my copy handy.</p> <p>See the specific question in commends within Test&lt;T&gt;.getValue() below:</p> <pre><code>public class Ol2 { public static void main(String[] args) { Test&lt;Integer&gt; t = new Test&lt;Integer&gt;() { protected Integer value() { return 5; } }; System.out.println(t.getValue()); } } abstract class Test&lt;T&gt; { protected abstract T value(); public String getValue() { // Why does this always invoke makeString(Object)? // The type of value() is available at compile-time. return Util.makeString(value()); } } class Util { public static String makeString(Integer i){ return "int: "+i; } public static String makeString(Object o){ return "obj: "+o; } } </code></pre> <p>The output from this code is:</p> <pre><code>obj: 5 </code></pre> http://stackoverflow.com/questions/375605/serializing-jena-ontmodel-changes 3 Serializing JENA OntModel Changes rcreswick 2008-12-17T18:48:23Z 2009-01-14T00:05:26Z <p>I need to keep a couple of [Jena] Models (OntModels, specifically) synchronized across a socket, and I'd like to do this one change at a time (for various reasons -- one being that each Statement added or removed from the OntModels is also adapting a JESS rule base.). I am able to listen to the add/remove events on the OntModels and then create simple event instances that wrap the added / removed Statements along with a ChangeType that indicates that the Statement was added or removed, but serializing the Statement has proven to be a problem.</p> <p>Unfortunately, all of the JENA serialization documentation that I've found relates to serializing an entire model to xml / rdf / n3 / etc. Since statements are simply triples of Strings (at one level, anyway) it seems like it should be trivial to serialize the data at the Statement level. However, [Jena] doesn't seem to provide an API for creating Statements with plain strings that "does the right thing". Problems arise with typed literals. eg:</p> <p>I can create the statement:</p> <pre><code>&lt;http://someuri/myont#foo&gt; &lt;http://someuri/myont#weight&gt; "50.7"^^www.w3.org/2001/XMLSchema#double </code></pre> <p>but the string version that I can get out looks like this:</p> <pre><code>"http://someuri/myont#foo" "http://someuri/myont#weight" "50.7^^www.w3.org/2001/XMLSchema#double" </code></pre> <p>(note the absence of a " before the ^^)</p> <p>This wouldn't be that much of a problem, since the literal can still be parsed out with a regex, but I've been unable to create a Statement with the proper literal. The obvious approach (ModelCon.createStatement(Resource, Property, String)) generates an untyped string literal with the full value of the String passed in.</p> <p>Does anyone know how I can reliably serialize (and deserialize, of course) individual Jena Statements?</p> http://stackoverflow.com/questions/375605/serializing-jena-ontmodel-changes/441402#441402 0 Answer by rcreswick for Serializing JENA OntModel Changes rcreswick 2009-01-14T00:05:26Z 2009-01-14T00:05:26Z <p>The solution I ended up with is below. I ended up using a reg-ex approach because of time constraints (I didn't see the other suggestions on this question until very recently)</p> <p>This is probably not the best approach, but it seems to work well (and I've vetted it with a test suite that exercise the use cases I need to deal with at this point).</p> <p>The <code>createStatement(...)</code> method is in an OntUtilities helper class. </p> <pre><code> /** * Serialization output method. * * @param out * @throws IOException */ private void writeObject(final ObjectOutputStream out) throws IOException { out.defaultWriteObject(); out.writeObject(_statement.getSubject().getURI()); out.writeObject(_statement.getPredicate().getURI()); out.writeObject(_statement.getObject().toString()); } /** * deserialization method. * * @param in * @throws IOException * @throws ClassNotFoundException */ private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException { in.defaultReadObject(); final String subject = (String)in.readObject(); final String predicate = (String)in.readObject(); final String object = (String)in.readObject(); _statement = OntUtilities.createStatement(subject, predicate, object); } /** * Creates a statement from a triple of strings. These strings may be fully * qualified uris, or shortened "namespace" uris (eg: shai:TST) * * @param sub The resource uri (the subject) * @param pred The predicate uri (the property) * @param ob The object uri. * @return A JENA Statement. */ public static Statement createStatement(final String sub, final String pred, final String ob) { final Model m = ModelFactory.createDefaultModel(); final String s = OntUtilities.nsUriToUri(sub); final String p = OntUtilities.nsUriToUri(pred); final String o = OntUtilities.nsUriToUri(ob); Statement stmt = null; try { // try making a uri as a syntax-verification step. new URI(o); // it was valid, so well use o as a resource: final Resource obj = m.createResource(o); stmt = m.createStatement(m.createResource(s), m.createProperty(p), obj); } catch (final URISyntaxException e) { // o was *not* a uri. if (o.contains("^^")) { final int idx = o.lastIndexOf("^^"); final String value = o.substring(0, idx); final String uri = o.substring(idx+2); final Literal lit = m.createTypedLiteral(value, getDataType(uri)); stmt = m.createStatement(m.createResource(s), m.createProperty(p), lit); } else { // just use the string as-is: stmt = m.createStatement(m.createResource(s), m.createProperty(p), o); } } return stmt; } </code></pre> http://stackoverflow.com/questions/282509/how-do-you-communicate-between-eclipse-declarative-services-and-views-contentpro 5 How do you communicate between eclipse declarative services and Views (ContentProviders) rcreswick 2008-11-11T23:31:07Z 2008-11-12T23:41:46Z <p>Say you have an eclipse plugin with various views, these views should display data from some OSGi bundle that pushes data to the Views. Rather than have every view communicate with the OSGi bundle, I have an intermediate Facade class that acts as a blackboard for the views and manages communications between the views and the other OSGi bundle--well, that's the theory.</p> <p>The problem comes about because the ui bundle (with the Views and the Facade) communicate with the other bundle (call it the DataStore) using Declarative Services. Since the Data Store receives asynchronous data updates from yet another source, it needs to push content to the Facade (and to other bundles, if they are available). OSGi instantiates the Facade to satisfy the requirements of the cardinality on the DataStore's DS configuration, but the views are instantiated by the Plugin's IApplication implementation. Even if the IApplication and the Facade are the same class, I get two separate instances that do not know of eachother. </p> <p>How do I enable communication between these components (the plugin Application, Views, etc. and the OSGi instantiated Facade)?</p> http://stackoverflow.com/questions/282509/how-do-you-communicate-between-eclipse-declarative-services-and-views-contentpro/282519#282519 1 Answer by rcreswick for How do you communicate between eclipse declarative services and Views (ContentProviders) rcreswick 2008-11-11T23:33:25Z 2008-11-11T23:33:25Z <p>One solution is to use a Singleton, and have one, or both, of the Application and Facade register with that Singleton. </p> <p>However, I really don't like the idea of throwing a global variable at this problem. It doesn't seem to make sense -- this must be a common problem, so I'm assuming there is an elegant solution and I just don't know how to search for it.</p> http://stackoverflow.com/questions/262261/eclipse-rcp-client-and-redirecting-the-console-to-a-file/267145#267145 1 Answer by rcreswick for Eclipse RCP client and redirecting the console to a file rcreswick 2008-11-05T23:30:29Z 2008-11-05T23:30:29Z <p>Are you using a logging framework like commons-logging or log4j? If so, those will have options to log to different locations, and that would probably be the best way to manage this. (It would work the same in all environments).</p> <p>If you need help setting up a logger in an rcp/OSGi app, take a look at this question:</p> <p><a href="http://stackoverflow.com/questions/223875/logging-in-eclipseosgi-plugins">http://stackoverflow.com/questions/223875/logging-in-eclipseosgi-plugins</a></p> http://stackoverflow.com/questions/246130/how-do-i-set-up-a-test-project-for-a-eclipse-plugin-project/255368#255368 3 Answer by rcreswick for How do I set up a test project for a Eclipse plugin project rcreswick 2008-11-01T01:19:29Z 2008-11-01T01:19:29Z <p>The recomended way of ding this seems to be with Plug-in fragments:</p> <p><a href="http://rcpquickstart.com/2007/06/20/unit-testing-plug-ins-with-fragments/" rel="nofollow">http://rcpquickstart.com/2007/06/20/unit-testing-plug-ins-with-fragments/</a></p> <p>The fragment gets a high-degree of access to your plugin's code and separates the testing logic / dependencies from the plugin itsself.</p> <p>Now if only I could find a way to test them in an automated system... (see: <a href="http://stackoverflow.com/questions/255370/automating-unit-tests-junit-for-eclipse-plugin-deveopment">http://stackoverflow.com/questions/255370/automating-unit-tests-junit-for-eclipse-plugin-deveopment</a> )</p> http://stackoverflow.com/questions/179955/how-do-you-enable-anti-aliasing-in-arbitrary-java-apps 4 How do you enable anti aliasing in arbitrary Java apps? rcreswick 2008-10-07T19:28:26Z 2008-10-29T18:12:10Z <p>Many Java Apps don't use anti-aliased fonts by default, despite the capability of Swing to provide them. How can you coerce an arbitrary java application to use AA fonts? (both for applications I'm running, and applications I'm developing)</p> http://stackoverflow.com/questions/1717845/buliding-a-war-that-uses-axis2-rampart-for-tomcat/1719046#1719046 Comment by rcreswick on Buliding a WAR that uses Axis2 + Rampart for Tomcat rcreswick 2009-11-12T20:17:06Z 2009-11-12T20:17:06Z There is no static WSDL on the server-side. The client-side uses java2wsdl to get the WSDL, which is then used as input to wsdl2java to create the classes needed for the client. As far as I know, the server-side axis stuff auto-generates WSDL from the service classes at runtime. I'm trying to make an aar right now, and drop that into an axis+rampart install that's in tomcat. I'll give your EAR suggestion a shot if the aar approach doesn't work. Thanks! http://stackoverflow.com/questions/926004/does-apache-rampart-work-with-maven Comment by rcreswick on Does Apache Rampart work with maven? rcreswick 2009-11-11T18:58:55Z 2009-11-11T18:58:55Z I'm having similar problems... our project doesn't copy the mar files into the war's lib directory, which prevents jetty:run-war from working. http://stackoverflow.com/questions/1687898/java-lang-noclassdeffounderror-sun-awt-x11graphicsenvironment-issuses-faced-whil/1688269#1688269 Comment by rcreswick on java.lang.NoClassDefFoundError: sun/awt/X11GraphicsEnvironment issuses faced while running our applet based app on linux rcreswick 2009-11-06T18:07:40Z 2009-11-06T18:07:40Z Great examples! I didn't know about that flag -- thanks for the informative post. http://stackoverflow.com/questions/223013/is-there-a-type-safe-java-implementation-of-reduce/223152#223152 Comment by rcreswick on Is there a type-safe Java implementation of 'reduce'? rcreswick 2009-11-06T18:00:55Z 2009-11-06T18:00:55Z I <i>think</i> there is going to be a companion library for Google Collections that provides functional language tools like this, but for now, this is the best answer I've found. http://stackoverflow.com/questions/854808/using-maven-to-build-deploy-use-projects-with-jni/855017#855017 Comment by rcreswick on Using maven to build/deploy/use projects with JNI. rcreswick 2009-11-06T17:58:18Z 2009-11-06T17:58:18Z To clarify for anyone reading this: the CodeHaus link describes a method that <i>does not</i> require setting LD_LIBRARY_PATH, or any other environment variables. The resulting jar contains all the compiled libraries, and calling code doesn't need to know anything about JNI. http://stackoverflow.com/questions/854808/using-maven-to-build-deploy-use-projects-with-jni/855017#855017 Comment by rcreswick on Using maven to build/deploy/use projects with JNI. rcreswick 2009-11-06T17:57:01Z 2009-11-06T17:57:01Z Thanks! (I know, this is very, very late) The codehaus link works great. http://stackoverflow.com/questions/1396056/what-are-the-java-platform-defaults/1396299#1396299 Comment by rcreswick on What are the java platform defaults? rcreswick 2009-11-06T17:39:07Z 2009-11-06T17:39:07Z Thanks, That, combined with this list: <a href="http://mgrand.home.mindspring.com/java-system-properties.htm" rel="nofollow">mgrand.home.mindspring.com/java-system-properties&hellip;</a> is the best I've found. http://stackoverflow.com/questions/105901/implementing-intellisense-like-behavior-in-custom-editors-for-domain-specific-lan Comment by rcreswick on Implementing IntelliSense-like behavior in custom editors for domain-specific languages rcreswick 2009-11-06T17:32:25Z 2009-11-06T17:32:25Z This was a work project, and I was pulled off to work on another project, so my efforts on this (sortof) died off. Other than that, I think you (Alex) and I are interested in different aspects of 'intellisense'. Rather than working on the actual user interface, I was more concerned with the design behind a general-purpose auto-complete system. (The UI would come later.) http://stackoverflow.com/questions/42557/best-way-to-incorporate-spell-checkers-with-a-build-process Comment by rcreswick on Best way to incorporate spell checkers with a build process rcreswick 2009-09-09T23:44:07Z 2009-09-09T23:44:07Z ah, very good point! http://stackoverflow.com/questions/880438/text-detection-location-libraries Comment by rcreswick on Text detection / location libraries rcreswick 2009-07-24T17:48:03Z 2009-07-24T17:48:03Z not a captcha-breaker, I swear! :) Some use cases: identifying place names from google street view images (to pair pictures of a company with search results), license plate identification, finding (and reading) signs for visually-impaired pedestrians, etc... http://stackoverflow.com/questions/1029462/unmarshaling-xml-with-html-entities-using-jaxb/1033625#1033625 Comment by rcreswick on Unmarshaling xml with html entities using JAXB rcreswick 2009-06-24T15:45:06Z 2009-06-24T15:45:06Z w3.org returned an error code when JAXB tried to retrieve the DTD directly -- even though the url worked in a browser. I surmised that w3.org is blocking access to dtds/etc based on user agents to stop people from accessing their servers from APIs. (w3.org posted a plea for people to stop writing apps that do that a year or so ago: <a href="http://www.w3.org/blog/systeam/2008/02/08/w3c_s_excessive_dtd_traffic" rel="nofollow">w3.org/blog/systeam/&hellip;</a> ) I'm not sure what you mean by &quot;what happened with a remove DTD document?&quot;. http://stackoverflow.com/questions/1029462/unmarshaling-xml-with-html-entities-using-jaxb/1029847#1029847 Comment by rcreswick on Unmarshaling xml with html entities using JAXB rcreswick 2009-06-23T16:16:49Z 2009-06-23T16:16:49Z Since Jaxb abstracts away from the XML parser, I think it should provide some means to fix things that need to be managed at the parser level (maybe just by using dependency injection to supply a different parser). Then again, I was giving JAXB invalid input -- so what did I expect? ;) http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de Comment by rcreswick on Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? rcreswick 2009-06-22T21:07:43Z 2009-06-22T21:07:43Z ah, I (finally) figured out how to make this community editable... I don't have time to evaluate the suggestions below anymore, so if someone <i>can</i>, at least they can put that info into the question proper now (and if needed, I can award the accepted answer--I'm not sure how community questions work wrt. accepted answers) http://stackoverflow.com/questions/67512/best-keyboard-for-custom-dvorak-based-programming-layout/67652#67652 Comment by rcreswick on Best keyboard for custom Dvorak-based programming layout rcreswick 2009-05-12T20:17:41Z 2009-05-12T20:17:41Z Masi: I type ~70wpm (pretty much as fast as I've ever typed). I've never tried to improve my typing speed though (aside from learning to touch-type). 70wpm is faster than my brain usually works, so I've never felt a need to improve it. http://stackoverflow.com/questions/809646/libraries-tutorials-for-manipulating-video-in-java/809687#809687 Comment by rcreswick on Libraries / tutorials for manipulating video in java rcreswick 2009-05-01T00:24:32Z 2009-05-01T00:24:32Z Thanks! I found FMJ on that wikipedia article earlier, but somehow overlooked the xuggle link!