User skaffman - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:51:32Z http://stackoverflow.com/feeds/user/21234 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1803666/how-can-i-generate-xml-from-an-object-hierarchy/1803679#1803679 2 Answer by skaffman for How can i generate xml from an object hierarchy? skaffman 2009-11-26T13:31:55Z 2009-11-26T13:31:55Z <p>The simplest way is to use <a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a>. See <a href="http://xstream.codehaus.org/tutorial.html" rel="nofollow">here</a> for an idea what it does. It can be a bit buggy, but for simple tasks its great. For a more comprehensive (and reliable) technology, then JAXB (part of Java6, see <code>javax.xml.bind</code>) is the better option.</p> http://stackoverflow.com/questions/1803019/is-it-possible-to-have-a-jms-server-without-an-application-server/1803035#1803035 4 Answer by skaffman for Is it possible to have a JMS server without an application server? skaffman 2009-11-26T11:02:15Z 2009-11-26T11:02:15Z <p>Yes, several.</p> <ul> <li><a href="http://www.jboss.org/hornetq" rel="nofollow">HornetQ</a> (recommended)</li> <li><a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a> (which I don't recommend, but is popular)</li> </ul> <p>and several others, but those are are the big ones.</p> http://stackoverflow.com/questions/1802973/calling-controller-methods-once-per-request/1803020#1803020 1 Answer by skaffman for Calling @Controller methods once per request skaffman 2009-11-26T10:58:33Z 2009-11-26T10:58:33Z <p>Sounds like you need a <a href="http://static.springsource.org/spring/docs/2.5.x/reference/beans.html#beans-factory-scopes-request" rel="nofollow">request-scoped controller bean</a>. Spring will create a new instance of the controller for each request, and will initialize the bean each time using the standard mechanisms like <code>@PostConstruct</code>. </p> http://stackoverflow.com/questions/1802926/how-can-i-remove-unwanted-lines-from-jboss-logs/1802974#1802974 0 Answer by skaffman for How can I remove unwanted lines from jboss logs? skaffman 2009-11-26T10:48:22Z 2009-11-26T10:48:22Z <p>JBoss's logging is handled by log4j, and the log4j configuration file is <code>conf/jboss-log4j.xml</code>. Have a look at this, and if necessary read the log4j manual, it should hopefully be fairly self-explanatory. If you need more help, then give us some examples of the lines you want removed.</p> http://stackoverflow.com/questions/1802833/attributeremoved-not-being-called-after-session-invalidate/1802873#1802873 1 Answer by skaffman for attributeRemoved not being called after session.invalidate skaffman 2009-11-26T10:31:22Z 2009-11-26T10:31:22Z <p>When you call <code>session.invalidate()</code>, you're just informing the container that the session should no longer be used. It is not, however, obliged to do anything else, such as removing the session attributes. It will do that eventually, but there's no guarantee that it will do it immediately, and your application shouldn't rely on it happening in a timely manner.</p> http://stackoverflow.com/questions/1802720/hibernate-generatedvalue-correct/1802826#1802826 1 Answer by skaffman for hibernate @GeneratedValue correct? skaffman 2009-11-26T10:19:55Z 2009-11-26T10:19:55Z <p>This is database-dependent. JPA implementations use different ID generators depending on which database system they're using. For example, with Oracle, a single sequence will be created, and that sequence will be used to generate IDs for all entity types. By default, it will not create a sequence for each entity, since there's usually no reason to. The same logic applies to other database systems that use sequences rather than auto-increment columns.</p> <p>I'm not 100% sure if the JPA API lets you change this behaviour, but I know that Hibernate annotations do. However, you haven't told us which database you're using or which JPA implementation you're using, so I can't give you much more advice than that.</p> http://stackoverflow.com/questions/1798232/using-a-custom-servlet-oriented-framework-too-many-servlets-is-this-an-issue/1798283#1798283 4 Answer by skaffman for Using a custom Servlet oriented framework, too many servlets, is this an issue skaffman 2009-11-25T16:46:55Z 2009-11-25T16:46:55Z <p>Spring has the facility to delegate requests to existing legacy Servlets (using <a href="http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/web/servlet/mvc/ServletWrappingController.html" rel="nofollow">ServletWrappingController</a> or <a href="http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/web/servlet/mvc/ServletForwardingController.html" rel="nofollow">ServletForwardingController</a>), if that is what you so desire. </p> <p>So you could have a Spring <code>DispatcherServlet</code> sitting at the front of your legacy servlets, making full use of Spring's request routing facilities. Spring could also give you the facility for more easily sharing stuff between the servlets, but putting shared components in the servlet context for you.</p> http://stackoverflow.com/questions/1792244/argh-cant-get-spring-to-log-sql/1792593#1792593 0 Answer by skaffman for argh - can't get spring to log sql skaffman 2009-11-24T20:05:43Z 2009-11-24T20:05:43Z <p>How are you executing the SQL? Spring won't magically log SQL that gets sent to the database, you have to go through the appropriate channels.</p> <p>For example, if you execute SQL by using <code>JdbcTemplate</code>, either directly or via <code>JdbcDaoSupport</code>, then yes, the SQL will be logged for some operations, but only those operations that involve direct SQL.</p> <p>If you use Hibernate or prepared statements, then Spring never gets to see the SQL itself, and therefore cannot log it.</p> <p>If you posted some sample code that demonstrated how you were executing your SQL, it would help a lot.</p> http://stackoverflow.com/questions/1786086/java-how-to-determine-the-current-load/1786115#1786115 2 Answer by skaffman for Java - how to determine the current load skaffman 2009-11-23T21:28:29Z 2009-11-23T21:40:44Z <p>Tricky to do in a portable way, it would likely depend considerably on your platform.</p> <p>An alternative is to configure your Quartz jobs to run in low-priority threads. Quartz allows you to <a href="http://www.quartz-scheduler.org/docs/configuration/ConfigThreadPool.html" rel="nofollow">configure the thread factory</a>, and if the server is busy, then the thread should be shuffled to the back of the pack until it can be run without getting in the way.</p> <p>Also, if the load spikes in the middle of the job, then the VM will automatically throttle your batch job until the load drops again. It should be self-regulating, which you wouldn't get by manual introspection of the current load.</p> http://stackoverflow.com/questions/1783308/is-it-possible-to-partially-refresh-a-materialized-view-in-oracle/1783339#1783339 1 Answer by skaffman for Is it possible to partially refresh a materialized view in Oracle? skaffman 2009-11-23T14:11:07Z 2009-11-23T14:11:07Z <p>You can partition materialized views just as you can with normal tables. Partition your mview by date, and then you can refresh only the required partition.</p> http://stackoverflow.com/questions/1782464/is-it-possible-to-monitor-jboss-if-it-happens-to-run-out-of-memory/1782477#1782477 1 Answer by skaffman for Is it possible to monitor jboss if it happens to run out of memory? skaffman 2009-11-23T11:11:57Z 2009-11-23T11:11:57Z <p>I would suggest <a href="http://www.hyperic.com/" rel="nofollow">HypericHQ</a>. It's a very good standalone application that can monitor your JBoss instances, alert you when the permgen or heap gets low, and can even trigger a restart if required. It's a complex beast, but worth the investment.</p> http://stackoverflow.com/questions/794354/jaxbcontext-initialization-speedup/1782150#1782150 0 Answer by skaffman for JAXBContext initialization speedup? skaffman 2009-11-23T09:55:12Z 2009-11-23T09:55:12Z <p>The JAXB reference implementation has a sort-of-undocumented system property for exactly this reason:</p> <pre><code>-Dcom.sun.xml.bind.v2.runtime.JAXBContextImpl.fastBoot=true </code></pre> <p>This instructs JAXB to skip the expensive process of pre-caching the various reflection muscles it needs to do the job. Instead, it will do all the reflection when the context gets used. This makes for a slower runtime, but considerably faster initialization, especially for large numbers of classes.</p> <p>However, one part of the speed problem is unavoidable, and that's the fact that JAXB has to load every single one of your classes, and classloading is slow. This is apparent if you create a 2nd context immediately after the first, with the same configuration - you'll see it's much, much faster, having already loaded the classes.</p> <p>Also, you say that you have multiple JAXBCOntext instances because you have multiple contextpaths. Did you realise that you can put multiple context paths into a single context? You just need to pass them all as a semicolon-delimited string when you initialize the context, e.g.</p> <pre><code>JaxbContext.newInstance("a.b.c;x.y.z"); </code></pre> <p>will load the contexts <code>a.b.c</code> and <code>x.y.z</code>. It likely won't make any difference to performance, though.</p> http://stackoverflow.com/questions/1782104/how-to-reuse-existing-connection-in-open-session-in-view-pattern-implementation-o/1782118#1782118 1 Answer by skaffman for How to reuse existing connection in Open Session In view pattern implementation of Hibernate? skaffman 2009-11-23T09:48:13Z 2009-11-23T09:48:13Z <p>Advice: don't implement it yourself, use an existing one, like <a href="http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/orm/hibernate3/support/OpenSessionInViewFilter.html" rel="nofollow">Spring's</a>:</p> <blockquote> <p>Servlet 2.3 Filter that binds a Hibernate Session to the thread for the entire processing of the request. Intended for the "Open Session in View" pattern, i.e. to allow for lazy loading in web views despite the original transactions already being completed.</p> </blockquote> <p>Failing that, look at the source code for the above to see how Spring does it.</p> http://stackoverflow.com/questions/1780341/do-i-need-class-elements-in-persistence-xml/1780408#1780408 1 Answer by skaffman for Do I need <class> elements in persistence.xml? skaffman 2009-11-22T23:29:58Z 2009-11-22T23:29:58Z <p>Out-of-the-box JPA does have auto-detection of entities, but it's extremely limited. The <a href="http://java.sun.com/javaee/5/docs/tutorial/doc/bnbqw.html#bnbrj" rel="nofollow">JavaEE tutorial</a> says:</p> <blockquote> <p>If you package the persistent unit as a set of classes in an EJB JAR file, persistence.xml should be put in the EJB JAR’s META-INF directory.</p> <p>If you package the persistence unit as a set of classes in a WAR file, persistence.xml should be located in the WAR file’s WEB-INF/classes/META-INF directory.</p> </blockquote> <p>In other words, as long as you put your classes exactly where the JPA spec expects to find them, it should auto-detect them without you having to list them individually in <code>persistence.xml</code></p> <p>JPA becomes much more palatable when you use Spring, which uses <a href="http://static.springsource.org/spring/docs/2.5.x/reference/orm.html#orm-jpa-setup" rel="nofollow">its own JPA integration</a> to bring much more powerful and flexible classpath scanning to the party. </p> http://stackoverflow.com/questions/1780112/javamail-vs-sendmail-performance-during-bulk-email/1780128#1780128 3 Answer by skaffman for javamail vs sendmail performance during bulk email skaffman 2009-11-22T21:53:45Z 2009-11-22T21:53:45Z <p>You're not comparing like with like. JavaMail talks SMTP to hand off to the nearest mail server. Sendmail is a Mail Transfer agent responsible for routing emails to their destination.</p> <p>A common setup is a java application using JavaMail to relay email via SMTP to a Sendmail server. The two are not competitors, they're used together. A sendmail server should be able to accept deliveries from javamail faster than any java application can produce them, but then it delivers them asynchronously at its own rate.</p> http://stackoverflow.com/questions/1777878/is-there-a-java-xml-api-that-can-parse-a-document-without-resolving-character-ent/1778304#1778304 1 Answer by skaffman for Is there a Java XML API that can parse a document without resolving character entities? skaffman 2009-11-22T09:49:21Z 2009-11-22T09:49:21Z <p>The STaX API has support for the notion of not replacing character entity references, by way of the <a href="http://java.sun.com/javase/6/docs/api/javax/xml/stream/XMLInputFactory.html#IS%5FREPLACING%5FENTITY%5FREFERENCES" rel="nofollow">IS_REPLACING_ENTITY_REFERENCES</a> property:</p> <blockquote> <p>Requires the parser to replace internal entity references with their replacement text and report them as characters</p> </blockquote> <p>This can be set into an <code>XmlInputFactory</code>, which is then in turn used to construct an <code>XmlEventReader</code> or <code>XmlStreamReader</code>. However, the API is careful to say that this property is only intended to <em>force</em> the implementation to perform the replacement, rather than forcing it to <em>not</em> replace them. Still, it's got to be worth a try.</p> http://stackoverflow.com/questions/1776977/do-rmi-and-web-services-both-use-a-socket-connection/1777082#1777082 2 Answer by skaffman for Do RMI and web services both use a socket connection? skaffman 2009-11-21T23:01:32Z 2009-11-21T23:01:32Z <p>If a single remote call is taking 5 minutes to complete, then it's probably because the operation implementing that call is slow, not because the web service layer itself is slow. If you were to re-wrap the operation with RMI, it'll likely be just as slow.</p> <p>The performance benefit of RMI over SOAP is only really going to be apparent when you have a large number of operations being called, rather than for the speed of any one operation, simply because RMI is more efficient than SOAP. But it won't magically make a slow operation go faster.</p> <p>As for your question regarding sockets, yes, RMI and SOAP both use socket-level protocols when you go down far enough (IIOP or JRMP in the case of RMI, HTTP in the case of SOAP). That isn't really relevant to your problem, though.</p> http://stackoverflow.com/questions/1776457/java-client-server-application-with-sockets/1776527#1776527 1 Answer by skaffman for Java client/server application with sockets? skaffman 2009-11-21T19:43:08Z 2009-11-21T19:43:08Z <p>If, as you say, matlab can run java code from within itself, then there should be no reason that you can't use <a href="http://java.sun.com/javase/technologies/core/basic/rmi/index.jsp" rel="nofollow">RMI</a> to communicate between matlab and java server. RMI is <em>vastly</em> easier than raw socket programming.</p> http://stackoverflow.com/questions/1776457/java-client-server-application-with-sockets/1776489#1776489 1 Answer by skaffman for Java client/server application with sockets? skaffman 2009-11-21T19:33:12Z 2009-11-21T19:33:12Z <p>If you decide to go with a custom socket-level protocol, then I can suggest that you use <a href="http://www.jboss.org/netty/" rel="nofollow">JBoss Netty</a> at the java end:</p> <blockquote> <p>In other words, Netty is a NIO client server framework which enables quick and easy development of network applications such as protocol servers and clients. It greatly simplifies and streamlines network programming such as TCP and UDP socket server.</p> </blockquote> http://stackoverflow.com/questions/1776254/how-do-i-get-the-referenced-libraries-folder-back-in-the-eclipse-sdk/1776271#1776271 0 Answer by skaffman for How do I get the "referenced libraries" folder back In the eclipse sdk? skaffman 2009-11-21T18:17:17Z 2009-11-21T18:17:17Z <p>Sounds like you've accidentally enabled a filter on the explorer view. Bring up the "view menu" item (the downward-pointing arrow at the top right of the explorer pane), pick "filters", and make sure "libraries from external" and/or "libraries from project" is not selected.</p> http://stackoverflow.com/questions/1776142/getoutputstream-has-already-been-called-for-this-response/1776161#1776161 7 Answer by skaffman for getOutputStream() has already been called for this response skaffman 2009-11-21T17:43:39Z 2009-11-21T17:51:34Z <p>The issue here is that your JSP is talking directly to the response <code>OutputStream</code>. This technically isn't forbidden, but it's very much not a good idea.</p> <p>Specifically, you call <code>response.getOutputStream()</code> and write data to that. Later, when the JSP engine tries to flush the response, it fails because your code has already "claimed" the response. An application can either call <code>getOutputStream</code> or <code>getWriter</code> on any given response, it's not allowed to do both. JSP engines use <code>getWriter</code>, and so you cannot call <code>getOutputStream</code>.</p> <p>You should be writing this code as a Servlet, not a JSP. JSPs are only really suitable for textual output as contained in the JSP. You can see that there's no actual text output in your JSP, it only contains java. </p> http://stackoverflow.com/questions/1775881/where-is-jsps-java-file/1775895#1775895 3 Answer by skaffman for where is jsp's java file skaffman 2009-11-21T16:11:01Z 2009-11-21T16:11:01Z <p>They're kept under Tomcat's <code>work</code> directory, e.g. </p> <pre><code>work/Catalina/localhost/_/org/apache/jsp/login_jsp.java </code></pre> <p>The specifics of the path my vary, from version to version, but it's always under <code>work</code></p> http://stackoverflow.com/questions/1775202/how-to-stream-large-files-using-jaxb-marshaller/1775505#1775505 2 Answer by skaffman for How to stream large Files using JAXB Marshaller? skaffman 2009-11-21T13:39:15Z 2009-11-21T13:39:15Z <p>As you've discovered, if a class does not have the <code>@XmlRootElement</code> annotation, then you can't pass an instance of that class to the marshaller. However, there is an easy way around this - wrap the object in a <code>JAXBElement</code>, and pass that to the marshaller instead.</p> <p>Now <code>JAXBElement</code> is a rather clumsy beast, but what it does is contains the element name and namespace of the object that you want to marshal, information which would normally be contained in the <code>@XmlRootElement</code> annotation. As long as you have the name and namespace, you can construct a <code>JAXBElement</code> to wrap your POJO, and marshal that.</p> <p>If your POJOs were generated by XJC, then it will also have generated an <code>ObjectFactory</code> class which contains factory methods for building <code>JAXBElement</code> wrappers for you, making things a bit easier.</p> <p>You'll still have to use the <code>JAXB_FRAGMENT</code> property for the repeating inner elements, otherwise JAXB will generate stuff like the XML prolog each time, which you don't want.</p> http://stackoverflow.com/questions/1775429/whats-javaccs-advantage-versus-antlr/1775441#1775441 3 Answer by skaffman for What's JavaCC's ADVANTAGE versus ANTLR skaffman 2009-11-21T13:07:51Z 2009-11-21T13:07:51Z <p>JavaCC doesn't require its own runtime JAR (the code it generates runs on its own), where ANTLR does.</p> http://stackoverflow.com/questions/1771166/access-properties-file-programatically-with-spring/1771229#1771229 4 Answer by skaffman for Access properties file programatically with Spring? skaffman 2009-11-20T15:29:40Z 2009-11-20T15:29:40Z <p>How about <a href="http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/core/io/support/PropertiesLoaderUtils.html" rel="nofollow">PropertiesLoaderUtils</a>?</p> <pre><code>Resource resource = new ClasspathResource("/my.properties"); Properties props = PropertiesLoaderUtils.loadProperties(resource); </code></pre> http://stackoverflow.com/questions/1769953/where-i-can-find-good-spring-project-example-with-hibernate/1769979#1769979 0 Answer by skaffman for Where I can find good Spring project example with Hibernate? skaffman 2009-11-20T11:46:34Z 2009-11-20T11:46:34Z <p>Spring comes with a comprehensive sample application called <a href="http://static.springsource.org/spring/docs/2.5.x/reference/testing.html#testing-examples-petclinic" rel="nofollow">PetClinic</a>, which exercises the full Spring stack. This includes a Hibernate layer, and should be considered "best practice" for integrating Hibernate and Spring.</p> http://stackoverflow.com/questions/1768819/javahow-to-hide-static-resources-like-html-images-from-user-on-jboss-platfrom/1769597#1769597 1 Answer by skaffman for java:how to hide static resources like html ,images from user on jboss platfrom? skaffman 2009-11-20T10:27:44Z 2009-11-20T10:27:44Z <p>Anything put under the webapp's <code>WEB-INF</code> directory cannot be directly accessed by the browser. </p> http://stackoverflow.com/questions/1769532/getting-server-name-in-contextloaderlistener/1769561#1769561 0 Answer by skaffman for Getting server name in ContextLoaderListener skaffman 2009-11-20T10:19:41Z 2009-11-20T10:19:41Z <p><code>HttpServletRequest.getServerName()</code>:</p> <blockquote> <p>Returns the host name of the server to which the request was sent.</p> </blockquote> <p>Its not a property of the server itself, it's a property of the request. It makes no sense outside of the context of the <code>ContextLoaderListener</code>.</p> <p>What information are you actually looking for?</p> http://stackoverflow.com/questions/1768762/java-lang-nosuchmethoderror-org-hibernate-cache-cacheexception-in-hibernate-base/1769062#1769062 0 Answer by skaffman for java.lang.NoSuchMethodError: org.hibernate.cache.CacheException in Hibernate Based Application on Linux Server skaffman 2009-11-20T08:36:01Z 2009-11-20T08:36:01Z <p>You have two copies of <code>org.hibernate.cache.CacheException</code> in your classpath. Either you have two copies of hibernate, or you have a library which incloudes bits of the hibernate library. You'll need to hunt through your deployment to find it.</p> http://stackoverflow.com/questions/1764855/best-way-to-define-css-styles-for-mobile-devices/1766114#1766114 0 Answer by skaffman for Best way to define CSS styles for mobile devices? skaffman 2009-11-19T19:57:33Z 2009-11-19T19:57:33Z <p><a href="http://mobiforge.com" rel="nofollow">http://mobiforge.com</a> is a good resource for best practise mobile application development, including their <a href="http://mobiforge.com/starting/story/dotmobi-mobile-web-developers-guide" rel="nofollow">developer's guide</a>.</p> http://stackoverflow.com/questions/1804828/hibernate-transaction-question Comment by skaffman on Hibernate Transaction question skaffman 2009-11-26T17:30:50Z 2009-11-26T17:30:50Z If your app is the sole user of the datasource, and this is the only datasource that it uses, then JTA is overkill. Hibernate's native JDBC transactions (which is the default) would be more than enough, and much easier to deal with. http://stackoverflow.com/questions/1804828/hibernate-transaction-question Comment by skaffman on Hibernate Transaction question skaffman 2009-11-26T17:16:07Z 2009-11-26T17:16:07Z There are any number of reasons for this, JTA is notoriously complicated. It's hard to say anything constructive from this information. http://stackoverflow.com/questions/1803666/how-can-i-generate-xml-from-an-object-hierarchy/1803679#1803679 Comment by skaffman on How can i generate xml from an object hierarchy? skaffman 2009-11-26T14:21:11Z 2009-11-26T14:21:11Z See the section on &quot;Attribute aliasing&quot; on <a href="http://xstream.codehaus.org/alias-tutorial.html" rel="nofollow">xstream.codehaus.org/alias-tutorial.html</a> http://stackoverflow.com/questions/1802973/calling-controller-methods-once-per-request/1803020#1803020 Comment by skaffman on Calling @Controller methods once per request skaffman 2009-11-26T11:31:08Z 2009-11-26T11:31:08Z Yes: <a href="http://static.springsource.org/spring/docs/2.5.x/reference/beans.html#beans-factory-scopes-other-injection" rel="nofollow">static.springsource.org/spring/docs/&hellip;</a> http://stackoverflow.com/questions/1803019/is-it-possible-to-have-a-jms-server-without-an-application-server/1803035#1803035 Comment by skaffman on Is it possible to have a JMS server without an application server? skaffman 2009-11-26T11:26:04Z 2009-11-26T11:26:04Z I've tried using ActiveMQ in versions 3, 4 and 5, and every time I've abandoned it due to being horribly buggy and unstable. I've learned my lesson. Hornet is quite tasty, though, and goes for stability over features. http://stackoverflow.com/questions/1802973/calling-controller-methods-once-per-request/1803020#1803020 Comment by skaffman on Calling @Controller methods once per request skaffman 2009-11-26T11:12:58Z 2009-11-26T11:12:58Z Spring controllers are by default shared between threads and requests. If you have per-request state in your controller beans, then you should not share them between requests, and request-scoped beans are the cleanest and safest way to handle this. http://stackoverflow.com/questions/1802833/attributeremoved-not-being-called-after-session-invalidate/1802873#1802873 Comment by skaffman on attributeRemoved not being called after session.invalidate skaffman 2009-11-26T11:00:27Z 2009-11-26T11:00:27Z It should notify them when they do get unbound, but that could happen any time after the session is invalidated, with no guarantees as to when. http://stackoverflow.com/questions/1798401/annotations-of-annotations-in-java-5-6 Comment by skaffman on Annotations of Annotations in Java 5/6 skaffman 2009-11-25T17:15:46Z 2009-11-25T17:15:46Z Annotations don't work like that, I'm afraid. There's no &quot;inheritance&quot; like what you're looking for, it's up to Hibernate to do that explicitly, which won't happen because it's a custom annotation. http://stackoverflow.com/questions/1797378/some-upvotes-please Comment by skaffman on Some upvotes please skaffman 2009-11-25T14:47:40Z 2009-11-25T14:47:40Z I suggest leaving this one open to see if we can get him down to zero http://stackoverflow.com/questions/1795778/are-there-tools-to-analyse-large-java-heap-dumps-without-loading-the-complete-hpr Comment by skaffman on Are there tools to analyse large Java heap dumps without loading the complete hprof file? skaffman 2009-11-25T09:55:08Z 2009-11-25T09:55:08Z I doubt that this is possible, but I'll be curious to see if it is. http://stackoverflow.com/questions/1792737/in-process-soap-service-server-for-java/1793280#1793280 Comment by skaffman on In-process SOAP service server for Java skaffman 2009-11-25T08:30:59Z 2009-11-25T08:30:59Z There's also Jetty (<a href="http://www.mortbay.org/jetty/" rel="nofollow">mortbay.org/jetty</a>) which can be run in embedded mode. http://stackoverflow.com/questions/1792737/in-process-soap-service-server-for-java Comment by skaffman on In-process SOAP service server for Java skaffman 2009-11-24T20:36:39Z 2009-11-24T20:36:39Z Why would you want to do this? The <i>only</i> good reason for SOAP is for communicating between applications - why on earth would you want your application to talk to itself via SOAP? http://stackoverflow.com/questions/1792134/a-colleague-said-dont-use-java-util-vector-anymore-why-not Comment by skaffman on A colleague said don't use java.util.Vector anymore - why not? skaffman 2009-11-24T20:08:41Z 2009-11-24T20:08:41Z It's curious that <code>Vector</code> has not been deprecated. I suppose since there is no one-for-one replacement, they haven't done so. http://stackoverflow.com/questions/1790799/extreme-programming-slang-or-specific-lingo Comment by skaffman on Extreme Programming "Slang" or specific lingo skaffman 2009-11-24T15:34:51Z 2009-11-24T15:34:51Z You already asked this once, and it was closed. <a href="http://stackoverflow.com/questions/1790472/extreme-programming-metaphors-closed" rel="nofollow" title="extreme programming metaphors closed">stackoverflow.com/questions/1790472/&hellip;</a> http://stackoverflow.com/questions/1790423/are-my-assumptions-about-configuration-correct Comment by skaffman on Are my assumptions about configuration correct? skaffman 2009-11-24T15:29:22Z 2009-11-24T15:29:22Z Early releases of Spring 2.5.x were a bit wobbly. Strongly advise you upgrade to 2.5.6, which is rock solid.