User toolkit - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T20:36:26Zhttp://stackoverflow.com/feeds/user/3295http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1830886/vim-executing-a-list-of-editor-commands/1831009#18310094Answer by toolkit for vim: Executing a list of editor commandstoolkit2009-12-02T06:27:21Z2009-12-03T16:33:12Z<p><strong>(Update: s/buffer/register/g)</strong></p>
<p>If you can yank all of the commands you want to run into a register, then execute the register ?</p>
<p><a href="http://www.bo.infn.it/alice/alice-doc/mll-doc/linux/vi-ex/node24.html" rel="nofollow">http://www.bo.infn.it/alice/alice-doc/mll-doc/linux/vi-ex/node24.html</a></p>
<p>For example, if you have a file like:</p>
<pre><code>abc
def
ghi
dd
dd
</code></pre>
<p>Then do </p>
<pre><code>:g/dd/y A
</code></pre>
<p>This yanks all lines with dd and appends into register a</p>
<p>Then if you are on the first line of the file, and type:</p>
<pre><code>@a
</code></pre>
<p>Then 2 lines will now be deleted, and the file should look like:</p>
<pre><code>ghi
dd
dd
</code></pre>
http://stackoverflow.com/questions/1761377/in-what-order-are-the-different-parts-of-a-class-initialized-when-a-class-is-load/1761428#17614283Answer by toolkit for In what order are the different parts of a class initialized when a class is loaded in the JVM?toolkit2009-11-19T07:06:11Z2009-11-19T07:06:11Z<p>How about the <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/execution.html" rel="nofollow">JLS</a>, specifically section 12.4?</p>
http://stackoverflow.com/questions/1718380/implementing-spring-mvc-3-0-controller/1718633#17186330Answer by toolkit for Implementing Spring MVC 3.0 controllertoolkit2009-11-11T22:47:50Z2009-11-11T22:56:12Z<p>Have you created your helloWorld.jsp page?</p>
<p>I tried out your code (NB: using 2.5.6), and saw a 404 on the browser, and the following error message in the server log:</p>
<pre><code>File "/path/to/my/WEB-INF/helloWorld.jsp" not found
</code></pre>
<p>Where <code>/path/to/my</code> will be different for your env.</p>
<p>Without helloWorld.jsp, the view resolver will fail. Adding this jsp, and all is well.</p>
http://stackoverflow.com/questions/302089/git-plugin-for-eclipse8Git plugin for eclipsetoolkit2008-11-19T14:47:23Z2009-11-08T18:59:18Z
<p>Hi there,</p>
<p>I was intending to have a play with git, and was wondering if anyone had used the <a href="http://git.or.cz/gitwiki/EclipsePlugin" rel="nofollow">git plugin for eclipse</a></p>
<p>I see it's at version 0.3.1, and was wondering if anyone knew how stable it was / any gotchas?</p>
<p>Thanks...</p>
http://stackoverflow.com/questions/1662304/how-do-i-parse-an-xml-file-with-commons-digester-and-have-it-populate-a-java-util/1662742#16627422Answer by toolkit for How do I parse an xml file with commons Digester and have it populate a java.util.Date object?toolkit2009-11-02T18:01:24Z2009-11-02T18:01:24Z<p>Should be able to register a DateConverter, and all should work:</p>
<pre><code>import org.apache.commons.beanutils.Converter;
class MyDateConverter implements Converter {
@Override
public Object convert(Class clazz, Object value) {
if (clazz.equals(Date.class)) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
try {
return sdf.parse((String) value);
} catch (ParseException pe) {
throw new IllegalArgumentException(pe);
} catch (ClassCastException cce) {
throw new IllegalArgumentException(cce);
}
} else {
throw new IllegalArgumentException("Expected Date class");
}
}
}
......
import org.apache.commons.beanutils.ConvertUtils;
@Test
public void testXmlRules() throws Exception {
ConvertUtils.register(new MyDateConverter(), Date.class);
Digester digester = DigesterLoader.createDigester(new InputSource(this
.getClass().getResourceAsStream("rules.xml")));
Person person = (Person) digester.parse(this.getClass()
.getResourceAsStream("person.xml"));
Assert.assertEquals("Joe Dirt", person.getName());
Assert.assertEquals("123-45-6789", person.getSsn());
Assert.assertEquals(new SimpleDateFormat("dd/MM/yyyy")
.parse("07/04/1981"), person.getDob());
}
</code></pre>
http://stackoverflow.com/questions/1659986/java-parameterized-runnable/1660009#1660009-1Answer by toolkit for Java: Parameterized Runnabletoolkit2009-11-02T08:20:39Z2009-11-02T10:12:34Z<p>Runnable isn't meant to be called directly by client code like <code>foo.run()</code> which would run sequentially in the current thread.</p>
<p>From the <a href="http://www.j2ee.me/javase/6/docs/api/java/lang/Runnable.html" rel="nofollow">Runnable API</a>:</p>
<blockquote>
<p>The Runnable interface should be
implemented by any class whose
instances are intended to be executed
by a thread. The class must define a
method of no arguments called run.</p>
<p>This interface is designed to provide
a common protocol for objects that
wish to execute code while they are
active. For example, Runnable is
implemented by class Thread. Being
active simply means that a thread has
been started and has not yet been
stopped.</p>
<p>In addition, Runnable provides the
means for a class to be active while
not subclassing Thread. A class that
implements Runnable can run without
subclassing Thread by instantiating a
Thread instance and passing itself in
as the target. In most cases, the
Runnable interface should be used if
you are only planning to override the
run() method and no other Thread
methods. This is important because
classes should not be subclassed
unless the programmer intends on
modifying or enhancing the fundamental
behavior of the class.</p>
</blockquote>
<p>Instead, you create a new Thread instance based on your runnable, and then call <code>bar.start()</code>. It is then the JVM's responsibility to call <code>run()</code> in this separate thread.</p>
<p>Example:</p>
<pre><code> public class Foo<E> implements Runnable {
private final E e;
public Foo(E e) { ... }
@Override
public void run() {
do something with e.
}
}
Foo<String> foo = new Foo("hello");
Thread bar = new Thread(foo);
bar.start();
</code></pre>
http://stackoverflow.com/questions/610442/eclipse-maven-plugin-fails-to-create-groovy-maven-archetype-project2Eclipse Maven Plugin fails to create groovy-maven-archetype projecttoolkit2009-03-04T13:01:22Z2009-10-31T21:33:31Z
<p>I have installed the Maven for Eclipse plugin from Sonatype.</p>
<p>(update site: <a href="http://m2eclipse.sonatype.org/update/" rel="nofollow">http://m2eclipse.sonatype.org/update/</a>)</p>
<p>I am creating a Maven project, and choosing to use the <code>groovy-maven-archetype</code> as my starting point.</p>
<p>However, halfway through, I am seeing:</p>
<pre><code>04/03/09 12:52:28 GMT: [FATAL ERROR]
org.codehaus.mojo.groovy.stubgen.GenerateStubsMojo#execute()
caused a linkage error (java.lang.NoSuchMethodError). Check the realms:
... snip ...
Realm ID: plexus.core
org.codehaus.plexus.PlexusContainer.createChildContainer
(Ljava/lang/String;Ljava/util/List;Ljava/util/Map;)
Lorg/codehaus/plexus/PlexusContainer;
</code></pre>
<p>How can I fix this?</p>
http://stackoverflow.com/questions/1645961/built-in-java-classes-methods-to-convert-between-binary-decimal-and-octal/1645997#16459970Answer by toolkit for built-in Java classes/methods to convert between binary, decimal, and octal?toolkit2009-10-29T19:26:21Z2009-10-29T19:26:21Z<p>How about: <a href="http://java.sun.com/javase/6/docs/api/java/lang/Integer.html#parseInt%28java.lang.String,%20int%29" rel="nofollow">parseInt(String s, int radix)</a></p>
<pre><code>parseInt("-FF", 16) returns -255
parseInt("1100110", 2) returns 102
</code></pre>
http://stackoverflow.com/questions/1644593/unix-compare-two-folders-which-has-many-files-inside-contents/1644605#16446050Answer by toolkit for Unix-Compare two folders which has many files inside contentstoolkit2009-10-29T15:38:29Z2009-10-29T15:38:29Z<p>Could you use <a href="http://www.computerhope.com/unix/udircmp.htm" rel="nofollow"><code>dircmp</code></a> ?</p>
http://stackoverflow.com/questions/1643850/regex-for-string-format/1643952#16439520Answer by toolkit for RegEx for String.Formattoolkit2009-10-29T14:01:31Z2009-10-29T14:01:31Z<p>(Similar to Tim's answer)</p>
<p>Something like:</p>
<pre><code>^[^{}()]*(\{0})[^{}()]*$
</code></pre>
<p>Tested at <a href="http://www.regular-expressions.info/javascriptexample.html" rel="nofollow">http://www.regular-expressions.info/javascriptexample.html</a></p>
http://stackoverflow.com/questions/1642575/java-is-there-any-simpler-way-to-parse-array-elements-from-string/1642685#16426850Answer by toolkit for Java: Is there any simpler way to parse array elements from string?toolkit2009-10-29T10:11:08Z2009-10-29T10:11:08Z<p>Something like:</p>
<pre><code>import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class IdNamePairs {
private List<Integer> ids = new ArrayList<Integer>();
private List<String> names = new ArrayList<String>();
public IdNamePairs(String string) {
Pattern p = Pattern.compile("\\[([^\\]]+)\\]");
Matcher m = p.matcher(string);
while (m.find()) {
String tuple = m.group(1);
String[] idName = tuple.split(",\\s*");
ids.add(Integer.valueOf(idName[0]));
names.add(idName[1]);
}
}
public List<Integer> getIds() {
return Collections.unmodifiableList(ids);
}
public List<String> getNames() {
return Collections.unmodifiableList(names);
}
public static void main(String[] args) {
String str = "[11, john,][23, Adam,][88, Angie,]";
IdNamePairs idNamePairs = new IdNamePairs(str);
System.out.println(Arrays.toString(idNamePairs.getIds().toArray()));
System.out.println(Arrays.toString(idNamePairs.getNames().toArray()));
}
}
</code></pre>
http://stackoverflow.com/questions/1639604/recommended-to-use-lingo-with-spring/1639649#16396491Answer by toolkit for Recommended to use Lingo with Spring?toolkit2009-10-28T19:48:42Z2009-10-28T19:48:42Z<p>Yes, I would take a look at <a href="http://www.springsource.org/spring-integration" rel="nofollow">Spring Integration</a>. Check out the comprehensive documentation <a href="http://static.springsource.org/spring-integration/reference/htmlsingle/spring-integration-reference.html" rel="nofollow">here</a>, in particular the section on <a href="http://static.springsource.org/spring-integration/reference/htmlsingle/spring-integration-reference.html#jms" rel="nofollow">JMS</a>.</p>
http://stackoverflow.com/questions/1639512/yacc-equivalent-for-java/1639566#16395664Answer by toolkit for Yacc equivalent for Javatoolkit2009-10-28T19:35:04Z2009-10-28T19:35:04Z<p>In the past, I've used ANLTR for both lexer and parser, and the JFlex homepage says it can interoperate with ANTLR. I wouldn't say that ANTLR's online documentation is that great. I ended up investing in <a href="http://www.pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">'The Definitive ANTLR reference'</a>, which helped considerably.</p>
http://stackoverflow.com/questions/1635451/where-is-the-session-located-in-client-browser-or-at-the-server-side-and-why/1635524#16355244Answer by toolkit for Where is the session located ? in client browser or at the server side ? and why it is used in hibernate ?toolkit2009-10-28T06:42:14Z2009-10-28T10:58:31Z<p>Update:
Apologies, my links are to Java APIs (must have missed the nhibernate tag). Regardless, there will be more than one type of session for .NET also.</p>
<p>There will typically be more than one type of session:</p>
<ul>
<li>The <a href="http://java.sun.com/webservices/docs/1.5/api/javax/servlet/http/HttpSession.html" rel="nofollow">HttpSession</a> is a server-side object:</li>
</ul>
<blockquote>
<p>Provides a way to identify a user
across more than one page request or
visit to a Web site and to store
information about that user.</p>
</blockquote>
<ul>
<li>The hibernate <a href="https://www.hibernate.org/hib%5Fdocs/v3/api/org/hibernate/Session.html" rel="nofollow">Session</a> is also a server-side object:</li>
</ul>
<blockquote>
<p>The lifecycle of a Session is bounded
by the beginning and end of a logical
transaction. (Long transactions might
span several database transactions.)</p>
<p>The main function of the Session is to
offer create, read and delete
operations for instances of mapped
entity classes.</p>
</blockquote>
http://stackoverflow.com/questions/1636297/how-to-change-the-folder-path-for-swp-files-in-vim/1636329#16363292Answer by toolkit for How to change the folder path for swp files in Vimtoolkit2009-10-28T10:17:00Z2009-10-28T10:17:00Z<p>Looks like you need to set the directory option:</p>
<p><a href="http://vimdoc.sourceforge.net/htmldoc/options.html#%27directory%27" rel="nofollow">http://vimdoc.sourceforge.net/htmldoc/options.html#%27directory%27</a></p>
<p><a href="http://vimdoc.sourceforge.net/htmldoc/recover.html#swap-file" rel="nofollow">http://vimdoc.sourceforge.net/htmldoc/recover.html#swap-file</a></p>
http://stackoverflow.com/questions/1633763/can-anyone-help-with-my-2-java-issues-i-have-1-is-try-catch-2-is-where-to-put-a/1633989#16339890Answer by toolkit for Can anyone help with my 2 Java issues I have. 1 is try catch 2 is where to put a piece of code.toolkit2009-10-27T22:17:53Z2009-10-27T23:58:00Z<p>Some general comments.</p>
<p>You should move most of this code out of the Time() constructor, and into a main method. This code doesn't have anything to do with instantiating a time object.</p>
<p>Your while loop should enclose all that you would like to repeat. In this case, asking the user for a depart time, an arrival time, and calculating the difference.</p>
<p>You have duplicated code, why not have a method to ask the user to input a time String, and parse it. Something like</p>
<pre><code>public class Time {
private int hours;
private int minutes;
etc...
}
// in main
while (true) {
Time departTime = askUser("depart");
Time arriveTime = askUser("arrive");
calculateDifference(departTime, arriveTime);
}
// elsewhere
public Time askUser(String name) {
String theTime = JOptionPane.showInputDialog(
String.format("Enter %s Time in 24 hour time:", name));
Time result = parseTime(theTime, name);
return result;
}
</code></pre>
http://stackoverflow.com/questions/1632256/transactionproxyfactorybean-when-switching-from-configuration-based-service-beans/1634049#16340491Answer by toolkit for TransactionProxyFactoryBean when switching from configuration-based Service beans to annotation based service beanstoolkit2009-10-27T22:34:32Z2009-10-27T22:41:07Z<p>If you have two different resources that need to be in the same transaction, then you will need to use JTA. See my answer to an earlier question <a href="http://stackoverflow.com/questions/75700/jpa-multiple-transaction-managers/78479#78479">here</a>. Your config would need to look something like:</p>
<pre><code><tx:annotation-driven transaction-manager="txManager"/>
<bean id="txManager"
class="org.springframework.transaction.jta.JtaTransactionManager">
<property name="transactionManagerName" value="appserver/jndi/path" />
</bean>
</code></pre>
<p>Where <code>appserver/jndi/path</code> would need to be replaced with the JNDI path of the JTA transaction manager that comes with your application server (although you can use a standalone JTA transaction manager such as JOTM as well). Typical paths as mentioned in the <a href="http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/transaction/jta/JtaTransactionManager.html" rel="nofollow">2.5.x API</a> are:</p>
<ul>
<li>"java:comp/UserTransaction" for Resin 2.x, Oracle OC4J (Orion), JOnAS (JOTM), BEA WebLogic</li>
<li>"java:comp/TransactionManager" for Resin 3.x</li>
<li>"java:appserver/TransactionManager" for GlassFish</li>
<li>"java:pm/TransactionManager" for Borland Enterprise Server and Sun Application Server (Sun ONE 7 and later)</li>
<li>"java:/TransactionManager" for JBoss Application Server </li>
</ul>
http://stackoverflow.com/questions/1620612/problems-using-eclipse-hibernate-plugin-could-not-locate-sessionfactory-in-jndi/1620728#16207280Answer by toolkit for Problems using eclipse Hibernate plugin - could not locate sessionfactory in JNDItoolkit2009-10-25T12:09:00Z2009-10-25T19:48:09Z<p>You can either specify all the connection, password, username etc. directly in a hibernate configuration file, and then load using code like:</p>
<pre><code>Configuration cfg = new Configuration();
cfg.configure();
SessionFactory sf = cfg.buildSessionFactory();
</code></pre>
<p>Or, you can obtain it from JNDI. This allows your sysadmin to change the connection, password, username etc. after deployment, by registering a different SessionFactory with JNDI.</p>
<p>You would need to consult your application server's documentation on how to specify JNDI resources with the application server.</p>
http://stackoverflow.com/questions/1611853/regular-expression-problem-in-java/1611977#16119770Answer by toolkit for Regular Expression problem in Javatoolkit2009-10-23T08:00:51Z2009-10-23T08:00:51Z<p>Rather than a single replaceAll, you could always try something like:</p>
<pre><code> @Test
public void testString() {
final String in = "abXYabcXYabcHIH";
final String expected = "xxxxabcxxabcxxx";
String result = replaceUnwanted(in);
assertEquals(expected, result);
}
private String replaceUnwanted(final String in) {
final Pattern p = Pattern.compile("(.*?)(abc)([^a]*)");
final Matcher m = p.matcher(in);
final StringBuilder out = new StringBuilder();
while (m.find()) {
out.append(m.group(1).replaceAll(".", "x"));
out.append(m.group(2));
out.append(m.group(3).replaceAll(".", "x"));
}
return out.toString();
}
</code></pre>
http://stackoverflow.com/questions/1605610/find-and-replace-a-string-in-a-set-of-xml-files-using-shell-commands/1605681#16056810Answer by toolkit for find and replace a string in a set of xml files using shell commandstoolkit2009-10-22T08:11:53Z2009-10-22T08:11:53Z<p>How about (all on one line):</p>
<pre><code>find . \( -type d ! -name . -prune \) -o \( -type f -name "*.xml" -print \) |
xargs perl -i.old -p -e 's-/example/test/temp-/testing/in/progress/-g'
</code></pre>
http://stackoverflow.com/questions/1591456/pivot-unpivot-in-sql/1591574#15915740Answer by toolkit for Pivot / unpivot in SQLtoolkit2009-10-19T22:51:28Z2009-10-20T13:59:54Z<p>How about?</p>
<pre><code>select no,
sum(case when val = 'N' then 1 else 0 end) ncnt,
sum(case when val = 'V' then 1 else 0 end) vcnt,
sum(case when val = 'D' then 1 else 0 end) dcnt from
(select no, col_1 val from t union all
select no, col_2 from t union all
select no, col_3 from t)
group by no
order by no
</code></pre>
http://stackoverflow.com/questions/1580866/how-do-i-get-subset-of-a-java-xml-org-w3c-dom-document/1591691#15916910Answer by toolkit for How do I get subset of a Java XML org.w3c.dom.Document ?toolkit2009-10-19T23:22:47Z2009-10-19T23:22:47Z<p>Of course, you could always use XPath to do the same thing:</p>
<pre><code>import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathFactory;
import org.w3c.dom.NodeList;
final XPath xpath = XPathFactory.newInstance().newXPath();
final NodeList list = (NodeList) xpath.evaluate("/A/G/H",
doc.getDocumentElement(), XPathConstants.NODESET);
</code></pre>
<p>This begins to pay off when the path to your elements begins to become more complex (requiring attribute predicates, etc..)</p>
http://stackoverflow.com/questions/1591587/escaping-a-block-of-text-in-miktex/1591598#15915982Answer by toolkit for Escaping a block of text in MikTeX?toolkit2009-10-19T22:57:59Z2009-10-19T22:57:59Z<p>You should simply be able to wrap it in a <code>lstlisting</code> block?</p>
<p><a href="http://www.ctan.org/tex-archive/help/Catalogue/entries/listings.html" rel="nofollow">http://www.ctan.org/tex-archive/help/Catalogue/entries/listings.html</a></p>
<p><a href="http://www3.ntu.edu.sg/home5/pg04878518/LatexTips.html" rel="nofollow">http://www3.ntu.edu.sg/home5/pg04878518/LatexTips.html</a></p>
http://stackoverflow.com/questions/1591058/passing-information-from-perl-to-java/1591221#15912211Answer by toolkit for Passing Information from Perl to Javatoolkit2009-10-19T21:20:33Z2009-10-19T21:20:33Z<p>Are you still trying to solve your rules related questions?</p>
<p>If so, is your rules engine running in its own JVM? In which case, Inline::Java might not be that useful to you. Instead, you will need to find a way to connect to your rules engine JVM. Is this rules engine JVM on the same server as your perl script?</p>
<p>However, if you don't need a separate JVM, then Inline::Java might be OK?</p>
http://stackoverflow.com/questions/1575530/how-could-i-stop-from-printing-both-sides-of-a-wall-in-my-ascii-maze/1575622#15756224Answer by toolkit for How could I stop from printing both sides of a wall in my ascii maze?toolkit2009-10-15T23:09:51Z2009-10-16T15:13:50Z<p>Only print the NORTH and WEST walls. Code on its way...</p>
<p>I changed the walls to an EnumSet</p>
<pre><code>public Set<Dir> walls = EnumSet.allOf(Dir.class);
</code></pre>
<p>So you don't need to add any walls in your constructor:</p>
<pre><code>public Cell(final int x, final int y) {
this.x = x;
this.y = y;
this.Visited = false;
}
</code></pre>
<p>And to remove your walls, use:</p>
<pre><code>this.walls.remove(randDir);
randomNeighbor.walls.remove(randDir.opposite());
</code></pre>
<p>And then the print code looks like:</p>
<pre><code>public static void printMaze(final Cell[][] maze) {
for (int r = 0; r < maze.length; r++) {
final Cell[] row = maze[r];
printTop(row);
printMiddle(row);
if (r == maze.length - 1) {
printBottom(row);
}
}
}
private static void printBottom(final Cell[] row) {
for (final Cell cell : row) {
System.out.print(cell.walls.contains(Dir.SOUTH) ? "+--" : "+ ");
}
System.out.println("+");
}
private static void printMiddle(final Cell[] row) {
for (int c = 0; c < row.length; c++) {
final Cell cell = row[c];
System.out.print(cell.walls.contains(Dir.WEST) ? "| " : " ");
if (c == row.length - 1) {
System.out.println(cell.walls.contains(Dir.EAST) ? "|" : " ");
}
}
}
private static void printTop(final Cell[] row) {
for (final Cell cell : row) {
System.out.print(cell.walls.contains(Dir.NORTH) ? "+--" : "+ ");
}
System.out.println("+");
}
</code></pre>
<p>(Note: Aesthetically, I prefer Direction, and randomDirection. But that's just me ;-)</p>
http://stackoverflow.com/questions/1575268/soap-and-spring/1575383#15753832Answer by toolkit for SOAP and Springtoolkit2009-10-15T22:04:48Z2009-10-15T22:04:48Z<p>I think you must have your wires crossed.</p>
<p>Contract first means defining a WSDL, and then creating Java code to support this WSDL.</p>
<p>Contract last means creating your Java code, and generating a WSDL later.</p>
<p>The danger with contract last is if your WSDL is automatically generated from your Java code, and you refactor your Java code, this causes your WSDL to change.</p>
<p><a href="http://static.springsource.org/spring-ws/sites/1.5/reference/html/why-contract-first.html" rel="nofollow">Spring-WS only supports contract first</a></p>
<blockquote>
<p>2.3.1. Fragility</p>
<p>As mentioned earlier, the
contract-last development style
results in your web service contract
(WSDL and your XSD) being generated
from your Java contract (usually an
interface). If you are using this
approach, you will have no guarantee
that the contract stays constant over
time. Each time you change your Java
contract and redeploy it, there might
be subsequent changes to the web
service contract.</p>
<p>Aditionally, not all SOAP stacks
generate the same web service contract
from a Java contract. This means
changing your current SOAP stack for a
different one (for whatever reason),
might also change your web service
contract.</p>
<p>When a web service contract changes,
users of the contract will have to be
instructed to obtain the new contract
and potentially change their code to
accommodate for any changes in the
contract.</p>
<p>In order for a contract to be useful,
it must remain constant for as long as
possible. If a contract changes, you
will have to contact all of the users
of your service, and instruct them to
get the new version of the contract.</p>
</blockquote>
http://stackoverflow.com/questions/1574580/is-it-bad-practice-to-use-an-enums-ordinal-value-to-index-an-array-in-java/1574603#15746036Answer by toolkit for Is it bad practice to use an Enum's ordinal value to index an array in Java?toolkit2009-10-15T19:42:37Z2009-10-15T19:47:44Z<p>On a tangential issue, it might be better to use an EnumMap for your neighbours:</p>
<pre><code>Map<Dir, Cell> neighbours =
Collections.synchronizedMap(new EnumMap<Dir, Cell>(Dir.class));
neighbours.put(Dir.North, new Cell());
for (Map.Entry<Dir, Cell> neighbour : neighbours.entrySet()) {
if (neighbour.isVisited()) { ... }
}
etc..
</code></pre>
<p>BTW: Enum instances should by convention be all caps,</p>
<pre><code>enum Dir {
NORTH,
EAST,
SOUTH,
WEST
}
</code></pre>
http://stackoverflow.com/questions/1569317/how-to-avoid-the-element-x-in-namespace-x-xsd-has-invalid-child-element-ite/1569328#15693282Answer by toolkit for How to avoid "The element 'x' in namespace 'x.xsd' has invalid child element 'Items' in namespace 'x.xsd'" ?toolkit2009-10-14T22:18:49Z2009-10-14T22:18:49Z<p>How about </p>
<pre><code><xs:element name="Items" maxOccurs="unbounded">
</code></pre>
http://stackoverflow.com/questions/1569066/awk-command-to-accept-two-variables-as-parameters-and-return-a-value/1569294#15692940Answer by toolkit for awk command -to accept two variables as parameters and return a valuetoolkit2009-10-14T22:10:20Z2009-10-14T22:10:20Z<p>Or perhaps:</p>
<pre><code>#!/bin/bash
grep "$1" test.txt | grep "$2" | awk '{print $3}'
</code></pre>
<p>If your vars need to be in either order?</p>
http://stackoverflow.com/questions/1568759/javascript-match-substring-after-regexp/1568812#15688122Answer by toolkit for javascript match substring after regexptoolkit2009-10-14T20:32:25Z2009-10-14T20:32:25Z<p>Why not simply:</p>
<pre><code>-mr(\d+)
</code></pre>
<p>Then getting the contents of the capture group?</p>
http://stackoverflow.com/questions/1830886/vim-executing-a-list-of-editor-commands/1831009#1831009Comment by toolkit on vim: Executing a list of editor commandstoolkit2009-12-03T16:31:56Z2009-12-03T16:31:56ZThanks for the comments.
1. The specific requirement gveda has was to generate a list of commands using regex search and substitute. I took this to mean, look for commands based on a regex, and execute these commands in order.
2. Yes, you can use visual mode, and a macro, but see 1.
3. The post I linked to called it a buffer, not a register. Oops.http://stackoverflow.com/questions/1676019/apache-httpclient-4-0-wierd-behaviorComment by toolkit on Apache HttpClient 4.0. Wierd behavior.toolkit2009-11-04T19:27:58Z2009-11-04T19:27:58ZHave you checked if your browser is returning a cached page?http://stackoverflow.com/questions/1668755/whats-the-advantage-of-having-a-website-with-two-xml-tagsComment by toolkit on What's the advantage of having a website with two XML tags?toolkit2009-11-03T17:18:53Z2009-11-03T17:18:53ZMy unhelpful answer deleted...http://stackoverflow.com/questions/1659986/java-parameterized-runnable/1660009#1660009Comment by toolkit on Java: Parameterized Runnabletoolkit2009-11-02T10:15:12Z2009-11-02T10:15:12ZDisagree with your comment. See the API for its intended use.http://stackoverflow.com/questions/1643850/regex-for-string-format/1643964#1643964Comment by toolkit on RegEx for String.Formattoolkit2009-10-29T14:06:59Z2009-10-29T14:06:59Zgood point Brianhttp://stackoverflow.com/questions/1643392/sram-and-sdram-differencesComment by toolkit on sram and sdram differencestoolkit2009-10-29T13:14:31Z2009-10-29T13:14:31Zvoting to reopen, in order to move.http://stackoverflow.com/questions/1642159/whats-the-most-elegant-way-to-concatenate-a-list-of-values-with-delimiter-in-javComment by toolkit on What's the most elegant way to concatenate a list of values with delimiter in Java?toolkit2009-10-29T09:47:32Z2009-10-29T09:47:32Z<a href="http://stackoverflow.com/questions/285523" rel="nofollow">stackoverflow.com/questions/285523</a>http://stackoverflow.com/questions/1637931/system-properties-cant-be-resolved-in-spring-xml-using-mavenComment by toolkit on System properties can't be resolved in Spring XML using Maventoolkit2009-10-28T15:23:26Z2009-10-28T15:23:26Zshould that be baseDir, not dataDirhttp://stackoverflow.com/questions/1605610/find-and-replace-a-string-in-a-set-of-xml-files-using-shell-commands/1605681#1605681Comment by toolkit on find and replace a string in a set of xml files using shell commandstoolkit2009-10-22T22:07:37Z2009-10-22T22:07:37ZDennis - not all finds are equal. Some don't have maxdepth :-(
novice - to get rid of the .old files, change perl -i.old to perl -i (thought that means if you get your regexp wrong, you don't have a backup to revert to)http://stackoverflow.com/questions/1575146/how-can-i-associate-an-enum-with-its-opposite-value-as-in-cardinal-directions-n/1575260#1575260Comment by toolkit on How can I associate an Enum with its opposite value, as in cardinal directions (North - South, East - West, etc)?toolkit2009-10-15T22:09:44Z2009-10-15T22:09:44Znoted Tom, updated...http://stackoverflow.com/questions/1575146/how-can-i-associate-an-enum-with-its-opposite-value-as-in-cardinal-directions-n/1575279#1575279Comment by toolkit on How can I associate an Enum with its opposite value, as in cardinal directions (North - South, East - West, etc)?toolkit2009-10-15T21:52:20Z2009-10-15T21:52:20ZBetter than my approach. Mine just looks like over-engineering ;-)
http://stackoverflow.com/questions/1574608/regular-expression-to-find-instances-of-strings-within-xml-nodes/1574628#1574628Comment by toolkit on Regular expression to find instances of strings within XML nodestoolkit2009-10-15T20:00:02Z2009-10-15T20:00:02ZDoesn't XmlDocument.PreserveWhitespace do this?http://stackoverflow.com/questions/1574608/regular-expression-to-find-instances-of-strings-within-xml-nodesComment by toolkit on Regular expression to find instances of strings within XML nodestoolkit2009-10-15T19:53:17Z2009-10-15T19:53:17ZAs ax says, better to use an XML parser. What language are you using, then we can point you to example code to help you on your way...http://stackoverflow.com/questions/1574608/regular-expression-to-find-instances-of-strings-within-xml-nodes/1574628#1574628Comment by toolkit on Regular expression to find instances of strings within XML nodestoolkit2009-10-15T19:50:14Z2009-10-15T19:50:14Zwell said, ax +1
http://stackoverflow.com/questions/1540943/how-can-i-find-objects-that-are-in-both-arrays-and-promptly-add-it-to-another-arr/1541024#1541024Comment by toolkit on How can I find objects that are in BOTH arrays and promptly add it to another array?toolkit2009-10-08T23:36:11Z2009-10-08T23:36:11ZHadn't spotted that duffymo. Though, since it isn't homework, I don't understand why this constraint would exist ;-)