User JeroenWyseur - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T09:13:24Z http://stackoverflow.com/feeds/user/15490 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams 10 Is there a wiki that also contains architectural diagrams? JeroenWyseur 2008-09-23T10:51:51Z 2009-11-04T16:58:02Z <p>I like a wiki to contain information that needs to be known within a team. Having the expression in mind, "A picture is worth a thousand words", I would like to make a small class diagram, sequence diagram or component diagram inside a wiki using an ajax or flash plugin.</p> <p>We currently don't do any technical design because they are often lost in some program or out dated. Being able to put these in a wiki (and update them there) would make them useful again.</p> <p>Do you know of any wiki's that have that functionality?</p> http://stackoverflow.com/questions/100107/reasons-of-getting-a-java-lang-verifyerror 3 Reasons of getting a java.lang.VerifyError JeroenWyseur 2008-09-19T06:49:17Z 2009-05-27T21:03:35Z <p>I'm investigating the following java.lang.VerifyError</p> <pre><code>java.lang.VerifyError: (class: be/post/ehr/wfm/application/serviceorganization/report/DisplayReportServlet, method: getMonthData signature: (IILjava/util/Collection;Ljava/util/Collection;Ljava/util/HashMap;Ljava/util/Collection;Ljava/util/Locale;Lorg/apache/struts/util/MessageRe˜̴MtÌ´MÚw€mçw€mp:”MŒŒ at java.lang.Class.getDeclaredConstructors0(Native Method) at java.lang.Class.privateGetDeclaredConstructors(Class.java:2357) at java.lang.Class.getConstructor0(Class.java:2671) </code></pre> <p>It occurs when the jboss server in which the servlet is deployed is started. It is compiled with jdk-1.5.0_11 and I tried to recompile it with jdk-1.5.0_15 without succes. That is the compilation runs fine but when deployed, the java.lang.VerifyError occurs.</p> <p>When I changed the methodname and got the following error:</p> <pre><code>java.lang.VerifyError: (class: be/post/ehr/wfm/application/serviceorganization/r eport/DisplayReportServlet, method: getMD signature: (IILjava/util/Collection;Lj ava/util/Collection;Ljava/util/HashMap;Ljava/util/Collection;Ljava/util/Locale;L org/apache/struts/util/MessageResources┬á├ÿ├àN|├ÿ├àN├Üw┬Çm├ºw┬ÇmX#├ûM|X├öM at java.lang.Class.getDeclaredConstructors0(Native Method) at java.lang.Class.privateGetDeclaredConstructors(Class.java:2357 at java.lang.Class.getConstructor0(Class.java:2671) at java.lang.Class.newInstance0(Class.java:321) at java.lang.Class.newInstance(Class.java:303) </code></pre> <p>You can see that more of the method signature is shown.</p> <p>The actual method signature is</p> <pre><code> private PgasePdfTable getMonthData(int month, int year, Collection dayTypes, Collection calendarDays, HashMap bcSpecialDays, Collection activityPeriods, Locale locale, MessageResources resources) throws Exception { </code></pre> <p>I already tried looking to it with javap and that gives the method signature as it should be.</p> <p>When my other colleagues check out the code, compile it and deploy it, they have the same problem. When the build server picks up the code and deploys it on development or testing environments (HPUX), the same error occurs. Also an automated testing machine running ubuntu shows the same error during server startup.</p> <p>The rest of the application runs ok, only that one servlet is out of order. Any ideas where to look would be helpful.</p> http://stackoverflow.com/questions/374885/can-i-change-the-headers-of-the-http-request-send-by-the-browser 2 Can I change the headers of the HTTP request send by the browser? JeroenWyseur 2008-12-17T15:25:49Z 2009-05-01T06:45:11Z <p>I'm looking into a restful design and would like to use the HTTP methods (POST, GET, ...) and HTTP headers as much as possible. I already found out that the HTTP methods PUT and DELETE are not supported from the browser.</p> <p>Now I'm looking to get different representations of the same resource and would like to do this by changing the Accept header of the request. Depending on this Accept header, the server can serve a different view on the same resource.</p> <p>Problem is that I don't find a way to tell my browser to change this header. </p> <p>The a tag has a <a href="http://www.w3.org/TR/html401/struct/links.html#adef-type-A" rel="nofollow">type attribute</a> that can have a mime type looked like a good candidate but the header was still the browser default (in firefox it can be changed in about:config with the network.http.accept.default key).</p> http://stackoverflow.com/questions/131975/what-are-the-benefits-of-dependency-injection-containers/131992#131992 0 Answer by JeroenWyseur for What are the benefits of dependency injection containers? JeroenWyseur 2008-09-25T07:45:13Z 2008-09-25T07:45:13Z <p>Spring also has a properties loader. We use this method to set variables that are dependant on the environment (e.g. development, testing, acceptance, production, ...). This could be for example the queue to listen to.</p> <p>If there is no reason why the property would change, there is also no reason to configure it in this way.</p> http://stackoverflow.com/questions/119926/jsecuritycheck-and-jaas/120282#120282 0 Answer by JeroenWyseur for j_security_check and JAAS JeroenWyseur 2008-09-23T10:45:10Z 2008-09-23T10:45:10Z <p>Use what you container provides and don't implement your database lookup to do this. When the container knows who is logged in, you can use the roles to restrict access to certain pages. There are also <a href="http://java.sun.com/j2ee/1.4/docs/tutorial/doc/Security5.html" rel="nofollow">different types of authentication.</a></p> <p>Using JAAS will give you the flexibility to use another way of verifying the password (for example in active directory). Also single-sign-on could be implemented with this.</p> http://stackoverflow.com/questions/114575/serializing-date-in-java/114688#114688 5 Answer by JeroenWyseur for Serializing Date in Java JeroenWyseur 2008-09-22T12:52:54Z 2008-09-22T12:52:54Z <p>The date class has a clunky API. A better implementation is <a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda Time</a>. It also allows you to convert your date in a ISO8601 format (yyyy-mm-ddTHH:MM:SS.SSS). Using this standard when moving dates from server to its client has the advantage to include the full date in a readable format. When you use for example JAXB, the XML representation of a date is also this ISO standard. (see the XMLGregorianCalendar class)</p> http://stackoverflow.com/questions/91627/jboss-4-23-and-ejb-2-support/91781#91781 0 Answer by JeroenWyseur for JBoss 4.23 and EJB 2 support JeroenWyseur 2008-09-18T11:35:02Z 2008-09-18T11:35:02Z <p>EJB2-style beans should still work in the 4.2 release. What interface do you want to cast to? Maybe that particular interface was renamed or moved. You should try not to use container-specific classes.</p> http://stackoverflow.com/questions/91257/scrum-burndown-issues/91298#91298 -1 Answer by JeroenWyseur for Scrum Burndown issues JeroenWyseur 2008-09-18T09:51:22Z 2008-09-18T09:51:22Z <p>This is as it should be. If your burndown chart looks like the model chart, you're in trouble. The chart will help to see if you will be able to make you commitment and finish all the stories.</p> <p>Discovering stories during the sprint will always happen. Ideally you would be able to design and find out the tasks up front but if they worked why would a big upfront design not work? To answer you last question, the sprint planning should take <a href="http://www.scrumalliance.org/view/scrum_ceremonies" rel="nofollow">at most four hours</a>.</p> http://stackoverflow.com/questions/91061/j2ee-app-server-hello-world/91111#91111 5 Answer by JeroenWyseur for J2EE App Server Hello World JeroenWyseur 2008-09-18T09:12:13Z 2008-09-18T09:12:13Z <p>The JavaEE (they dropped the 2) space is pretty big. A good tutorial to start is <a href="http://java.sun.com/javaee/5/docs/tutorial/doc/" rel="nofollow">the one from Sun</a>. For a simple hello world application, the web container only would suffice. A well known servlet jsp container is tomcat. See <a href="http://www.coreservlets.com/Apache-Tomcat-Tutorial/" rel="nofollow">here</a> for installation instructions. Try installing it with eclipse and create a web project. This will generate some files for you that you can look at and edit. Also starting and stopping the application server is simpler.</p> http://stackoverflow.com/questions/82429/when-hibernate-flushes-a-session-how-does-it-decide-which-objects-in-the-session/82640#82640 1 Answer by JeroenWyseur for When Hibernate flushes a Session, how does it decide which objects in the session are dirty? JeroenWyseur 2008-09-17T12:36:27Z 2008-09-17T12:36:27Z <p>Take a look to org.hibernate.event.def.DefaultFlushEntityEventListener.dirtyCheck Every element in the session goes to this method to determine if it is dirty or not by comparing with an untouched version (one from the cache or one from the database). </p> http://stackoverflow.com/questions/82235/is-there-a-problem-with-jpa-entities-oracle-10g-and-calendar-type-properties/82416#82416 0 Answer by JeroenWyseur for Is there a Problem with JPA Entities, Oracle 10g and Calendar Type properties? JeroenWyseur 2008-09-17T12:11:55Z 2008-09-17T12:11:55Z <p>I already had my share of problems with JPA and timestamps. I've been reading in the <a href="http://forums.oracle.com/forums/thread.jspa?threadID=612075" rel="nofollow">oracle forums</a> and please check the following:</p> <ul> <li>The field in the database should be TIMESTAMP_TZ and not just TIMESTAMP</li> <li>Try adding the annotation @Temporal(value = TemporalType.TIMESTAMP)</li> <li>If you don't really need the timezone, put in a date or timestamp field.</li> </ul> http://stackoverflow.com/questions/374885/can-i-change-the-headers-of-the-http-request-send-by-the-browser/374925#374925 Comment by JeroenWyseur on Can I change the headers of the HTTP request send by the browser? JeroenWyseur 2008-12-17T15:46:20Z 2008-12-17T15:46:20Z On a side note, the specification (<a href="http://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/#dfn-open" rel="nofollow">w3.org/TR/2006/&hellip;</a>) says nothing about PUT and DELETE, see the editorial note. Also, there is no submit in that case what is nice a ajaxified user interface but otherwise not. http://stackoverflow.com/questions/374885/can-i-change-the-headers-of-the-http-request-send-by-the-browser/374925#374925 Comment by JeroenWyseur on Can I change the headers of the HTTP request send by the browser? JeroenWyseur 2008-12-17T15:45:04Z 2008-12-17T15:45:04Z Thank you for the fast answer but the question is about changing the default headers send in the HTTP request. In particular the Accept header. http://stackoverflow.com/questions/114575/serializing-date-in-java/114688#114688 Comment by JeroenWyseur on Serializing Date in Java JeroenWyseur 2008-09-25T07:40:02Z 2008-09-25T07:40:02Z Nice article about the new API: <a href="http://today.java.net/pub/a/today/2008/09/18/jsr-310-new-java-date-time-api.html" rel="nofollow">today.java.net/pub/a/&hellip;</a> http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams/120338#120338 Comment by JeroenWyseur on Is there a wiki that also contains architectural diagrams? JeroenWyseur 2008-09-23T13:28:13Z 2008-09-23T13:28:13Z A pity that it is not free. Seems really nice and would be better than the solution I accepted. http://stackoverflow.com/questions/100107/reasons-of-getting-a-java-lang-verifyerror/100134#100134 Comment by JeroenWyseur on Reasons of getting a java.lang.VerifyError JeroenWyseur 2008-09-23T11:40:12Z 2008-09-23T11:40:12Z I'm sure it is not present somewhere else. It's 43Kb, that is still a big class. http://stackoverflow.com/questions/100107/reasons-of-getting-a-java-lang-verifyerror/101364#101364 Comment by JeroenWyseur on Reasons of getting a java.lang.VerifyError JeroenWyseur 2008-09-23T11:37:01Z 2008-09-23T11:37:01Z Thanks for the suggestion but did not reveal anything more. http://stackoverflow.com/questions/120158/long-lived-restful-interactions/120271#120271 Comment by JeroenWyseur on Long-lived RESTful interactions JeroenWyseur 2008-09-23T11:11:13Z 2008-09-23T11:11:13Z On the same link, 206 Partial Content seems applicable. http://stackoverflow.com/questions/82235/is-there-a-problem-with-jpa-entities-oracle-10g-and-calendar-type-properties/82416#82416 Comment by JeroenWyseur on Is there a Problem with JPA Entities, Oracle 10g and Calendar Type properties? JeroenWyseur 2008-09-23T10:35:02Z 2008-09-23T10:35:02Z The annotations are JPA annotations thus not specific for eclipselink. I used it with hibernate and they work OK. http://stackoverflow.com/questions/114575/serializing-date-in-java/114688#114688 Comment by JeroenWyseur on Serializing Date in Java JeroenWyseur 2008-09-23T10:32:47Z 2008-09-23T10:32:47Z Thanks! Didn't know that myself. Finally a better Date implementation.