User cringe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T23:28:36Zhttp://stackoverflow.com/feeds/user/834http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/439215/how-do-i-should-i-use-apache-poi-hwpfdocument0How do I (should I?) use Apache POI HWPFDocument?cringe2009-01-13T14:54:13Z2009-12-02T19:48:32Z
<p>Hi guys!</p>
<p>I'm thinking about including the Apache POI into my application. Main goal is to output RTF document, but DOC would be nice, too. But the documentation is not very detailed about writing a HWPFDocument and everything I found on the web isn't helpful at all.</p>
<p>I can read DOC files, that's working without any problem. But I really can't see how I write a document. Maybe someone can give me a short code example?</p>
<p>Thanks a lot!</p>
http://stackoverflow.com/questions/1572563/importing-a-schema-ldif-and-content-ldif-on-every-startup-of-apacheds0Importing a schema LDIF and content LDIF on every startup of ApacheDS?cringe2009-10-15T13:59:46Z2009-11-24T13:00:02Z
<p>Hi guys!</p>
<p>I want my embedded ApacheDS to start up with a fresh schema/content when I run my tests. I tried to import a LDIF with this lines:</p>
<pre><code> LdifFileLoader ldifLoader = new LdifFileLoader(service.getAdminSession(), "path/to/my/export.ldif");
ldifLoader.execute();
</code></pre>
<p>But now ApacheDS stores the information in a directory <em>server-work</em> in the current working directory. I had to manually delete the directory <em>server-work</em> every time and I wonder if that is the right way...</p>
<p>I exported the schema as LDIF too and I want to import it first. Can I import it with <strong>LdifFileLoader</strong> too? Or am I doing it in a wrong way at all?</p>
http://stackoverflow.com/questions/1775465/run-junit-automatically-when-building-eclipse-project2Run JUnit automatically when building Eclipse projectcringe2009-11-21T13:21:03Z2009-11-22T07:18:20Z
<p>I want to run my unit tests automatically when I save my Eclipse project. The project is built automatically whenever I save a file, so I think this should be possible in some way.</p>
<p>How do I do it? Is the only option really to get an ant script and change the project build to use the ant script with targets <em>build</em> and <em>compile</em>?</p>
<p><strong>Update</strong> I will try 2 different approaches now:</p>
<ol>
<li>Running an additional builder for my project that executes the ant target <em>test</em> (I have an ant script anyway)</li>
<li><a href="http://ct-eclipse.tigris.org" rel="nofollow">ct-eclipse</a>, recommended by <a href="http://stackoverflow.com/questions/1775465/run-junit-automatically-when-building-eclipse-project/1775634#1775634">Thorbjørn</a></li>
</ol>
http://stackoverflow.com/questions/1774889/cobertura-ant-script-is-missing-log4j-classes0Cobertura ant script is missing Log4J classescringe2009-11-21T07:57:15Z2009-11-21T09:03:46Z
<p>I tried to get <strong>Cobertura</strong> running inside my ant script, but I'm stuck right at the beginning. When I try to insert the cobertura <em>taskdef</em> I'm missing the Log4J libraries. </p>
<h2>Ant properties & classpath</h2>
<pre><code><property name="cobertura.dir" location="/full/path/to/cobertura-1.9.3" />
<path id="cobertura.classpath">
<fileset dir="${cobertura.dir}">
<include name="cobertura.jar" />
<include name="lib/**/*.jar" />
</fileset>
</path>
<taskdef classpathref="cobertura.classpath" resource="tasks.properties" />
</code></pre>
<h2>My ant target</h2>
<pre><code><!-- =================================
target: cobertura
================================= -->
<target name="cobertura" depends="clean, init" description="Generates cobertura coverage reports">
<cobertura-instrument todir="${dir.build.instrumented}">
<fileset dir="${dir.build}">
<include name="**/*.class" />
</fileset>
</cobertura-instrument>
</target>
</code></pre>
<p>I think I did everything like it is described in the <a href="http://cobertura.sourceforge.net/anttaskreference.html" rel="nofollow">Cobertura documentation</a> but I get this</p>
<h2>Ant build error</h2>
<pre><code>BUILD FAILED
build.xml:95: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
</code></pre>
<p>Inside the <strong><em>${cobertura.dir}</em></strong> there is the <strong><em>lib</em></strong> directory with all files. I unzipped it from the cobertura distribution ZIP directly into that directory.</p>
<p>Am I missing a step? Something wrong with my configuration so far?</p>
http://stackoverflow.com/questions/1581886/apache-james-as-a-transparent-smtp-proxy0Apache James as a transparent SMTP proxy?cringe2009-10-17T10:16:41Z2009-11-17T08:41:09Z
<p>Hi guys!</p>
<p>I'm thinking about building a transparent SMTP proxy on my own to process outgoing mails. I found <a href="http://james.apache.org/" rel="nofollow">Apache James</a> already that looks like it is pretty much what I want.</p>
<p>Could I use <a href="http://james.apache.org/" rel="nofollow">Apache James</a> to build a transparent SMTP proxy to add some headers and modify the content? Or should I go for pure <a href="http://java.sun.com/products/javamail/" rel="nofollow">Javamail</a>?</p>
http://stackoverflow.com/questions/1742330/embedded-jetty-servlettester-serving-single-static-file2Embedded jetty ServletTester serving single static filecringe2009-11-16T13:57:06Z2009-11-16T23:48:02Z
<p>I'm unit testing with jetty and I want to serve not only my servlet under test but a static page as well. The static page is needed by my application. I'm initializing jetty like this</p>
<pre><code>tester = new ServletTester();
tester.setContextPath("/context");
tester.addServlet(MyServlet.class, "/servlet/*");
tester.start();
</code></pre>
<p>What I need now, is something like</p>
<pre><code>tester.addStaticPage("local/path/in/my/workspace", "/as/remote/file");
</code></pre>
<p>Is this possible with jetty?</p>
http://stackoverflow.com/questions/1629841/how-to-jmockit-system-getenvstring0How to JMockIt System.getenv(String)?cringe2009-10-27T10:17:02Z2009-10-30T15:19:18Z
<h2>What I have right now</h2>
<p>I have a 3rd party singleton instance that my class under test relies on and that singleton is using <code>System.getenv(String)</code> in its constructor. Is it possible to mock this call?</p>
<p>I tried this</p>
<h2>JMockIt Example</h2>
<pre><code> new Expectations()
{
System mockedSystem;
{
System.getenv( "FISSK_CONFIG_HOME" ); returns( "." );
}
};
</code></pre>
<p>But it gives me an <code>EXCEPTION_ACCESS_VIOLATION</code> and crashes the JVM.</p>
<p>Is there another way to set a system environment variable for a unit test?</p>
http://stackoverflow.com/questions/1593016/run-jettys-servlettester-within-junit-test1Run Jettys ServletTester within JUnit testcringe2009-10-20T07:40:12Z2009-10-20T08:22:12Z
<p>I'm trying to run Jettys <code>ServletTester</code> in my JUnit test. I created a simple <code>HelloServlet</code> first to test the setup, but I get an <code>IllegalAccessException</code> when I try to request the servlet. Here is what I have so far:</p>
<h2>My unit test</h2>
<pre><code>@Before
public void setUp() throws Exception {
tester = new ServletTester();
tester.setContextPath("/context");
tester.addServlet(HelloServlet.class, "/hello/*");
tester.start();
}
@After
public void tearDown() throws Exception {
tester.stop();
}
@Test
public void testDefaultServlet() throws Exception {
HttpTester request = new HttpTester();
request.setMethod("GET");
request.setHeader("Host","127.0.0.1");
request.setURI("/context/hello/info");
request.setVersion("HTTP/1.0");
HttpTester response = new HttpTester();
response.parse(tester.getResponses(request.generate()));
assertNull(response.getMethod());
assertEquals(200,response.getStatus());
assertEquals("<h1>Hello Servlet</h1>",response.getContent());
}
</code></pre>
<h2>My <code>HelloServlet</code></h2>
<p><del>This servlet is defined in the same file as the unit test, because I want it to be there for the initial setup of jetty. After everything is running, I'll remove it (or maybe keep it, but it will stay within the unit test then).</del></p>
<p><strong>Update</strong> This servlet was defined inside the unit test itself because it was meant only as a configuration test for the jetty server itself. But jetty wasn't able to access it, and after moving it into a public class and a file for itself everything worked like expected. See the comment.</p>
<pre><code>class HelloServlet extends HttpServlet {
@Override
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
PrintWriter out = resp.getWriter();
out.println("Hello, World!");
out.flush();
}
}
</code></pre>
<h2>My Exception...</h2>
<pre><code>2009-10-20 09:36:28.973::INFO: Logging to STDERR via org.mortbay.log.StdErrLog
2009-10-20 09:36:28.989::INFO: jetty-6.1.21
2009-10-20 09:36:29.098::INFO: Started LocalConnector@0.0.0.0:1
2009-10-20 09:36:29.161:/context:WARN: unavailable
java.lang.IllegalAccessException: Class org.mortbay.jetty.servlet.Holder can not access a member of class my.package.HelloServlet with modifiers ""
at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:65)
at java.lang.Class.newInstance0(Class.java:349)
at java.lang.Class.newInstance(Class.java:308)
at org.mortbay.jetty.servlet.Holder.newInstance(Holder.java:153)
at org.mortbay.jetty.servlet.ServletHolder.initServlet(ServletHolder.java:428)
at org.mortbay.jetty.servlet.ServletHolder.getServlet(ServletHolder.java:339)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:390)
at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:536)
at org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:915)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:539)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:405)
at org.mortbay.jetty.LocalConnector.accept(LocalConnector.java:186)
at org.mortbay.jetty.AbstractConnector$Acceptor.run(AbstractConnector.java:707)
at org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)
</code></pre>
<p>Strange enough, because I got this example almost straight from <a href="http://docs.codehaus.org/display/JETTY/ServletTester" rel="nofollow">http://docs.codehaus.org/display/JETTY/ServletTester</a>. Any thoughts or maybe a working example of a <strong>embedded jetty servlet container in a junit test</strong>?</p>
http://stackoverflow.com/questions/337756/what-is-a-good-embeddable-java-ldap-server/1564738#15647380Answer by cringe for What is a good embeddable Java LDAP server?cringe2009-10-14T07:20:35Z2009-10-14T07:20:35Z<p>You should take a look at <a href="http://directory.apache.org/" rel="nofollow">Apache DS</a>. I just <a href="http://stackoverflow.com/questions/1560230/running-apache-ds-embedded-in-my-application">started using it as an embedded server</a> to setup a JUnit test. It's working good so far, the only thing stopping me right now is my limited LDAP knowledge. ApacheDS looks like a decent project and I think it's worth the effort.</p>
http://stackoverflow.com/questions/1560230/running-apache-ds-embedded-in-my-application1Running Apache DS embedded in my applicationcringe2009-10-13T13:24:48Z2009-10-14T06:05:17Z
<p>Hi guys!</p>
<p>I'm trying to run an embedded ApacheDS in my application. After reading <a href="http://directory.apache.org/apacheds/1.5/41-embedding-apacheds-into-an-application.html" rel="nofollow">http://directory.apache.org/apacheds/1.5/41-embedding-apacheds-into-an-application.html</a> I build this:</p>
<pre><code>public void startDirectoryService() throws Exception {
service = new DefaultDirectoryService();
service.getChangeLog().setEnabled( false );
Partition apachePartition = addPartition("apache", "dc=apache,dc=org");
addIndex(apachePartition, "objectClass", "ou", "uid");
service.startup();
// Inject the apache root entry if it does not already exist
try
{
service.getAdminSession().lookup( apachePartition.getSuffixDn() );
}
catch ( LdapNameNotFoundException lnnfe )
{
LdapDN dnApache = new LdapDN( "dc=Apache,dc=Org" );
ServerEntry entryApache = service.newEntry( dnApache );
entryApache.add( "objectClass", "top", "domain", "extensibleObject" );
entryApache.add( "dc", "Apache" );
service.getAdminSession().add( entryApache );
}
}
</code></pre>
<p>But I can't connect to the server after running it. What is the default port? Or am I missing something?</p>
<p><strong>Here is the solution:</strong></p>
<pre><code> service = new DefaultDirectoryService();
service.getChangeLog().setEnabled( false );
Partition apachePartition = addPartition("apache", "dc=apache,dc=org");
LdapServer ldapService = new LdapServer();
ldapService.setTransports(new TcpTransport(389));
ldapService.setDirectoryService(service);
service.startup();
ldapService.start();
</code></pre>
http://stackoverflow.com/questions/1553991/how-to-call-wsdl2java-from-ant-with-whitespaces-in-my-path0How to call WSDL2JAVA from ant with whitespaces in my pathcringe2009-10-12T11:15:01Z2009-10-12T11:42:47Z
<p>HI guys!</p>
<p>I try to call Axis2 WSDL2JAVA in my ant file to create a WSDL client. But it's broken because I have whitespaces in my path (I'm on Windows...). This is my ant</p>
<pre><code><property name="wsdl.file" location="C:\path with whitespaces\project\subdir\my.wsdl"/>
...
<target name="generate.client" depends="Clean.Client">
<java classname="org.apache.axis2.wsdl.WSDL2Java">
<arg value="-uri" />
<arg file="${wsdl.file}"/>
<arg value="-u"/>
<arg value="-p"/>
<arg value="my.package.declaration"/>
<arg value="-S"/>
<arg value="src/test"/>
...
<classpath refid="axis2.classpath"/>
</java>
</target>
</code></pre>
<p>When I try to run it, I get this errors:</p>
<pre><code>[java] Caused by: java.net.URISyntaxException: Illegal character in path at index 18: file:/C:/path with whitespaces/project/subdir/my.wsdl
[java] at java.net.URI$Parser.fail(URI.java:2809)
[java] at java.net.URI$Parser.checkChars(URI.java:2982)
[java] at java.net.URI$Parser.parseHierarchical(URI.java:3066)
[java] at java.net.URI$Parser.parse(URI.java:3014)
[java] at java.net.URI.<init>(URI.java:578)
[java] at org.apache.ws.commons.schema.resolver.DefaultURIResolver.resolveEntity(DefaultURIResolver.java:57)
[java] ... 39 more
</code></pre>
<p>I tried to add <em>& quot;</em> to my property, but it doesn't work and gives me a doubled path then. I also tried to change the nested <em>arg value=</em> to <em>arg line=</em> but it's the same.</p>
<p>Is this really a but that stops me from building from a directory with whitespaces? I can't believe it's still happening these days... :-(</p>
<p><strong>Update</strong> I can't move the project to get rid of the whitespaces.</p>
http://stackoverflow.com/questions/1388997/how-to-detect-web-cam-is-attached-or-not-using-java/1389448#13894480Answer by cringe for How to detect Web Cam is attached or not Using javacringe2009-09-07T13:32:06Z2009-09-07T13:32:06Z<p>Here is a piece of code I use in a simple Webcam client with JMF:</p>
<pre><code>Format format = new RGBFormat();
MediaLocator cameraLocator = null;
// get device list
Vector deviceList = CaptureDeviceManager.getDeviceList(format);
// if devices available
if(deviceList != null && deviceList.size() > 0) {
// pick first
CaptureDeviceInfo device = (CaptureDeviceInfo) deviceList.get(0);
cameraLocator = device.getLocator();
}
</code></pre>
<p>It picks the first available webcam. Of course, after having the webcam you can store the cameraLocator and try to re-open it on the 2nd run.</p>
http://stackoverflow.com/questions/1361417/migrating-subversion0Migrating Subversioncringe2009-09-01T09:13:49Z2009-09-01T09:28:21Z
<p>Hi guys!</p>
<p>I thought about <strong>migrating subversion</strong> a lot and I have several questions still open. I hope you can help me:</p>
<ol>
<li>When I <strong>migrate a huge directory structure into several repositories</strong> (because each directy really is a single project...), will the revision numbers still be the same? There must be gaps, because some revision will only affect other directories...</li>
<li>Is it really <strong>more administrative work</strong> to set users & permissions for several repositories?</li>
<li>Is it <strong>more backup work</strong> to back up several repositories? (No, because in the end it's only one directory with all repository directorys to back up?)</li>
</ol>
<p>And let me ask another favor: Can you provide some positive results of having multiple repositories? :-)</p>
http://stackoverflow.com/questions/8569/whats-your-best-practice-for-the-first-java-ee-spring-project5What's your "best practice" for the first Java EE Spring project?cringe2008-08-12T07:36:14Z2009-08-23T11:15:09Z
<p>I'm currently trying to get into the Java EE development with the Spring framework. As I'm new to Spring, it is hard to imaging how a good running project should start off.</p>
<p>Do you have any <em>best practices</em>, tipps or major <em>DO NOTs</em> for a starter? How did you start with Spring - big project or small tutorial-like applications? Which technology did you use right away: AOP, complex Hibernate...</p>
http://stackoverflow.com/questions/24885/do-you-use-amazons-cloud-services-for-your-company24Do you use Amazons Cloud services for your company?cringe2008-08-24T06:47:47Z2009-07-23T18:56:25Z
<p>I read a lot about the possibilities of <a href="http://aws.amazon.com/" rel="nofollow">Amazons Cloud</a> computing, like <a href="http://aws.amazon.com/s3" rel="nofollow">S3</a> or <a href="http://aws.amazon.com/ec2" rel="nofollow">EC2</a> and I wondered if someone actually uses this for mission-critical applications. Do you host your company website in the cloud? Do you store files there? Do you run your build servers in the cloud?</p>
<p>There are already some services like <a href="https://www.scalr.net/" rel="nofollow">Scalr</a> or <a href="http://weoceo.weogeo.com/" rel="nofollow">WeoCeo</a> that could help you with this task, but I don't know if management is already at the point where this is a real issue...</p>
<p><hr/></p>
<p><strong>edit</strong> I'd like to add another point: Do you think, there are <em>hidden</em> issues in the AWS licenses that would keep you (and/or your company) from outsourcing applications or even parts of applications into the cloud?</p>
<p><strong>edit</strong> Do you know about some statistics comparing the overall outage times of S3 or EC2 and your own or 3rd party hosting services?</p>
http://stackoverflow.com/questions/881880/open-source-alternative-to-mathworks-polyspace0Open Source alternative to Mathworks Polyspace?cringe2009-05-19T10:02:22Z2009-07-18T23:29:49Z
<p>Anyone knows about an open source project (or maybe just free to use in commercial projects) that is an alternative to <a href="http://www.mathworks.com/products/polyspace/" rel="nofollow">Mathworks Polyspace</a>?</p>
<p>I'm searching for tools for code checking and found some good alternatives for static checks, but PolySpace seems to offer so much more power. I think there's no real alternative out there, but maybe you know better. :)</p>
<p>As requested (sorry, for the delay, RL catches up...) I add my preferred languages for this tool:</p>
<ol>
<li>Java</li>
<li>.NET (I'll be ok with C# only)</li>
<li>C/C++ (not a must-have)</li>
</ol>
http://stackoverflow.com/questions/876840/ant-loadproperties-failed-bcel-error4Ant loadproperties failed (bcel error?)cringe2009-05-18T09:20:00Z2009-05-19T07:13:31Z
<p>I'm working on a simple build script that should get some constants from a java class file and use them as the version numbers in my file names. I use Eclipse and its own Ant, but put <em>bcel-5.2.jar</em> in my libs folder and into the classpath for the Ant call.</p>
<pre><code><target name="generate_version" depends="compile">
<loadproperties srcfile="${dir.dest}/MyVersion.class">
<classpath>
<fileset dir="${dir.libs}">
<include name="**/bcel*.jar"/>
</fileset>
</classpath>
<filterchain>
<classconstants/>
</filterchain>
</loadproperties>
</target>
</code></pre>
<p>But unfortunatly the ant task <em>loadproperties</em> fails:</p>
<pre><code>build.xml:46: expected a java resource as source
</code></pre>
<p>After that I tried to run Ant from outside Eclipse, using this command line:</p>
<pre><code>set ANT_HOME=C:\Program Files\Java\ant\apache-ant-1.7.1
"%ANT_HOME%\bin\ant.bat"
</code></pre>
<p>The result is</p>
<pre><code>Buildfile: build.xml
init:
[echo] Building project.
[echo] ant.home: C:\Program Files\Java\ant\apache-ant-1.7.1
[echo] ant.java.version: 1.6
[echo] ant.version: Apache Ant version 1.7.1 compiled on June 27 2008
compile:
[javac] Compiling 262 source files to **********\build
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
generate_version:
BUILD FAILED
********************\ant\build.xml:46: expected a java resource as source
</code></pre>
<p>I'm really lost now. Is it a bcel error? Is it an Ant incompatibility with my own bcel?</p>
<p>One last hint: Removing the bcel classpath entry from the Ant target results in this:</p>
<pre><code>Buildfile: build.xml
init:
[echo] Building project.
[echo] ant.home: C:\Program Files\Java\ant\apache-ant-1.7.1
[echo] ant.java.version: 1.6
[echo] ant.version: Apache Ant version 1.7.1 compiled on June 27 2008
compile:
[javac] Compiling 262 source files to ********************\build
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
generate_version:
BUILD FAILED
java.lang.NoClassDefFoundError: org/apache/bcel/classfile/ClassParser
at org.apache.tools.ant.filters.util.JavaClassHelper.getConstants(JavaClassHelper.java:47)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
</code></pre>
<p><strong>UPDATE</strong> After setting the Ant preferences in Eclipse, the error message changed:</p>
<pre><code>BUILD FAILED
*********************\build.xml:46: org.apache.bcel.classfile.ClassFormatException: is not a Java .class file
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:115)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:357)
at org.apache.tools.ant.Target.performTasks(Target.java:385)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)
</code></pre>
<p>Now I think it's maybe a version conflict between Ant and BCEL. Or BCEL and JDK1.6. Or Eclipse and BCEL and Ant or JDK... I'm lost.</p>
<p><hr /></p>
<p><strong>ANSWER:</strong></p>
<p>This is the comment found below </p>
<blockquote>
<p>I should have mentioned this - you do not need to convert anything. Doc: "since Ant
1.7, the character encoding ISO-8859-1 is used to convert from characters back to
bytes, so ONE HAS TO USE THIS ENCODING for reading the java class file." This is just a
convention to get round the fact that a character filter is being used on raw bytes.
ant.apache.org/manual/CoreTypes/… Using UTF-8 would be bad! – McDowell </p>
</blockquote>
http://stackoverflow.com/questions/876840/ant-loadproperties-failed-bcel-error/877433#8774331Answer by cringe for Ant loadproperties failed (bcel error?)cringe2009-05-18T12:13:07Z2009-05-18T12:13:07Z<p>Crap, I knew it! It comes down to file encoding issues. The files are still in ISO-8819-1, but I'm using UTF-8. The project is pretty aged and was created with the wrong encoding in place. Setting the parameter <em>encoding</em> in the <em>javac</em> and <em>loadproperties</em> Task fixes it.</p>
<pre><code><target name="generate_version" depends="compile">
<loadproperties encoding="iso-8859-1" srcfile="${dir.dest}/MyVersion.class">
<filterchain>
<classconstants/>
</filterchain>
</loadproperties>
</target>
</code></pre>
<p>I thought it got changed by our Subversion server, but I think I have to convert every single file to UTF-8 myself now... think that is another question for SO.</p>
http://stackoverflow.com/questions/12088/do-you-obfuscate-your-commercial-java-code3Do you obfuscate your commercial Java code?cringe2008-08-15T08:55:28Z2009-05-16T06:39:12Z
<p>I wonder if anyone uses commercial/free java obfuscators on his own commercial product. I know only about one project that actually had an obfuscating step in the ant build step for releases.</p>
<p>Do you obfuscate? And if so, why do you obfuscate?</p>
<p>Is it really a way to protect the code or is it just a better feeling for the developers/managers?</p>
<p><strong>edit:</strong> Ok, I to be exact about my point: Do you obfuscate to protect your IP (your algorithms, the work you've put into your product)? I won't obfuscate for security reasons, that doesn't feel right. So I'm only talking about protecting your applications code against competitors.</p>
<p><a href="http://beta.stackoverflow.com/users/988/staffan" rel="nofollow" title="Coding Guidelines for Cocoa">@staffan</a> has a good point:</p>
<blockquote>
<p>The reason to stay away from chaining code flow is that some of those changes makes it impossible for the JVM to efficiently optimize the code. In effect it will actually degrade the performance of your application.</p>
</blockquote>
http://stackoverflow.com/questions/833733/continuous-integration-with-multiple-projects-languages-environments2Continuous Integration with multiple projects/languages/environmentscringe2009-05-07T09:37:37Z2009-05-07T09:53:28Z
<p>I want to setup a CI server (Hudson) here at my place and already set up a test environment where I can build some of our projects. Right now I'm doing .NET and Java, but there are some other languages coming up.</p>
<p>One project really needs a special environment (3rd party software, compiler, Linux as OS) and I wondered if someone can give me an advice about how to do it.</p>
<ul>
<li>Should I run another Hudson only for this project? I wanted to use Hudson on a spare Windows box, not on Linux. Building .NET on a Linux machine sounds complicated to me... ;-) </li>
<li>Is there a way to have a "build-machine setup" where Hudson can delegate this project to another machine that is only there to build this single project?</li>
<li>Or should I stop thinking about this problem at all and let the one project go on without continuous integration? (probably the simplest but worst option, because I want to run Checkstyle/StyleCop features in my Hudson to check for code conventions and such...)[</li>
</ul>
http://stackoverflow.com/questions/672568/how-to-set-the-editor-window-tab-width-in-eclipse-not-whitespaces0How to set the editor window tab width in eclipse? (not whitespaces)cringe2009-03-23T08:39:58Z2009-03-23T09:21:49Z
<p>I wondered if it's possible to set the editor windows tab width in eclipse.</p>
<p>I hate it when I want to close several windows in a row and I always have to move the mouse. Can I set eclipse to use only ONE width for every window tab?</p>
http://stackoverflow.com/questions/51584/twitter-for-work-updates7Twitter for work updatescringe2008-09-09T10:55:04Z2009-02-19T20:24:57Z
<p>If you are sending work/progress reports to the project lead on a daily or weekly basis, I wondered if you would consider using <a href="http://twitter.com" rel="nofollow">Twitter</a> or similar services for this updates.</p>
<p>Say if you're working remotly or with a distributed team and the project lead has a hard time getting an overview about the topics people are working and where the issues/time consumers are, would you set up some private accounts (or even a private company-internal service) to broadcast progress updates to your colleagues?</p>
<p><strong>edit</strong> Thanks for the link to those products, but do you already use one of it in your company too? For real-life professional use?</p>
http://stackoverflow.com/questions/6612/are-there-any-decent-free-java-data-plotting-libraries-out-there/6683#66830Answer by cringe for Are there any decent free JAVA data plotting libraries out there?cringe2008-08-09T07:41:29Z2009-01-19T20:36:26Z<p>I've used <a href="http://www.jfree.org/jfreechart/" rel="nofollow">JFreeChart</a> in a rather complex application that needed to visualize data streams and calculations based on the data. We implemented the ability to visually edit the data plots by mouse and had a very large set of data points. JFreeChart handled it very well.</p>
<p>Unfortunately I was stuck with v0.7, but the newest release are sooo much better when it comes to API clarity. The community is very helpful and the developers are responding to mails too.</p>
<p>If you're doing a web application and don't want to bother with libraries, you can check the <a href="http://code.google.com/apis/chart/" rel="nofollow">Google Chart API</a>. Didn't use it myself, but I started some tests which were very promising.</p>
http://stackoverflow.com/questions/9574/which-startup-vip-do-you-follow5Which startup VIP do you follow?cringe2008-08-13T08:06:57Z2009-01-02T23:33:29Z
<p>Do you have a prominent example of a startup person you follow? Like the Twitter, blog, video podcast of <a href="http://kevinrose.com" rel="nofollow" title="Unison Home Page">Kevin Rose</a> from <a href="http://digg.com" rel="nofollow">Digg</a>. Or the writings of <a href="http://www.joelonsoftware.com/" rel="nofollow">Joel Spolsky</a>?</p>
<p>Is it common for the startup people to share their thoughts on blogs? Or do you feel like there's not enough information about your favorite startup? (Personally, I love the stackoverflow blog & podcast, I think it is a great thing to follow.)</p>
http://stackoverflow.com/questions/330793/how-to-initialize-a-struct-in-ansi-c1How to initialize a struct in ANSI C?cringe2008-12-01T13:13:17Z2008-12-01T13:39:53Z
<p>Hi guys!</p>
<p>I'm not a specialist for ANSI C (or <em>regular</em> C at all), so I stumbled about this stupid thing:</p>
<p>I want to initialize a struct element, splitted in declaration and initialization. This is what I got:</p>
<pre><code>typedef struct MY_TYPE {
boolean flag;
short int value;
double stuff;
} MY_TYPE;
void function(void) {
MY_TYPE a;
...
a = { true, 15, 0.123 }
}
</code></pre>
<p>Is this the way to declare and initialize a local variable of MY_TYPE in ANSI C? Or is there anything better or at least working.</p>
<p>I feel sorry to ask this. %-)</p>
<p><strong>Update</strong> I ended up having a static initialization element where I set every subelement according to my needs.</p>
http://stackoverflow.com/questions/51349/how-do-you-start-knowledge-transfer10How do you start Knowledge Transfer?cringe2008-09-09T07:27:39Z2008-10-19T16:01:28Z
<p>Do you use a formal event to get people talking in your IT department? Like a <strong>monthly meetup</strong> in a social place, a <strong>internal wiki/chat</strong> space or just a regular "information market" with some <strong>presentations about technology or projects</strong> made by your staff for your staff? Do you invite Sales people to participate or is it a closed event for programmers only?</p>
<p>How do you get people to participate in these events? Do you allow them to spent work time on knowledge transfer? Or do you understand it as an integral part of the work time?</p>
<p>I wonder how to monitor the progress of knowledge transfer itself. How do you spot critical one-person spots of failure in your projects? There are several methods to avoid it, like staff swapping or the "fifo" attempt on bug fixing.</p>
<p><em>Note:</em> Ok, this is a very very noisy question and I hope to fix it after a few comments. Sorry for the mixup.</p>
<p><strong>edit</strong>: My personal experience is that there is a very high barrier for people to start contributing. It looks like they won't put in the (minimal) extra time to edit our wiki, or spend the hour in the afternoon to talk about technology topics with the developing staff. It's like people don't like our wiki, our document management system or the meeting. Maybe it's because it's all free-to-use and not forced by the management. But I don't like to force people into it - but is it the right way?</p>
<p>One example: Our wiki holds pages about projects, telling who worked on it to get a first contact in case of questions. But nobody besides a colleague and me is creating this pages...</p>
http://stackoverflow.com/questions/19519/do-you-use-virtualized-desktops-for-legacy-seldom-used-applications2Do you use virtualized desktops for legacy/seldom used applications?cringe2008-08-21T09:25:33Z2008-09-28T11:56:23Z
<p>I wondered if anyone uses virtualized desktop PCs (running WinXP Pro or older) to have some old applications that are seldom used available for some ongoing tasks.</p>
<p>Say you have a really old project that every once in a while needs a document update in a database system or something like that. The database application is running on a virtualized desktop that is only started when needed.</p>
<p>I think we could save energy, hardware and space if we would virtualize some of those old boxes. Any setups in your company?</p>
<p><hr /></p>
<p><strong>edit</strong> Licensing could be of concern, but I guess you have a valid license for the old desktop box. Maybe the license isn't valid in a VM environment, I'd definitly check that before.</p>
<p>Sure enough, if the application is performance critic, virtualization could hurt. But I'm thinking about some kind of outdated application that is still used to perform, say a calculation every 12 weeks for a certain customer/service.</p>
http://stackoverflow.com/questions/9749/what-kind-of-servers-did-you-virtualize-lately2What kind of servers did you virtualize lately?cringe2008-08-13T13:00:23Z2008-09-22T16:46:09Z
<p>I wonder what type of servers for internal usage you virtualize in the last -say- 6 months. Here's what we got virtual so far:</p>
<ul>
<li>mediawiki</li>
<li>bugtracker (mantis)</li>
<li>subversion</li>
</ul>
<p>We didn't virtualize spezialized desktop PCs which are running a certain software product, that is only used once in a while. Do you plan to get rid of those old machines any time soon?</p>
<p>And which server products do you use? Vmware ESX, Vmware Server, Xen installations...?</p>
http://stackoverflow.com/questions/53887/where-do-you-go-to-tickle-your-brain-to-get-programming-challenges/53998#539982Answer by cringe for Where do you go to tickle your brain [to get programming challenges]?cringe2008-09-10T13:12:09Z2008-09-10T13:12:09Z<p>As a java developer I go to <a href="http://www.javablackbelt.com/" rel="nofollow">Java Blackbelt</a>. And of course <a href="http://thedailywtf.com/" rel="nofollow">Daily WTF</a> - for the dark side...</p>
http://stackoverflow.com/questions/39772/encrypt-data-from-users-in-web-applications/39815#398150Answer by cringe for Encrypt data from users in web applicationscringe2008-09-02T15:33:41Z2008-09-02T15:33:41Z<p>Well, I'd consider a process similar to Amazons AWS. You authenticate with a private password that is not saved remotely. Just a hash is used to validate the user. Then you generate a certificate with one of the main and long-tested algorithms and provide this from a secure page. Then a public/private key algorithm can be used to encrypt things for the users.</p>
<p>But the main problem remains the same: If someone with enough privileges can access the data (say: hacked your server), you're lost. Given enough time and power, everything could be breaked. It's just a matter of time.</p>
<p>But I think algorithms and applications like GPG/PGP and similar are very well known and can be implemented in a way that secure web applications - and keep the usability at a score that the average user can handle.</p>
<p><strong>edit</strong> I want to catch up with <a href="http://beta.stackoverflow.com/users/2095/carl-seleborg" rel="nofollow">@Carl</a> and <a href="http://beta.stackoverflow.com/users/115/unkwntech" rel="nofollow">Unkwntech</a> and add their statement: If you don't trust the site itself, don't give private data away. That's even before someone hacks their servers... ;-)</p>
http://stackoverflow.com/questions/1775465/run-junit-automatically-when-building-eclipse-project/1775634#1775634Comment by cringe on Run JUnit automatically when building Eclipse projectcringe2009-11-22T07:22:07Z2009-11-22T07:22:07ZJust a question: You do run your unit tests locally before checking in, right? Do you have rule of thumb when you run them? After you think your edit could break something? Or only once before commiting?http://stackoverflow.com/questions/1775465/run-junit-automatically-when-building-eclipse-project/1775498#1775498Comment by cringe on Run JUnit automatically when building Eclipse projectcringe2009-11-22T07:20:25Z2009-11-22T07:20:25ZAfter thinking about it, I'd like to see a plugin execute the last tests I started manually. That would help a lot right now. Inifitiest looks nice, maybe I try it. But payware is not getting priority... ;-)http://stackoverflow.com/questions/1775465/run-junit-automatically-when-building-eclipse-project/1775634#1775634Comment by cringe on Run JUnit automatically when building Eclipse projectcringe2009-11-21T17:02:45Z2009-11-21T17:02:45ZAh, sure. Hudson is doing integration, but I find it somewhat annoying to click around in Eclipse just to start the tests after changing. ;-) Maybe the plugin should be so clever to just run the testcases that test the class I changed. Running all tests on every change would be too annoying.http://stackoverflow.com/questions/1774889/cobertura-ant-script-is-missing-log4j-classes/1774987#1774987Comment by cringe on Cobertura ant script is missing Log4J classescringe2009-11-21T09:39:35Z2009-11-21T09:39:35ZHm, I just tried to build it outside of my Eclipse, with manually set CLASSPATH and it works. I have to check what Eclipse is doing to my classpath... :-(http://stackoverflow.com/questions/1742330/embedded-jetty-servlettester-serving-single-static-file/1745640#1745640Comment by cringe on Embedded jetty ServletTester serving single static filecringe2009-11-17T06:58:10Z2009-11-17T06:58:10ZThanks for your response. I thought that ServletTester won't give me as much choice. I don't know if I want to setup a full jetty server for my unit test, but I'll take a look at it.http://stackoverflow.com/questions/1593016/run-jettys-servlettester-within-junit-test/1593048#1593048Comment by cringe on Run Jettys ServletTester within JUnit testcringe2009-10-20T08:19:54Z2009-10-20T08:19:54ZOh, crap. It has to be defined outside the test to be public so that the ServletHolder can access it... thanks a lot. :-)http://stackoverflow.com/questions/1593016/run-jettys-servlettester-within-junit-test/1593048#1593048Comment by cringe on Run Jettys ServletTester within JUnit testcringe2009-10-20T08:13:33Z2009-10-20T08:13:33ZSorry, I forgot to mention that my <code>HelloServlet</code> is defined in the same file as the unit test.http://stackoverflow.com/questions/1581886/apache-james-as-a-transparent-smtp-proxy/1581943#1581943Comment by cringe on Apache James as a transparent SMTP proxy?cringe2009-10-19T06:27:01Z2009-10-19T06:27:01ZAm I right that I have to write my own Matcher for this? Something (maybe deciding on a special string in the subject) that has to edit the incoming mail and then connects to the outgoing SMTP to relay it?http://stackoverflow.com/questions/1560230/running-apache-ds-embedded-in-my-application/1562328#1562328Comment by cringe on Running Apache DS embedded in my applicationcringe2009-10-14T06:04:43Z2009-10-14T06:04:43ZThanks, that's it. I had to change some lines to match my version of ApacheDS. You can see the result in the question.http://stackoverflow.com/questions/1560230/running-apache-ds-embedded-in-my-application/1560278#1560278Comment by cringe on Running Apache DS embedded in my applicationcringe2009-10-13T13:33:44Z2009-10-13T13:33:44ZBut is it the default port for ApacheDS too? And is ApacheDS creating an LDAP access with the above code...?http://stackoverflow.com/questions/1553991/how-to-call-wsdl2java-from-ant-with-whitespaces-in-my-pathComment by cringe on How to call WSDL2JAVA from ant with whitespaces in my pathcringe2009-10-12T11:58:10Z2009-10-12T11:58:10ZAh, sorry. I changed the real path and forgot the index. It corresponds to the position of the illegal character.http://stackoverflow.com/questions/1553991/how-to-call-wsdl2java-from-ant-with-whitespaces-in-my-path/1554086#1554086Comment by cringe on How to call WSDL2JAVA from ant with whitespaces in my pathcringe2009-10-12T11:51:39Z2009-10-12T11:51:39ZI used the short name as a hardcoded value now, but I really have to get rid of it. So I think I'll get the ContribTask UrlEncode in my ant. Thankshttp://stackoverflow.com/questions/1553991/how-to-call-wsdl2java-from-ant-with-whitespaces-in-my-path/1554034#1554034Comment by cringe on How to call WSDL2JAVA from ant with whitespaces in my pathcringe2009-10-12T11:50:58Z2009-10-12T11:50:58ZI was using the project ${basedir}. For now I hardcoded the project path with shortcuts as described by <b>akf</b> in a comment. I think I have to use UrlEncode to get rid of the hardcoded path. :-/ Thankshttp://stackoverflow.com/questions/1553991/how-to-call-wsdl2java-from-ant-with-whitespaces-in-my-path/1554086#1554086Comment by cringe on How to call WSDL2JAVA from ant with whitespaces in my pathcringe2009-10-12T11:48:02Z2009-10-12T11:48:02ZI'm not using hardcoded directory names, I'm using the project $basedir which is set as ".".http://stackoverflow.com/questions/1553991/how-to-call-wsdl2java-from-ant-with-whitespaces-in-my-path/1554034#1554034Comment by cringe on How to call WSDL2JAVA from ant with whitespaces in my pathcringe2009-10-12T11:31:09Z2009-10-12T11:31:09ZOh, and btw. WSDL2JAVA wants an URI or a path, so I think I don't need to URLencode it:
[java] Usage: WSDL2Java [options] -uri <url or path> : A url or path to a WSDL