User Fabian Steeg - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T04:03:54Zhttp://stackoverflow.com/feeds/user/18154http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1857792/how-do-you-uninstall-the-scala-eclipse-plugin/1859548#18595481Answer by Fabian Steeg for How do you uninstall the Scala Eclipse plugin?Fabian Steeg2009-12-07T11:53:18Z2009-12-07T11:53:18Z<p>I had the same issue with Eclipse not even starting for me anymore. What I did was to remove everything related to the Scala IDE from both the <code>plugins</code> and the <code>features</code> directories and start Eclipse with the <code>-clean</code> parameter:</p>
<pre><code>./eclipse -clean
</code></pre>
http://stackoverflow.com/questions/1834826/it-is-a-bad-practice-to-use-suns-proprietary-java-classes/1835617#18356170Answer by Fabian Steeg for It is a bad practice to use Sun's proprietary Java classes?Fabian Steeg2009-12-02T20:35:36Z2009-12-02T21:22:47Z<p>I recently had a case that showed a real-world problem you can hit when you use these classes: we had code that would not compile because a method it was using on a sun.* class simply did not exist in OpenJDK on Ubuntu. So I guess when using these classes you can no longer say things like 'this works with Java 5', because it will only work on a certain Java implementation.</p>
http://stackoverflow.com/questions/1832250/java-milli-second-precision/1832277#18322774Answer by Fabian Steeg for Java milli second precisionFabian Steeg2009-12-02T11:15:23Z2009-12-02T12:35:16Z<p>Since Java 1.5 you can use <code>System.nanoTime()</code> for micro benchmarks with higher precision. As the fixed time this is based on may change (see Javadoc for the method), it might make sense to combine it with <code>System.currentTimeMillis()</code>, e.g.</p>
<pre><code>String time = System.currentTimeMillis() + "" + System.nanoTime();
</code></pre>
http://stackoverflow.com/questions/1803446/what-technology-i-should-use-to-develop-small-java-webservice/1803930#18039300Answer by Fabian Steeg for What technology I should use to develop small Java webservice?Fabian Steeg2009-11-26T14:19:48Z2009-11-26T14:19:48Z<p>An alternative to SOAP-based web services with <a href="https://jax-ws.dev.java.net/" rel="nofollow">JAX-WS</a> would be <a href="http://jcp.org/en/jsr/detail?id=311" rel="nofollow">JAX-RS</a> (for RESTful web services).</p>
http://stackoverflow.com/questions/1785686/how-many-times-can-classes-be-nested-within-a-class/1785723#17857231Answer by Fabian Steeg for How many times can classes be nested within a class?Fabian Steeg2009-11-23T20:28:37Z2009-11-23T20:28:37Z<p>A good programmer might be able to nest 8, but only Jon Skeet can nest an infinite number of classes.</p>
http://stackoverflow.com/questions/1783409/how-to-launch-eclipse-from-a-command-line-on-macos-with-a-workspace-pathname/1783448#17834482Answer by Fabian Steeg for How to launch eclipse from a command line on MacOS with a workspace pathnameFabian Steeg2009-11-23T14:29:17Z2009-11-23T14:29:17Z<p><code>./eclipse -data <workspace-path></code> (see also <a href="http://wiki.eclipse.org/FAQ%5FHow%5Fdo%5FI%5Frun%5FEclipse%3F" rel="nofollow">How do I run Eclipse</a> in the Eclipse Wiki).</p>
http://stackoverflow.com/questions/1783254/r-text-editors-for-introductory-statistics-courses/1783287#17832870Answer by Fabian Steeg for R text editors for introductory statistics coursesFabian Steeg2009-11-23T14:01:47Z2009-11-23T14:01:47Z<p>I haven't used it myself, but there is <a href="http://www.walware.de/goto/statet" rel="nofollow">an Eclipse plug-in for R</a> (which should work on Windows and Mac).</p>
http://stackoverflow.com/questions/1782465/finding-git-installer-for-ubuntu/1782485#17824851Answer by Fabian Steeg for Finding GIT installer for Ubuntu.Fabian Steeg2009-11-23T11:13:16Z2009-11-23T11:13:16Z<p>Something like this should do it: <code>sudo apt-get install git-core</code> (in the <em>Terminal</em> application).</p>
http://stackoverflow.com/questions/1782040/does-javadoc-have-an-equivalent-to-cdata/1782088#17820888Answer by Fabian Steeg for Does javadoc have an equivalent to <![CDATA[ ... ]]> ?Fabian Steeg2009-11-23T09:41:46Z2009-11-23T09:41:46Z<p>You can use JavaDoc's <code>@code</code> tag: <code>/** This parses {@code <complexType name="">} */</code></p>
http://stackoverflow.com/questions/1774055/cant-run-eclipse-on-netbook-msi-wind-help/1775374#17753740Answer by Fabian Steeg for Can't run eclipse on netbook MSi wind! HELPFabian Steeg2009-11-21T12:34:13Z2009-11-21T12:34:13Z<p>You could try reinstalling the JDK. Perhaps having it on a different disk than the default (D: versus C:) is causing some trouble? It certainly isn't a problem with the hardware, I'm running Eclipse on Windows on an MSI Wind.</p>
http://stackoverflow.com/questions/1773122/two-eclispse-projects-one-eclipse-plug-in/1773371#17733710Answer by Fabian Steeg for Two Eclispse projects -> One Eclipse Plug-inFabian Steeg2009-11-20T21:32:04Z2009-11-20T21:32:04Z<p>From reading this it sounds as if the actual problem is the fact that there are dependencies in both directions. Can't you refactor your projects to make only the Eclipse-spcific proejcts depend on the core projects, and not the other way around?</p>
http://stackoverflow.com/questions/1749276/how-to-hide-interface-methods-in-the-web-service-when-using-webservices-endpoi0How to hide interface methods in the web service when using @WebService's `endpointInterface` attribute?Fabian Steeg2009-11-17T14:30:20Z2009-11-17T16:16:18Z
<p>Is there a way to prevent a method from an interface used in <code>@WebService</code>'s <code>endpointInterface</code> attribute to be exposed in the web service? I'm using the endpointInterface as that seems to be the only way to make the service work on JBoss with Metro, not doing so results in a:</p>
<p><code>javax.xml.ws.WebServiceException: Undefined port type</code></p>
http://stackoverflow.com/questions/1743515/how-do-i-go-about-creating-a-compiler-editor-in-eclipse/1743969#17439692Answer by Fabian Steeg for How do I go about creating a compiler/editor in Eclipse?Fabian Steeg2009-11-16T18:28:43Z2009-11-16T18:28:43Z<p>A good starting point to get a parser, editor, outline view and content assistant for your language would probably be <a href="http://www.eclipse.org/Xtext/" rel="nofollow">Xtext</a>. Writing your own debugger is quite a different story, and described in <a href="http://www.eclipse.org/articles/Article-Debugger/how-to.html" rel="nofollow">this article</a>.</p>
http://stackoverflow.com/questions/1272037/where-to-set-maxarraysize-for-java-webservices/1742734#17427340Answer by Fabian Steeg for Where to set maxarraysize for java webservices?Fabian Steeg2009-11-16T15:05:01Z2009-11-16T15:05:01Z<p>In my experience with JAX-WS the size of the byte array to pass through web methods is limited by the heap size. So if you are getting <code>OutOfMemoryErrors</code> you could try passing something like <code>-Xmx512m</code> to your server and client. If your files are too large, you should consider using a <code>DataHandler</code> and <a href="https://jax-ws.dev.java.net/guide/Large%5FAttachments.html" rel="nofollow">streaming attachments</a>.</p>
http://stackoverflow.com/questions/1347287/which-code-generation-tools-do-you-use/1741355#17413550Answer by Fabian Steeg for Which code generation tools do you use?Fabian Steeg2009-11-16T10:39:01Z2009-11-16T10:39:01Z<p>Eclipse <a href="http://wiki.eclipse.org/Xpand" rel="nofollow">Xpand</a> and <a href="http://www.eclipse.org/Xtext/" rel="nofollow">Xtext</a>, also known as <a href="http://www.eclipse.org/workinggroups/oaw/" rel="nofollow">openArchitectureWare</a>.</p>
http://stackoverflow.com/questions/1725134/launching-jedit-from-java-swing-app-using-runtime-getruntime-exec/1725150#17251501Answer by Fabian Steeg for Launching jEdit From Java Swing App Using Runtime.getRuntime().exec()Fabian Steeg2009-11-12T20:29:44Z2009-11-12T20:29:44Z<p>As jEdit is implemented in Java, perhaps it would be easier to check the source for what the <code>main</code> method (in the class declared in the manifest file included in the jedit.jar) does and do the same thing without using <code>Runtime.getRuntime().exec()</code> at all.</p>
<p>If you do want to stick with it, you could try passing the individual commands as an array to exec(), this often solved such problems for me.</p>
http://stackoverflow.com/questions/1717570/clear-methods-in-java/1717584#17175844Answer by Fabian Steeg for clear() methods in JavaFabian Steeg2009-11-11T19:45:53Z2009-11-11T19:45:53Z<p>If not referenced from elsewhere, they will be garbage collected.</p>
http://stackoverflow.com/questions/1714441/eclipse-workspace-is-closed-problem/1714542#17145420Answer by Fabian Steeg for eclipse workspace is closed problemFabian Steeg2009-11-11T11:17:31Z2009-11-11T11:17:31Z<p>As far as I understand this, the workspace retrieved with <code>ResourcesPlugin.getWorkspace()</code> is the workspace the running Platform is using, if <code>Platform.isRunning()</code>. So if you are running a plain Java application, not an Eclipse application, there is no such thing as <em>the</em> workspace.</p>
http://stackoverflow.com/questions/1667869/how-to-marshal-a-datahandler-annotated-as-xmlattachmentref-with-jaxb0How to marshal a DataHandler annotated as @XmlAttachmentRef with JAXB?Fabian Steeg2009-11-03T15:01:45Z2009-11-09T20:47:20Z
<p>I'm trying to marshal an object which has a <code>DataHandler</code> field with JAXB (2.1.12). For streaming support, the <code>DataHandler</code> is annotated with @<code>XmlAttachmentRef</code>. Serialization and streaming over web services (Metro on JBoss) work fine, but plain marshalling with JAXB doesn't.</p>
<p>Here is a stripped down example:</p>
<pre><code>public class DataHandlerAttachmentSerialization {
@XmlRootElement
static class RootObject {
@XmlElement
@XmlAttachmentRef // Works without this, but required for streaming
DataHandler dataHandler = new DataHandler(
new com.sun.xml.ws.util.ByteArrayDataSource(
" ".getBytes(), "application/octet-stream"));
}
@Test
public void test() throws JAXBException {
JAXBContext context = JAXBContext.newInstance(RootObject.class);
Marshaller marshaller = context.createMarshaller();
StringWriter writer = new StringWriter();
marshaller.marshal(new RootObject(), writer);
Assert.assertNotNull(writer.toString());
}
}
</code></pre>
<p>Running this test yields the following stack trace:</p>
<pre><code>javax.xml.bind.MarshalException
- with linked exception:
[com.sun.xml.bind.api.AccessorException: java.lang.NullPointerException]
at com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:318)
at com.sun.xml.bind.v2.runtime.MarshallerImpl.marshal(MarshallerImpl.java:244)
at javax.xml.bind.helpers.AbstractMarshallerImpl.marshal(AbstractMarshallerImpl.java:96)
...
Caused by: com.sun.xml.bind.api.AccessorException: java.lang.NullPointerException
at com.sun.xml.bind.v2.runtime.XMLSerializer.reportError(XMLSerializer.java:246)
at com.sun.xml.bind.v2.runtime.XMLSerializer.reportError(XMLSerializer.java:261)
at com.sun.xml.bind.v2.runtime.ClassBeanInfoImpl.serializeBody(ClassBeanInfoImpl.java:335)
at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsSoleContent(XMLSerializer.java:593)
at com.sun.xml.bind.v2.runtime.ClassBeanInfoImpl.serializeRoot(ClassBeanInfoImpl.java:320)
at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsRoot(XMLSerializer.java:494)
at com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:315)
... 25 more
Caused by: com.sun.xml.bind.api.AccessorException: java.lang.NullPointerException
at com.sun.xml.bind.v2.runtime.reflect.AdaptedAccessor.get(AdaptedAccessor.java:74)
at com.sun.xml.bind.v2.runtime.reflect.TransducedAccessor$CompositeTransducedAccessorImpl.writeLeafElement(TransducedAccessor.java:250)
at com.sun.xml.bind.v2.runtime.property.SingleElementLeafProperty.serializeBody(SingleElementLeafProperty.java:98)
at com.sun.xml.bind.v2.runtime.ClassBeanInfoImpl.serializeBody(ClassBeanInfoImpl.java:332)
... 29 more
Caused by: java.lang.NullPointerException
at com.sun.xml.bind.v2.runtime.SwaRefAdapter.marshal(SwaRefAdapter.java:80)
at com.sun.xml.bind.v2.runtime.SwaRefAdapter.marshal(SwaRefAdapter.java:65)
at com.sun.xml.bind.v2.runtime.reflect.AdaptedAccessor.get(AdaptedAccessor.java:72)
... 32 more
</code></pre>
<p>Line 80 in <code>SwaRefAdapter</code> is <code>return am.addSwaRefAttachment(data);</code> and <code>am</code> was assigned with <code>AttachmentMarshaller am = XMLSerializer.getInstance().attachmentMarshaller;</code> so it seems <code>attachmentMarshaller</code> is null at this point if the <code>@XmlAttachmentRef</code> is present.</p>
<p>Do I need to set up something differently, or use the JAXB API in a different way to handle attachments?</p>
http://stackoverflow.com/questions/1701839/backslash-problem-with-string-replaceall/1701874#17018745Answer by Fabian Steeg for Backslash problem with String.replaceAll Fabian Steeg2009-11-09T15:45:25Z2009-11-09T15:45:25Z<p>To avoid this sort of trouble, you can use <code>replace</code> (which takes a plain string) instead of <code>replaceAll</code> (which takes a regular expression). You will still need to escape backslashes, but not in the wild ways required with regular expressions.</p>
http://stackoverflow.com/questions/1696551/how-to-get-the-name-of-the-calling-class-in-java/1696648#169664811Answer by Fabian Steeg for How to get the name of the calling class in Java?Fabian Steeg2009-11-08T13:52:06Z2009-11-08T13:52:06Z<p>Perhaps for your use case it would make sense to pass the class of the caller into the method, like:</p>
<pre><code>public class A { public void foo(Class<?> c) { ... } }
</code></pre>
<p>And call it something like this:</p>
<pre><code>public class B { new A().foo(getClass() /* or: B.class */ ); }
</code></pre>
http://stackoverflow.com/questions/1686450/java-web-services-sending-files-using-datahandler-class/1686541#16865410Answer by Fabian Steeg for Java Web Services: sending files using DataHandler classFabian Steeg2009-11-06T09:51:40Z2009-11-06T09:51:40Z<p>If the <code>DataHandler</code> returned is <code>null</code> my guess would be something goes wrong in that method (e.g. the <code>MalformedURLException</code> you are catching). If not, you could try to create the <code>DataHandler</code> in a different way, e.g. with a <code>FileDataSource</code> or a <code>ByteArrayDataSource</code>.</p>
http://stackoverflow.com/questions/1582097/java-chat-application/1583573#15835731Answer by Fabian Steeg for java chat applicationFabian Steeg2009-10-18T00:09:07Z2009-10-18T00:09:07Z<p>Besides the already mentioned <a href="http://java.sun.com/docs/books/tutorial/networking/sockets/" rel="nofollow">Sockets</a> for the communication you could use <a href="http://java.sun.com/docs/books/tutorial/uiswing/" rel="nofollow">Swing</a> for a simple GUI.</p>
http://stackoverflow.com/questions/1534757/jaxb-and-multiple-object-relationships/1534798#15347980Answer by Fabian Steeg for JAXB and multiple object relationshipsFabian Steeg2009-10-07T23:38:07Z2009-10-07T23:38:07Z<p>Just a quick thought: do the <code>Child</code> objects implement a proper <code>equals()</code> method?</p>
http://stackoverflow.com/questions/1491224/is-string-free-coding-a-common-term/1491333#14913331Answer by Fabian Steeg for Is "string-free coding" a common term ?Fabian Steeg2009-09-29T08:46:40Z2009-09-29T08:46:40Z<p>Never heard the particular expression, but <a href="http://java.sun.com/docs/books/effective/" rel="nofollow">Effective Java</a> recommends to "<em>avoid strings where other types are more appropriate</em>" (Item 50).</p>
http://stackoverflow.com/questions/1469417/which-version-of-eclipse-works-with-egit/1469510#14695101Answer by Fabian Steeg for Which version of eclipse works with egit?Fabian Steeg2009-09-24T02:27:44Z2009-09-24T02:27:44Z<p>As mentioned in a comment on the <a href="http://code.google.com/p/egit/wiki/EGitQuickGuide" rel="nofollow">guide page</a>, make sure to use the update site at <code>http://www.jgit.org/updates</code>. Works fine for me with Galileo (Eclipse 3.5).</p>
http://stackoverflow.com/questions/1436862/does-texniccenter-or-any-other-tex-editor-auto-complete-references-in-latex/1439331#14393310Answer by Fabian Steeg for Does Texniccenter or any other tex editor auto-complete references in Latex?Fabian Steeg2009-09-17T14:44:25Z2009-09-17T14:44:25Z<p><a href="http://texlipse.sourceforge.net/" rel="nofollow">Texlipse</a> does this, also with <kbd>Ctrl</kbd>+<kbd>Space</kbd>.</p>
http://stackoverflow.com/questions/1429509/enum-does-not-have-a-no-arg-default-constructor-with-jaxb-and-cxf/1429832#14298320Answer by Fabian Steeg for Enum "does not have a no-arg default constructor" with Jaxb and cxfFabian Steeg2009-09-15T21:55:36Z2009-09-15T21:55:36Z<p>The no-arg constructor for JAXB doesn't have to be <code>public</code>, it can be <code>private</code>:</p>
<pre><code>private String value;
private MyEnumType() {} // for JAXB
MyEnumType(String v) {
value = v;
}
</code></pre>
<p>You can't keep the <code>value</code> member <code>final</code> this way, though.</p>
http://stackoverflow.com/questions/1401483/which-java-web-technology-to-learn-to-develop-rich-internet-applications/1406192#14061920Answer by Fabian Steeg for Which java web technology to learn to develop Rich Internet Applications ?Fabian Steeg2009-09-10T16:03:36Z2009-09-10T16:03:36Z<p>You might also consider the <a href="http://www.eclipse.org/rap/" rel="nofollow">Eclipse Rich Ajax Platform</a> when evaluating Java-based RIA platforms.</p>
http://stackoverflow.com/questions/1363101/java-is-adding-a-key-value-to-a-map-within-a-map-in-1-line-of-code-possible/1363154#13631540Answer by Fabian Steeg for Java - is adding a key/value to a map within a map in 1 line of code possible?Fabian Steeg2009-09-01T15:34:58Z2009-09-01T15:34:58Z<p>Works fine if you use generics:</p>
<pre><code>Map<String,Map<String,Integer>> map = new HashMap<String,Map<String,Integer>>();
map.put("Test", new HashMap<String,Integer>());
map.get("Test").put("Some", 1);
</code></pre>
http://stackoverflow.com/questions/1841243/is-this-a-known-pattern/1841263#1841263Comment by Fabian Steeg on Is this a known pattern?Fabian Steeg2009-12-03T17:37:38Z2009-12-03T17:37:38ZBut for the template pattern, shouldn't there be subclassing involved (to have subclasses specify how the template method is filled)? I'd say what you are referring to is just plain composition.http://stackoverflow.com/questions/1841243/is-this-a-known-pattern/1841263#1841263Comment by Fabian Steeg on Is this a known pattern?Fabian Steeg2009-12-03T17:01:30Z2009-12-03T17:01:30ZWouldn't the strategy pattern imply that you can exchange the strategy (e.g. by passing the strategy to the constructor)? Whereas here it is fixed.http://stackoverflow.com/questions/1832250/java-milli-second-precision/1832277#1832277Comment by Fabian Steeg on Java milli second precisionFabian Steeg2009-12-02T12:29:45Z2009-12-02T12:29:45ZRight, to get time stamps it would probably make sense to combine it with <code>System.currentTimeMillis()</code>http://stackoverflow.com/questions/1832183/eclipse-how-to-go-to-a-error-using-only-the-keyboard-keyboard-shortcut/1832328#1832328Comment by Fabian Steeg on Eclipse: How to go to a error using only the keyboard (keyboard-shortcut)?Fabian Steeg2009-12-02T11:48:40Z2009-12-02T11:48:40ZCool, this is very useful! Unfortunately on the Mac, <code>Cmd-,</code> opens the preferences. But the shortcuts can be changed in Preferences -> Keys -> Next and Previous (I've just set them to <code>Cmd-.</code> and <code>Cmd--</code> for previous and next)http://stackoverflow.com/questions/1822481/remove-characters-from-the-end-of-a-string-scala/1822525#1822525Comment by Fabian Steeg on Remove Characters from the end of a String ScalaFabian Steeg2009-11-30T21:51:47Z2009-11-30T21:51:47ZPlus you'd need to wrap the string into a StringBuilder to get a reverse method.http://stackoverflow.com/questions/1803446/what-technology-i-should-use-to-develop-small-java-webservice/1803801#1803801Comment by Fabian Steeg on What technology I should use to develop small Java webservice?Fabian Steeg2009-11-26T14:14:04Z2009-11-26T14:14:04ZAlso I'm wondering: to actually make this do something, don't we need JAX-WS?http://stackoverflow.com/questions/1803446/what-technology-i-should-use-to-develop-small-java-webservice/1803801#1803801Comment by Fabian Steeg on What technology I should use to develop small Java webservice?Fabian Steeg2009-11-26T14:13:08Z2009-11-26T14:13:08ZTo use the @WebService annotation with Java 5 you'll also need the JSR 181 implementation. If you use Java 6 it's included, and so is JAXB. I guess what I'm trying to say is: you either need Java 5 plus JAXB and JSR 181 or Java 6.http://stackoverflow.com/questions/1789164/iterator-for-loops-with-break/1789210#1789210Comment by Fabian Steeg on iterator for loops with breakFabian Steeg2009-11-24T10:38:22Z2009-11-24T10:38:22ZYes, please, no breaks or even labels!http://stackoverflow.com/questions/1782040/does-javadoc-have-an-equivalent-to-cdata/1782160#1782160Comment by Fabian Steeg on Does javadoc have an equivalent to <![CDATA[ ... ]]> ?Fabian Steeg2009-11-23T10:57:13Z2009-11-23T10:57:13ZUsing <code><pre></code> alone doesn't work for me with anything involving HTML entities, e.g. a <code>List<String></code> becomes a <code>List</code> etc. I combine both for proper multiline comments, though (see also <a href="http://stackoverflow.com/questions/541920" rel="nofollow">stackoverflow.com/questions/541920</a>).http://stackoverflow.com/questions/1749276/how-to-hide-interface-methods-in-the-web-service-when-using-webservices-endpoi/1749307#1749307Comment by Fabian Steeg on How to hide interface methods in the web service when using @WebService's `endpointInterface` attribute?Fabian Steeg2009-11-17T15:34:31Z2009-11-17T15:34:31ZPerfect, thanks a lot!http://stackoverflow.com/questions/1749276/how-to-hide-interface-methods-in-the-web-service-when-using-webservices-endpoi/1749307#1749307Comment by Fabian Steeg on How to hide interface methods in the web service when using @WebService's `endpointInterface` attribute?Fabian Steeg2009-11-17T14:37:02Z2009-11-17T14:37:02ZYes, but even those not annotated are exposed.http://stackoverflow.com/questions/1706870/what-tools-does-linux-programmer-use-to-develop-programs/1706980#1706980Comment by Fabian Steeg on What tools does Linux programmer use to develop programs?Fabian Steeg2009-11-10T12:10:35Z2009-11-10T12:10:35ZWouldn't agree on the 'Once inside the IDE, the outside OS doesn't matter any more'. I use and enjoy my Bash a lot, even if I spend most my time inside Eclipse.http://stackoverflow.com/questions/1429509/enum-does-not-have-a-no-arg-default-constructor-with-jaxb-and-cxf/1429832#1429832Comment by Fabian Steeg on Enum "does not have a no-arg default constructor" with Jaxb and cxfFabian Steeg2009-09-15T23:07:54Z2009-09-15T23:07:54ZI'm not entirely sure for your setup, but from what I understand the WSDL is generated from the enum using JAXB at some point, so from my understanding this should work when done in your server-side enum definition.http://stackoverflow.com/questions/1318347/how-to-use-java-property-files/1318396#1318396Comment by Fabian Steeg on How to use java property files?Fabian Steeg2009-08-23T15:40:26Z2009-08-23T15:40:26ZNate, that's true. However, in some scenarios the deployed location is not known (e.g. everything of your particular component is bundled into some archive). In such cases it can be quite convenient to say 'it's with that class, wherever that class ends up to be'. Also to avoid spreading the files all over, a single config package can be used for all the property files.http://stackoverflow.com/questions/466365/when-are-design-patterns-the-problem-instead-of-the-solution/466493#466493Comment by Fabian Steeg on When are design patterns the problem instead of the solution?Fabian Steeg2009-08-20T16:03:02Z2009-08-20T16:03:02ZPillsy, perhaps we are thinking of rather different things when saying 'strategy pattern'. I was thinking of simple things like a sorting strategy for collections or a matching strategy for queries. No state involved, no inheritance. These are usually done with higher-order functions if possible and with the strategy pattern if not. What you describe sounds like a more complex case, and I can imagine how it can make sense to use objects instead of functions to define strategies in some cases, even if higher-order functions are available.