 |
 |
Index ‹ java-programmer
|
- Previous
- 1
- GCJ 4.1 and OpenOffice.orgFWIW, I have been working with Eric Anholt to have Kaffe (java/kaffe)
supported by bsd.java.mk. The only thing with miss is a port of a
Javadoc tool so that ports documentation may be built without any Sun or
IBM JDK. I believe gjdoc (can't remember if this part of classpath or
another "free" Java tool) could be used in place of javadoc.
I'll have a look at your wrapper and modifications in the next few days.
Herve
On Fri, Mar 10, 2006 at 10:59:35AM +0900, NAKATA Maho wrote:
> I believe gcj is now one of the usable Java implementation,
> however there are some small (but tedious) issues must be solved to
> check in to FBSD ports cvs repo.
> I made some ports or updates of ports so that we can at least compile a
> package using Java; OpenOffice.org. I believe with appropreate wrapper,
> we can add gnugcj as _JAVA_VENDOR_LIST in /usr/ports/Mk/bsd.java.mk.
> then we can use/comple Java applications without bootstrapping java/jdk14
> etc.
- 3
- JMF on pocket pcI wrote an application for my iPAQ, and use JMF cross-platform
version, with Jeode, to playback a file.wav, but when the application
starts, the console shows these errors :
at com.sun.media.renderer.audio.JavaSoundRenderer.initDevice()
at com.sun.media.renderer.audio.JavaSoundRenderer.open()
at com.sun.media.BasicRendererModule.doPrefetch()
at com.sun.media.BasicTrackControl.prefetchTrack()
at com.sun.media.PlaybackEngine.doPrefetch1()
at com.sun.media.PlaybackEngine.doPrefetch()
at com.sun.media.PrefetchWorkThread.process()
at com.sun.media.StateTransitionWorkThread.run()
Why???
- 4
- Signed applet focus problem,.Hello,
I have a jsp page which contains a signed applet which reads some
System properties.
I am using jdk 1.4.2_06. and IE 6.028.
When the signed certificate appears, if I click on the Internet
Explorer icon in the task bar, the certificate goes below the browser.
Now since the certificate is supposedly modal, My browser loses focus.
ie. I cannot bring the certificate to the front sans tabbing and the
browser will not respond to user input. The only way to get the
certificate to the front is by "tabbing" till I get to it.
Any one seen this behavior before? If so any suggestion would be
appreciated.
Thanks
Karl.
- 4
- cult3d e javaHo compilato un java per usarlo con cult3d ma quando lo chiamo dal cult mi
ritorna questo errore:
java.lang.NoClassDefFoundError
at com/ms/security/SecurityClassLoader.internalDefineClass
at com/ms/security/SecurityClassLoader.defineClass
at com/cult3d/IECult3DClassLoader.loadClass
at com/cult3d/IECult3DMain.event
Succede lo stesso anche se provo a compilare un esempio base di cult, a
questo punto penso di dover cambiare qualcosa nella procedura di
compilazione.
Qualcuno ha gia' sbattuto la testa contro questo errore?
- 4
- reference to a jar file inside another jar fileHi, I need create a manifest file for a jar, but I need set the classpath in
the manifest file to reference a jar file inside the current jar file. My
idea is getting a single jar file which contains all the needed jar files.
- 4
- Refer to current filename and line.Hi,
I remember this was possible in C with macros. Is it possible in Java
to refer to the current file name and line number as in
System.out.println( something.that.returns.current.file.name() + "
printed this line.");
Many thanks in advance!
Aaron
- 5
- 11
- Seeing if a string equals NullHow can you test a string to see if it is null? I have tried the
following code but it throws a nullpointerexception.
for (int i = 0; i < names.length; ++i) {
if (names[i].equals("null")) {
nullcount += 1;
}
- 11
- Dying hype: Slowing sales of iPhone
Well, the hype sure died fast. For those morons who think 700k units
were sold over the weekend - hey idiots, that's an ESTIMATE from one
source, and the most generous one at that. The range of sales
estimates is from 250k to 700k.
In fact, some analysts have downgraded sales projections for next year
from 12 m to 8 million based on the fact that supply seemed to be more
than demand.
think about it morons. ur selling 8 million phones in a 1 BILLION unit
yearly market.
* laughing at the macnut tools who spent lots of money on a smudgy
underwhelming toy (so far), enjoying the nice breeze too
- 11
- Runtime - external program visibility
Hello,
i use the getRuntime method to start an external program out of
my Java app: Runtime.getRuntime().exec(cmd);
where cmd is an array of String
String[] cmd =
{ "\"c:/Whatever.exe\"","/user=User","/password=XXX"};
Now the issue is that the program (Whatever.exe) starts, it
accepts the parameters (user,password), - the / is required by
Whatever.exe - but the window of the application Whatever.exe is
not visible! The process is there (one can see it in the
taskmanager).
In Delphi i have the possibility by using Windows.CreateProcess
and passing a "StartupInfo"
(lStartupInfo.dwFlags:= STARTF_USESHOWWINDOW;
lStartupInfo.wShowWindow:= SW_SHOWNORMAL;) but here in Java i dont see a possibility of determining in which way the external app is being started up or determining its visibility.
kind regards
Oliver
- 12
- How to kill thread which is blocked by Serversocket.accept()?Hi;
I have got a network-thread running in the background listening for
connection-attempts.
The thread uses an instance of Serversocket and its accept() method to
listen.
After a certain period of time i want to kill the thread if no connection is
established.
The problem is: the accept-method blocks until someone connects.
Therefore it is not possible for me to use the interrupted-flag and check it
within a loop in my
thread to signalize it to end (the recommended way to kill a thread). I dont
want to use the thread.stop
() method since it is deprecated, but even when i try to use it i can not
kill the thread.
Within my gui thread i tried to use a swing timer, but it doesnt kill the
thread:
timer = new Timer(TEN_SECONDS, new ActionListener() {
public void actionPerformed(ActionEvent evt) {
if (networkThread.isAlive) {
timer.stop();
networkThread.stop();
//...Update the GUI...
}
}
Anybody there who knows a proper way of killing such a blocked thread?
Thanks in advance,
Jan
- 12
- Execute jar in program codeI have a jar file, without source code, say abc.jar.
I have set it in the CLASSPATH
The main execute class in abc.jar is a.class.
In the command prompt, I can execute the program by
issuing "java a < someIOfile"
But I would be like to embed it in my program.
Can I create a "dynamic" instance from it?
- 15
- loading varablesI have a variable "book" which askes the user for four titles which will be
with one patron's name.
How would i load this with a loop?
Some how I am getting lost?
Thank you.
input Patron's name
name = reader.readLine("Enter the first patron's name: ");
patron.setName(p);
for (int i = 1; i <= 3; i++){
Book = reader.readLine("Enter the book's title: ");
Book.setBook(i, Book);
- 15
- Which executable is used to run Java applets ?When a webpage attempts to run an applet, which executable on my
computer gets launched? Is it "java.exe"?
My reason for this question is that my browser (Mozilla 1.4)
apparently doesn't offer the option to refuse to run Java applets.
So I searched for every occurrence of "java.exe" on my hard-drive
and renamed all of them to something else.
I even re-booted the computer afterwards and then cleared
the browser's cache.
When I went back to a website that runs applets, it took a while
but finally did run the applet, as evidenced by that
familiar coffee-cup icon in the system tray.
So could it be that "java.exe" is not the executable called to run
Java applets? If not, which one would it be?
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
- 15
- awt Dialog color problemHi, I'm using jdk 1.1.8 on an embedded application which runs under Personal
Java on VxWorks (I think). But anyway, that may not matter. I'm displaying
an awt Dialog and the color of the title bar is a pretty ordinary looking
red. I'm guessing this comes from O/S like it would in MS Windows. I have
no access to the operating system to change this. Is there any way to
change system colours in java?
Chris.
|
| Author |
Message |
Aaron Fude

|
Posted: 2008-5-9 6:20:00 |
Top |
java-programmer, To wrap or not to wrap?
Hi,
In my personal development efforts, I frequently wrap basic java
functionality. For example, I have a
String MyIO.urlToString(String url)
or
byte[] MIO.urlToBytes(String url)
etc. These functions catch exceptions and return null if something
goes wrong. I have other functoins that, for example, load database
queries into maps.
My gereneral questions are these. Does everybody pretty much end up
writing convenience wrappers like these for themselves?. If yes, why
aren't utilities like these commonly available as more or less
standard libraries? And if no - why not? Is it a bad idea to use these
and is it for some reason better to, e.g., always form URL's, open
connections, capture exceptions, etc.
Thanks for your opinions!
Aaron
|
| |
|
| |
 |
ram

|
Posted: 2008-5-9 6:54:00 |
Top |
java-programmer >> To wrap or not to wrap?
Aaron Fude <email***@***.com> writes:
>These functions catch exceptions and return null
You must like the classic C idiom
if( f = fopen( "alpha", "r" ))
{ use( f );
close( f ); }
else
{ handle_failure( "alpha", "r" ); }
more than exception idioms like
try
{ f = fopen( "alpha", "r" );
try
{ use( f ); }
finally
{ close( f ); }}
catch( final Exception exception )
{ handleFailure( "alpha", "r", exception ); }
I also like structured programing, and it is not easy
for me to cope with the exception style. I hope that
I at least have done the above translation correctly.
The above code already looks complicated, but it becomes even
more complicated, when you need to obtain and release
/multiple/ resources. This should be done as a kind of
transaction: When you need n resources, you might have
obtained m already (m < n), but the next attempt might
fail. Then you need to return to a orderly state and
release exactly those resources that have been allocated
so far and report the whole operation to be failed. So
the above patterns need to be nested, which makes the
result even more complicated.
I have invented another style, that use an object to handle
control flow and should take care of the problem to allocate
multiple resources
Here is an example (explanation follows below):
public void digest( final java.io.File file )
{ final de.dclj.ram.system.program.Program program
= new de.dclj.ram.system.program.Program();
try
{
final java.io.FileInputStream fileInputStream =
program.'new java.io.FileInputStream'( file ); /* first attempt */
final java.io.BufferedInputStream bufferedInputStream =
program.'new java.io.BufferedInputStream'( fileInputStream );
final java.security.MessageDigest messageDigest =
program.'new java.security.MessageDigest'( type );
if( program.succeeded() )
{ this.process( bufferedInputStream, messageDigest ); }
else
{ java.lang.System.out.println( program.'opening exceptions'() ); }}
finally
{ program.close();
if( !program.closed() )
{ java.lang.System.out.println( program.'closing exceptions'() ); }}}}
A preprocessor converts everything withing single quotes to
Java names. This is not necessary for this approach, but just
an additional convenience.
The operation 籺his.process?needs three resources: A file
input stream, a buffered input stream and a message digest.
The object 籶rogram?has operations to request the allocations
needed. If the first attempt fails, it will skip the next two
attempts and 籶rogram.succeeded()?will be false. The client
above does not have to use 籭f?or 籺ry?for each attempt.
He can request the exceptions from the program object.
籶rogram.close()?will then close exactly those resources that
have been obtained successfully before, because 籶rogram?has
kept track of the release operations required to release
everything that has been allocated successfully using this
program object.
Drawback: Each type of resource needs a special implementation
in 籨e.dclj.ram.system.program.Program? and right now there are
only few types implemented. I will add additional code as I
need it. See also:
http://www.purl.org/stefan_ram/html/ram.jar/de/dclj/ram/system/program/Program.html
(with links to the source code.) This is part of the library
http://www.purl.org/stefan_ram/pub/ram-jar
|
| |
|
| |
 |
Arne Vajh鴍

|
Posted: 2008-5-9 7:14:00 |
Top |
java-programmer >> To wrap or not to wrap?
Aaron Fude wrote:
> In my personal development efforts, I frequently wrap basic java
> functionality. For example, I have a
>
> String MyIO.urlToString(String url)
>
> or
>
> byte[] MIO.urlToBytes(String url)
>
> etc. These functions catch exceptions and return null if something
> goes wrong. I have other functoins that, for example, load database
> queries into maps.
>
> My gereneral questions are these. Does everybody pretty much end up
> writing convenience wrappers like these for themselves?. If yes, why
> aren't utilities like these commonly available as more or less
> standard libraries? And if no - why not? Is it a bad idea to use these
> and is it for some reason better to, e.g., always form URL's, open
> connections, capture exceptions, etc.
I think it is a bad idea.
You should use the exception functionality as it is intended.
Arne
|
| |
|
| |
 |
Aaron Fude

|
Posted: 2008-5-9 7:33:00 |
Top |
java-programmer >> To wrap or not to wrap?
On May 8, 7:13爌m, Arne Vajh鴍 <email***@***.com> wrote:
> Aaron Fude wrote:
> > In my personal development efforts, I frequently wrap basic java
> > functionality. For example, I have a
>
> > String MyIO.urlToString(String url)
>
> > or
>
> > byte[] MIO.urlToBytes(String url)
>
> > etc. These functions catch exceptions and return null if something
> > goes wrong. I have other functoins that, for example, load database
> > queries into maps.
>
> > My gereneral questions are these. Does everybody pretty much end up
> > writing convenience wrappers like these for themselves?. If yes, why
> > aren't utilities like these commonly available as more or less
> > standard libraries? And if no - why not? Is it a bad idea to use these
> > and is it for some reason better to, e.g., 燼lways form URL's, open
> > connections, capture exceptions, etc.
>
> I think it is a bad idea.
>
> You should use the exception functionality as it is intended.
>
> Arne- Hide quoted text -
>
> - Show quoted text -
I kind of do. I capture the exception within the function and print
the error message. But wrapping this in a function in my project saves
me hundreds of lines of code, enables me not to have to remember how
things are done at the low level. For example, I have a function
called void playSoundClip(String fileName) and BufferedImage[]
loadImage(String fileName). I don't even remember the package that
deals with playing audio and Eclipse finds my own function for me
immediately.
When you say "should" can you elaborate why. When could this lead to
problem from the development point of view?
|
| |
|
| |
 |
Daniel Dyer

|
Posted: 2008-5-9 7:37:00 |
Top |
java-programmer >> To wrap or not to wrap?
On Thu, 08 May 2008 23:19:42 +0100, Aaron Fude <email***@***.com> wrote:
> Hi,
>
> In my personal development efforts, I frequently wrap basic java
> functionality. For example, I have a
>
> String MyIO.urlToString(String url)
>
> or
>
> byte[] MIO.urlToBytes(String url)
>
> etc. These functions catch exceptions and return null if something
> goes wrong.
This is a really bad idea. Instead of failing fast at the point of error
(which aids debugging) problems just get deferred and a
NullPointerException occurs later on with no context. If the original
exception hadn't been suppressed, the stack trace would tell you exactly
where the problem was.
If something goes wrong and you can't recover from it, let the exception
propagate. The alternative is just storing up problems for later.
Dan.
--
Daniel Dyer
http://www.uncommons.org
|
| |
|
| |
 |
Arne Vajh鴍

|
Posted: 2008-5-9 7:37:00 |
Top |
java-programmer >> To wrap or not to wrap?
Aaron Fude wrote:
> On May 8, 7:13 pm, Arne Vajh鴍 <email***@***.com> wrote:
>> Aaron Fude wrote:
>>> In my personal development efforts, I frequently wrap basic java
>>> functionality. For example, I have a
>>> String MyIO.urlToString(String url)
>>> or
>>> byte[] MIO.urlToBytes(String url)
>>> etc. These functions catch exceptions and return null if something
>>> goes wrong. I have other functoins that, for example, load database
>>> queries into maps.
>>> My gereneral questions are these. Does everybody pretty much end up
>>> writing convenience wrappers like these for themselves?. If yes, why
>>> aren't utilities like these commonly available as more or less
>>> standard libraries? And if no - why not? Is it a bad idea to use these
>>> and is it for some reason better to, e.g., always form URL's, open
>>> connections, capture exceptions, etc.
>> I think it is a bad idea.
>>
>> You should use the exception functionality as it is intended.
>
> I kind of do. I capture the exception within the function and print
> the error message. But wrapping this in a function in my project saves
> me hundreds of lines of code, enables me not to have to remember how
> things are done at the low level. For example, I have a function
> called void playSoundClip(String fileName) and BufferedImage[]
> loadImage(String fileName). I don't even remember the package that
> deals with playing audio and Eclipse finds my own function for me
> immediately.
> When you say "should" can you elaborate why. When could this lead to
> problem from the development point of view?
Testing for return values in a deep call stack adds lots of clutter to
the code.
Exceptions was invented to avoid that.
So catching the exception at the low level and convert to a return
value is a bad idea.
Arne
|
| |
|
| |
 |
Tom Anderson

|
Posted: 2008-5-9 7:38:00 |
Top |
java-programmer >> To wrap or not to wrap?
On Thu, 8 May 2008, Aaron Fude wrote:
> In my personal development efforts, I frequently wrap basic java
> functionality. For example, I have a
>
> String MyIO.urlToString(String url)
>
> or
>
> byte[] MIO.urlToBytes(String url)
>
> etc. These functions catch exceptions and return null if something
> goes wrong. I have other functoins that, for example, load database
> queries into maps.
>
> My gereneral questions are these. Does everybody pretty much end up
> writing convenience wrappers like these for themselves?. If yes, why
> aren't utilities like these commonly available as more or less
> standard libraries? And if no - why not? Is it a bad idea to use these
> and is it for some reason better to, e.g., always form URL's, open
> connections, capture exceptions, etc.
What everyone else said. Exceptions are a good way to do error handling.
Null returns are not. You're shooting yourself in the foot.
tom
--
For the first few years I ate lunch with he mathematicians. I soon found
that they were more interested in fun and games than in serious work,
so I shifted to eating with the physics table. There I stayed for a
number of years until the Nobel Prize, promotions, and offers from
other companies, removed most of the interesting people. So I shifted
to the corresponding chemistry table where I had a friend. At first I
asked what were the important problems in chemistry, then what important
problems they were working on, or problems that might lead to important
results. One day I asked, "if what they were working on was not important,
and was not likely to lead to important things, they why were they working
on them?" After that I had to eat with the engineers! -- R. W. Hamming
|
| |
|
| |
 |
Daniel Dyer

|
Posted: 2008-5-9 7:43:00 |
Top |
java-programmer >> To wrap or not to wrap?
On Fri, 09 May 2008 00:37:00 +0100, Daniel Dyer <"You don't need it">
wrote:
>> etc. These functions catch exceptions and return null if something
>> goes wrong.
...
> If something goes wrong and you can't recover from it, let the exception
> propagate. The alternative is just storing up problems for later.
Unless of course, you are testing the return value for every invocation.
But that would be nuts (and error-prone).
Dan.
--
Daniel Dyer
http://www.uncommons.org
|
| |
|
| |
 |
ram

|
Posted: 2008-5-9 7:45:00 |
Top |
java-programmer >> To wrap or not to wrap?
Aaron Fude <email***@***.com> writes:
>I kind of do. I capture the exception within the function and print
>the error message.
Printing is not a general solution, because it means that
these functions can only be used in console programs and when
printing each exception is wanted.
But the exceptions will not be visible when the program is
using a GUI oder a speech interface. And it will be difficult
to log the exceptions.
This explains, why Java does not uses this as a 籫eneral
solution?
General operations should not assume that the application
has a specific interface and just return values, they should
not do any I/O unless this happens to be their purpose.
|
| |
|
| |
 |
Patricia Shanahan

|
Posted: 2008-5-9 11:47:00 |
Top |
java-programmer >> To wrap or not to wrap?
Aaron Fude wrote:
> Hi,
>
> In my personal development efforts, I frequently wrap basic java
> functionality. For example, I have a
>
> String MyIO.urlToString(String url)
>
> or
>
> byte[] MIO.urlToBytes(String url)
>
> etc. These functions catch exceptions and return null if something
> goes wrong. I have other functoins that, for example, load database
> queries into maps.
>
> My gereneral questions are these. Does everybody pretty much end up
> writing convenience wrappers like these for themselves?. If yes, why
> aren't utilities like these commonly available as more or less
> standard libraries? And if no - why not? Is it a bad idea to use these
> and is it for some reason better to, e.g., always form URL's, open
> connections, capture exceptions, etc.
Situations in which I would return null due to an exception are really
rare. More usually, either the exception is a disaster and must be let
flow up the stack to something that can deal with it definitively, or
there is a useful value that can be used, and that should be returned.
In letting exceptions flow up the stack, I do sometimes wrap them in
other exceptions. For example, I might wrap a NumberFormatException in
an InputValidationException, adding data such as a line number and
position in line of the string I tried, and failed, to parse as a number.
Patricia
|
| |
|
| |
 |
Roedy Green

|
Posted: 2008-5-9 11:49:00 |
Top |
java-programmer >> To wrap or not to wrap?
On Thu, 8 May 2008 15:19:42 -0700 (PDT), Aaron Fude
<email***@***.com> wrote, quoted or indirectly quoted someone who
said :
>etc. These functions catch exceptions and return null if something
>goes wrong. I have other functoins that, for example, load database
>queries into maps.
You are thinking in C. The advantage of exceptions is you can handle
them at any level that is convenient. By returning null, you force an
explicit check, and you must handle the problem then and there or else
explicitly pass the problem up the call chain.
--
Roedy Green Canadian Mind Products
The Java Glossary
http://mindprod.com
|
| |
|
| |
 |
Chronic Philharmonic

|
Posted: 2008-5-9 13:58:00 |
Top |
java-programmer >> To wrap or not to wrap?
"Aaron Fude" <email***@***.com> wrote in message
news:email***@***.com...
> On May 8, 7:13 pm, Arne Vajh鴍 <email***@***.com> wrote:
>> Aaron Fude wrote:
>> > In my personal development efforts, I frequently wrap basic java
>> > functionality. For example, I have a
>>
>> > String MyIO.urlToString(String url)
>>
>> > or
>>
>> > byte[] MIO.urlToBytes(String url)
>>
>> > etc. These functions catch exceptions and return null if something
>> > goes wrong. I have other functoins that, for example, load database
>> > queries into maps.
>>
>> > My gereneral questions are these. Does everybody pretty much end up
>> > writing convenience wrappers like these for themselves?. If yes, why
>> > aren't utilities like these commonly available as more or less
>> > standard libraries? And if no - why not? Is it a bad idea to use these
>> > and is it for some reason better to, e.g., always form URL's, open
>> > connections, capture exceptions, etc.
>>
>> I think it is a bad idea.
>>
>> You should use the exception functionality as it is intended.
>>
>> Arne- Hide quoted text -
>>
>> - Show quoted text -
>
>
> I kind of do. I capture the exception within the function and print
> the error message. But wrapping this in a function in my project saves
> me hundreds of lines of code, enables me not to have to remember how
> things are done at the low level. For example, I have a function
> called void playSoundClip(String fileName) and BufferedImage[]
> loadImage(String fileName). I don't even remember the package that
> deals with playing audio and Eclipse finds my own function for me
> immediately.
> When you say "should" can you elaborate why. When could this lead to
> problem from the development point of view?
Returning null instead of the exception that was originally thrown requires
the caller to check for null every time, or blindly use the null value
(usually causing a NullPointerException which is generally less informative
when it occurs). Using exceptions correctly often results in less code,
because you can just plow ahead as if everything is fine, and catch the
exception where it makes sense in your code (where you can recover from it),
or just let it fly if you can't recover from it. That way, your application
logic is uncluttered with error handling code, and all the error handling
code is in one place (in the catch block). There are always exceptions to
this rule (no pun intended):
1. Exceptions should be, er, exceptional. If they happen all the time, or
very frequently, they're not exceptional, and you should investigate whether
can detect the conditions that are causing the exceptions, and try to
prevent them from happening in the first place. Otherwise, throwing and
handling a flurry of exceptions could introduce a performance penalty.
2. If the code is poorly organized, the exception handling code could be
just as intrusive as the constant checking for error return values. Well
organized exception handling is a bit of an art that you learn by
experience.
Finally, there is nothing wrong with wrapping other method calls if there is
a sequence of instructions that you use repeatedly from all over your
application. In fact, that is a situation that screams for a subroutine. You
should totally do that.
|
| |
|
| |
 |
java_killer

|
Posted: 2008-5-9 15:48:00 |
Top |
java-programmer >> To wrap or not to wrap?
On May 9, 3:19 am, Aaron Fude <email***@***.com> wrote:
> Hi,
>
> In my personal development efforts, I frequently wrap basic java
> functionality. For example, I have a
>
> String MyIO.urlToString(String url)
>
> or
>
> byte[] MIO.urlToBytes(String url)
>
> etc. These functions catch exceptions and return null if something
> goes wrong. I have other functoins that, for example, load database
> queries into maps.
>
> My gereneral questions are these. Does everybody pretty much end up
> writing convenience wrappers like these for themselves?. If yes, why
> aren't utilities like these commonly available as more or less
> standard libraries? And if no - why not? Is it a bad idea to use these
> and is it for some reason better to, e.g., always form URL's, open
> connections, capture exceptions, etc.
>
> Thanks for your opinions!
>
> Aaron
Hi,
I have no idea about Java. This is just a test. Thanks for your
patient.
|
| |
|
| |
 |
ram

|
Posted: 2008-5-9 20:54:00 |
Top |
java-programmer >> To wrap or not to wrap?
"Chronic Philharmonic" <email***@***.com> writes:
>Returning null instead of the exception that was originally thrown requires
>the caller to check for null every time, or blindly use the null value
I assume that one wants to copy a file and thus needs to open
a file for reading and a file for writing and then invoke a
copy operation.
I now will write this once in the C style with zero checking
and once in the Java style with a try statement.
Does the try-style look more readable? Can it be simplified?
(Possibly I was not using the simplest way to write it.)
if( f = fopen( "alpha", "r" ))
{ if( g = fopen( "beta", "w" ))
{ if( copy( g, f ))report( "Copy failed." );
close( g ); }
else report( "Can't open beta for writing." );
close( f ); }
else report( "Can't open beta for writing." );
try
{ f = fopen( "alpha", "r" );
try
{ g = fopen( "beta", "w" );
try
{ copy( g, f ); }
catch( final Exception exception )
{ report( "Copy failed." ); }
finally
{ close( g ); }}
catch( final Exception exception )
{ report( "Can't open beta for writing." ); }
finally
{ close( f ); }}
catch( final Exception exception )
{ report( "Can't open alpha for reading." ); }
|
| |
|
| |
 |
Lew

|
Posted: 2008-5-9 21:17:00 |
Top |
java-programmer >> To wrap or not to wrap?
java_killer wrote:
> I have no idea about Java. This is just a test. Thanks for your
> patient.
Thzt is ridiculous. You interrupt an ongoing conversation for that? This is
a Java group, not an alt.test group. Do not do that.
--
Lew
|
| |
|
| |
 |
Chronic Philharmonic

|
Posted: 2008-5-11 2:33:00 |
Top |
java-programmer >> To wrap or not to wrap?
"Stefan Ram" <email***@***.com> wrote in message
news:email***@***.com...
> "Chronic Philharmonic" <email***@***.com> writes:
>>Returning null instead of the exception that was originally thrown
>>requires
>>the caller to check for null every time, or blindly use the null value
>
> I assume that one wants to copy a file and thus needs to open
> a file for reading and a file for writing and then invoke a
> copy operation.
>
> I now will write this once in the C style with zero checking
> and once in the Java style with a try statement.
>
> Does the try-style look more readable? Can it be simplified?
> (Possibly I was not using the simplest way to write it.)
>
> if( f = fopen( "alpha", "r" ))
> { if( g = fopen( "beta", "w" ))
> { if( copy( g, f ))report( "Copy failed." );
> close( g ); }
> else report( "Can't open beta for writing." );
> close( f ); }
> else report( "Can't open beta for writing." );
>
> try
> { f = fopen( "alpha", "r" );
> try
> { g = fopen( "beta", "w" );
> try
> { copy( g, f ); }
> catch( final Exception exception )
> { report( "Copy failed." ); }
> finally
> { close( g ); }}
> catch( final Exception exception )
> { report( "Can't open beta for writing." ); }
> finally
> { close( f ); }}
> catch( final Exception exception )
> { report( "Can't open alpha for reading." ); }
Without specifically rewriting your logic, I can only say that this isn't
how my exception handlers typically look. I tend to use one big try block,
with several catch blocks at the end, to deal with things that I can deal
with, or let the exception fly if I can't deal with it, or if I want the
exception itself to report the failure. I don't usually concern myself with
reporting things like "copy failed" at the granular level.
It is difficult for me to provide examples of what I mean that fit in a
single method or code snippet, because structured exception handling is more
of an architectural endeavor, requiring a more holistic approach to error
handling. I could send you the source code to my WxService project
(http://mysite.verizon.net/Karl_Uppiano/wxservice.html) if you're
interested.
|
| |
|
| |
 |
| |
 |
Index ‹ java-programmer |
- Next
- 1
- errors within constructorHi I am working on a project and I am getting an error that I do not
understand.
I have the part of the code below along with the line that gives error.
From the exception message I can assume that the object I pass to the
HashMap is a null object but in the code below I create a new object and
initialize it.
I appreciate any advice.
// group IP address
private static final String MULTGRP = "225.4.5.6";
private InetAddress group = InetAddress.getByName(MULTGRP);
private static HashMap mapGroupSocket = null;
// constructor
public IRCServer()throws IOException{
// create sockets for all groups.
MulticastSocket mcastCsci5431 = new MulticastSocket(CSCI5431_PORT);
mcastCsci5431.joinGroup(group);
// other code (not relevant)
mapGroupSocket.put(CSCI5431, mcastCsci5431); <---- exception
thrown.
}
Error:
Exception in thread "main" java.lang.NullPointerException
at IRCServer.<init>(IRCServer.java:91)
at IRCServer.main(IRCServer.java:105)
- 2
- 3
- newbie scrollbar questionI have a JTextArea wrapped in a JScrollPane, and when I append a line
to the text area
I want the scroll bar to adjust so that the new line is seen in the
viewport. I have
some code that seems to work most of the time, but every once in a
while it does
not work properly. I think I'm probably not doing this the right way.
Here's a code
snippet that shows what I'm doing:
JPanel consolePane = new JPanel();
JTextArea consoleTextArea = new JTextArea(35, 65);
JScrollPane consoleScrollPane = new JScrollPane(consoleTextArea);
JScrollBar vsb = consoleScrollPane.getVerticalScrollBar();
When I want to update the text I do this:
consoleTextArea.append(line);
consoleTextArea.append("\n");
vsb.setMaximum(vsb.getMaximum()+1);
vsb.setValue(vsb.getMaximum()+1);
Seems like there must be an easier way to do this. Is there some
attribute that
I can set that will make this happen automagically?
TIA!
-larry
- 4
- Be Honest: Do you implement hashCode(), equals(), and toString() for every class you write?Patricia Shanahan wrote:
[me:]
> > /Anything/ would be better than that. Throw a runtime exception -- at
> > least that would guarantee that you weren't depending on having a
> > working hashCode() without realising it.
>
> It is a functionally correct hashCode.
Only in the minimal sense that it abides by its contract. It not, however,
useable for anything; therefore it only exists (or should only exist) as a
placeholder for a method which the author assumes will not be needed. But
that's a major risk -- sooner or later someone else is likely[*] to start using
these things in HashTables, and then they get poor performance without knowing
why (or perhaps even without realising that they are getting unecessarily poor
performance). If the assumption is that the method is only a placeholder, then
it would be much safer (as I said) to throw an unchecked exception.
If any programmer /I/ worked with was in the habit of leaving these little
timebombs ticking away in the codebase, then I'd be inclined to throw a Very
Serious Wobbly.
What you think of a programmer who habitually wrote:
void toString() { return ""; }
? Yet that's a damn sight safer (and no less "reasonable") than always
returning zero from hashCode().
> I assume that if Mark found poor hash table performance during
> profiling,
As an aside, profiling is not a good tool for recognising or diagnosing poor
hashing functions. And, although it is a reasonable tool for confirming that a
non-too-special hash function is "good enough", even that is somewhat unsafe
unless you know that your test data is representative of real world data /in
the way it interacts with the hash/.
-- chris
[*] "likely" assuming normal operation of Sod's Law.
- 5
- advanced Font renderingHello,
from Photoshop I'm used to be able to define the space between two
characters. So I can generate something like
T E X T
without having to put the blanks in there on my own. This setting can
also be used to put the characters closer to each other, so the
characters might be overlapping.
Is there an option in the Font-classes of awt to achieve the same
result? On the one hand I haven't found something yet, but on the other
hand I'm not really sure what to look for.
Regards
Marten
- 6
- JSObject leaks on MSJVMMicrosoft have agreed to support the MSJVM until the end of 2007.
Some of our clients may still have the MSJVM on their machines and
their corporate software upgrade policies may not allow them to
replace the MSJVM with the latest one from Sun immediately. This has
created a difficult situation for me. I have one applet which runs
fine on Windows NT/2000/XP/2003 with IE 6/Sun JVM (1.4.2_04) and does
not leak memory. It works fine on Windows NT with IE 5.5/MSJVM 3810.
However, it leaks on Windows 2000/XP/2003 with IE 6/ MSJVM 3810! The
applet calls JSObject.call() and that's where it leaks. I have
replaced the calls with JSObject.eval() but did not improve the
situation. The rate of leak was slow.
I have another similar applet with a different threading model which
does not leak on MSJVM 3810. So I cannot say that JSObject is leaking
on IE 6 regardless.
I know people had similar problems with the Sun JVM 1.3.1 where every
call to JSObject was leaking around 40 bytes. I did not see anyone
complaining about MSJVM though.
Any ideas?
Many thanks in advance.
Pratul
- 7
- Easy way to display JSP source on webI need an easy way to display JSP source in a
web page.
If I use..
<jsp:include page="/test/index.jsp" ></jsp:include> or
<%@ include file="/test/index.jsp" %>
..the jsp I want to include is merged with the
original page and (usually) throws exceptions.
Is there any way to include a jsp in a web page
but have it treated as if it were text?
- 8
- 9
- UML Eclipse PluginDoes anyone know a Eclipse plugin that generates a UML diagram out of java code
Thanks
Felix
- 10
- Using Netbean IDE for writing/compiling/debugging apps without using ProjectHi
Is there a way to configure Netbean IDE such that it does not insist on
creating a Project everying time I want to use it to
write/compile/debug small Java apps I am writing to learn Java.
I find that default Netbean IDE behaviour to insist on a Project before
I can create a Java file for sample learning applications makes it very
complicated for me as a Java beginner.
Thanks
Bob
- 11
- Non-blocking method for reading writing objects to socketsThe methods writeObject and readObject of socket class are blocking
one. i.e. if we create a ObjectInputStream object using
new ObjectInputStream(socket.getInputStream()), the methods blocks
until it gets some stream stuff.
What is the corresponding non-blocking mthod so as to include in
non-blocking programming?
- 12
- JBoss startup exceptionsI am getting exceptions when starting the JBoss server. I believe I
have set the environment up correctly. The webserver brings up the
homepage but I can't get to the jmx-console. Has anyone else had this
problem and is there something obvious I've missed?
I'm running on tru64 unix 4.0f with JDK1.4.2. Trying to install jboss
4.0.2
- 13
- Strange deadlock: JVM 1.4.2-p6
--=-5i7iklOGozsqi5LZBj4Q
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
Hi,
I have the a very strange deadlock in the JVM on a server running a web
application on resin.
System:
FreeBSD xxx 4.10-PRERELEASE FreeBSD 4.10-PRERELEASE #1: Wed May 5
15:56:39 CEST 2004 root@xxx:/usr/src/sys/compile/PROFDATA i386
Java:
java version "1.4.2-p6"
Java(TM) 2 Runtime Environment, Standard Edition (build
1.4.2-p6-root_21_feb_2004_22_04)
Java HotSpot(TM) Client VM (build 1.4.2-p6-root_21_feb_2004_22_04, mixed
mode)
In the attached deadlock, a bunch of threads are waiting in the private
method getField(int) of java.util.Date, locked on the staticCal field.
However, there is not 1 thread which actually owns the lock. How can
this possibly happen?
Thanks in advance,
Sebastiaan van Erk
--=-5i7iklOGozsqi5LZBj4Q
Content-Disposition: attachment; filename=stacktrace.txt
Content-Type: text/plain; name=stacktrace.txt; charset=us-ascii
Content-Transfer-Encoding: 7bit
Full thread dump Java HotSpot(TM) Client VM
(1.4.2-p6-root_21_feb_2004_22_04 mixed mode):
"tcpConnection-6802-331" daemon prio=5 tid=0x08a3aa00 nid=0x8a43000
waiting for monitor entry [a3fe000..a3fecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getYear(Date.java:616)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1269)
- locked <0x2df034e0> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:253)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-330" daemon prio=5 tid=0x08a3a800 nid=0x8a41000
waiting for monitor entry [a3be000..a3becdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getYear(Date.java:616)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1269)
- locked <0x2deedb40> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:253)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-329" daemon prio=5 tid=0x08a3a600 nid=0x8a3d000
waiting for monitor entry [a37e000..a37ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1287)
- locked <0x2dece7b0> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:253)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-328" daemon prio=5 tid=0x08a3a400 nid=0x8a3c000
waiting for monitor entry [a33e000..a33ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1287)
- locked <0x2df1aba8> (a java.lang.StringBuffer)
at nl.profdata.syne.Log.log(Log.java:92)
- locked <0x2df1abc0> (a nl.profdata.syne.Log)
at
nl.profdata.syne.Visitor.checkNameAndPassword(Visitor.java:626)
- locked <0x2debf090> (a nl.profdata.syne.Visitor)
at
_plansoft._backend._login__jsp._jspService(_login__jsp.java:60)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-327" daemon prio=5 tid=0x08a3a200 nid=0x8a3e000
waiting for monitor entry [a2fe000..a2fecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getSeconds(Date.java:799)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1292)
- locked <0x2de8f410> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:253)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-326" daemon prio=5 tid=0x08a3a000 nid=0x8a3b000
waiting for monitor entry [a2be000..a2becdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getSeconds(Date.java:799)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1292)
- locked <0x2de8f9a8> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:253)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-325" daemon prio=5 tid=0x089e3e00 nid=0x8a39000
waiting for monitor entry [a27e000..a27ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getSeconds(Date.java:799)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1292)
- locked <0x2de8ff40> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:253)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-324" daemon prio=5 tid=0x089e3c00 nid=0x8a35000
waiting for monitor entry [a23e000..a23ecdc]
at java.util.Date.getTimezoneOffset(Date.java:1095)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1311)
- locked <0x2de6d868> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:253)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-323" daemon prio=5 tid=0x089e3a00 nid=0x8a34000
waiting for monitor entry [a1fe000..a1fecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getYear(Date.java:616)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1269)
- locked <0x2c6c0258> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:252)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-322" daemon prio=5 tid=0x089e3800 nid=0x89e0000
waiting for monitor entry [a1be000..a1becdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1272)
- locked <0x2c6c0330> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:252)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-321" daemon prio=5 tid=0x089e3600 nid=0x89df000
waiting for monitor entry [a17e000..a17ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1277)
- locked <0x2c6c0408> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:252)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-320" daemon prio=5 tid=0x089e3400 nid=0x89e7000
waiting for monitor entry [a13e000..a13ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1287)
- locked <0x2df1c240> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:252)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-319" daemon prio=5 tid=0x089e3200 nid=0x89e5000
waiting for monitor entry [a0fe000..a0fecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getSeconds(Date.java:799)
at java.sql.Timestamp.toString(Timestamp.java:244)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:163)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-318" daemon prio=5 tid=0x089e3000 nid=0x89e4000
waiting for monitor entry [a0be000..a0becdc]
at nl.profdata.syne.Log.log(Log.java:78)
- waiting to lock <0x2cabd420> (a nl.profdata.syne.Log)
at _index__jsp._jspService(_index__jsp.java:287)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-317" daemon prio=5 tid=0x089dbe00 nid=0x89e2000
waiting for monitor entry [a07e000..a07ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getYear(Date.java:616)
at java.sql.Timestamp.toString(Timestamp.java:239)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:163)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-316" daemon prio=5 tid=0x089dbc00 nid=0x89d6000
waiting for monitor entry [a03e000..a03ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getYear(Date.java:616)
at java.sql.Timestamp.toString(Timestamp.java:239)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:163)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-315" daemon prio=5 tid=0x089dba00 nid=0x89de000 in
Object.wait() [9ffe000..9ffecdc]
at java.lang.Object.wait(Native Method)
at com.caucho.server.TcpServer.accept(TcpServer.java:646)
- locked <0x2c9fe288> (a java.lang.Object)
at
com.caucho.server.TcpConnection.accept(TcpConnection.java:212)
at com.caucho.server.TcpConnection.run(TcpConnection.java:134)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-314" daemon prio=5 tid=0x089db800 nid=0x89cb000
waiting for monitor entry [9fbe000..9fbecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at java.sql.Timestamp.toString(Timestamp.java:243)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:163)
at
_plansoft._backend._day_0view__jsp._jspService(_day_0view__jsp.java:726)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-313" daemon prio=5 tid=0x089db600 nid=0x89ca000
waiting for monitor entry [9f7e000..9f7ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getYear(Date.java:616)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1269)
- locked <0x2c6c0600> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._day_0view__jsp._jspService(_day_0view__jsp.java:726)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-312" daemon prio=5 tid=0x089db400 nid=0x89c8000
waiting for monitor entry [9f3e000..9f3ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getYear(Date.java:616)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1269)
- locked <0x2c6c0710> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._day_0view__jsp._jspService(_day_0view__jsp.java:726)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-311" daemon prio=5 tid=0x089db200 nid=0x89c7000
waiting for monitor entry [9efe000..9efecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at java.sql.Timestamp.toString(Timestamp.java:240)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:163)
at
_plansoft._backend._day_0view__jsp._jspService(_day_0view__jsp.java:726)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-310" daemon prio=5 tid=0x08977800 nid=0x89c6000
waiting for monitor entry [9ebe000..9ebecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1272)
- locked <0x2c6c0868> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-309" daemon prio=5 tid=0x089db000 nid=0x89dc000
waiting for monitor entry [9e7e000..9e7ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1287)
- locked <0x2c6c0978> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-308" daemon prio=5 tid=0x08977e00 nid=0x89d9000
waiting for monitor entry [9e3e000..9e3ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1287)
- locked <0x2c6c0a88> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-307" daemon prio=5 tid=0x08977c00 nid=0x89ccc00
waiting for monitor entry [9dfe000..9dfecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1287)
- locked <0x2c6c0b98> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-306" daemon prio=5 tid=0x08966c00 nid=0x8765000
waiting for monitor entry [99fe000..99fecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1287)
- locked <0x2c6c0ca8> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"Thread-1717" daemon prio=5 tid=0x08977a00 nid=0x89c5c00 waiting on
condition [9dbe000..9dbecdc]
at java.lang.Thread.sleep(Native Method)
at com.sebster.util.Alarm$AlarmThread.run(Alarm.java:66)
"tcpConnection-6802-305" daemon prio=5 tid=0x08977600 nid=0x897cc00
waiting for monitor entry [9d7e000..9d7ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1277)
- locked <0x2dee15d8> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:151)
at
_plansoft._backend._day_0view__jsp._jspService(_day_0view__jsp.java:726)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-304" daemon prio=5 tid=0x08977400 nid=0x897ac00
waiting for monitor entry [9d3e000..9d3ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1287)
- locked <0x2df1ac80> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._day_0view__jsp._jspService(_day_0view__jsp.java:726)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-303" daemon prio=5 tid=0x08977200 nid=0x8979c00
waiting for monitor entry [9cfe000..9cfecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getSeconds(Date.java:799)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1292)
- locked <0x2df19a00> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-302" daemon prio=5 tid=0x08977000 nid=0x8976c00
waiting for monitor entry [9cbe000..9cbecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getSeconds(Date.java:799)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1292)
- locked <0x2df183f0> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-301" daemon prio=5 tid=0x08969e00 nid=0x8975c00
waiting for monitor entry [9c7e000..9c7ecdc]
at java.util.Date.getTimezoneOffset(Date.java:1095)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1311)
- locked <0x2df16100> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-300" daemon prio=5 tid=0x08969c00 nid=0x8974c00
waiting for monitor entry [9c3e000..9c3ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1272)
- locked <0x2deee430> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-299" daemon prio=5 tid=0x08969a00 nid=0x8970c00
waiting for monitor entry [9bfe000..9bfecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1272)
- locked <0x2dee1b78> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-298" daemon prio=5 tid=0x08969800 nid=0x896fc00
waiting for monitor entry [9bbe000..9bbecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1277)
- locked <0x2dee1c58> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-297" daemon prio=5 tid=0x08969600 nid=0x896ec00
waiting for monitor entry [9b7e000..9b7ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1277)
- locked <0x2dee1d38> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-296" daemon prio=5 tid=0x08969400 nid=0x896cc00
waiting for monitor entry [9b3e000..9b3ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1277)
- locked <0x2dee1e18> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-295" daemon prio=5 tid=0x08969200 nid=0x896ac00
waiting for monitor entry [9afe000..9afecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1277)
- locked <0x2dee1ef8> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-294" daemon prio=5 tid=0x08969000 nid=0x8964c00
waiting for monitor entry [9abe000..9abecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1277)
- locked <0x2dee1fd8> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-293" daemon prio=5 tid=0x08966e00 nid=0x8961c00
waiting for monitor entry [9a7e000..9a7ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1282)
- locked <0x2dee20b8> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-292" daemon prio=5 tid=0x08966800 nid=0x895ec00
waiting for monitor entry [9a3e000..9a3ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1282)
- locked <0x2dee2198> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-291" daemon prio=5 tid=0x08966600 nid=0x896bc00
waiting for monitor entry [992e000..992ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1282)
- locked <0x2dee2278> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-290" daemon prio=5 tid=0x08966a00 nid=0x885e400
waiting for monitor entry [99be000..99becdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1282)
- locked <0x2dee2358> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-289" daemon prio=5 tid=0x08966400 nid=0x8960c00
waiting for monitor entry [996e000..996ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1287)
- locked <0x2df1c2e8> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:185)
at
_plansoft._backend._day_0view__jsp._jspService(_day_0view__jsp.java:726)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-288" daemon prio=5 tid=0x08893200 nid=0x85c3800
waiting for monitor entry [8a33000..8a33cdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1277)
- locked <0x2c6c1248> (a java.lang.StringBuffer)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:252)
at
nl.profdata.plansoft.PlannedProduct.assign(PlannedProduct.java:234)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:106)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-287" daemon prio=5 tid=0x08966200 nid=0x8968c00
waiting for monitor entry [98ee000..98eecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1282)
- locked <0x2dee2468> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-286" daemon prio=5 tid=0x08966000 nid=0x8965c00
waiting for monitor entry [98ae000..98aecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at java.sql.Timestamp.toString(Timestamp.java:242)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-285" daemon prio=5 tid=0x0894fe00 nid=0x8954c00
waiting for monitor entry [986e000..986ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at java.sql.Timestamp.toString(Timestamp.java:243)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-284" daemon prio=5 tid=0x0894fc00 nid=0x8953c00
waiting for monitor entry [982e000..982ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1282)
- locked <0x2dee2578> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-283" daemon prio=5 tid=0x0894fa00 nid=0x8945c00
waiting for monitor entry [97ee000..97eecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getSeconds(Date.java:799)
at java.sql.Timestamp.toString(Timestamp.java:244)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-282" daemon prio=5 tid=0x0894f800 nid=0x8952c00
waiting for monitor entry [97ae000..97aecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at java.sql.Timestamp.toString(Timestamp.java:240)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-281" daemon prio=5 tid=0x0894f600 nid=0x894ec00
waiting for monitor entry [976e000..976ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at java.sql.Timestamp.toString(Timestamp.java:242)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-280" daemon prio=5 tid=0x0894f400 nid=0x894dc00
waiting for monitor entry [972e000..972ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1282)
- locked <0x2dee2670> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-279" daemon prio=5 tid=0x0894f200 nid=0x8951c00
waiting for monitor entry [96ee000..96eecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at java.sql.Timestamp.toString(Timestamp.java:242)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-278" daemon prio=5 tid=0x0894f000 nid=0x894bc00
waiting for monitor entry [96ae000..96aecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at java.sql.Timestamp.toString(Timestamp.java:243)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._day_0view__jsp._jspService(_day_0view__jsp.java:726)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-277" daemon prio=5 tid=0x0892fe00 nid=0x8949c00
waiting for monitor entry [966e000..966ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getSeconds(Date.java:799)
at java.sql.Timestamp.toString(Timestamp.java:244)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-276" daemon prio=5 tid=0x0892fc00 nid=0x8948c00
waiting for monitor entry [962e000..962ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at java.sql.Timestamp.toString(Timestamp.java:240)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-275" daemon prio=5 tid=0x0892f800 nid=0x8947c00
waiting for monitor entry [95ee000..95eecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at java.sql.Timestamp.toString(Timestamp.java:241)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-274" daemon prio=5 tid=0x0892f600 nid=0x8935c00
waiting for monitor entry [95ae000..95aecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at java.sql.Timestamp.toString(Timestamp.java:243)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-273" daemon prio=5 tid=0x0892f400 nid=0x8933c00
waiting for monitor entry [956e000..956ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at java.sql.Timestamp.toString(Timestamp.java:242)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-272" daemon prio=5 tid=0x0892f200 nid=0x8930c00
waiting for monitor entry [952e000..952ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1277)
- locked <0x2dd8fce0> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:226)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-271" daemon prio=5 tid=0x0892f000 nid=0x8932c00
waiting for monitor entry [94ee000..94eecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at java.sql.Timestamp.toString(Timestamp.java:243)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._day_0view__jsp._jspService(_day_0view__jsp.java:726)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-270" daemon prio=5 tid=0x08878e00 nid=0x892ec00
waiting for monitor entry [94ae000..94aecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1287)
- locked <0x2dd5f728> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:226)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-269" daemon prio=5 tid=0x08878c00 nid=0x892dc00
waiting for monitor entry [946e000..946ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1282)
- locked <0x2de1dcf8> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:225)
at
_plansoft._backend._day_0view__jsp._jspService(_day_0view__jsp.java:726)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-268" daemon prio=5 tid=0x08878a00 nid=0x8923c00
waiting for monitor entry [942e000..942ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getSeconds(Date.java:799)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1292)
- locked <0x2ddec308> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:225)
at
_plansoft._backend._day_0view__jsp._jspService(_day_0view__jsp.java:726)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-267" daemon prio=5 tid=0x08878800 nid=0x8922c00
waiting for monitor entry [93ee000..93eecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1287)
- locked <0x2dd5f818> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:226)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-266" daemon prio=5 tid=0x08878600 nid=0x8921c00
waiting for monitor entry [93ae000..93aecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at java.sql.Timestamp.toString(Timestamp.java:240)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:196)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-265" daemon prio=5 tid=0x08878400 nid=0x8920c00
waiting for monitor entry [936e000..936ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at java.sql.Timestamp.toString(Timestamp.java:243)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-264" daemon prio=5 tid=0x08878200 nid=0x8879c00
waiting for monitor entry [932e000..932ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getSeconds(Date.java:799)
at java.sql.Timestamp.toString(Timestamp.java:244)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-263" daemon prio=5 tid=0x08878000 nid=0x891fc00
waiting for monitor entry [92ee000..92eecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getYear(Date.java:616)
at java.sql.Timestamp.toString(Timestamp.java:239)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-262" daemon prio=5 tid=0x0890ee00 nid=0x890ac00
waiting for monitor entry [92ae000..92aecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getYear(Date.java:616)
at java.sql.Timestamp.toString(Timestamp.java:239)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-261" daemon prio=5 tid=0x0890ec00 nid=0x88c0c00
waiting for monitor entry [926e000..926ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getYear(Date.java:616)
at java.sql.Timestamp.toString(Timestamp.java:239)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-260" daemon prio=5 tid=0x0890ea00 nid=0x88bfc00
waiting for monitor entry [922e000..922ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at java.sql.Timestamp.toString(Timestamp.java:241)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-259" daemon prio=5 tid=0x0890e800 nid=0x88bec00
waiting for monitor entry [91ee000..91eecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at java.sql.Timestamp.toString(Timestamp.java:243)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-258" daemon prio=5 tid=0x0890e600 nid=0x891dc00
waiting for monitor entry [91ae000..91aecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at java.sql.Timestamp.toString(Timestamp.java:240)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-257" daemon prio=5 tid=0x0890e400 nid=0x8912c00
waiting for monitor entry [9155000..9155cdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at java.sql.Timestamp.toString(Timestamp.java:243)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-256" daemon prio=5 tid=0x0890e200 nid=0x8910c00
waiting for monitor entry [90d8000..90d8cdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getSeconds(Date.java:799)
at java.sql.Timestamp.toString(Timestamp.java:244)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-255" daemon prio=5 tid=0x0890e000 nid=0x88c8c00
waiting for monitor entry [9063000..9063cdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at java.sql.Timestamp.toString(Timestamp.java:240)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-254" daemon prio=5 tid=0x08893e00 nid=0x88c6c00
waiting for monitor entry [9023000..9023cdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at java.sql.Timestamp.toString(Timestamp.java:240)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-253" daemon prio=5 tid=0x08893c00 nid=0x88c2c00
waiting for monitor entry [8fa1000..8fa1cdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at java.sql.Timestamp.toString(Timestamp.java:240)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-252" daemon prio=5 tid=0x08893a00 nid=0x88a7c00
waiting for monitor entry [8eae000..8eaecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at java.sql.Timestamp.toString(Timestamp.java:240)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-251" daemon prio=5 tid=0x08893800 nid=0x8894c00
waiting for monitor entry [8e6e000..8e6ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at java.sql.Timestamp.toString(Timestamp.java:241)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-250" daemon prio=5 tid=0x08893600 nid=0x8316400
waiting for monitor entry [8e2e000..8e2ecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at java.sql.Timestamp.toString(Timestamp.java:242)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-249" daemon prio=5 tid=0x08893400 nid=0x8911800
waiting for monitor entry [8dee000..8deecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at java.sql.Timestamp.toString(Timestamp.java:243)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-248" daemon prio=5 tid=0x08893000 nid=0x87a4400
waiting for monitor entry [8b92000..8b92cdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1277)
- locked <0x2dee2988> (a java.lang.StringBuffer)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:186)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-247" daemon prio=5 tid=0x0887f600 nid=0x8870800
waiting for monitor entry [8909000..8909cdc]
at java.util.Date.getTimezoneOffset(Date.java:1095)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at
org.postgresql.jdbc1.AbstractJdbc1Statement.setTimestamp(AbstractJdbc1St
atement.java:1311)
- locked <0x2df16fe0> (a java.lang.StringBuffer)
at nl.profdata.syne.Log.log(Log.java:92)
- locked <0x2cabd420> (a nl.profdata.syne.Log)
at _index__jsp._jspService(_index__jsp.java:285)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-246" daemon prio=5 tid=0x0887fc00 nid=0x88a9400
waiting for monitor entry [8d0d000..8d0dcdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getYear(Date.java:616)
at java.sql.Timestamp.toString(Timestamp.java:239)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-245" daemon prio=5 tid=0x0887f800 nid=0x878e000
waiting for monitor entry [8c97000..8c97cdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMinutes(Date.java:768)
at java.sql.Timestamp.toString(Timestamp.java:243)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-244" daemon prio=5 tid=0x08650200 nid=0x8868c00
waiting for monitor entry [8b52000..8b52cdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at java.sql.Timestamp.toString(Timestamp.java:242)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-243" daemon prio=5 tid=0x0887f000 nid=0x8309400
waiting for monitor entry [89c4000..89c4cdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getMonth(Date.java:650)
at java.sql.Timestamp.toString(Timestamp.java:240)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-230" daemon prio=5 tid=0x0887f200 nid=0x874d000
waiting for monitor entry [8aae000..8aaecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getHours(Date.java:738)
at java.sql.Timestamp.toString(Timestamp.java:242)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"tcpConnection-6802-227" daemon prio=5 tid=0x088c3c00 nid=0x88a6800
waiting for monitor entry [8eee000..8eeecdc]
at java.util.Date.getField(Date.java:1149)
- waiting to lock <0x2cacb228> (a java.util.GregorianCalendar)
at java.util.Date.getDate(Date.java:685)
at java.sql.Timestamp.toString(Timestamp.java:241)
at nl.profdata.syne.ContentList.getValueAt(ContentList.java:275)
at nl.profdata.syne.Formatter.getAsTable(Formatter.java:263)
at nl.profdata.plansoft.Planner.createAgenda(Planner.java:228)
at
_plansoft._backend._choose_0time__jsp._jspService(_choose_0time__jsp.jav
a:156)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at
com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179
)
at
com.caucho.server.http.Invocation.service(Invocation.java:288)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at
com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:34
0)
at
com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java
:270)
at com.caucho.server.TcpConnection.run(TcpConnection.java:140)
at java.lang.Thread.run(Thread.java:534)
"Thread-1058" daemon prio=5 tid=0x088c3a00 nid=0x8765400 runnable
[8c0d000..8c0dcdc]
at java.lang.Throwable.fillInStackTrace(Native Method)
at java.lang.Throwable.<init>(Throwable.java:195)
at java.lang.Exception.<init>(Exception.java:41)
at java.io.IOException.<init>(IOException.java:40)
at java.net.SocketException.<init>(SocketException.java:29)
at java.net.SocketInputStream.read(SocketInputStream.java:113)
at
sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:408)
at
sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:450)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:182)
- locked <0x2ce78658> (a java.io.InputStreamReader)
at java.io.InputStreamReader.read(InputStreamReader.java:167)
at java.io.BufferedReader.fill(BufferedReader.java:136)
at java.io.BufferedReader.readLine(BufferedReader.java:299)
- locked <0x2ce78658> (a java.io.InputStreamReader)
at java.io.BufferedReader.readLine(BufferedReader.java:362)
at
com.leuville.irc.ServerConnection$5.run(ServerConnection.java:325)
at java.lang.Thread.run(Thread.java:534)
"Thread-627" daemon prio=5 tid=0x08778400 nid=0x8651800 runnable
[8859000..8859cdc]
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at
sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:408)
at
sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:450)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:182)
- locked <0x2cd45300> (a java.io.InputStreamReader)
at java.io.InputStreamReader.read(InputStreamReader.java:167)
at java.io.BufferedReader.fill(BufferedReader.java:136)
at java.io.BufferedReader.readLine(BufferedReader.java:299)
- locked <0x2cd45300> (a java.io.InputStreamReader)
at java.io.BufferedReader.readLine(BufferedReader.java:362)
at
com.leuville.irc.ServerConnection$5.run(ServerConnection.java:325)
at java.lang.Thread.run(Thread.java:534)
"Thread-580" daemon prio=5 tid=0x08650400 nid=0x875b800 runnable
[87eb000..87ebcdc]
at java.lang.Throwable.fillInStackTrace(Native Method)
at java.lang.Throwable.<init>(Throwable.java:195)
at java.lang.Exception.<init>(Exception.java:41)
at java.io.IOException.<init>(IOException.java:40)
at java.net.SocketException.<init>(SocketException.java:29)
at java.net.SocketInputStream.read(SocketInputStream.java:113)
at
sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:408)
at
sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:450)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:182)
- locked <0x2cd1fd60> (a java.io.InputStreamReader)
at java.io.InputStreamReader.read(InputStreamReader.java:167)
at java.io.BufferedReader.fill(BufferedReader.java:136)
at java.io.BufferedReader.readLine(BufferedReader.java:299)
- locked <0x2cd1fd60> (a java.io.InputStreamReader)
at java.io.BufferedReader.readLine(BufferedReader.java:362)
at
com.leuville.irc.ServerConnection$5.run(ServerConnection.java:325)
at java.lang.Thread.run(Thread.java:534)
"Thread-0" daemon prio=5 tid=0x08459e00 nid=0x831e400 runnable
[861b000..861bcdc]
at java.net.PlainDatagramSocketImpl.receive(Native Method)
- waiting to lock <0x2cab72e0> (a
java.net.PlainDatagramSocketImpl)
at java.net.DatagramSocket.receive(DatagramSocket.java:711)
- locked <0x2cab7310> (a java.net.DatagramPacket)
- locked <0x2cab7330> (a java.net.MulticastSocket)
at nl.profdata.util.License$Caster.recieve(License.java:302)
at nl.profdata.util.License$Caster.run(License.java:288)
at java.lang.Thread.run(Thread.java:534)
"tcp-start-6802" daemon prio=5 tid=0x08459c00 nid=0x8472000 in
Object.wait() [858b000..858bcdc]
at java.lang.Object.wait(Native Method)
at
com.caucho.server.TcpServer$StartThread.run(TcpServer.java:930)
- locked <0x2ca83940> (a
com.caucho.server.TcpServer$StartThread)
at java.lang.Thread.run(Thread.java:534)
"tcp-accept-6802" daemon prio=5 tid=0x08459a00 nid=0x846fc00 runnable
[854b000..854bcdc]
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
- locked <0x2c9d5618> (a java.net.PlainSocketImpl)
at java.net.ServerSocket.implAccept(ServerSocket.java:448)
at java.net.ServerSocket.accept(ServerSocket.java:419)
at com.caucho.server.TcpServer.run(TcpServer.java:513)
at java.lang.Thread.run(Thread.java:534)
"resin-alarm" daemon prio=5 tid=0x0842be00 nid=0x842a800 waiting on
condition [84fb000..84fbcdc]
at java.lang.Thread.sleep(Native Method)
at com.caucho.util.Alarm$AlarmThread.run(Alarm.java:295)
"resin-cron" daemon prio=5 tid=0x0842bc00 nid=0x842a400 waiting on
condition [84bb000..84bbcdc]
at java.lang.Thread.sleep(Native Method)
at com.caucho.util.Cron$CronThread.run(Cron.java:195)
"Signal Dispatcher" daemon prio=10 tid=0x080e8800 nid=0x81da000 waiting
on condition [0..0]
"Finalizer" daemon prio=8 tid=0x080e8600 nid=0x8197400 in Object.wait()
[81d7000..81d7cdc]
at java.lang.Object.wait(Native Method)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
- locked <0x2c9986d0> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
at
java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
"Reference Handler" daemon prio=10 tid=0x080e8400 nid=0x8153400 in
Object.wait() [8193000..8193cdc]
at java.lang.Object.wait(Native Method)
at java.lang.Object.wait(Object.java:429)
at
java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115)
- locked <0x2c998738> (a java.lang.ref.Reference$Lock)
"main" prio=5 tid=0x08063600 nid=0x8051000 runnable [bfbfe000..bfbfed0c]
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at java.net.SocketInputStream.read(SocketInputStream.java:182)
at
com.caucho.server.http.ResinServer.waitForExit(ResinServer.java:752)
at com.caucho.server.http.ResinServer.main(ResinServer.java:965)
at com.caucho.server.http.HttpServer.main(HttpServer.java:102)
"VM Thread" prio=5 tid=0x08064c00 nid=0x8111000 runnable
"VM Periodic Task Thread" prio=10 tid=0x08152a00 nid=0x829e400 waiting
on condition
"Suspend Checker Thread" prio=10 tid=0x08152800 nid=0x81d9400 runnable
--=-5i7iklOGozsqi5LZBj4Q
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
email***@***.com mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-java
To unsubscribe, send any mail to "email***@***.com"
--=-5i7iklOGozsqi5LZBj4Q--
- 14
- commons and log4j initializing in other web server applicationsThe webserver in my sandbox has about 20 web applications which start
up at runtime.
I'm developing one application in particular.
The web server has classpath which includes a jar file which has a
log4j.properties file.
Several applications up before the one I'm working on.
I can tell that the other applications are finding the log4j.properties
file in the
server classpath - because if I remove it from the jar in the classpath
messages display which warning that log4j hasn't been properly
initialized.
...
My application has a start up servlet the following line of code :
org.apache.log4j.Logger rootLogger =
org.apache.log4j.LogManager.getRootLogger();
rootLogger.setLevel(org.apache.log4j.Level.DEBUG);
The idea is to set the logging level for the application in the start
up servlet.
I'm certain this code gets called. Also, a log4j.properties file and a
log4j.jar
file exists in the application's WEB-INF/lib and WEB-INF/classes
directories.
I have another class in the same application with the line of code :
private static final org.apache.commons.logging.Log LOG =
LogFactory.getLog(JdbcDAO.class);
Note that commons logging is supposed to use log4j when it finds a
log4j.properties file in the classpath.
This LOG variable always has the settings associated with the
log4j.properties
file in the classpath. Or some defaults it sets on it's own when
starting up
with no log4j.properties file.
In other words the code in the start up servlet to set the log level
isn't doing anything.
It appears that there's nothing I can do to initialize the logging
level in my application.
Note that the application this clip of code in the application
weblogic.xml file :
<container-descriptor>
<prefer-web-inf-classes>true</prefer-web-inf-classes>
</container-descriptor>
But that hasn't helped here.
Has anyone else ran into this issue and figured out a way to resolve
it?
- 15
- OutOfMemoryException With XML DOMMy project uses XML for its data files and I am using a DOM parser
(the one native to the JDK) to parse out the files. DOM is especially
useful because the project lends itself to the use of trees.
Unfortunately, there tends to be a limit as to how big the XML files
can be before the DOM parser starts chewing up memory and, if the file
is big enough, I get an OutOfMemoryException. It's not from the
project specifically - it's instead a result of the enormous amount of
space DOM takes up.
I was wondering if there's a solution to this? I have read about SAX
a bit, and although it would fix the OOMEx. it would make it more
difficult to manage the tree structure. I could also increase the
amount of RAM available to the JRE, but I'd rather do that as a last
resort.
Does anybody have any other suggestions? Thanks.
|
|
|