Martin OConnor

1,403
Reputation
147 views

Registered User

Name Martin OConnor
Member for 1 year
Seen 51 mins ago
Website
Location IE
Age 28
I am a software developer working in Dublin, Ireland
Nov
27
comment Synchronizing on two or more objects (Java)
@Azimuth You need to protect access at the field level, which means all methods that access those fields need to synchronize on the same lock object. In short, you will need to add a synchronized block to the checkFreeSpace() too.
Nov
27
answered Synchronizing on two or more objects (Java)
Nov
23
comment How to create Java applets?
This does not really answer the question
Nov
17
comment How do I add a namespace attribute to an element in JAXB when marshalling?
Why not generate aginst the schema specified in the WSDL? developer.ebay.com/webservices/bulk-data-exchange/…
Nov
16
comment can we delete sms in android before it reaching to inbox
removed incorrect tags
Nov
16
revised can we delete sms in android before it reaching to inbox
edited tags
Nov
10
comment How to force a Java thread to close a thread-local database connection
In that case you could use a List<Thread> to store all the Threads that access the ThreadLocal
Nov
10
revised How to force a Java thread to close a thread-local database connection
added 67 characters in body
Nov
10
answered How to force a Java thread to close a thread-local database connection
Oct
21
comment Problem viewing textfields in java applet
It depends what the code in the table class is doing
Sep
29
comment Using Java Webservice in .NET
It really depends on which Java library is being used to implement the webservice.
Sep
28
answered Using Java Webservice in .NET
Sep
28
comment Log4J properties file - where to put it
It should be in WEB-INF/classes and packaged within the war file
Sep
28
answered Log4J properties file - where to put it
Sep
25
answered Why IllegalArgumentException (JDK 1.4.2) cannot be constructed with a throwable cause ?
Sep
22
answered Can Java Annotations help me with this?
Sep
19
awarded  Yearling
Sep
16
accepted How to unit-test logic in jsp?
Sep
9
answered How to unit-test logic in jsp?
Sep
9
comment Java or mono for a new project
That depends on the nature of the project
Sep
6
answered Java’s setPreferredSize won’t resize JPanel
Sep
5
comment What is the best way to tokenize a text file in Java?
Can you perhaps give an example of what you are trying to achieve?
Aug
31
comment Generic tree implementation in Java
@Ivan Seems like you would have to write unit tests anyways to test that your assumptions about the "well tested" code you are looking for are correct
Aug
31
comment Generic tree implementation in Java
How do you access the TreeNode's children exactly ? :P
Aug
27
comment Java VM suddenly exiting without apparent reason
The issue is a OutOfMemoryError, probably in a thread that re-hashes the hashmap once it grows above a certain size
Aug
27
comment Java VM suddenly exiting without apparent reason
I have tried this. I can reproduce it. The Java exe process is returning error code 1 to the OS. I suspect there is a bug in the hashmap's rehashing. I am on Sun's JDK 1.6.0_16
Aug
7
comment How to test void method with Junit testing tools?
What is the Class under test?
Aug
4
revised What’s new in Java as of August 2009?
edited title
Jul
31
accepted RandomAccessFiles don’t close until application exit.
Jul
31
revised RandomAccessFiles don’t close until application exit.
added 40 characters in body
Jul
31
comment RandomAccessFiles don’t close until application exit.
@kd304 Of course, you are right :)
Jul
31
answered RandomAccessFiles don’t close until application exit.
Jul
25
comment Best Apache Ant Template
Maven may be better than ant but this does not answer the question. There is not always the luxury of being able to switch to maven.
Jul
24
awarded  Popular Question
Jul
21
answered JBoss: How to generate a Web Service FROM a WSDL?
Jul
6
comment call httpclient from servlet
Just a word of advice. You probably want to filter the url before passing it to the httpclient, otherwise some very bad people will do some very bad things with your server.